diff options
author | Martin Jones <martin.jones@nokia.com> | 2011-04-01 03:07:31 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2011-04-01 03:07:31 (GMT) |
commit | 538a415b8296db36355609d6e84137b9354967a7 (patch) | |
tree | d632065e7af1c4e1cd8113ddcf882f294327ee71 /tests | |
parent | 1f38d41854fa2daa51d938a4eb398752b1751e0b (diff) | |
download | Qt-538a415b8296db36355609d6e84137b9354967a7.zip Qt-538a415b8296db36355609d6e84137b9354967a7.tar.gz Qt-538a415b8296db36355609d6e84137b9354967a7.tar.bz2 |
Add missing test file.
Missing from ea304fb207b681ee084c4ce9bc61d1dd847bd7b0
Change-Id: If69b16fe71c69c174968868afed5647d6ea414a8
Task-number: QTBUG-17829
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/qdeclarativepincharea/data/flickresize.qml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativepincharea/data/flickresize.qml b/tests/auto/declarative/qdeclarativepincharea/data/flickresize.qml new file mode 100644 index 0000000..2da58fc --- /dev/null +++ b/tests/auto/declarative/qdeclarativepincharea/data/flickresize.qml @@ -0,0 +1,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" + } + } + } +} |