summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml
blob: 1389d869c3e6030c1b733e741edbd4d1d4319aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Qt 4.6

Rectangle {
    property var myInput: Input

    width: 800; height: 600; color: "blue"

    TextInput { id: Input; focus: true
        readOnly: true
        text: "I am the very model of a modern major general.\n"
    }
}