quicktime.app.event
Interface MouseMoveListener

All Superinterfaces:
java.util.EventListener, QTMouseListener
All Known Subinterfaces:
MouseEnterExitListener
All Known Implementing Classes:
DragAdapter, MouseMoveAdapter, QTEventCaster

public interface MouseMoveListener
extends QTMouseListener

An interface that is used to express an interest in recieving mouse movement events that occur within a given space.


Method Summary
 void mouseDragged(QTMouseEvent e)
          Invoked when a mouse button is pressed in a space and then dragged.
 void mouseMoved(QTMouseEvent e)
          Invoked when the mouse button has been moved in a space (with no buttons no down).
 
Methods inherited from interface quicktime.app.event.QTMouseListener
matchModifierFilter
 

Method Detail

mouseDragged

public void mouseDragged(QTMouseEvent e)
Invoked when a mouse button is pressed in a space and then dragged. Mouse drag events will continue to be delivered to the space where the first originated until the mouse button is released (regardless of whether the mouse position is within the bounds of the space).

mouseMoved

public void mouseMoved(QTMouseEvent e)
Invoked when the mouse button has been moved in a space (with no buttons no down).