aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmlplugindump
diff options
context:
space:
mode:
authorAndrew den Exter <andrew.den-exter@nokia.com>2011-09-12 14:17:08 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-10 05:48:01 +0200
commitc825865cdd88445aa1db94cdf0da89426919acdb (patch)
tree93418f7a0ab78ddb3b51e59b0a30e30d3c1872b5 /tools/qmlplugindump
parent65bf7aa06a59790d0aea30b909577747510bb5d1 (diff)
Add DropArea item and Drag attached property.
Refactors drag API to improve compatibility with traditional drag and drop by reusing events and adding drop actions. Event sending is removed from MouseArea, instead the Drag object can be attached to the item that is dragged and it will send drag events when the position of that item is changed or when its active property changes. The DragTarget item is renamed to DropArea and can now communicate supported and suggested actions. Task-number: QTBUG-19747 Change-Id: I46cb77e68cf1ff32bbcbf0945facb593c9c2243c Reviewed-on: http://codereview.qt-project.org/4638 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
Diffstat (limited to 'tools/qmlplugindump')
-rw-r--r--tools/qmlplugindump/main.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/qmlplugindump/main.cpp b/tools/qmlplugindump/main.cpp
index e7f183e798..d0ab0d8784 100644
--- a/tools/qmlplugindump/main.cpp
+++ b/tools/qmlplugindump/main.cpp
@@ -43,7 +43,6 @@
#include <QtDeclarative/private/qdeclarativemetatype_p.h>
#include <QtDeclarative/private/qdeclarativeopenmetaobject_p.h>
#include <QtDeclarative/private/qsgevents_p_p.h>
-#include <QtDeclarative/private/qsgdragtarget_p.h>
#include <QtDeclarative/private/qsgpincharea_p.h>
#include <QtWidgets/QApplication>
@@ -588,7 +587,7 @@ int main(int argc, char *argv[])
// add some otherwise unreachable QMetaObjects
defaultReachable.insert(&QSGMouseEvent::staticMetaObject);
- // QSGKeyEvent, QSGPinchEvent, QSGDragTargetEvent are not exported
+ // QSGKeyEvent, QSGPinchEvent, QSGDropEvent are not exported
// this will hold the meta objects we want to dump information of
QSet<const QMetaObject *> metas;