MouseEventType

enum MouseEventType : Enum<MouseEventType> , UIEventType

Event type for the different kinds of mouse actions supported.

Entries

MOUSE_CLICKED
Link copied to clipboard
common
A mouse button has been clicked (pressed and released) on a component.
MOUSE_PRESSED
Link copied to clipboard
common
A mouse button has been pressed on a component.
MOUSE_RELEASED
Link copied to clipboard
common
A mouse button has been released on a component.
MOUSE_ENTERED
Link copied to clipboard
common
The mouse entered a component.
MOUSE_EXITED
Link copied to clipboard
common
The mouse exited a component.
MOUSE_WHEEL_ROTATED_UP
Link copied to clipboard
common
the mouse wheel is rotated up (away from user)
MOUSE_WHEEL_ROTATED_DOWN
Link copied to clipboard
common
the mouse wheel is rotated down (towards user)
MOUSE_DRAGGED
Link copied to clipboard
common
A mouse button is pressed on a component and then dragged.
MOUSE_MOVED
Link copied to clipboard
common
The mouse cursor has been moved onto a component but no buttons have been pushed.

Functions

compareTo
Link copied to clipboard
common
operator override fun compareTo(other: MouseEventType): Int
equals
Link copied to clipboard
common
operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

name
Link copied to clipboard
common
val name: String
ordinal
Link copied to clipboard
common
val ordinal: Int

Sources

(source)
Link copied to clipboard