
We bake cookies in your browser for a better experience. Using this site means that you consent.Read More
TheQ3DragObject class encapsulates MIME-based data transfer.More...
| Header: | #include <Q3DragObject> |
| Inherits: | QObject andQMimeSource |
| Inherited By: |
| enum | DragMode { DragDefault, DragCopy, DragMove, DragLink, DragCopyOrMove } |
| Q3DragObject(QWidget * dragSource = 0, const char * name = 0) | |
| virtual | ~Q3DragObject() |
| bool | drag() |
| void | dragCopy() |
| void | dragLink() |
| bool | dragMove() |
| QPixmap | pixmap() const |
| QPoint | pixmapHotSpot() const |
| virtual void | setPixmap(QPixmap pm, const QPoint & hotspot) |
| virtual void | setPixmap(QPixmap pm) |
| QWidget * | source() |
| QWidget * | target() |
| virtual bool | drag(DragMode mode) |
TheQ3DragObject class encapsulates MIME-based data transfer.
Q3DragObject is the base class for all data that needs to be transferred between and within applications, both for drag and drop and for the clipboard.
See theDrag and drop documentation for an overview of how to provide drag and drop in your application.
See theQClipboard documentation for an overview of how to provide cut and paste in your application.
Thedrag() function is used to start a drag operation. You can specify theDragMode in the call or use one of the convenience functionsdragCopy(),dragMove(), ordragLink(). The drag source where the data originated is retrieved withsource(). If the data was dropped on a widget within the application,target() will return a pointer to that widget. Specify the pixmap to display during the drag withsetPixmap().
This enum describes the possible drag modes.
| Constant | Value | Description |
|---|---|---|
Q3DragObject::DragDefault | 0 | The mode is determined heuristically. |
Q3DragObject::DragCopy | 1 | The data is copied. |
Q3DragObject::DragMove | 2 | The data is moved. |
Q3DragObject::DragLink | 3 | The data is linked. |
Q3DragObject::DragCopyOrMove | 4 | The user chooses the mode by using theShift key to switch from the default copy mode to move mode. |
Constructs a drag object calledname with a parentdragSource.
Note that the drag object will be deleted when thedragSource is deleted.
[virtual]Q3DragObject::~Q3DragObject()Destroys the drag object, canceling any drag and drop operation in which it is involved.
Starts a drag operation using the contents of this object, usingDragDefault mode.
The function returns true if the caller should delete the original copy of the dragged data (but seetarget()); otherwise returns false.
If the drag containsreferences to information (e.g. file names in aQ3UriDrag are references) then the return value should always be ignored, as the target is expected to directly manipulate the content referred to by the drag object. On X11 the return value should always be correct anyway, but on Windows this is not necessarily the case; e.g. the file manager starts a background process to move files, so the sourcemust not delete the files!
Note that on Windows the drag operation will start a blocking modal event loop that will not dispatch any QTimers.
[virtual protected]bool Q3DragObject::drag(DragMode mode)This is an overloaded function.
Starts a drag operation using the contents of this object.
At this point, the object becomes owned by Qt, not the application. You should not delete the drag object or anything it references. The actual transfer of data to the target application will be done during future event processing - after that time the drag object will be deleted.
Returns true if the dragged data was dragged as amove, indicating that the caller should remove the original source of the data (the drag object must continue to have a copy); otherwise returns false.
Themode specifies the drag mode (seeQ3DragObject::DragMode.) Normally one of the simplerdrag(),dragMove(), ordragCopy() functions would be used instead.
Starts a drag operation using the contents of this object, usingDragCopy mode. Be sure to read the constraints described indrag().
See alsodrag(),dragMove(), anddragLink().
Starts a drag operation using the contents of this object, usingDragLink mode. Be sure to read the constraints described indrag().
See alsodrag(),dragCopy(), anddragMove().
Starts a drag operation using the contents of this object, usingDragMove mode. Be sure to read the constraints described indrag().
Returns true if the data was dragged as amove, indicating that the caller should remove the original source of the data (the drag object must continue to have a copy); otherwise returns false.
See alsodrag(),dragCopy(), anddragLink().
Returns the currently set pixmap, or a null pixmap if none is set.
See alsosetPixmap() andQPixmap::isNull().
Returns the currently set pixmap hotspot.
See alsosetPixmap().
[virtual]void Q3DragObject::setPixmap(QPixmap pm, constQPoint & hotspot)Set the pixmap,pm, to display while dragging the object. The platform-specific implementation will use this where it can - so provide a small masked pixmap, and do not assume that the user will actually see it.
Thehotspot is the point on (or off) the pixmap that should be under the cursor as it is dragged. It is relative to the top-left pixel of the pixmap.
Warning: We have seen problems with drag cursors on different graphics hardware and driver software on Windows. Setting the graphics acceleration in the display settings down one tick solved the problems in all cases.
See alsopixmap().
[virtual]void Q3DragObject::setPixmap(QPixmap pm)This is an overloaded function.
Uses a hotspot that positions the pixmap below and to the right of the mouse pointer. This allows the user to clearly see the point on the window where they are dragging the data.
Returns a pointer to the widget where this object originated (the drag source).
[static]QWidget * Q3DragObject::target()After the drag completes, this function will return theQWidget which received the drop, or 0 if the data was dropped on another application.
This can be useful for detecting the case where drag and drop is to and from the same widget.
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.