The QMoveEvent class contains event parameters for move events. More...
Header: | #include <QMoveEvent> |
CMake: | find_package(Qt6 COMPONENTS Gui REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Gui) |
qmake: | QT += gui |
Inherits: | QEvent |
QMoveEvent(const QPoint &pos, const QPoint &oldPos) | |
const QPoint & | oldPos() const |
const QPoint & | pos() const |
Move events are sent to widgets that have been moved to a new position relative to their parent.
The event handler QWidget::moveEvent() receives move events.
See also QWidget::move() and QWidget::setGeometry().
Constructs a move event with the new and old widget positions, pos and oldPos respectively.
Returns the old position of the widget.
Returns the new position of the widget. This excludes the window frame for top level widgets.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qmoveevent.html