InputEventKind
enum InputEventKind extends uint8import InputEventKind from Wax;Discriminators for physical-key, mouse, and window events. None represents no event. Text
editing intents use the separate TextIntent vocabulary.
Members
Nonecase
case None = 0KeyDowncase
case KeyDown = 1KeyUpcase
case KeyUp = 2MouseMovecase
case MouseMove = 5MouseDowncase
case MouseDown = 6MouseUpcase
case MouseUp = 7MouseScrollcase
case MouseScroll = 8WindowResizecase
case WindowResize = 9WindowFocuscase
case WindowFocus = 10WindowCloseRequestcase
case WindowCloseRequest = 11CompareTomethod
public fn CompareTo(InputEventKind other) : int32Provided by the compiler.
Equalsmethod
public fn Equals(InputEventKind other) : boolProvided by the compiler.
GetHashCodemethod
public fn GetHashCode() : uint32Provided by the compiler.
ToStringmethod
public fn ToString() : stringProvided by the compiler.
ToStringBuffermethod
public fn ToStringBuffer(StringBuilder builder) : int32Provided by the compiler.