QDragEnterEvent¶
The
QDragEnterEvent
class provides an event which is sent to a widget when a drag and drop action enters it. More…
Detailed Description¶
A widget must accept this event in order to receive the
drag move events
that are sent while the drag and drop action is in progress. The drag enter event is always immediately followed by a drag move event.
QDragEnterEvent
inherits most of its functionality fromQDragMoveEvent
, which in turn inherits most of its functionality fromQDropEvent
.See also
- class PySide2.QtGui.QDragEnterEvent(pos, actions, data, buttons, modifiers)¶
- param modifiers:
KeyboardModifiers
- param actions:
DropActions
- param buttons:
MouseButtons
- param pos:
- param data:
Constructs a
QDragEnterEvent
that represents a drag entering a widget at the givenpoint
with mouse and keyboard states specified bybuttons
andmodifiers
.The drag data is passed as MIME-encoded information in
data
, and the specifiedactions
describe the possible types of drag and drop operation that can be performed.Warning
Do not create a
QDragEnterEvent
yourself since these objects rely on Qt’s internal state.
© 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.