TDME2 1.9.121
UIEditorTabController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
14
15#include <ext/tinyxml/tinyxml.h>
16
17using std::string;
18
30
34
35/**
36 * UI editor tab controller
37 * @author Andreas Drewke
38 * @version $Id$
39 */
41 : public TabController
42{
43
44private:
45 UIEditorTabView* view { nullptr };
47 PopUps* popUps { nullptr };
51
52public:
53 /**
54 * Public constructor
55 * @param view view
56 */
58
59 /**
60 * Destructor
61 */
62 virtual ~UIEditorTabController();
63
64 /**
65 * Get view
66 */
68
69 // overridden method
70 GUIScreenNode* getScreenNode() override;
71
72 // overridden methods
73 void initialize(GUIScreenNode* screenNode) override;
74 void dispose() override;
75 void save() override;
76 void saveAs() override;
77
78 // overridden methods
79 void onValueChanged(GUIElementNode* node) override;
81 void onFocus(GUIElementNode* node) override;
82 void onUnfocus(GUIElementNode* node) override;
83 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY) override;
84
85 /**
86 * Create outliner GUI parent node nodes xml
87 * @param xmlParentNode XML parent node
88 * @param xml xml
89 * @param screenIdx screen index
90 * @param nodeIdx node index
91 */
92 void createOutlinerParentNodeNodesXML(TiXmlElement* xmlParentNode, string& xml, int screenIdx, int& nodeIdx);
93
94 /**
95 * Set outliner content
96 */
97 void setOutlinerContent();
98
99 /**
100 * Set outliner add drop down content
101 */
103
104 /**
105 * Update details panel
106 * @param outlinerNode outliner node
107 */
108 void updateDetails(const string& outlinerNode);
109
110 /**
111 * Update screen details
112 */
113 void updateScreenDetails();
114
115 /**
116 * Update screens details
117 */
119
120 /**
121 * On load screen
122 */
123 void onLoadScreen();
124
125 /**
126 * On remove screen
127 */
128 void onUnsetScreen();
129
130 /**
131 * Reload screens
132 */
133 void reloadScreens();
134
135 /**
136 * On load prototype
137 */
138 void onLoadPrototype();
139
140 /**
141 * On load prototype
142 */
143 void onRemovePrototype();
144
145 /**
146 * Shows the error pop up
147 * @param caption caption
148 * @param message message
149 */
150 void showErrorPopUp(const string& caption, const string& message);
151
152};
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
Pop ups controller accessor class.
Definition: PopUps.h:19
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
UIEditorTabController(UIEditorTabView *view)
Public constructor.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void onUnfocus(GUIElementNode *node) override
On unfocus.
void onValueChanged(GUIElementNode *node) override
On value changed.
void updateDetails(const string &outlinerNode)
Update details panel.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void onFocus(GUIElementNode *node) override
On focus.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void initialize(GUIScreenNode *screenNode) override
Init.
void createOutlinerParentNodeNodesXML(TiXmlElement *xmlParentNode, string &xml, int screenIdx, int &nodeIdx)
Create outliner GUI parent node nodes xml.
Mutable string class.
Definition: MutableString.h:16
An attribute is a name-value pair.
Definition: tinyxml.h:734
Always the top level node.
Definition: tinyxml.h:1317
The element is a container class.
Definition: tinyxml.h:886
GUI action listener interface.
GUI change listener interface.
Tab controller, which connects UI with logic.
Definition: TabController.h:23