aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquicktextinput/data/readOnly.qml
blob: 9cda7fbd1dff268e5c6a3e0e125fd18d216025df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Rectangle {
    property variant 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"
    }
}