TDME2
1.9.121
src
tdme
tools
editor
views
View.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
tdme/tdme.h
>
4
#include <
tdme/tools/editor/views/fwd-tdme.h
>
5
6
/**
7
* View interface, this combines application logic, regarding a application view, with screen controllers
8
* @author Andreas Drewke
9
* @version $Id$
10
*/
11
struct
tdme::tools::editor::views::View
12
{
13
14
/**
15
* Initiates the view
16
*/
17
virtual
void
initialize
() = 0;
18
19
/**
20
* Activate view
21
*/
22
virtual
void
activate
() = 0;
23
24
/**
25
* Renders the view
26
*/
27
virtual
void
display
() = 0;
28
29
/**
30
* Deactivate view
31
*/
32
virtual
void
deactivate
() = 0;
33
34
/**
35
* Disposes the view
36
*/
37
virtual
void
dispose
() = 0;
38
39
/**
40
* Tick
41
*/
42
virtual
void
tick
() = 0;
43
44
/**
45
* Destructor
46
*/
47
virtual
~View
() {}
48
};
tdme::tools::editor::views::View
View interface, this combines application logic, regarding a application view, with screen controller...
Definition:
View.h:12
tdme::tools::editor::views::View::deactivate
virtual void deactivate()=0
Deactivate view.
tdme::tools::editor::views::View::~View
virtual ~View()
Destructor.
Definition:
View.h:47
tdme::tools::editor::views::View::activate
virtual void activate()=0
Activate view.
tdme::tools::editor::views::View::display
virtual void display()=0
Renders the view.
tdme::tools::editor::views::View::initialize
virtual void initialize()=0
Initiates the view.
tdme::tools::editor::views::View::dispose
virtual void dispose()=0
Disposes the view.
tdme::tools::editor::views::View::tick
virtual void tick()=0
Tick.
tdme.h
fwd-tdme.h
Generated by
1.9.3