TDME2 1.9.121
EditorView.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
8#include <tdme/math/Vector3.h>
13
21
22/**
23 * Editor View
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28 : public View
30{
31private:
32 Engine* engine { nullptr };
33 PopUps* popUps { nullptr };
36
37public:
38 /**
39 * Public constructor
40 * @param popUps pop ups view
41 */
43
44 /**
45 * Destructor
46 */
48
49 /**
50 * @return pop ups
51 */
53
54 /**
55 * @return screen controller
56 */
59 }
60
61 /**
62 * Init GUI elements
63 */
64 void updateGUIElements();
65
66 // overridden methods
67 void handleInputEvents() override;
68 void display() override;
69 void initialize() override;
70 void activate() override;
71 void deactivate() override;
72 void dispose() override;
73 void tick() override;
74
75 /**
76 * Set outliner content
77 * @param xml xml
78 */
79 void setOutlinerContent(const string& xml);
80
81 /**
82 * Set outliner add drop down content
83 * @param xml xml
84 */
85 void setOutlinerAddDropDownContent(const string& xml);
86
87 /**
88 * Set details content
89 * @param xml xml
90 */
91 void setDetailsContent(const string& xml);
92
93 /**
94 * Reload tab outliner
95 * @param newSelectionValue new selection value
96 */
97 void reloadTabOutliner(const string& newSelectionValue = string());
98
99 /**
100 * Determine viewport screen constraints
101 * @param viewPortNode view port node
102 * @param left left
103 * @param top top
104 * @param width width
105 * @param height height
106 */
107 void getViewPort(GUINode* viewPortNode, int& left, int& top, int& width, int& height);
108
109};
Engine main class.
Definition: Engine.h:122
GUI node base class.
Definition: GUINode.h:63
3D vector 3 class
Definition: Vector3.h:22
Pop ups controller accessor class.
Definition: PopUps.h:19
void dispose() override
Disposes the view.
Definition: EditorView.cpp:198
void display() override
Renders the view.
Definition: EditorView.cpp:136
EditorScreenController * editorScreenController
Definition: EditorView.h:34
void setOutlinerAddDropDownContent(const string &xml)
Set outliner add drop down content.
Definition: EditorView.cpp:214
void setOutlinerContent(const string &xml)
Set outliner content.
Definition: EditorView.cpp:210
void updateGUIElements()
Init GUI elements.
Definition: EditorView.cpp:162
void initialize() override
Initiates the view.
Definition: EditorView.cpp:166
void deactivate() override
Deactivate view.
Definition: EditorView.cpp:194
void handleInputEvents() override
Handle input events that have not yet been processed.
Definition: EditorView.cpp:74
void setDetailsContent(const string &xml)
Set details content.
Definition: EditorView.cpp:218
void activate() override
Activate view.
Definition: EditorView.cpp:180
EditorView(PopUps *popUps)
Public constructor.
Definition: EditorView.cpp:58
EditorScreenController * getScreenController()
Definition: EditorView.h:57
void getViewPort(GUINode *viewPortNode, int &left, int &top, int &width, int &height)
Determine viewport screen constraints.
Definition: EditorView.cpp:237
void reloadTabOutliner(const string &newSelectionValue=string())
Reload tab outliner.
Definition: EditorView.cpp:222
GUI input event handler interface.
View interface, this combines application logic, regarding a application view, with screen controller...
Definition: View.h:12