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.
-
mouseEnteredTarget(MouseEvent)
- Invoked when a mouseMoved event enters a Target within an enclosing space.
-
mouseExitedTarget(MouseEvent)
- Invoked when a mouseMoved event exits a Target within an enclosing space.
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
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