aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquicktextinput/data/cursorTest.qml
blob: 71a420ee7c1a3b7c3a8303283f1f2ea2510294b9 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 2.0

Rectangle { id:rect; width: 300; height: 300; color: "white"
    property string contextualProperty: "Hello"
    TextInput {  text: "Hello world!"; id: textInputObject; objectName: "textInputObject"
        resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance"; property string localProperty: contextualProperty } } ]
        cursorDelegate: cursor
    }
}