aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/pointerhandlers/qquicktaphandler/data/rightTapHandler.qml
blob: 85f5c87b395c26c03dec03c1d410e5f46d20b6c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.12

Rectangle {
    width: 320
    height: 240
    color: rightTap.pressed ? "tomato" : "beige"
    TapHandler {
        id: rightTap
        objectName: "right button TapHandler"
        longPressThreshold: 0.5
        acceptedButtons: Qt.RightButton
    }
}