com.trolltech.qt.gui
Class QMoveEvent

java.lang.Object
  extended by com.trolltech.qt.QSignalEmitter
      extended by com.trolltech.qt.QtJambiObject
          extended by com.trolltech.qt.core.QEvent
              extended by 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 Class Summary
 
Nested classes/interfaces inherited from class com.trolltech.qt.core.QEvent
QEvent.Type
 
Nested classes/interfaces inherited from class com.trolltech.qt.QSignalEmitter
QSignalEmitter.Signal0, QSignalEmitter.Signal1, QSignalEmitter.Signal2, QSignalEmitter.Signal3, QSignalEmitter.Signal4, QSignalEmitter.Signal5, QSignalEmitter.Signal6, QSignalEmitter.Signal7, QSignalEmitter.Signal8, QSignalEmitter.Signal9
 
Constructor Summary
QMoveEvent(QPoint pos, QPoint oldPos)
          Constructs a move event with the new and old widget positions, pos and oldPos respectively.
 
Method Summary
static QMoveEvent fromNativePointer(QNativePointer nativePointer)
          This method returns the QMoveEvent instance pointed to by nativePointer.
 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.core.QEvent
accept, ignore, isAccepted, registerEventType, registerEventType, setAccepted, setT, spontaneous, t, type
 
Methods inherited from class com.trolltech.qt.QtJambiObject
dispose, disposed, equals, finalize, reassignNativeResources, tr, tr, tr
 
Methods inherited from class com.trolltech.qt.QSignalEmitter
blockSignals, disconnect, disconnect, signalsBlocked, signalSender, thread
 
Methods inherited from class java.lang.Object
clone, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.trolltech.qt.QtJambiInterface
disableGarbageCollection, nativeId, nativePointer, reenableGarbageCollection, setJavaOwnership
 

Constructor Detail

QMoveEvent

public QMoveEvent(QPoint pos,
                  QPoint oldPos)
Constructs a move event with the new and old widget positions, pos and oldPos respectively.

Method Detail

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