Interface GraphicsNodeMouseListener

All Superinterfaces:
EventListener
All Known Subinterfaces:
Selector
All Known Implementing Classes:
BridgeEventSupport.Listener, ConcreteTextSelector, GraphicsNodeMouseAdapter, SVG12BridgeEventSupport.Listener, TextSelectionManager.MouseListener

public interface GraphicsNodeMouseListener extends EventListener
The listener interface for receiving graphics node mouse events.
  • Method Details

    • mouseClicked

      void mouseClicked(GraphicsNodeMouseEvent evt)
      Invoked when the mouse has been clicked on a graphics node.
      Parameters:
      evt - the graphics node mouse event
    • mousePressed

      void mousePressed(GraphicsNodeMouseEvent evt)
      Invoked when a mouse button has been pressed on a graphics node.
      Parameters:
      evt - the graphics node mouse event
    • mouseReleased

      void mouseReleased(GraphicsNodeMouseEvent evt)
      Invoked when a mouse button has been released on a graphics node.
      Parameters:
      evt - the graphics node mouse event
    • mouseEntered

      void mouseEntered(GraphicsNodeMouseEvent evt)
      Invoked when the mouse enters a graphics node.
      Parameters:
      evt - the graphics node mouse event
    • mouseExited

      void mouseExited(GraphicsNodeMouseEvent evt)
      Invoked when the mouse exits a graphics node.
      Parameters:
      evt - the graphics node mouse event
    • mouseDragged

      void mouseDragged(GraphicsNodeMouseEvent evt)
      Invoked when a mouse button is pressed on a graphics node and then dragged.
      Parameters:
      evt - the graphics node mouse event
    • mouseMoved

      void mouseMoved(GraphicsNodeMouseEvent evt)
      Invoked when the mouse button has been moved on a node.
      Parameters:
      evt - the graphics node mouse event