QML_RUNTIME_TESTING should be disabled by default.
[profile/ivi/qtdeclarative.git] / tests / auto / qtquick2 / qquickmultipointtoucharea / data / nonOverlapping.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     width: 240
5     height: 320
6
7     MultiPointTouchArea {
8         width: parent.width
9         height: 160
10         minimumTouchPoints: 2
11         maximumTouchPoints: 2
12         onGestureStarted: gesture.grab()
13         touchPoints: [
14             TouchPoint { objectName: "point11" },
15             TouchPoint { objectName: "point12" }
16         ]
17     }
18
19     MultiPointTouchArea {
20         width: parent.width
21         height: 160
22         y: 160
23         minimumTouchPoints: 3
24         maximumTouchPoints: 3
25         onGestureStarted: gesture.grab()
26         touchPoints: [
27             TouchPoint { objectName: "point21" },
28             TouchPoint { objectName: "point22" },
29             TouchPoint { objectName: "point23" }
30         ]
31     }
32 }