aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmltest/events/tst_wheel.qml
diff options
context:
space:
mode:
authorjuhvu <qt-info@nokia.com>2011-09-21 13:04:11 +1000
committerQt by Nokia <qt-info@nokia.com>2011-09-22 05:03:32 +0200
commit7100a74def3a82bc52c93b800cec973bf312b1b3 (patch)
treecc24a9a8dc789e3640beb7f2f48316d0455afb40 /tests/auto/qmltest/events/tst_wheel.qml
parent7ecce2cc0e33bc6b1aa052163f9d6c1365b93b27 (diff)
Wheel event support in qmltestlib + few fixes.
added unit test and orientaion support for mouseWheel Change-Id: I9c26dc762281bc32965769c151414ac0e177ad0f Reviewed-on: http://codereview.qt-project.org/5272 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Juha Vuolle <juha.vuolle@nokia.com> Reviewed-by: Charles Yin <charles.yin@nokia.com>
Diffstat (limited to 'tests/auto/qmltest/events/tst_wheel.qml')
-rw-r--r--tests/auto/qmltest/events/tst_wheel.qml47
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/auto/qmltest/events/tst_wheel.qml b/tests/auto/qmltest/events/tst_wheel.qml
new file mode 100644
index 0000000000..243b932848
--- /dev/null
+++ b/tests/auto/qmltest/events/tst_wheel.qml
@@ -0,0 +1,47 @@
+import QtQuick 2.0
+import QtTest 1.0
+
+Rectangle {
+ id:top
+ width: 400
+ height: 400
+ color: "gray"
+
+ Flickable {
+ id: flick
+ objectName: "flick"
+ anchors.fill: parent
+ contentWidth: 800
+ contentHeight: 800
+
+ Rectangle {
+ width: flick.contentWidth
+ height: flick.contentHeight
+ color: "red"
+ Rectangle {
+ width: 50; height: 50; color: "blue"
+ anchors.centerIn: parent
+ }
+ }
+ }
+ TestCase {
+ name: "WheelEvents"
+ when: windowShown // Must have this line for events to work.
+
+ function test_wheel() {
+ //mouseWheel(item, x, y, delta, buttons = Qt.NoButton, modifiers = Qt.NoModifier, delay = -1, orientation = Qt.Vertical)
+ mouseWheel(flick, 200, 200, -120, Qt.NoButton, Qt.NoModifier, -1, Qt.Vertical);
+ wait(1000);
+ verify(flick.contentY > 0);
+ verify(flick.contentX == 0);
+ flick.contentY = 0;
+ verify(flick.contentY == 0);
+ mouseWheel(flick, 200, 200, -120, Qt.NoButton, Qt.NoModifier, -1, Qt.Horizontal);
+ wait(1000);
+ verify(flick.contentX > 0);
+ verify(flick.contentY == 0);
+ }
+
+ }
+
+} \ No newline at end of file