QGraphicsSceneMoveEvent¶
The
QGraphicsSceneMoveEvent
class provides events for widget moving in the graphics view framework. More…
Synopsis¶
Functions¶
Detailed Description¶
A QGraphicsWidget sends itself a
QGraphicsSceneMoveEvent
immediately when its local position changes. The delivery is implemented as part ofitemChange()
.It’s similar to
QMoveEvent
, but its positions,oldPos()
andnewPos()
, useQPointF
instead ofQPoint
.See also
setPos()
ItemPositionChange
ItemPositionHasChanged
- class PySide2.QtWidgets.QGraphicsSceneMoveEvent¶
Constructs a
QGraphicsSceneMoveEvent
.
- PySide2.QtWidgets.QGraphicsSceneMoveEvent.newPos()¶
- Return type:
Returns the new position (i.e., the current position).
- PySide2.QtWidgets.QGraphicsSceneMoveEvent.oldPos()¶
- Return type:
Returns the old position (i.e., the position immediately before the widget was moved).
- PySide2.QtWidgets.QGraphicsSceneMoveEvent.setNewPos(pos)¶
- Parameters:
pos –
PySide2.QtCore.QPointF
See also
- PySide2.QtWidgets.QGraphicsSceneMoveEvent.setOldPos(pos)¶
- Parameters:
pos –
PySide2.QtCore.QPointF
See also
© 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.