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 |
- 6 public functions inherited from QEvent
Protected Variables
Additional Inherited Members
Detailed Description
The QMoveEvent class contains event parameters for move events.
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().