Class MousePressedEvent

java.lang.Object
com.luciad.input.mouse.MousePressedEvent
All Implemented Interfaces:
IInputEvent, AutoCloseable

public final class MousePressedEvent extends Object implements IInputEvent, AutoCloseable
Implementation of IInputEvent that represents a mouse pressed.

This class contains the location, the mouse button and the modifiers if any.

  • Constructor Details Link icon

    • MousePressedEvent Link icon

      public MousePressedEvent(@NotNull Coordinate location, @NotNull ModifierKeys modifierKeys, @NotNull MouseButton mouseButton)
      Creates an event representing a mouse button being pressed.
      Parameters:
      location - The mouse location, defined in device independent pixels.
      modifierKeys - The modifiers of the event.
      mouseButton - The mouse button of the event.
  • Method Details Link icon

    • finalize Link icon

      protected void finalize()
      Overrides:
      finalize in class Object
    • close Link icon

      public void close()
      Specified by:
      close in interface AutoCloseable
    • getLocation Link icon

      @NotNull public Coordinate getLocation()
      Returns the position of the event.

      It is expressed in device independent pixel coordinates with top-left corner of the map being the (0,0) position.

      Returns:
      the position of the event.
    • getModifierKeys Link icon

      @NotNull public ModifierKeys getModifierKeys()
      Returns the modifiers of the event.
      Returns:
      the modifiers of the event.
    • getMouseButton Link icon

      @NotNull public MouseButton getMouseButton()
      Returns the mouse button of the event.
      Returns:
      the mouse button of the event.