blob: 94e0a0e3a7d5293b1a43d101c1b5148ff4d8283a [file] [log] [blame]
import QtQuick 2.0
Rectangle {
property QtObject myInput: input
width: 400; height: 200; color: "green"
TextInput { id: input; focus: true
width: 400; height: 200
text: "ABCDefgh"
cursorDelegate: Rectangle {
objectName: "cursor"
}
}
}