EventType | Defines the type of event. It can be read from events using the function. | enum |
|
Event | Basic interface for events. Objects of this type are processed by Window class objects. | class |
|
TickEvent | An event that occurs when the logic inside the engine needs to be updated. | class |
|
DrawableInvokeRender | An event which causes Widgets registered in the parent window to draw. | class |
|
KbCharAppearEvent | An event raised when the parent window captures a key. The keycode is encoded and can be treated as
a UTF-32 character. | class |
|
KbKeyAppearEvent | An event raised when the parent window captures a key. The character is not encoded. An event used
when handling special keys. | class |
|
MouseEnterEvent | The event is generated when the user mouse enters or exits the parent window area. | class |
|
MouseMoveEvent | The event is generated when the user mouse moves. Mouse coordinates are calculated for a specific
window. | class |
|
MouseClickEvent | The event is generated when the user click on mouse. Mouse coordinates are calculated for a specific
window. | class |
|
WindowResizeEvent | The event is generated when the parent window changes its size. | class |
|
WindowMoveEvent | The event is generated when the top window moves. | class |
|
WindowCloseEvent | The event is generated when the parent window closes. | class |
|
WindowInvokeOperateFuncEvent | Starts the event processing in the child window. | class |
|
WindowFocusEvent | The event is generated when the top window obtains or loses focus. | class |
|
MouseScrollEvent | The event is generated when the user sroll on mouse. | class |
|
ProgressBarUpdateEvent | The event is generated within ProgressBar widget. | class |
|
CheckboxChange | The event is generated when the checkbox widget changes its state. | class |
|
RatioChange | The event is generated when the checkbox widget changes its state. | class |
|
EventDispatcher | The base class that provides the Window class functions for binding events, adding or removing them from
the window, and function that control the flow of events inside the window that will delegate events to
specific widgets. | class |