aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetextedit/flickableEdit.qml
blob: 6913fdd7eea133e4db365469362a3f617afc2cae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 1.0

Flickable {
    width: 200
    height: 50
    contentWidth: 400

    Column {
        anchors.fill: parent

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