/**************************************************************************** ** ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include "../../shared/util.h" #include "../shared/viewtestutil.h" #include "../shared/visualtestutil.h" using namespace QQuickViewTestUtil; using namespace QQuickVisualTestUtil; class tst_qquickflickable : public QQmlDataTest { Q_OBJECT public: private slots: void create(); void horizontalViewportSize(); void verticalViewportSize(); void properties(); void boundsBehavior(); void rebound(); void maximumFlickVelocity(); void flickDeceleration(); void pressDelay(); void nestedPressDelay(); void flickableDirection(); void resizeContent(); void returnToBounds(); void returnToBounds_data(); void wheel(); void movingAndFlicking(); void movingAndFlicking_data(); void movingAndDragging(); void movingAndDragging_data(); void flickOnRelease(); void pressWhileFlicking(); void disabled(); void flickVelocity(); void margins(); void cancelOnMouseGrab(); void clickAndDragWhenTransformed(); private: QQmlEngine engine; }; void tst_qquickflickable::create() { QQmlEngine engine; QQmlComponent c(&engine, testFileUrl("flickable01.qml")); QQuickFlickable *obj = qobject_cast(c.create()); QVERIFY(obj != 0); QCOMPARE(obj->isAtXBeginning(), true); QCOMPARE(obj->isAtXEnd(), false); QCOMPARE(obj->isAtYBeginning(), true); QCOMPARE(obj->isAtYEnd(), false); QCOMPARE(obj->contentX(), 0.); QCOMPARE(obj->contentY(), 0.); QCOMPARE(obj->horizontalVelocity(), 0.); QCOMPARE(obj->verticalVelocity(), 0.); QCOMPARE(obj->isInteractive(), true); QCOMPARE(obj->boundsBehavior(), QQuickFlickable::DragAndOvershootBounds); QCOMPARE(obj->pressDelay(), 0); QCOMPARE(obj->maximumFlickVelocity(), 2500.); delete obj; } void tst_qquickflickable::horizontalViewportSize() { QQmlEngine engine; QQmlComponent c(&engine, testFileUrl("flickable02.qml")); QQuickFlickable *obj = qobject_cast(c.create()); QVERIFY(obj != 0); QCOMPARE(obj->contentWidth(), 800.); QCOMPARE(obj->contentHeight(), 300.); QCOMPARE(obj->isAtXBeginning(), true); QCOMPARE(obj->isAtXEnd(), false); QCOMPARE(obj->isAtYBeginning(), true); QCOMPARE(obj->isAtYEnd(), false); delete obj; } void tst_qquickflickable::verticalViewportSize() { QQmlEngine engine; QQmlComponent c(&engine, testFileUrl("flickable03.qml")); QQuickFlickable *obj = qobject_cast(c.create()); QVERIFY(obj != 0); QCOMPARE(obj->contentWidth(), 200.); QCOMPARE(obj->contentHeight(), 6000.); QCOMPARE(obj->isAtXBeginning(), true); QCOMPARE(obj->isAtXEnd(), false); QCOMPARE(obj->isAtYBeginning(), true); QCOMPARE(obj->isAtYEnd(), false); delete obj; } void tst_qquickflickable::properties() { QQmlEngine engine; QQmlComponent c(&engine, testFileUrl("flickable04.qml")); QQuickFlickable *obj = qobject_cast(c.create()); QVERIFY(obj != 0); QCOMPARE(obj->isInteractive(), false); QCOMPARE(obj->boundsBehavior(), QQuickFlickable::StopAtBounds); QCOMPARE(obj->pressDelay(), 200); QCOMPARE(obj->maximumFlickVelocity(), 2000.); QVERIFY(obj->property("ok").toBool() == false); QMetaObject::invokeMethod(obj, "check"); QVERIFY(obj->property("ok").toBool() == true); delete obj; } void tst_qquickflickable::boundsBehavior() { QQmlComponent component(&engine); component.setData("import QtQuick 2.0; Flickable { boundsBehavior: Flickable.StopAtBounds }", QUrl::fromLocalFile("")); QQuickFlickable *flickable = qobject_cast(component.create()); QSignalSpy spy(flickable, SIGNAL(boundsBehaviorChanged())); QVERIFY(flickable); QVERIFY(flickable->boundsBehavior() == QQuickFlickable::StopAtBounds); flickable->setBoundsBehavior(QQuickFlickable::DragAndOvershootBounds); QVERIFY(flickable->boundsBehavior() == QQuickFlickable::DragAndOvershootBounds); QCOMPARE(spy.count(),1); flickable->setBoundsBehavior(QQuickFlickable::DragAndOvershootBounds); QCOMPARE(spy.count(),1); flickable->setBoundsBehavior(QQuickFlickable::DragOverBounds); QVERIFY(flickable->boundsBehavior() == QQuickFlickable::DragOverBounds); QCOMPARE(spy.count(),2); flickable->setBoundsBehavior(QQuickFlickable::DragOverBounds); QCOMPARE(spy.count(),2); flickable->setBoundsBehavior(QQuickFlickable::StopAtBounds); QVERIFY(flickable->boundsBehavior() == QQuickFlickable::StopAtBounds); QCOMPARE(spy.count(),3); flickable->setBoundsBehavior(QQuickFlickable::StopAtBounds); QCOMPARE(spy.count(),3); delete flickable; } void tst_qquickflickable::rebound() { QQuickView *window = new QQuickView; window->setSource(testFileUrl("rebound.qml")); window->show(); window->requestActivate(); QVERIFY(window->rootObject() != 0); QQuickFlickable *flickable = qobject_cast(window->rootObject()); QVERIFY(flickable != 0); QQuickTransition *rebound = window->rootObject()->findChild("rebound"); QVERIFY(rebound); QSignalSpy reboundSpy(rebound, SIGNAL(runningChanged())); QSignalSpy movementStartedSpy(flickable, SIGNAL(movementStarted())); QSignalSpy movementEndedSpy(flickable, SIGNAL(movementEnded())); QSignalSpy vMoveSpy(flickable, SIGNAL(movingVerticallyChanged())); QSignalSpy hMoveSpy(flickable, SIGNAL(movingHorizontallyChanged())); // flick and test the transition is run flick(window, QPoint(20,20), QPoint(120,120), 200); QTRY_COMPARE(window->rootObject()->property("transitionsStarted").toInt(), 2); QCOMPARE(hMoveSpy.count(), 1); QCOMPARE(vMoveSpy.count(), 1); QCOMPARE(movementStartedSpy.count(), 1); QCOMPARE(movementEndedSpy.count(), 0); QVERIFY(rebound->running()); QTRY_VERIFY(!flickable->isMoving()); QCOMPARE(flickable->contentX(), 0.0); QCOMPARE(flickable->contentY(), 0.0); QCOMPARE(hMoveSpy.count(), 2); QCOMPARE(vMoveSpy.count(), 2); QCOMPARE(movementStartedSpy.count(), 1); QCOMPARE(movementEndedSpy.count(), 1); QCOMPARE(window->rootObject()->property("transitionsStarted").toInt(), 2); QVERIFY(!rebound->running()); QCOMPARE(reboundSpy.count(), 2); hMoveSpy.clear(); vMoveSpy.clear(); movementStartedSpy.clear(); movementEndedSpy.clear(); window->rootObject()->setProperty("transitionsStarted", 0); window->rootObject()->setProperty("transitionsFinished", 0); #ifdef Q_OS_MAC QSKIP("QTBUG-26696 - sometimes fails on Mac"); delete window; return; #endif // flick and trigger the transition multiple times // (moving signals are emitted as soon as the first transition starts) flick(window, QPoint(20,20), QPoint(120,120), 200); // both x and y will bounce back flick(window, QPoint(20,120), QPoint(120,20), 200); // only x will bounce back QVERIFY(flickable->isMoving()); QVERIFY(window->rootObject()->property("transitionsStarted").toInt() >= 1); QCOMPARE(hMoveSpy.count(), 1); QCOMPARE(vMoveSpy.count(), 1); QCOMPARE(movementStartedSpy.count(), 1); QTRY_VERIFY(!flickable->isMoving()); QCOMPARE(flickable->contentX(), 0.0); // moving started/stopped signals should only have been emitted once, // and when they are, all transitions should have finished QCOMPARE(hMoveSpy.count(), 2); QCOMPARE(vMoveSpy.count(), 2); QCOMPARE(movementStartedSpy.count(), 1); QCOMPARE(movementEndedSpy.count(), 1); hMoveSpy.clear(); vMoveSpy.clear(); movementStartedSpy.clear(); movementEndedSpy.clear(); window->rootObject()->setProperty("transitionsStarted", 0); window->rootObject()->setProperty("transitionsFinished", 0); // disable and the default transition should run // (i.e. moving but transition->running = false) window->rootObject()->setProperty("transitionEnabled", false); flick(window, QPoint(20,20), QPoint(120,120), 200); QCOMPARE(window->rootObject()->property("transitionsStarted").toInt(), 0); QCOMPARE(hMoveSpy.count(), 1); QCOMPARE(vMoveSpy.count(), 1); QCOMPARE(movementStartedSpy.count(), 1); QCOMPARE(movementEndedSpy.count(), 0); QTRY_VERIFY(!flickable->isMoving()); QCOMPARE(hMoveSpy.count(), 2); QCOMPARE(vMoveSpy.count(), 2); QCOMPARE(movementStartedSpy.count(), 1); QCOMPARE(movementEndedSpy.count(), 1); QCOMPARE(window->rootObject()->property("transitionsStarted").toInt(), 0); delete window; } void tst_qquickflickable::maximumFlickVelocity() { QQmlComponent component(&engine); component.setData("import QtQuick 2.0; Flickable { maximumFlickVelocity: 1.0; }", QUrl::fromLocalFile("")); QQuickFlickable *flickable = qobject_cast(component.create()); QSignalSpy spy(flickable, SIGNAL(maximumFlickVelocityChanged())); QVERIFY(flickable); QCOMPARE(flickable->maximumFlickVelocity(), 1.0); flickable->setMaximumFlickVelocity(2.0); QCOMPARE(flickable->maximumFlickVelocity(), 2.0); QCOMPARE(spy.count(),1); flickable->setMaximumFlickVelocity(2.0); QCOMPARE(spy.count(),1); delete flickable; } void tst_qquickflickable::flickDeceleration() { QQmlComponent component(&engine); component.setData("import QtQuick 2.0; Flickable { flickDeceleration: 1.0; }", QUrl::fromLocalFile("")); QQuickFlickable *flickable = qobject_cast(component.create()); QSignalSpy spy(flickable, SIGNAL(flickDecelerationChanged())); QVERIFY(flickable); QCOMPARE(flickable->flickDeceleration(), 1.0); flickable->setFlickDeceleration(2.0); QCOMPARE(flickable->flickDeceleration(), 2.0); QCOMPARE(spy.count(),1); flickable->setFlickDeceleration(2.0); QCOMPARE(spy.count(),1); delete flickable; } void tst_qquickflickable::pressDelay() { QQmlComponent component(&engine); component.setData("import QtQuick 2.0; Flickable { pressDelay: 100; }", QUrl::fromLocalFile("")); QQuickFlickable *flickable = qobject_cast(component.create()); QSignalSpy spy(flickable, SIGNAL(pressDelayChanged())); QVERIFY(flickable); QCOMPARE(flickable->pressDelay(), 100); flickable->setPressDelay(200); QCOMPARE(flickable->pressDelay(), 200); QCOMPARE(spy.count(),1); flickable->setPressDelay(200); QCOMPARE(spy.count(),1); delete flickable; } // QTBUG-17361 void tst_qquickflickable::nestedPressDelay() { QQuickView *window = new QQuickView; window->setSource(testFileUrl("nestedPressDelay.qml")); window->show(); window->requestActivate(); QVERIFY(window->rootObject() != 0); QQuickFlickable *outer = qobject_cast(window->rootObject()); QVERIFY(outer != 0); QQuickFlickable *inner = window->rootObject()->findChild("innerFlickable"); QVERIFY(inner != 0); QTest::mousePress(window, Qt::LeftButton, 0, QPoint(150, 150)); // the MouseArea is not pressed immediately QVERIFY(outer->property("pressed").toBool() == false); // The outer pressDelay will prevail (50ms, vs. 10sec) // QTRY_VERIFY() has 5sec timeout, so will timeout well within 10sec. QTRY_VERIFY(outer->property("pressed").toBool() == true); QTest::mouseRelease(window, Qt::LeftButton, 0, QPoint(150, 150)); delete window; } void tst_qquickflickable::flickableDirection() { QQmlComponent component(&engine); component.setData("import QtQuick 2.0; Flickable { flickableDirection: Flickable.VerticalFlick; }", QUrl::fromLocalFile("")); QQuickFlickable *flickable = qobject_cast(component.create()); QSignalSpy spy(flickable, SIGNAL(flickableDirectionChanged())); QVERIFY(flickable); QCOMPARE(flickable->flickableDirection(), QQuickFlickable::VerticalFlick); flickable->setFlickableDirection(QQuickFlickable::HorizontalAndVerticalFlick); QCOMPARE(flickable->flickableDirection(), QQuickFlickable::HorizontalAndVerticalFlick); QCOMPARE(spy.count(),1); flickable->setFlickableDirection(QQuickFlickable::AutoFlickDirection); QCOMPARE(flickable->flickableDirection(), QQuickFlickable::AutoFlickDirection); QCOMPARE(spy.count(),2); flickable->setFlickableDirection(QQuickFlickable::HorizontalFlick); QCOMPARE(flickable->flickableDirection(), QQuickFlickable::HorizontalFlick); QCOMPARE(spy.count(),3); flickable->setFlickableDirection(QQuickFlickable::HorizontalFlick); QCOMPARE(flickable->flickableDirection(), QQuickFlickable::HorizontalFlick); QCOMPARE(spy.count(),3); delete flickable; } // QtQuick 1.1 void tst_qquickflickable::resizeContent() { QQmlEngine engine; engine.rootContext()->setContextProperty("setRebound", QVariant::fromValue(false)); QQmlComponent c(&engine, testFileUrl("resize.qml")); QQuickItem *root = qobject_cast(c.create()); QQuickFlickable *obj = findItem(root, "flick"); QVERIFY(obj != 0); QCOMPARE(obj->contentX(), 0.); QCOMPARE(obj->contentY(), 0.); QCOMPARE(obj->contentWidth(), 300.); QCOMPARE(obj->contentHeight(), 300.); QMetaObject::invokeMethod(root, "resizeContent"); QCOMPARE(obj->contentX(), 100.); QCOMPARE(obj->contentY(), 100.); QCOMPARE(obj->contentWidth(), 600.); QCOMPARE(obj->contentHeight(), 600.); delete root; } void tst_qquickflickable::returnToBounds() { QFETCH(bool, setRebound); QQuickView *window = new QQuickView; window->rootContext()->setContextProperty("setRebound", setRebound); window->setSource(testFileUrl("resize.qml")); QVERIFY(window->rootObject() != 0); QQuickFlickable *obj = findItem(window->rootObject(), "flick"); QQuickTransition *rebound = window->rootObject()->findChild("rebound"); QVERIFY(rebound); QSignalSpy reboundSpy(rebound, SIGNAL(runningChanged())); QVERIFY(obj != 0); QCOMPARE(obj->contentX(), 0.); QCOMPARE(obj->contentY(), 0.); QCOMPARE(obj->contentWidth(), 300.); QCOMPARE(obj->contentHeight(), 300.); obj->setContentX(100); obj->setContentY(400); QTRY_COMPARE(obj->contentX(), 100.); QTRY_COMPARE(obj->contentY(), 400.); QMetaObject::invokeMethod(window->rootObject(), "returnToBounds"); if (setRebound) QTRY_VERIFY(rebound->running()); QTRY_COMPARE(obj->contentX(), 0.); QTRY_COMPARE(obj->contentY(), 0.); QVERIFY(!rebound->running()); QCOMPARE(reboundSpy.count(), setRebound ? 2 : 0); delete window; } void tst_qquickflickable::returnToBounds_data() { QTest::addColumn("setRebound"); QTest::newRow("with bounds transition") << true; QTest::newRow("with bounds transition") << false; } void tst_qquickflickable::wheel() { QQuickView *window = new QQuickView; window->setSource(testFileUrl("wheel.qml")); window->show(); window->requestActivate(); QVERIFY(window->rootObject() != 0); QQuickFlickable *flick = window->rootObject()->findChild("flick"); QVERIFY(flick != 0); { QPoint pos(200, 200); QWheelEvent event(pos, window->mapToGlobal(pos), QPoint(), QPoint(0,-120), -120, Qt::Vertical, Qt::NoButton, Qt::NoModifier); event.setAccepted(false); QGuiApplication::sendEvent(window, &event); } QTRY_VERIFY(flick->contentY() > 0); QVERIFY(flick->contentX() == 0); flick->setContentY(0); QVERIFY(flick->contentY() == 0); { QPoint pos(200, 200); QWheelEvent event(pos, window->mapToGlobal(pos), QPoint(), QPoint(-120,0), -120, Qt::Horizontal, Qt::NoButton, Qt::NoModifier); event.setAccepted(false); QGuiApplication::sendEvent(window, &event); } QTRY_VERIFY(flick->contentX() > 0); QVERIFY(flick->contentY() == 0); delete window; } void tst_qquickflickable::movingAndFlicking_data() { QTest::addColumn("verticalEnabled"); QTest::addColumn("horizontalEnabled"); QTest::addColumn("flickToWithoutSnapBack"); QTest::addColumn("flickToWithSnapBack"); QTest::newRow("vertical") << true << false << QPoint(50, 100) << QPoint(50, 300); QTest::newRow("horizontal") << false << true << QPoint(-50, 200) << QPoint(150, 200); QTest::newRow("both") << true << true << QPoint(-50, 100) << QPoint(150, 300); } void tst_qquickflickable::movingAndFlicking() { QFETCH(bool, verticalEnabled); QFETCH(bool, horizontalEnabled); QFETCH(QPoint, flickToWithoutSnapBack); QFETCH(QPoint, flickToWithSnapBack); const QPoint flickFrom(50, 200); // centre QQuickView *window = new QQuickView; window->setSource(testFileUrl("flickable03.qml")); window->show(); window->requestActivate(); QTest::qWaitForWindowActive(window); QVERIFY(window->rootObject() != 0); QQuickFlickable *flickable = qobject_cast(window->rootObject()); QVERIFY(flickable != 0); QSignalSpy vMoveSpy(flickable, SIGNAL(movingVerticallyChanged())); QSignalSpy hMoveSpy(flickable, SIGNAL(movingHorizontallyChanged())); QSignalSpy moveSpy(flickable, SIGNAL(movingChanged())); QSignalSpy vFlickSpy(flickable, SIGNAL(flickingVerticallyChanged())); QSignalSpy hFlickSpy(flickable, SIGNAL(flickingHorizontallyChanged())); QSignalSpy flickSpy(flickable, SIGNAL(flickingChanged())); QSignalSpy moveStartSpy(flickable, SIGNAL(movementStarted())); QSignalSpy moveEndSpy(flickable, SIGNAL(movementEnded())); QSignalSpy flickStartSpy(flickable, SIGNAL(flickStarted())); QSignalSpy flickEndSpy(flickable, SIGNAL(flickEnded())); // do a flick that keeps the view within the bounds flick(window, flickFrom, flickToWithoutSnapBack, 200); QVERIFY(flickable->isMoving()); QCOMPARE(flickable->isMovingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isMovingVertically(), verticalEnabled); QVERIFY(flickable->isFlicking()); QCOMPARE(flickable->isFlickingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isFlickingVertically(), verticalEnabled); QCOMPARE(moveSpy.count(), 1); QCOMPARE(vMoveSpy.count(), verticalEnabled ? 1 : 0); QCOMPARE(hMoveSpy.count(), horizontalEnabled ? 1 : 0); QCOMPARE(flickSpy.count(), 1); QCOMPARE(vFlickSpy.count(), verticalEnabled ? 1 : 0); QCOMPARE(hFlickSpy.count(), horizontalEnabled ? 1 : 0); QCOMPARE(moveStartSpy.count(), 1); QCOMPARE(flickStartSpy.count(), 1); // wait for any motion to end QTRY_VERIFY(!flickable->isMoving()); QVERIFY(!flickable->isMovingHorizontally()); QVERIFY(!flickable->isMovingVertically()); QVERIFY(!flickable->isFlicking()); QVERIFY(!flickable->isFlickingHorizontally()); QVERIFY(!flickable->isFlickingVertically()); QCOMPARE(moveSpy.count(), 2); QCOMPARE(vMoveSpy.count(), verticalEnabled ? 2 : 0); QCOMPARE(hMoveSpy.count(), horizontalEnabled ? 2 : 0); QCOMPARE(flickSpy.count(), 2); QCOMPARE(vFlickSpy.count(), verticalEnabled ? 2 : 0); QCOMPARE(hFlickSpy.count(), horizontalEnabled ? 2 : 0); QCOMPARE(moveStartSpy.count(), 1); QCOMPARE(moveEndSpy.count(), 1); QCOMPARE(flickStartSpy.count(), 1); QCOMPARE(flickEndSpy.count(), 1); // Stop on a full pixel after user interaction if (verticalEnabled) QCOMPARE(flickable->contentY(), (qreal)qRound(flickable->contentY())); if (horizontalEnabled) QCOMPARE(flickable->contentX(), (qreal)qRound(flickable->contentX())); // clear for next flick vMoveSpy.clear(); hMoveSpy.clear(); moveSpy.clear(); vFlickSpy.clear(); hFlickSpy.clear(); flickSpy.clear(); moveStartSpy.clear(); moveEndSpy.clear(); flickStartSpy.clear(); flickEndSpy.clear(); // do a flick that flicks the view out of bounds flickable->setContentX(0); flickable->setContentY(0); QTRY_VERIFY(!flickable->isMoving()); flick(window, flickFrom, flickToWithSnapBack, 200); QVERIFY(flickable->isMoving()); QCOMPARE(flickable->isMovingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isMovingVertically(), verticalEnabled); QVERIFY(flickable->isFlicking()); QCOMPARE(flickable->isFlickingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isFlickingVertically(), verticalEnabled); QCOMPARE(moveSpy.count(), 1); QCOMPARE(vMoveSpy.count(), verticalEnabled ? 1 : 0); QCOMPARE(hMoveSpy.count(), horizontalEnabled ? 1 : 0); QCOMPARE(flickSpy.count(), 1); QCOMPARE(vFlickSpy.count(), verticalEnabled ? 1 : 0); QCOMPARE(hFlickSpy.count(), horizontalEnabled ? 1 : 0); QCOMPARE(moveStartSpy.count(), 1); QCOMPARE(moveEndSpy.count(), 0); QCOMPARE(flickStartSpy.count(), 1); QCOMPARE(flickEndSpy.count(), 0); // wait for any motion to end QTRY_VERIFY(!flickable->isMoving()); QVERIFY(!flickable->isMovingHorizontally()); QVERIFY(!flickable->isMovingVertically()); QVERIFY(!flickable->isFlicking()); QVERIFY(!flickable->isFlickingHorizontally()); QVERIFY(!flickable->isFlickingVertically()); QCOMPARE(moveSpy.count(), 2); QCOMPARE(vMoveSpy.count(), verticalEnabled ? 2 : 0); QCOMPARE(hMoveSpy.count(), horizontalEnabled ? 2 : 0); QCOMPARE(flickSpy.count(), 2); QCOMPARE(vFlickSpy.count(), verticalEnabled ? 2 : 0); QCOMPARE(hFlickSpy.count(), horizontalEnabled ? 2 : 0); QCOMPARE(moveStartSpy.count(), 1); QCOMPARE(moveEndSpy.count(), 1); QCOMPARE(flickStartSpy.count(), 1); QCOMPARE(flickEndSpy.count(), 1); QCOMPARE(flickable->contentX(), 0.0); QCOMPARE(flickable->contentY(), 0.0); delete window; } void tst_qquickflickable::movingAndDragging_data() { QTest::addColumn("verticalEnabled"); QTest::addColumn("horizontalEnabled"); QTest::addColumn("moveByWithoutSnapBack"); QTest::addColumn("moveByWithSnapBack"); QTest::newRow("vertical") << true << false << QPoint(0, -10) << QPoint(0, 20); QTest::newRow("horizontal") << false << true << QPoint(-10, 0) << QPoint(20, 0); QTest::newRow("both") << true << true << QPoint(-10, -10) << QPoint(20, 20); } void tst_qquickflickable::movingAndDragging() { QFETCH(bool, verticalEnabled); QFETCH(bool, horizontalEnabled); QFETCH(QPoint, moveByWithoutSnapBack); QFETCH(QPoint, moveByWithSnapBack); const QPoint moveFrom(50, 200); // centre QQuickView *window = new QQuickView; window->setSource(testFileUrl("flickable03.qml")); window->show(); window->requestActivate(); QVERIFY(QTest::qWaitForWindowExposed(window)); QVERIFY(window->rootObject() != 0); QQuickFlickable *flickable = qobject_cast(window->rootObject()); QVERIFY(flickable != 0); QSignalSpy vDragSpy(flickable, SIGNAL(draggingVerticallyChanged())); QSignalSpy hDragSpy(flickable, SIGNAL(draggingHorizontallyChanged())); QSignalSpy dragSpy(flickable, SIGNAL(draggingChanged())); QSignalSpy vMoveSpy(flickable, SIGNAL(movingVerticallyChanged())); QSignalSpy hMoveSpy(flickable, SIGNAL(movingHorizontallyChanged())); QSignalSpy moveSpy(flickable, SIGNAL(movingChanged())); QSignalSpy dragStartSpy(flickable, SIGNAL(dragStarted())); QSignalSpy dragEndSpy(flickable, SIGNAL(dragEnded())); QSignalSpy moveStartSpy(flickable, SIGNAL(movementStarted())); QSignalSpy moveEndSpy(flickable, SIGNAL(movementEnded())); // start the drag QTest::mousePress(window, Qt::LeftButton, 0, moveFrom); QTest::mouseMove(window, moveFrom + moveByWithoutSnapBack); QTest::mouseMove(window, moveFrom + moveByWithoutSnapBack*2); QTest::mouseMove(window, moveFrom + moveByWithoutSnapBack*3); QTRY_VERIFY(flickable->isMoving()); QCOMPARE(flickable->isMovingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isMovingVertically(), verticalEnabled); QVERIFY(flickable->isDragging()); QCOMPARE(flickable->isDraggingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isDraggingVertically(), verticalEnabled); QCOMPARE(moveSpy.count(), 1); QCOMPARE(vMoveSpy.count(), verticalEnabled ? 1 : 0); QCOMPARE(hMoveSpy.count(), horizontalEnabled ? 1 : 0); QCOMPARE(dragSpy.count(), 1); QCOMPARE(vDragSpy.count(), verticalEnabled ? 1 : 0); QCOMPARE(hDragSpy.count(), horizontalEnabled ? 1 : 0); QCOMPARE(moveStartSpy.count(), 1); QCOMPARE(dragStartSpy.count(), 1); QTest::mouseRelease(window, Qt::LeftButton, 0, moveFrom + moveByWithoutSnapBack*3); QVERIFY(!flickable->isDragging()); QVERIFY(!flickable->isDraggingHorizontally()); QVERIFY(!flickable->isDraggingVertically()); QCOMPARE(dragSpy.count(), 2); QCOMPARE(vDragSpy.count(), verticalEnabled ? 2 : 0); QCOMPARE(hDragSpy.count(), horizontalEnabled ? 2 : 0); QCOMPARE(dragStartSpy.count(), 1); QCOMPARE(dragEndSpy.count(), 1); // Don't test whether moving finished because a flick could occur // wait for any motion to end QTRY_VERIFY(flickable->isMoving() == false); QVERIFY(!flickable->isMovingHorizontally()); QVERIFY(!flickable->isMovingVertically()); QVERIFY(!flickable->isDragging()); QVERIFY(!flickable->isDraggingHorizontally()); QVERIFY(!flickable->isDraggingVertically()); QCOMPARE(dragSpy.count(), 2); QCOMPARE(vDragSpy.count(), verticalEnabled ? 2 : 0); QCOMPARE(hDragSpy.count(), horizontalEnabled ? 2 : 0); QCOMPARE(moveSpy.count(), 2); QCOMPARE(vMoveSpy.count(), verticalEnabled ? 2 : 0); QCOMPARE(hMoveSpy.count(), horizontalEnabled ? 2 : 0); QCOMPARE(dragStartSpy.count(), 1); QCOMPARE(dragEndSpy.count(), 1); QCOMPARE(moveStartSpy.count(), 1); QCOMPARE(moveEndSpy.count(), 1); // Stop on a full pixel after user interaction if (verticalEnabled) QCOMPARE(flickable->contentY(), (qreal)qRound(flickable->contentY())); if (horizontalEnabled) QCOMPARE(flickable->contentX(), (qreal)qRound(flickable->contentX())); // clear for next drag vMoveSpy.clear(); hMoveSpy.clear(); moveSpy.clear(); vDragSpy.clear(); hDragSpy.clear(); dragSpy.clear(); moveStartSpy.clear(); moveEndSpy.clear(); dragStartSpy.clear(); dragEndSpy.clear(); // do a drag that drags the view out of bounds flickable->setContentX(0); flickable->setContentY(0); QTRY_VERIFY(!flickable->isMoving()); QTest::mousePress(window, Qt::LeftButton, 0, moveFrom); QTest::mouseMove(window, moveFrom + moveByWithSnapBack); QTest::mouseMove(window, moveFrom + moveByWithSnapBack*2); QTest::mouseMove(window, moveFrom + moveByWithSnapBack*3); QVERIFY(flickable->isMoving()); QCOMPARE(flickable->isMovingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isMovingVertically(), verticalEnabled); QVERIFY(flickable->isDragging()); QCOMPARE(flickable->isDraggingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isDraggingVertically(), verticalEnabled); QCOMPARE(moveSpy.count(), 1); QCOMPARE(vMoveSpy.count(), verticalEnabled ? 1 : 0); QCOMPARE(hMoveSpy.count(), horizontalEnabled ? 1 : 0); QCOMPARE(dragSpy.count(), 1); QCOMPARE(vDragSpy.count(), verticalEnabled ? 1 : 0); QCOMPARE(hDragSpy.count(), horizontalEnabled ? 1 : 0); QCOMPARE(moveStartSpy.count(), 1); QCOMPARE(moveEndSpy.count(), 0); QCOMPARE(dragStartSpy.count(), 1); QCOMPARE(dragEndSpy.count(), 0); QTest::mouseRelease(window, Qt::LeftButton, 0, moveFrom + moveByWithSnapBack*3); // should now start snapping back to bounds (moving but not dragging) QVERIFY(flickable->isMoving()); QCOMPARE(flickable->isMovingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isMovingVertically(), verticalEnabled); QVERIFY(!flickable->isDragging()); QVERIFY(!flickable->isDraggingHorizontally()); QVERIFY(!flickable->isDraggingVertically()); QCOMPARE(moveSpy.count(), 1); QCOMPARE(vMoveSpy.count(), verticalEnabled ? 1 : 0); QCOMPARE(hMoveSpy.count(), horizontalEnabled ? 1 : 0); QCOMPARE(dragSpy.count(), 2); QCOMPARE(vDragSpy.count(), verticalEnabled ? 2 : 0); QCOMPARE(hDragSpy.count(), horizontalEnabled ? 2 : 0); QCOMPARE(moveStartSpy.count(), 1); QCOMPARE(moveEndSpy.count(), 0); // wait for any motion to end QTRY_VERIFY(!flickable->isMoving()); QVERIFY(!flickable->isMovingHorizontally()); QVERIFY(!flickable->isMovingVertically()); QVERIFY(!flickable->isDragging()); QVERIFY(!flickable->isDraggingHorizontally()); QVERIFY(!flickable->isDraggingVertically()); QCOMPARE(moveSpy.count(), 2); QCOMPARE(vMoveSpy.count(), verticalEnabled ? 2 : 0); QCOMPARE(hMoveSpy.count(), horizontalEnabled ? 2 : 0); QCOMPARE(dragSpy.count(), 2); QCOMPARE(vDragSpy.count(), verticalEnabled ? 2 : 0); QCOMPARE(hDragSpy.count(), horizontalEnabled ? 2 : 0); QCOMPARE(moveStartSpy.count(), 1); QCOMPARE(moveEndSpy.count(), 1); QCOMPARE(dragStartSpy.count(), 1); QCOMPARE(dragEndSpy.count(), 1); QCOMPARE(flickable->contentX(), 0.0); QCOMPARE(flickable->contentY(), 0.0); delete window; } void tst_qquickflickable::flickOnRelease() { QQuickView *window = new QQuickView; window->setSource(testFileUrl("flickable03.qml")); window->show(); window->requestActivate(); QVERIFY(QTest::qWaitForWindowExposed(window)); QVERIFY(window->rootObject() != 0); QQuickFlickable *flickable = qobject_cast(window->rootObject()); QVERIFY(flickable != 0); // Vertical with a quick press-move-release: should cause a flick in release. QSignalSpy vFlickSpy(flickable, SIGNAL(flickingVerticallyChanged())); // Use something that generates a huge velocity just to make it testable. // In practice this feature matters on touchscreen devices where the // underlying drivers will hopefully provide a pre-calculated velocity // (based on more data than what the UI gets), thus making this use case // working even with small movements. QTest::mousePress(window, Qt::LeftButton, 0, QPoint(50, 300)); QTest::mouseMove(window, QPoint(50, 10), 10); QTest::mouseRelease(window, Qt::LeftButton, 0, QPoint(50, 10), 10); QCOMPARE(vFlickSpy.count(), 1); // wait for any motion to end QTRY_VERIFY(flickable->isMoving() == false); #ifdef Q_OS_MAC QEXPECT_FAIL("", "QTBUG-26094 stopping on a full pixel doesn't work on OS X", Continue); #endif // Stop on a full pixel after user interaction QCOMPARE(flickable->contentY(), (qreal)qRound(flickable->contentY())); delete window; } void tst_qquickflickable::pressWhileFlicking() { QQuickView *window = new QQuickView; window->setSource(testFileUrl("flickable03.qml")); window->show(); window->requestActivate(); QVERIFY(QTest::qWaitForWindowExposed(window)); QVERIFY(window->rootObject() != 0); QQuickFlickable *flickable = qobject_cast(window->rootObject()); QVERIFY(flickable != 0); QSignalSpy vMoveSpy(flickable, SIGNAL(movingVerticallyChanged())); QSignalSpy hMoveSpy(flickable, SIGNAL(movingHorizontallyChanged())); QSignalSpy moveSpy(flickable, SIGNAL(movingChanged())); QSignalSpy hFlickSpy(flickable, SIGNAL(flickingHorizontallyChanged())); QSignalSpy vFlickSpy(flickable, SIGNAL(flickingVerticallyChanged())); QSignalSpy flickSpy(flickable, SIGNAL(flickingChanged())); // flick then press while it is still moving // flicking == false, moving == true; flick(window, QPoint(20,190), QPoint(20, 50), 200); QVERIFY(flickable->verticalVelocity() > 0.0); QVERIFY(flickable->isFlicking()); QVERIFY(flickable->isFlickingVertically()); QVERIFY(!flickable->isFlickingHorizontally()); QVERIFY(flickable->isMoving()); QVERIFY(flickable->isMovingVertically()); QVERIFY(!flickable->isMovingHorizontally()); QCOMPARE(vMoveSpy.count(), 1); QCOMPARE(hMoveSpy.count(), 0); QCOMPARE(moveSpy.count(), 1); QCOMPARE(vFlickSpy.count(), 1); QCOMPARE(hFlickSpy.count(), 0); QCOMPARE(flickSpy.count(), 1); QTest::mousePress(window, Qt::LeftButton, 0, QPoint(20, 50)); QTRY_VERIFY(!flickable->isFlicking()); QVERIFY(!flickable->isFlickingVertically()); QVERIFY(flickable->isMoving()); QVERIFY(flickable->isMovingVertically()); QTest::mouseRelease(window, Qt::LeftButton, 0, QPoint(20,50)); QVERIFY(!flickable->isFlicking()); QVERIFY(!flickable->isFlickingVertically()); QTRY_VERIFY(!flickable->isMoving()); QVERIFY(!flickable->isMovingVertically()); // Stop on a full pixel after user interaction QCOMPARE(flickable->contentX(), (qreal)qRound(flickable->contentX())); delete window; } void tst_qquickflickable::disabled() { QQuickView *window = new QQuickView; window->setSource(testFileUrl("disabled.qml")); window->show(); window->requestActivate(); QVERIFY(window->rootObject() != 0); QQuickFlickable *flick = window->rootObject()->findChild("flickable"); QVERIFY(flick != 0); QTest::mousePress(window, Qt::LeftButton, 0, QPoint(50, 90)); QTest::mouseMove(window, QPoint(50, 80)); QTest::mouseMove(window, QPoint(50, 70)); QTest::mouseMove(window, QPoint(50, 60)); QVERIFY(flick->isMoving() == false); QTest::mouseRelease(window, Qt::LeftButton, 0, QPoint(50, 60)); // verify that mouse clicks on other elements still work (QTBUG-20584) QTest::mousePress(window, Qt::LeftButton, 0, QPoint(50, 10)); QTest::mouseRelease(window, Qt::LeftButton, 0, QPoint(50, 10)); QTRY_VERIFY(window->rootObject()->property("clicked").toBool() == true); delete window; } void tst_qquickflickable::flickVelocity() { QQuickView *window = new QQuickView; window->setSource(testFileUrl("flickable03.qml")); window->show(); window->requestActivate(); QVERIFY(window->rootObject() != 0); QQuickFlickable *flickable = qobject_cast(window->rootObject()); QVERIFY(flickable != 0); // flick up flick(window, QPoint(20,190), QPoint(20, 50), 200); QVERIFY(flickable->verticalVelocity() > 0.0); QTRY_VERIFY(flickable->verticalVelocity() == 0.0); // flick down flick(window, QPoint(20,10), QPoint(20, 140), 200); QVERIFY(flickable->verticalVelocity() < 0.0); QTRY_VERIFY(flickable->verticalVelocity() == 0.0); #ifdef Q_OS_MAC QSKIP("boost doesn't work on OS X"); delete window; return; #endif // Flick multiple times and verify that flick acceleration is applied. QQuickFlickablePrivate *fp = QQuickFlickablePrivate::get(flickable); bool boosted = false; for (int i = 0; i < 6; ++i) { flick(window, QPoint(20,390), QPoint(20, 50), 100); boosted |= fp->flickBoost > 1.0; } QVERIFY(boosted); // Flick in opposite direction -> boost cancelled. flick(window, QPoint(20,10), QPoint(20, 340), 200); QTRY_VERIFY(flickable->verticalVelocity() < 0.0); QVERIFY(fp->flickBoost == 1.0); delete window; } void tst_qquickflickable::margins() { QQmlEngine engine; QQmlComponent c(&engine, testFileUrl("margins.qml")); QQuickItem *root = qobject_cast(c.create()); QQuickFlickable *obj = qobject_cast(root); QVERIFY(obj != 0); // starting state QCOMPARE(obj->contentX(), -40.); QCOMPARE(obj->contentY(), -20.); QCOMPARE(obj->contentWidth(), 1600.); QCOMPARE(obj->contentHeight(), 600.); QCOMPARE(obj->originX(), 0.); QCOMPARE(obj->originY(), 0.); // Reduce left margin obj->setLeftMargin(30); QTRY_COMPARE(obj->contentX(), -30.); // Reduce top margin obj->setTopMargin(20); QTRY_COMPARE(obj->contentY(), -20.); // position to the far right, including margin obj->setContentX(1600 + 50 - obj->width()); obj->returnToBounds(); QTest::qWait(200); QCOMPARE(obj->contentX(), 1600. + 50. - obj->width()); // position beyond the far right, including margin obj->setContentX(1600 + 50 - obj->width() + 1.); obj->returnToBounds(); QTRY_COMPARE(obj->contentX(), 1600. + 50. - obj->width()); // Reduce right margin obj->setRightMargin(40); QTRY_COMPARE(obj->contentX(), 1600. + 40. - obj->width()); QCOMPARE(obj->contentWidth(), 1600.); // position to the far bottom, including margin obj->setContentY(600 + 30 - obj->height()); obj->returnToBounds(); QTest::qWait(200); QCOMPARE(obj->contentY(), 600. + 30. - obj->height()); // position beyond the far bottom, including margin obj->setContentY(600 + 30 - obj->height() + 1.); obj->returnToBounds(); QTRY_COMPARE(obj->contentY(), 600. + 30. - obj->height()); // Reduce bottom margin obj->setBottomMargin(20); QTRY_COMPARE(obj->contentY(), 600. + 20. - obj->height()); QCOMPARE(obj->contentHeight(), 600.); delete root; } void tst_qquickflickable::cancelOnMouseGrab() { QQuickView *window = new QQuickView; window->setSource(testFileUrl("cancel.qml")); window->show(); window->requestActivate(); QVERIFY(window->rootObject() != 0); QQuickFlickable *flickable = qobject_cast(window->rootObject()); QVERIFY(flickable != 0); QTest::mousePress(window, Qt::LeftButton, 0, QPoint(10, 10)); // drag out of bounds QTest::mouseMove(window, QPoint(50, 50)); QTest::mouseMove(window, QPoint(100, 100)); QTest::mouseMove(window, QPoint(150, 150)); QVERIFY(flickable->contentX() != 0); QVERIFY(flickable->contentY() != 0); QVERIFY(flickable->isMoving()); QVERIFY(flickable->isDragging()); // grabbing mouse will cancel flickable interaction. QQuickItem *item = window->rootObject()->findChild("row"); item->grabMouse(); QTRY_COMPARE(flickable->contentX(), 0.); QTRY_COMPARE(flickable->contentY(), 0.); QTRY_VERIFY(!flickable->isMoving()); QTRY_VERIFY(!flickable->isDragging()); QTest::mouseRelease(window, Qt::LeftButton, 0, QPoint(50, 10)); delete window; } void tst_qquickflickable::clickAndDragWhenTransformed() { QQuickView *view = new QQuickView; view->setSource(testFileUrl("transformedFlickable.qml")); view->show(); view->requestActivate(); QVERIFY(QTest::qWaitForWindowExposed(view)); QVERIFY(view->rootObject() != 0); QQuickFlickable *flickable = view->rootObject()->findChild("flickable"); QVERIFY(flickable != 0); // click outside child rect QTest::mousePress(view, Qt::LeftButton, 0, QPoint(190, 190)); QTest::qWait(10); QCOMPARE(flickable->property("itemPressed").toBool(), false); QTest::mouseRelease(view, Qt::LeftButton, 0, QPoint(190, 190)); // click inside child rect QTest::mousePress(view, Qt::LeftButton, 0, QPoint(200, 200)); QTest::qWait(10); QCOMPARE(flickable->property("itemPressed").toBool(), true); QTest::mouseRelease(view, Qt::LeftButton, 0, QPoint(200, 200)); const int threshold = qApp->styleHints()->startDragDistance(); // drag outside bounds QTest::mousePress(view, Qt::LeftButton, 0, QPoint(160, 160)); QTest::qWait(10); QTest::mouseMove(view, QPoint(160 + threshold * 2, 160)); QTest::mouseMove(view, QPoint(160 + threshold * 3, 160)); QCOMPARE(flickable->isDragging(), false); QCOMPARE(flickable->property("itemPressed").toBool(), false); QTest::mouseRelease(view, Qt::LeftButton, 0, QPoint(180, 160)); // drag inside bounds QTest::mousePress(view, Qt::LeftButton, 0, QPoint(200, 140)); QTest::qWait(10); QTest::mouseMove(view, QPoint(200 + threshold * 2, 140)); QTest::mouseMove(view, QPoint(200 + threshold * 3, 140)); QCOMPARE(flickable->isDragging(), true); QCOMPARE(flickable->property("itemPressed").toBool(), false); QTest::mouseRelease(view, Qt::LeftButton, 0, QPoint(220, 140)); delete view; } QTEST_MAIN(tst_qquickflickable) #include "tst_qquickflickable.moc"