summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextinput/flickableInput.qml
blob: 7af74accd9e7a2650879495e5773b5a3d8fdfa7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick 1.0

Flickable {
    width: 200
    height: 50
    contentWidth: 400
    contentHeight: 100

    Column {
        anchors.fill: parent

        TextInput {
            selectByMouse: true
            text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        }
        TextInput {
            selectByMouse: false
            text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        }
    }
}