Interface ImageMouseMotionListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
DefaultStatusBar

public interface ImageMouseMotionListener extends EventListener
Interface for receiving mouse motion events on an image. Author Kazo Csaba
  • Method Details

    • mouseMoved

      void mouseMoved(ImageMouseEvent e)
      Invoked when the mouse has entered a pixel of an image.
      Parameters:
      e - the event object containing attributes of the event
    • mouseEntered

      void mouseEntered(ImageMouseEvent e)
      Invoked when the mouse has entered the area of an image.
      Parameters:
      e - the event object containing attributes of the event
    • mouseExited

      void mouseExited(ImageMouseEvent e)
      Invoked when the mouse has left the area of an image.
      Parameters:
      e - the event object containing attributes of the event
    • mouseDragged

      void mouseDragged(ImageMouseEvent e)
      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