Package org.loboevolution.img
Interface ImageMouseMotionListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
DefaultStatusBar
Interface for receiving mouse motion events on an image.
Author Kazo Csaba
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Invoked when the mouse is moved while a button is down.void
Invoked when the mouse has entered the area of an image.void
Invoked when the mouse has left the area of an image.void
Invoked when the mouse has entered a pixel of an image.
-
Method Details
-
mouseMoved
Invoked when the mouse has entered a pixel of an image.- Parameters:
e
- the event object containing attributes of the event
-
mouseEntered
Invoked when the mouse has entered the area of an image.- Parameters:
e
- the event object containing attributes of the event
-
mouseExited
Invoked when the mouse has left the area of an image.- Parameters:
e
- the event object containing attributes of the event
-
mouseDragged
Invoked when the mouse is moved while a button is down. Note that the coordinates for the event can be outside the image bounds.- Parameters:
e
- the event object containing attributes of the event
-