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

import QtQuick

Rectangle {
    id: root
    width: 240; height: 320

    Rectangle {
        id: blackRect
        objectName: "blackrect"
        color: "black"
        y: 50
        x: 50
        width: 200
        height: 200

        PinchHandler {
            id: pinchHandler
            objectName: "pinchHandler"
            dragThreshold: 10
            minimumScale: 0.5
            maximumScale: 2.0
            minimumRotation: 0.0
            maximumRotation: 0.0
            minimumPointCount: 3
            maximumPointCount: 3
        }
    }
}