aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextinput/data/cursorTestExternal.qml
blob: 1e2c91e9cc02c6c3199f1e413200b026fcd19212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import QtQuick 2.0

Rectangle { width: 300; height: 300; color: "white"
    property string contextualProperty: "Hello"
    TextInput {
        text: "Hello my wonderful world!"
        id: textInputObject;
        objectName: "textInputObject"
        width: 300; height: 300
        wrapMode: TextInput.Wrap
        cursorDelegate: Cursor {
            id:cursorInstance;
            objectName: "cursorInstance";
            localProperty: contextualProperty;
        }
    }
}