Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / qdeclarativetextinput / flickableInput.qml
1 import QtQuick 1.0
2
3 Flickable {
4     width: 200
5     height: 50
6     contentWidth: 400
7     contentHeight: 100
8
9     Column {
10         anchors.fill: parent
11
12         TextInput {
13             selectByMouse: true
14             text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
15         }
16         TextInput {
17             selectByMouse: false
18             text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
19         }
20     }
21 }