The QGraphicsSceneMoveEvent class provides events for widget moving in the graphics view framework. More...
Header: | #include <QGraphicsSceneMoveEvent> |
CMake: | find_package(Qt6 COMPONENTS Widgets REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Widgets) |
qmake: | QT += widgets |
Inherits: | QGraphicsSceneEvent |
QGraphicsSceneMoveEvent() | |
virtual | ~QGraphicsSceneMoveEvent() |
QPointF | newPos() const |
QPointF | oldPos() const |
A QGraphicsWidget sends itself a QGraphicsSceneMoveEvent immediately when its local position changes. The delivery is implemented as part of QGraphicsItem::itemChange().
It's similar to QMoveEvent, but its positions, oldPos() and newPos(), use QPointF instead of QPoint.
See also QGraphicsItem::setPos(), QGraphicsItem::ItemPositionChange, and QGraphicsItem::ItemPositionHasChanged.
Constructs a QGraphicsSceneMoveEvent.
[virtual]
QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent()
Destroys the QGraphicsSceneMoveEvent.
Returns the new position (i.e., the current position).
See also oldPos() and QGraphicsItem::setPos().
Returns the old position (i.e., the position immediately before the widget was moved).
See also newPos() and QGraphicsItem::setPos().
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qgraphicsscenemoveevent.html