com.trolltech.qt.gui
Class QGraphicsSceneMoveEvent

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.QGraphicsSceneEvent
                  extended by com.trolltech.qt.gui.QGraphicsSceneMoveEvent
All Implemented Interfaces:
QtJambiInterface

public class QGraphicsSceneMoveEvent
extends QGraphicsSceneEvent

The QGraphicsSceneMoveEvent class provides events for widget moving in the graphics view framework. A QGraphicsWidget sends itself a QGraphicsSceneMoveEvent immediately when its local position changes. The delivery is implemented as part of QGraphicsItem::itemChange().

It's similar to QMoveEvent, but its positions, oldPos() and newPos(), use QPointF instead of QPoint.

See also:
QGraphicsItem::setPos(), QGraphicsItem::ItemPositionChange , and QGraphicsItem::ItemPositionHasChanged .


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
QGraphicsSceneMoveEvent()
          Constructs a QGraphicsSceneMoveEvent.
 
Method Summary
static QGraphicsSceneMoveEvent fromNativePointer(QNativePointer nativePointer)
          This method returns the QGraphicsSceneMoveEvent instance pointed to by nativePointer.
 QPointF newPos()
          Returns the new position (i.e., the current position).
 QPointF oldPos()
          Returns the old position (i.e., the position immediatly before the widget was moved).
 java.lang.String toString()
          Returns a string representation of the this QGraphicsSceneMoveEvent.
 
Methods inherited from class com.trolltech.qt.gui.QGraphicsSceneEvent
widget
 
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

QGraphicsSceneMoveEvent

public QGraphicsSceneMoveEvent()
Constructs a QGraphicsSceneMoveEvent.

Method Detail

newPos

public final QPointF newPos()
Returns the new position (i.e., the current position).

See also:
oldPos(), and QGraphicsItem::setPos().


oldPos

public final QPointF oldPos()
Returns the old position (i.e., the position immediatly before the widget was moved).

See also:
newPos(), and QGraphicsItem::setPos().


fromNativePointer

public static QGraphicsSceneMoveEvent fromNativePointer(QNativePointer nativePointer)
This method returns the QGraphicsSceneMoveEvent instance pointed to by nativePointer.


toString

public java.lang.String toString()
Returns a string representation of the this QGraphicsSceneMoveEvent.

Overrides:
toString in class QGraphicsSceneEvent