QGraphicsSceneMoveEvent

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

Inheritance diagram of PySide2.QtWidgets.QGraphicsSceneMoveEvent

Synopsis

Functions

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 .

See also

setPos() ItemPositionChange ItemPositionHasChanged

class PySide2.QtWidgets.QGraphicsSceneMoveEvent

Constructs a QGraphicsSceneMoveEvent .

PySide2.QtWidgets.QGraphicsSceneMoveEvent.newPos()
Return type:

PySide2.QtCore.QPointF

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

See also

oldPos() setPos()

PySide2.QtWidgets.QGraphicsSceneMoveEvent.oldPos()
Return type:

PySide2.QtCore.QPointF

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

See also

newPos() setPos()

PySide2.QtWidgets.QGraphicsSceneMoveEvent.setNewPos(pos)
Parameters:

posPySide2.QtCore.QPointF

See also

newPos()

PySide2.QtWidgets.QGraphicsSceneMoveEvent.setOldPos(pos)
Parameters:

posPySide2.QtCore.QPointF

See also

oldPos()