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

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