summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativetextinput/data/echoMode.qml
blob: 5773cc204128abff94a6fd70b09813d4d985c451 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt 4.7

Rectangle {
    property var myInput: input

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

    TextInput { id: input; focus: true
        text: "ABCDefgh"
    }
}