All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface quicktime.app.actions.QTMouseMotionListener

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


Method Index

 o mouseEnteredTarget(MouseEvent)
Invoked when a mouseMoved event enters a Target within an enclosing space.
 o mouseExitedTarget(MouseEvent)
Invoked when a mouseMoved event exits a Target within an enclosing space.

Methods

 o mouseEnteredTarget
 public abstract void mouseEnteredTarget(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
 o mouseExitedTarget
 public abstract void mouseExitedTarget(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

All Packages  Class Hierarchy  This Package  Previous  Next  Index