Class MouseMoveEvent

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

public final class MouseMoveEvent extends Object implements IInputEvent, AutoCloseable
Mouse movement dedicated implementation of the IInputEvent.

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

  • Constructor Details Link icon

    • MouseMoveEvent Link icon

      public MouseMoveEvent(@NotNull Coordinate location, @NotNull ModifierKeys modifierKeys)
      Creates a move event for a mouse.
      Parameters:
      location - location The location of the event, defined in device independent pixels.
      modifierKeys - The modifiers 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.