summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativepincharea/data/flickresize.qml
blob: 2da58fce3a8365efac43bb6756fa59cb0df6600b (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import QtQuick 1.1

Flickable {
    id: flick
    property real scale: 1.0
    width: 640
    height: 360
    contentWidth: 500
    contentHeight: 500

    PinchArea {
        objectName: "pincharea"
        width: Math.max(flick.contentWidth, flick.width)
        height: Math.max(flick.contentHeight, flick.height)

        property real initialWidth
        property real initialHeight
        onPinchStarted: {
            initialWidth = flick.contentWidth
            initialHeight = flick.contentHeight
        }

        onPinchUpdated: {
            // adjust content pos due to drag
            flick.contentX += pinch.previousCenter.x - pinch.center.x
            flick.contentY += pinch.previousCenter.y - pinch.center.y

            // resize content
            flick.resizeContent(initialWidth * pinch.scale, initialHeight * pinch.scale, pinch.center)
            flick.scale = pinch.scale
        }

        onPinchFinished: {
            // Move its content within bounds.
            flick.returnToBounds()
        }

        Rectangle {
            width: flick.contentWidth
            height: flick.contentHeight
            color: "white"
            Rectangle {
                anchors.centerIn: parent
                width: parent.width-40
                height: parent.height-40
                color: "blue"
            }
        }
    }
}