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

Rectangle {
    property QtObject myInput: input

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

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