Package org.eclipse.draw2d
Interface MouseMotionListener
- All Known Implementing Classes:
MouseMotionListener.Stub
,ScrollBar.ThumbDragger
public interface MouseMotionListener
A listener interface for receiving mouse motion events.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
An empty implementation of MouseMotionListener for convenience. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Called when the mouse has moved over the listened to object while a button was pressed.void
Called when the mouse has entered the listened to object.void
Called when the mouse has exited the listened to object.void
mouseHover
(MouseEvent me) Called when the mouse hovers over the listened to object.void
mouseMoved
(MouseEvent me) Called when the mouse has moved over the listened to object.
-
Method Details
-
mouseDragged
Called when the mouse has moved over the listened to object while a button was pressed.- Parameters:
me
- The MouseEvent object
-
mouseEntered
Called when the mouse has entered the listened to object.- Parameters:
me
- The MouseEvent object
-
mouseExited
Called when the mouse has exited the listened to object.- Parameters:
me
- The MouseEvent object
-
mouseHover
Called when the mouse hovers over the listened to object.- Parameters:
me
- The MouseEvent object
-
mouseMoved
Called when the mouse has moved over the listened to object.- Parameters:
me
- The MouseEvent object
-