TDME2 1.9.121
TabView.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6#include <string>
7#include <vector>
8
13
14using std::string;
15using std::vector;
16
21
22/**
23 * Tab view interface
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
32 float renderOffsetX { 0.0f };
33 float renderOffsetY { 0.0f };
34 };
35
36 /**
37 * @return tab id
38 */
39 virtual const string& getTabId() = 0;
40
41 /**
42 * Initiates the view
43 */
44 virtual void initialize() = 0;
45
46 /**
47 * Renders the view
48 */
49 virtual void display() = 0;
50
51 /**
52 * Disposes the view
53 */
54 virtual void dispose() = 0;
55
56 /**
57 * Activate
58 */
59 virtual void activate() = 0;
60
61 /**
62 * Deactivate
63 */
64 virtual void deactivate() = 0;
65
66 /**
67 * @return engine
68 */
69 virtual Engine* getEngine() = 0;
70
71 /**
72 * @return associated tab controller
73 */
75
76 /**
77 * Update rendering
78 * @deprecated This should be removed
79 */
80 virtual void updateRendering() = 0;
81
82 /**
83 * Reload outliner
84 * @param newSelectionValue new selection value
85 *
86 */
87 virtual void reloadOutliner() = 0;
88
89 /**
90 * If this viewport framebuffer has a fixed size
91 */
92 virtual bool hasFixedSize() = 0;
93
94 /**
95 * Destructor
96 */
97 virtual ~TabView() {}
98
99};
Engine main class.
Definition: Engine.h:122
Mutable string class.
Definition: MutableString.h:16
GUI input event handler interface.
Tab controller, which connects UI with logic.
Definition: TabController.h:23
virtual void deactivate()=0
Deactivate.
virtual bool hasFixedSize()=0
If this viewport framebuffer has a fixed size.
virtual ~TabView()
Destructor.
Definition: TabView.h:97
virtual void activate()=0
Activate.
virtual void updateRendering()=0
Update rendering.
virtual void display()=0
Renders the view.
virtual void reloadOutliner()=0
Reload outliner.
virtual void initialize()=0
Initiates the view.
virtual TabController * getTabController()=0
virtual void dispose()=0
Disposes the view.
virtual const string & getTabId()=0