TDME2 1.9.121
TriggerEditorTabView.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
17
18using std::string;
19
33
34/**
35 * Trigger editor tab view
36 * @author Andreas Drewke
37 * @version $Id$
38 */
40 : public TabView
42{
43protected:
44 Engine* engine { nullptr };
45
46private:
47 EditorView* editorView { nullptr };
48 string tabId;
49 PopUps* popUps { nullptr };
52
53 Prototype* prototype { nullptr };
58
59 /**
60 * On rotation event to be overloaded
61 */
62 void onCameraRotation() override;
63
64 /**
65 * On scale event to be overloaded
66 */
67 void onCameraScale() override;
68
69public:
70 /**
71 * Public constructor
72 * @param editorView editor view
73 * @param tabId tab id
74 * @param prototype prototype
75 */
77
78 /**
79 * Destructor
80 */
82
83 /**
84 * @return editor view
85 */
87 return editorView;
88 }
89
90 /**
91 * @return associated tab controller
92 */
93 inline TabController* getTabController() override {
95 }
96
97 /**
98 * @return pop up views
99 */
100 inline PopUps* getPopUps() {
101 return popUps;
102 }
103
104 /**
105 * @return prototype
106 */
108 return prototype;
109 }
110
111 // overridden methods
112 void handleInputEvents() override;
113 void display() override;
114 inline const string& getTabId() override {
115 return tabId;
116 }
117 void initialize() override;
118 void dispose() override;
119 Engine* getEngine() override;
120 void activate() override;
121 void deactivate() override;
122 void reloadOutliner() override;
123 inline bool hasFixedSize() override{ return false; };
124 void updateRendering() override;
125
126 /**
127 * Saving prototype as tempty prototype
128 * @param pathName path name
129 * @param fileName file name
130 */
131 void saveFile(const string& pathName, const string& fileName);
132
133};
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
Prototype definition.
Definition: Prototype.h:49
Scene definition.
Definition: Scene.h:41
3D vector 3 class
Definition: Vector3.h:22
Pop ups controller accessor class.
Definition: PopUps.h:19
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tempty prototype.
bool hasFixedSize() override
If this viewport framebuffer has a fixed size.
void onCameraRotation() override
On rotation event to be overloaded.
void handleInputEvents() override
Handle input events that have not yet been processed.
TriggerEditorTabView(EditorView *editorView, const string &tabId, Prototype *prototype)
Public constructor.
void onCameraScale() override
On scale event to be overloaded.
Tab controller, which connects UI with logic.
Definition: TabController.h:23