Event file reference


Types

    Name Description Type
    EventTypeDefines the type of event. It can be read from events using the function.enum
    EventBasic interface for events. Objects of this type are processed by Window class objects.class
    TickEventAn event that occurs when the logic inside the engine needs to be updated.class
    DrawableInvokeRenderAn event which causes Widgets registered in the parent window to draw.class
    KbCharAppearEventAn event raised when the parent window captures a key. The keycode is encoded and can be treated as a UTF-32 character.class
    KbKeyAppearEventAn event raised when the parent window captures a key. The character is not encoded. An event used when handling special keys.class
    MouseEnterEventThe event is generated when the user mouse enters or exits the parent window area.class
    MouseMoveEventThe event is generated when the user mouse moves. Mouse coordinates are calculated for a specific window.class
    MouseClickEventThe event is generated when the user click on mouse. Mouse coordinates are calculated for a specific window.class
    WindowResizeEventThe event is generated when the parent window changes its size.class
    WindowMoveEventThe event is generated when the top window moves.class
    WindowCloseEventThe event is generated when the parent window closes.class
    WindowInvokeOperateFuncEventStarts the event processing in the child window.class
    WindowFocusEventThe event is generated when the top window obtains or loses focus.class
    MouseScrollEventThe event is generated when the user sroll on mouse.class
    ProgressBarUpdateEventThe event is generated within ProgressBar widget.class
    CheckboxChangeThe event is generated when the checkbox widget changes its state.class
    RatioChangeThe event is generated when the checkbox widget changes its state.class
    EventDispatcherThe 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