aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickflickable/data/pressDelay.qml
blob: 97bc6b794f3ba327b60f75923e529cd9b30159e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import QtQuick

Flickable {
    flickableDirection: Flickable.VerticalFlick
    width: 480
    height: 320
    contentWidth: 480
    contentHeight: 400
    pressDelay: 100

    property real pressX
    property real pressY
    property real releaseX
    property real releaseY

    MouseArea {
        id: ma
        y: 100
        anchors.horizontalCenter: parent.horizontalCenter
        width: 240
        height: 100

        onPressed: {
            pressX = mouse.x
            pressY = mouse.y
        }
        onReleased: {
            releaseX = mouse.x
            releaseY = mouse.y
        }

        Rectangle {
            anchors.fill: parent
            color: parent.pressed ? 'blue' : 'lightsteelblue'
        }
    }
}