com.trolltech.qt.gui
Class QMoveEvent
java.lang.Object
com.trolltech.qt.QSignalEmitter
com.trolltech.qt.QtJambiObject
com.trolltech.qt.core.QEvent
com.trolltech.qt.gui.QMoveEvent
- All Implemented Interfaces:
- QtJambiInterface
public class QMoveEvent
- extends QEvent
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()
.
Nested classes/interfaces inherited from class com.trolltech.qt.core.QEvent |
QEvent.Type |
Constructor Summary |
QMoveEvent(QPoint pos,
QPoint oldPos)
Constructs a move event with the new and old widget positions, pos and oldPos respectively. |
Methods inherited from class java.lang.Object |
clone, getClass, hashCode, notify, notifyAll, wait, wait, wait |
QMoveEvent
public QMoveEvent(QPoint pos,
QPoint oldPos)
- Constructs a move event with the new and old widget positions, pos and oldPos respectively.
oldPos
public final QPoint oldPos()
- Returns the old position of the widget.
pos
public final QPoint pos()
- Returns the new position of the widget. This excludes the window frame for top level widgets.
fromNativePointer
public static QMoveEvent fromNativePointer(QNativePointer nativePointer)
- This method returns the QMoveEvent instance pointed to by nativePointer.
toString
public java.lang.String toString()
- Returns a string representation of the this QMoveEvent.
- Overrides:
toString
in class QEvent