InputEventType
Public / Constants
FocusGained
The application window has gained input focus.
For each keyboard key that is currently being pressed down, a Pressed event generated after FocusGained.
MouseEnter
The mouse cursor has entered the application windows client area.
For each mouse button that is currently being pressed down, a Pressed event is generated after MouseEnter.
- See also
MouseLeave
The mouse cursor has left the application windows client area.
For each mouse button that is currently being pressed down, a Released event is generated before MouseLeave.
- See also
Pressed
A key or button has been pressed down.
One of InputEvent.Key or InputEvent.Button depicts the pressed key resp. button. The other one will be KeyboardKey.None resp. MouseButton.None.
Released
A key or button has been released.
One of InputEvent.Key or InputEvent.Button depicts the released key resp. button. The other one will be KeyboardKey.None resp. MouseButton.None.