aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/pointerhandlers/qquicktaphandler/data/buttons.qml
blob: 04fbbc176b66de69643c91d433fde0c8ac8149c3 (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.12

Item {
    width: 320
    height: 240
    Button {
        objectName: "DragThreshold"
        label: "DragThreshold"
        x: 10; y: 10; width: 300; height: 40
        gesturePolicy: TapHandler.DragThreshold
    }
    Button {
        objectName: "WithinBounds"
        label: "WithinBounds"
        x: 10; y: 60; width: 300; height: 40
        gesturePolicy: TapHandler.WithinBounds
    }
    Button {
        objectName: "ReleaseWithinBounds"
        label: "ReleaseWithinBounds"
        x: 10; y: 110; width: 300; height: 40
        gesturePolicy: TapHandler.ReleaseWithinBounds
    }
    Button {
        objectName: "DragWithinBounds"
        label: "DragWithinBounds"
        x: 10; y: 160; width: 300; height: 40
        gesturePolicy: TapHandler.DragWithinBounds
    }
}