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

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