PySide6.QtWidgets.QGraphicsSceneMoveEvent¶
- class QGraphicsSceneMoveEvent¶
The
QGraphicsSceneMoveEventclass provides events for widget moving in the graphics view framework.Details
A
QGraphicsWidgetsends itself aQGraphicsSceneMoveEventimmediately when its local position changes. The delivery is implemented as part ofitemChange().It’s similar to QMoveEvent, but its positions,
oldPos()andnewPos(), use QPointF instead of QPoint.Synopsis¶
Methods¶
def
__init__()def
newPos()def
oldPos()def
setNewPos()def
setOldPos()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
- __init__()¶
Constructs a
QGraphicsSceneMoveEvent.Returns the new position (i.e., the current position).
Returns the old position (i.e., the position immediately before the widget was moved).