71a420ee7c1a3b7c3a8303283f1f2ea2510294b9
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick2 / qquicktextinput / data / cursorTest.qml
1 import QtQuick 2.0
2
3 Rectangle { id:rect; width: 300; height: 300; color: "white"
4     property string contextualProperty: "Hello"
5     TextInput {  text: "Hello world!"; id: textInputObject; objectName: "textInputObject"
6         resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance"; property string localProperty: contextualProperty } } ]
7         cursorDelegate: cursor
8     }
9 }