From 7100a74def3a82bc52c93b800cec973bf312b1b3 Mon Sep 17 00:00:00 2001 From: juhvu Date: Wed, 21 Sep 2011 13:04:11 +1000 Subject: 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 Reviewed-by: Juha Vuolle Reviewed-by: Charles Yin --- tests/auto/qmltest/events/tst_wheel.qml | 47 +++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 tests/auto/qmltest/events/tst_wheel.qml (limited to 'tests/auto/qmltest/events') 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 -- cgit v1.2.3