summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlgraphicstextedit/data/readOnly.qml
blob: 06b57eae0a40e8c6c269f35bfac4a99e3df553c4 (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"

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