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

Rectangle {
    property QtObject myInput: input

    width: 400; height: 200; color: "green"

    TextInput { id: input; focus: true
        width: 400; height: 200
        text: "ABCDefgh"
        cursorDelegate: Rectangle {
            objectName: "cursor"
        }
    }
}