aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickmultipointtoucharea/data/inFlickable2.qml
blob: 48773a1eb0c9272e87aaa111055f23e41e0dfc50 (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
import QtQuick 2.0

Item {
  width: 320
  height: 400

  Flickable {
    objectName: "flickable"
    width: 100
    height: 400

    flickableDirection: Flickable.VerticalFlick
    contentHeight: 800

    Rectangle {
        property bool highlight: false
        width: 300
        height: 350
        color: "green"

        MultiPointTouchArea {
            anchors.fill: parent
            minimumTouchPoints: 1
            maximumTouchPoints: 1
            touchPoints: [ TouchPoint { id: point1; objectName: "point1" } ]
        }
    }

  }
}