TDME2 1.9.121
EmptyEditorTabView.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
15
16using std::string;
17
28
29/**
30 * Empty editor tab view
31 * @author Andreas Drewke
32 * @version $Id$
33 */
35 : public TabView
36{
37protected:
38 Engine* engine { nullptr };
39
40private:
41 EditorView* editorView { nullptr };
42 string tabId;
43 PopUps* popUps { nullptr };
46
47 Prototype* prototype { nullptr };
49
50public:
51 /**
52 * Public constructor
53 * @param editorView editor view
54 * @param tabId tab id
55 * @param prototype prototype
56 */
58
59 /**
60 * Destructor
61 */
63
64 /**
65 * @return editor view
66 */
68 return editorView;
69 }
70
71 /**
72 * @return associated tab controller
73 */
74 inline TabController* getTabController() override {
76 }
77
78 /**
79 * @return pop up views
80 */
81 inline PopUps* getPopUps() {
82 return popUps;
83 }
84
85 /**
86 * @return prototype
87 */
89 return prototype;
90 }
91
92 // overridden methods
93 void handleInputEvents() override;
94 void display() override;
95 inline const string& getTabId() override {
96 return tabId;
97 }
98 void initialize() override;
99 void dispose() override;
100 Engine* getEngine() override;
101 void activate() override;
102 void deactivate() override;
103 void reloadOutliner() override;
104 void updateRendering() override;
105 inline bool hasFixedSize() override{ return false; };
106 /**
107 * Saving prototype as tempty prototype
108 * @param pathName path name
109 * @param fileName file name
110 */
111 void saveFile(const string& pathName, const string& fileName);
112
113};
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
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 handleInputEvents() override
Handle input events that have not yet been processed.
EmptyEditorTabView(EditorView *editorView, const string &tabId, Prototype *prototype)
Public constructor.
CameraRotationInputHandler * cameraRotationInputHandler
Tab controller, which connects UI with logic.
Definition: TabController.h:23