Keyboard

The Keyboard class provides event-based interaction for keyboard inputs. It implements the KeyEvents interface to handle various types of keyboard-related events such as key presses, releases, repetitions, and character inputs. These events are typically triggered by the Application interacting with the underlying system.

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
open override val character: Event<CharacterEvent>

character event

Link copied to clipboard
open override val keyDown: Event<KeyEvent>

key down event

Link copied to clipboard
open override val keyRepeat: Event<KeyEvent>

key repeat event

Link copied to clipboard
open override val keyUp: Event<KeyEvent>

key up event