QDropEvent¶
The
QDropEvent
class provides an event which is sent when a drag and drop action is completed. More…
Inherited by: QDragEnterEvent, QDragMoveEvent
Synopsis¶
Functions¶
def
acceptProposedAction
()def
dropAction
()def
keyboardModifiers
()def
mimeData
()def
mouseButtons
()def
pos
()def
posF
()def
possibleActions
()def
proposedAction
()def
setDropAction
(action)def
source
()
Detailed Description¶
When a widget
accepts drop events
, it will receive this event if it has accepted the most recentQDragEnterEvent
orQDragMoveEvent
sent to it.The drop event contains a proposed action, available from
proposedAction()
, for the widget to either accept or ignore. If the action can be handled by the widget, you should call theacceptProposedAction()
function. Since the proposed action can be a combination ofDropAction
values, it may be useful to either select one of these values as a default action or ask the user to select their preferred action.If the proposed drop action is not suitable, perhaps because your custom widget does not support that action, you can replace it with any of the
possible drop actions
by callingsetDropAction()
with your preferred action. If you set a value that is not present in the bitwise OR combination of values returned bypossibleActions()
, the default copy action will be used. Once a replacement drop action has been set, callaccept()
instead ofacceptProposedAction()
to complete the drop operation.The
mimeData()
function provides the data dropped on the widget in aQMimeData
object. This contains information about the MIME type of the data in addition to the data itself.See also
QMimeData
QDrag
Drag and Drop
- class PySide2.QtGui.QDropEvent(pos, actions, data, buttons, modifiers[, type=Drop])¶
- param type:
- param modifiers:
KeyboardModifiers
- param actions:
DropActions
- param buttons:
MouseButtons
- param pos:
- param data:
Constructs a drop event of a certain
type
corresponding to a drop at the point specified bypos
in the destination widget’s coordinate system.The
actions
indicate which types of drag and drop operation can be performed, and the drag data is stored as MIME-encoded data indata
.The states of the mouse buttons and keyboard modifiers at the time of the drop are specified by
buttons
andmodifiers
.
- PySide2.QtGui.QDropEvent.acceptProposedAction()¶
Sets the drop action to be the proposed action.
See also
setDropAction()
proposedAction()
accept()
- PySide2.QtGui.QDropEvent.dropAction()¶
- Return type:
Returns the action to be performed on the data by the target. This may be different from the action supplied in
proposedAction()
if you have calledsetDropAction()
to explicitly choose a drop action.See also
- PySide2.QtGui.QDropEvent.keyboardModifiers()¶
- Return type:
KeyboardModifiers
Returns the modifier keys that are pressed.
- PySide2.QtGui.QDropEvent.mimeData()¶
- Return type:
Returns the data that was dropped on the widget and its associated MIME type information.
- PySide2.QtGui.QDropEvent.mouseButtons()¶
- Return type:
MouseButtons
Returns the mouse buttons that are pressed..
- PySide2.QtGui.QDropEvent.pos()¶
- Return type:
Returns the position where the drop was made.
- PySide2.QtGui.QDropEvent.posF()¶
- Return type:
Returns the position where the drop was made.
- PySide2.QtGui.QDropEvent.possibleActions()¶
- Return type:
DropActions
Returns an OR-combination of possible drop actions.
See also
- PySide2.QtGui.QDropEvent.proposedAction()¶
- Return type:
Returns the proposed drop action.
See also
- PySide2.QtGui.QDropEvent.setDropAction(action)¶
- Parameters:
action –
DropAction
Sets the
action
to be performed on the data by the target. Use this to override theproposed action
with one of thepossible actions
.If you set a drop action that is not one of the possible actions, the drag and drop operation will default to a copy operation.
Once you have supplied a replacement drop action, call
accept()
instead ofacceptProposedAction()
.See also
- PySide2.QtGui.QDropEvent.source()¶
- Return type:
If the source of the drag operation is a widget in this application, this function returns that source; otherwise it returns
None
. The source of the operation is the first parameter to theQDrag
object used instantiate the drag.This is useful if your widget needs special behavior when dragging to itself.
See also
QDrag()
© 2022 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 the GNU 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.