matf-rg-engine
1.0.0
Base for project for the Computer Graphics course at Faculty of Mathematics, University of Belgrade
|
Platform events callback object. Extend this class and override the methods you want to be called by the engine::platform::PlatformController, then register an instance with engine::platform::PlatformController::register_platform_event_observer. More...
#include <PlatformEventObserver.hpp>
Public Member Functions | |
virtual void | on_mouse_move (MousePosition position) |
Called by engine::platform::PlatformController for every frame in which the mouse moved. More... | |
virtual void | on_key (Key key) |
Called by engine::platform::PlatformController for every frame in an event occurred on the keyboard or mouse key. More... | |
virtual void | on_window_resize (int width, int height) |
Called by engine::platform::PlatformController when the window is resized. More... | |
virtual | ~PlatformEventObserver ()=default |
Platform events callback object. Extend this class and override the methods you want to be called by the engine::platform::PlatformController, then register an instance with engine::platform::PlatformController::register_platform_event_observer.
|
virtualdefault |
|
inlinevirtual |
Called by engine::platform::PlatformController for every frame in which the mouse moved.
Reimplemented in engine::test::app::MainPlatformEventObserver.
|
inlinevirtual |
Called by engine::platform::PlatformController for every frame in an event occurred on the keyboard or mouse key.
Reimplemented in engine::test::app::MainPlatformEventObserver.
|
inlinevirtual |
Called by engine::platform::PlatformController when the window is resized.
Reimplemented in engine::graphics::GraphicsPlatformEventObserver.