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

Rectangle { width: 300; height: 300; color: "white"
    TextInput {
        text: "Hello world!"
        id: textInputObject;
        objectName: "textInputObject"
        width: 300; height: 300
        wrapMode: TextInput.Wrap
        cursorDelegate: contextDelegate
    }
}