quicktime.app.actions
Interface QTMouseMotionListener

All Superinterfaces:
java.util.EventListener, java.awt.event.MouseMotionListener
All Known Implementing Classes:
QTMouseMotionAdapter

public interface QTMouseMotionListener
extends java.awt.event.MouseMotionListener

This interface extends the MouseMotionListener interface to notify its listeners of mouse motion events that enter or exit a particular target.


Method Summary
 void mouseEnteredTarget(java.awt.event.MouseEvent e)
          Invoked when a mouseMoved event enters a Target within an enclosing space.
 void mouseExitedTarget(java.awt.event.MouseEvent e)
          Invoked when a mouseMoved event exits a Target within an enclosing space.
 
Methods inherited from interface java.awt.event.MouseMotionListener
mouseDragged, mouseMoved
 

Method Detail

mouseEnteredTarget

public void mouseEnteredTarget(java.awt.event.MouseEvent e)
Invoked when a mouseMoved event enters a Target within an enclosing space. The target of a MouseResponder is set for events of this kind.
Parameters:
e - the MouseEvent that triggered this event

mouseExitedTarget

public void mouseExitedTarget(java.awt.event.MouseEvent e)
Invoked when a mouseMoved event exits a Target within an enclosing space. The target of a MouseResponder is set for events of this kind.
Parameters:
e - the MouseEvent that triggered this event