Table Of Contents

Previous topic

QContextMenuEvent

Next topic

QClipboard

QDrag

Synopsis

Functions

Signals

Detailed Description

The PySide.QtGui.QDrag class provides support for MIME-based drag and drop data transfer.

Drag and drop is an intuitive way for users to copy or move data around in an application, and is used in many desktop environments as a mechanism for copying data between applications. Drag and drop support in Qt is centered around the PySide.QtGui.QDrag class that handles most of the details of a drag and drop operation.

The data to be transferred by the drag and drop operation is contained in a PySide.QtCore.QMimeData object. This is specified with the PySide.QtGui.QDrag.setMimeData() function in the following way:

drag =  QDrag(self)
mimeData =  QMimeData()

mimeData.setText(commentEdit.toPlainText())
drag.setMimeData(mimeData)

Note that PySide.QtGui.QDrag.setMimeData() assigns ownership of the PySide.QtCore.QMimeData object to the PySide.QtGui.QDrag object. The PySide.QtGui.QDrag must be constructed on the heap with a parent PySide.QtGui.QWidget to ensure that Qt can clean up after the drag and drop operation has been completed.

A pixmap can be used to represent the data while the drag is in progress, and will move with the cursor to the drop target. This pixmap typically shows an icon that represents the MIME type of the data being transferred, but any pixmap can be set with PySide.QtGui.QDrag.setPixmap() . The cursor’s hot spot can be given a position relative to the top-left corner of the pixmap with the PySide.QtGui.QDrag.setHotSpot() function. The following code positions the pixmap so that the cursor’s hot spot points to the center of its bottom edge:

drag.setHotSpot(QPoint(drag.pixmap().width()/2,
                       drag.pixmap().height()))

Note

On X11, the pixmap may not be able to keep up with the mouse movements if the hot spot causes the pixmap to be displayed directly under the cursor.

The source and target widgets can be found with PySide.QtGui.QDrag.source() and PySide.QtGui.QDrag.target() . These functions are often used to determine whether drag and drop operations started and finished at the same widget, so that special behavior can be implemented.

PySide.QtGui.QDrag only deals with the drag and drop operation itself. It is up to the developer to decide when a drag operation begins, and how a PySide.QtGui.QDrag object should be constructed and used. For a given widget, it is often necessary to reimplement PySide.QtGui.QWidget.mousePressEvent() to determine whether the user has pressed a mouse button, and reimplement PySide.QtGui.QWidget.mouseMoveEvent() to check whether a PySide.QtGui.QDrag is required.

See also

Drag and Drop PySide.QtGui.QClipboard PySide.QtCore.QMimeData QWindowsMime QMacPasteboardMime Draggable Icons Example Draggable Text Example Drop Site Example Fridge Magnets Example

class PySide.QtGui.QDrag(dragSource)
Parameters:dragSourcePySide.QtGui.QWidget

Constructs a new drag object for the widget specified by dragSource .

PySide.QtGui.QDrag.actionChanged(action)
Parameters:actionPySide.QtCore.Qt.DropAction
PySide.QtGui.QDrag.exec_([supportedActions=Qt.MoveAction])
Parameters:supportedActionsPySide.QtCore.Qt.DropActions
Return type:PySide.QtCore.Qt.DropAction
PySide.QtGui.QDrag.exec_(supportedActions, defaultAction)
Parameters:
  • supportedActionsPySide.QtCore.Qt.DropActions
  • defaultActionPySide.QtCore.Qt.DropAction
Return type:

PySide.QtCore.Qt.DropAction

PySide.QtGui.QDrag.hotSpot()
Return type:PySide.QtCore.QPoint

Returns the position of the hot spot relative to the top-left corner of the cursor.

PySide.QtGui.QDrag.mimeData()
Return type:PySide.QtCore.QMimeData

Returns the MIME data that is encapsulated by the drag object.

PySide.QtGui.QDrag.pixmap()
Return type:PySide.QtGui.QPixmap

Returns the pixmap used to represent the data in a drag and drop operation.

PySide.QtGui.QDrag.setDragCursor(cursor, action)
Parameters:
PySide.QtGui.QDrag.setHotSpot(hotspot)
Parameters:hotspotPySide.QtCore.QPoint

Sets the position of the hot spot relative to the top-left corner of the pixmap used to the point specified by hotspot .

Note

on X11, the pixmap may not be able to keep up with the mouse movements if the hot spot causes the pixmap to be displayed directly under the cursor.

PySide.QtGui.QDrag.setMimeData(data)
Parameters:dataPySide.QtCore.QMimeData

Sets the data to be sent to the given MIME data . Ownership of the data is transferred to the PySide.QtGui.QDrag object.

PySide.QtGui.QDrag.setPixmap(arg__1)
Parameters:arg__1PySide.QtGui.QPixmap

Sets pixmap as the pixmap used to represent the data in a drag and drop operation. You can only set a pixmap before the drag is started.

PySide.QtGui.QDrag.source()
Return type:PySide.QtGui.QWidget

Returns the source of the drag object. This is the widget where the drag and drop operation originated.

PySide.QtGui.QDrag.start([supportedActions=Qt.CopyAction])
Parameters:supportedActionsPySide.QtCore.Qt.DropActions
Return type:PySide.QtCore.Qt.DropAction
PySide.QtGui.QDrag.target()
Return type:PySide.QtGui.QWidget

Returns the target of the drag and drop operation. This is the widget where the drag object was dropped.

PySide.QtGui.QDrag.targetChanged(newTarget)
Parameters:newTargetPySide.QtGui.QWidget