QMoveEvent Class

The QMoveEvent class contains event parameters for move events. More...

Header: #include <QMoveEvent>
qmake: QT += gui
Inherits: QEvent

Public Functions

QMoveEvent(const QPoint &pos, const QPoint &oldPos)
const QPoint &oldPos() const
const QPoint &pos() const

Detailed Description

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().

Member Function Documentation

QMoveEvent::QMoveEvent(const QPoint &pos, const QPoint &oldPos)

Constructs a move event with the new and old widget positions, pos and oldPos respectively.

const QPoint &QMoveEvent::oldPos() const

Returns the old position of the widget.

const QPoint &QMoveEvent::pos() const

Returns the new position of the widget. This excludes the window frame for top level widgets.

© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.