#include <QtQuick/private/qquickevents_p_p.h>
#include <private/qquickitemchangelistener_p.h>
#include <private/qv8engine_p.h>
-#include <QtCore/qcoreapplication.h>
#include <QtCore/qmimedata.h>
#include <QtQml/qqmlinfo.h>
#include <QtGui/qdrag.h>
#include <QtGui/qevent.h>
+#include <QtGui/qstylehints.h>
+#include <QtGui/qguiapplication.h>
#ifndef QT_NO_DRAGANDDROP
QQuickDrag::QQuickDrag(QObject *parent)
: QObject(parent), _target(0), _axis(XAndYAxis), _xmin(-FLT_MAX),
-_xmax(FLT_MAX), _ymin(-FLT_MAX), _ymax(FLT_MAX), _active(false), _filterChildren(false)
+_xmax(FLT_MAX), _ymin(-FLT_MAX), _ymax(FLT_MAX), _active(false), _filterChildren(false),
+ _threshold(qApp->styleHints()->startDragDistance())
{
}
emit maximumYChanged();
}
+
+qreal QQuickDrag::threshold() const
+{
+ return _threshold;
+}
+
+void QQuickDrag::setThreshold(qreal value)
+{
+ if (_threshold != value) {
+ _threshold = value;
+ emit thresholdChanged();
+ }
+}
+
+void QQuickDrag::resetThreshold()
+{
+ setThreshold(qApp->styleHints()->startDragDistance());
+}
+
bool QQuickDrag::active() const
{
return _active;
#include <private/qqmldata_p.h>
#include <QtGui/private/qguiapplication_p.h>
-
#include <QtGui/qevent.h>
-#include <QtGui/qguiapplication.h>
-#include <QtGui/qstylehints.h>
#include <float.h>
d->drag->target()->setPosition(dragPos);
if (!keepMouseGrab()
- && (QQuickWindowPrivate::dragOverThreshold(dragPos.x() - startPos.x(), Qt::XAxis, event)
- || QQuickWindowPrivate::dragOverThreshold(dragPos.y() - startPos.y(), Qt::YAxis, event))) {
+ && (QQuickWindowPrivate::dragOverThreshold(dragPos.x() - startPos.x(), Qt::XAxis, event, d->drag->threshold())
+ || QQuickWindowPrivate::dragOverThreshold(dragPos.y() - startPos.y(), Qt::YAxis, event, d->drag->threshold()))) {
setKeepMouseGrab(true);
d->stealMouse = true;
d->startScene = event->windowPos();
\qmlproperty real QtQuick2::MouseArea::drag.minimumY
\qmlproperty real QtQuick2::MouseArea::drag.maximumY
\qmlproperty bool QtQuick2::MouseArea::drag.filterChildren
+ \qmlproperty real QtQuick2::MouseArea::drag.threshold
\c drag provides a convenient way to make an item draggable.
If \c drag.filterChildren is set to true, a drag can override descendant MouseAreas. This
enables a parent MouseArea to handle drags, for example, while descendants handle clicks:
+ \c drag.threshold determines the threshold in pixels of when the drag operation should
+ start. By default this is bound to a platform dependent value. This property was added in
+ Qt Quick 2.2.
+
\snippet qml/mousearea/mouseareadragfilter.qml dragfilter
*/
void resetDrag();
void dragging_data() { acceptedButton_data(); }
void dragging();
+ void dragThreshold();
void invalidDrag_data() { rejectedButton_data(); }
void invalidDrag();
void setDragOnPressed();
drag->setFilterChildren(true);
QCOMPARE(filterChildrenSpy.count(), 1);
+
+ // threshold
+ QCOMPARE(int(drag->threshold()), qApp->styleHints()->startDragDistance());
+ QSignalSpy thresholdSpy(drag, SIGNAL(thresholdChanged()));
+ drag->setThreshold(0.0);
+ QCOMPARE(drag->threshold(), 0.0);
+ QCOMPARE(thresholdSpy.count(), 1);
+ drag->setThreshold(99);
+ QCOMPARE(thresholdSpy.count(), 2);
+ drag->setThreshold(99);
+ QCOMPARE(thresholdSpy.count(), 2);
+ drag->resetThreshold();
+ QCOMPARE(int(drag->threshold()), qApp->styleHints()->startDragDistance());
+ QCOMPARE(thresholdSpy.count(), 3);
}
void tst_QQuickMouseArea::resetDrag()
QCOMPARE(blackRect->y(), 61.0);
}
+
+void tst_QQuickMouseArea::dragThreshold()
+{
+ QQuickView window;
+ QByteArray errorMessage;
+ QVERIFY2(initView(window, testFileUrl("dragging.qml"), true, &errorMessage), errorMessage.constData());
+
+ window.show();
+ QVERIFY(QTest::qWaitForWindowExposed(&window));
+ QVERIFY(window.rootObject() != 0);
+
+ QQuickMouseArea *mouseRegion = window.rootObject()->findChild<QQuickMouseArea*>("mouseregion");
+ QQuickDrag *drag = mouseRegion->drag();
+
+ drag->setThreshold(5);
+
+ mouseRegion->setAcceptedButtons(Qt::LeftButton);
+ QQuickItem *blackRect = window.rootObject()->findChild<QQuickItem*>("blackrect");
+ QVERIFY(blackRect != 0);
+ QVERIFY(blackRect == drag->target());
+ QVERIFY(!drag->active());
+ QTest::mousePress(&window, Qt::LeftButton, 0, QPoint(100,100));
+ QVERIFY(!drag->active());
+ QCOMPARE(blackRect->x(), 50.0);
+ QCOMPARE(blackRect->y(), 50.0);
+ QTest::mouseMove(&window, QPoint(100, 102), 50);
+ QVERIFY(!drag->active());
+ QTest::mouseMove(&window, QPoint(100, 100), 50);
+ QVERIFY(!drag->active());
+ QTest::mouseMove(&window, QPoint(100, 104), 50);
+ QTest::mouseMove(&window, QPoint(100, 105), 50);
+ QVERIFY(!drag->active());
+ QTest::mouseMove(&window, QPoint(100, 106), 50);
+ QTest::mouseMove(&window, QPoint(100, 108), 50);
+ QVERIFY(drag->active());
+ QTest::mouseMove(&window, QPoint(100, 116), 50);
+ QTest::mouseMove(&window, QPoint(100, 122), 50);
+ QTRY_VERIFY(drag->active());
+ QTRY_COMPARE(blackRect->x(), 50.0);
+ QTRY_COMPARE(blackRect->y(), 66.0);
+ QTest::mouseRelease(&window, Qt::LeftButton, 0, QPoint(122,122));
+ QTRY_VERIFY(!drag->active());
+
+ // Immediate drag threshold
+ drag->setThreshold(0);
+ QTest::mousePress(&window, Qt::LeftButton, 0, QPoint(100,100));
+ QTest::mouseMove(&window, QPoint(100, 122), 50);
+ QVERIFY(!drag->active());
+ QTest::mouseMove(&window, QPoint(100, 123), 50);
+ QVERIFY(drag->active());
+ QTest::mouseMove(&window, QPoint(100, 124), 50);
+ QTest::mouseRelease(&window, Qt::LeftButton, 0, QPoint(100, 124));
+ QTRY_VERIFY(!drag->active());
+ drag->resetThreshold();
+}
void tst_QQuickMouseArea::invalidDrag()
{
QFETCH(Qt::MouseButtons, acceptedButtons);