matf-rg-engine  1.0.0
Base for project for the Computer Graphics course at Faculty of Mathematics, University of Belgrade
Public Member Functions | List of all members
engine::platform::PlatformEventObserver Class Reference

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>

Inheritance diagram for engine::platform::PlatformEventObserver:
Inheritance graph
[legend]

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
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ ~PlatformEventObserver()

virtual engine::platform::PlatformEventObserver::~PlatformEventObserver ( )
virtualdefault

Member Function Documentation

◆ on_mouse_move()

virtual void engine::platform::PlatformEventObserver::on_mouse_move ( MousePosition  position)
inlinevirtual

Called by engine::platform::PlatformController for every frame in which the mouse moved.

Reimplemented in engine::test::app::MainPlatformEventObserver.

◆ on_key()

virtual void engine::platform::PlatformEventObserver::on_key ( Key  key)
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.

◆ on_window_resize()

virtual void engine::platform::PlatformEventObserver::on_window_resize ( int  width,
int  height 
)
inlinevirtual

Called by engine::platform::PlatformController when the window is resized.

Reimplemented in engine::graphics::GraphicsPlatformEventObserver.


The documentation for this class was generated from the following file: