com.trolltech.qt.gui
Class QMoveEvent
java.lang.Object
com.trolltech.qt.internal.QSignalEmitterInternal
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 |
Nested classes/interfaces inherited from class com.trolltech.qt.QSignalEmitter |
QSignalEmitter.AbstractSignal, QSignalEmitter.Signal0, QSignalEmitter.Signal1, QSignalEmitter.Signal2, QSignalEmitter.Signal3, QSignalEmitter.Signal4, QSignalEmitter.Signal5, QSignalEmitter.Signal6, QSignalEmitter.Signal7, QSignalEmitter.Signal8, QSignalEmitter.Signal9 |
Nested classes/interfaces inherited from class com.trolltech.qt.internal.QSignalEmitterInternal |
com.trolltech.qt.internal.QSignalEmitterInternal.AbstractSignalInternal |
Fields inherited from class com.trolltech.qt.internal.QSignalEmitterInternal |
currentSender |
Constructor Summary |
QMoveEvent(QPoint pos,
QPoint oldPos)
Constructs a move event with the new and old widget positions, pos and oldPos respectively. |
Method Summary |
QPoint |
oldPos()
Returns the old position of the widget. |
QPoint |
pos()
Returns the new position of the widget. |
java.lang.String |
toString()
Returns a string representation of the this QMoveEvent. |
Methods inherited from class com.trolltech.qt.internal.QSignalEmitterInternal |
__qt_signalInitialization |
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.
toString
public java.lang.String toString()
- Returns a string representation of the this QMoveEvent.
- Overrides:
toString
in class QEvent