class QGraphicsSceneMoveEvent

The QGraphicsSceneMoveEvent class provides events for widget moving in the graphics view framework. More

Inheritance diagram of PySide6.QtWidgets.QGraphicsSceneMoveEvent

Synopsis

Methods

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

Detailed Description

A QGraphicsWidget sends itself a QGraphicsSceneMoveEvent immediately when its local position changes. The delivery is implemented as part of itemChange() .

It’s similar to QMoveEvent, but its positions, oldPos() and newPos() , use QPointF instead of QPoint.

__init__()

Constructs a QGraphicsSceneMoveEvent .

newPos()
Return type:

QPointF

Returns the new position (i.e., the current position).

See also

oldPos() setPos()

oldPos()
Return type:

QPointF

Returns the old position (i.e., the position immediately before the widget was moved).

See also

newPos() setPos()

setNewPos(pos)
Parameters:

posQPointF

setOldPos(pos)
Parameters:

posQPointF