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

Rectangle { width: 300; height: 300; color: "white"
    property string contextualProperty: "Hello"
    TextEdit {
        text: "Hello world!"
        id: textEditObject;
        objectName: "textEditObject"
        wrapMode: TextEdit.WordWrap
        cursorDelegate: Cursor {
            id:cursorInstance;
            objectName: "cursorInstance";
            localProperty: contextualProperty;
        }
    }
}