Initial import from qtquick2.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qsgtextinput / data / cursorTest.qml
1 import QtQuick 2.0
2
3 Rectangle { width: 300; height: 300; color: "white"
4     TextInput {  text: "Hello world!"; id: textInputObject; objectName: "textInputObject"
5         resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance";} } ] 
6         cursorDelegate: cursor
7     }
8 }