TDME2 1.9.121
GUIParentNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_set>
5#include <vector>
6
7#include <tdme/tdme.h>
9#include <tdme/gui/fwd-tdme.h>
15
16using std::string;
17using std::unordered_set;
18using std::vector;
19
35
36/**
37 * GUI parent node base class thats supporting child nodes
38 * @author Andreas Drewke
39 * @version $Id$
40 */
42 : public GUINode
43{
44 friend class tdme::gui::GUI;
46 friend class GUIElementNode;
47 friend class GUILayerNode;
48 friend class GUILayoutNode;
49 friend class GUINode;
50 friend class GUINodeConditions;
51 friend class GUIScreenNode;
52 friend class GUITableNode;
53 friend class GUITableCellNode;
54 friend class GUITableRowNode;
58private:
61
62protected:
63 vector<GUINode*> subNodes;
65 vector<GUINode*> vieportSubNodesCache;
66 vector<GUINode*> floatingNodesCache;
69
70 /**
71 * Constructor
72 * @param screenNode screen node
73 * @param parentNode parent node
74 * @param id id
75 * @param flow flow
76 * @param overflowX overflow x
77 * @param overflowY overflow y
78 * @param alignments alignments
79 * @param requestedConstraints requested constraints
80 * @param backgroundColor background color
81 * @param backgroundImage background image
82 * @param backgroundImageScale9Grid background image scale 9 grid
83 * @param backgroundImageEffectColorMul background image effect color mul
84 * @param backgroundImageEffectColorAdd background image effect color add
85 * @param border border
86 * @param padding padding
87 * @param showOn show on
88 * @param hideOn hide on
89 * @throws tdme::gui::GUIParserException
90 */
94 const string& id,
101 const string& backgroundImage,
105 const GUINode_Border& border,
109 );
110
111 /**
112 * Layout
113 */
114 void layout() override;
115
116 /**
117 * Layout sub nodes
118 */
119 virtual void layoutSubNodes();
120
121 /**
122 * Compute horizontal children alignment
123 */
125
126 /**
127 * Compute vertical children alignment
128 */
130
131 /**
132 * Detach sub nodes
133 * @returns sub nodes
134 */
135 vector<GUINode*> detachSubNodes();
136
137public:
138
139 /**
140 * Clear sub nodes
141 */
142 void clearSubNodes();
143
144 /**
145 * Replace sub nodes with given XML
146 * @param xml xml
147 * @param resetScrollOffsets reset scroll offsets
148 * @throws tdme::gui::GUIParserException
149 */
150 void replaceSubNodes(const string& xml, bool resetScrollOffsets);
151
152 /**
153 * Add sub nodes with given XML
154 * @param xml xml
155 * @param resetScrollOffsets reset scroll offsets
156 * @throws tdme::gui::GUIParserException
157 */
158 void addSubNodes(const string& xml, bool resetScrollOffsets);
159
160 /**
161 * Add sub node
162 * @param node node
163 * @throws tdme::gui::GUIParserException
164 */
165 void addSubNode(GUINode* node);
166
167 /**
168 * Move children nodes from other parent node into this parent node
169 * @param otherParentNode other parent node
170 */
171 void moveNodes(GUIParentNode* otherParentNode);
172
173 /**
174 * @return overflow x
175 */
177
178 /**
179 * @return overflow y
180 */
182
183 /**
184 * Create over flow
185 * @param overflow over flow
186 * @return over flow
187 * @throws tdme::gui::GUIParserException
188 */
189 static GUIParentNode_Overflow* createOverflow(const string& overflow);
190
191 /**
192 * @return children render offset x
193 */
195
196 /**
197 * Set children render offset x
198 * @param childrenRenderOffSetX children render offset x
199 */
200 void setChildrenRenderOffsetX(float childrenRenderOffSetX);
201
202 /**
203 * @return children render offset y
204 */
206
207 /**
208 * Set children render offset y
209 * @param childrenRenderOffSetY children render offset y
210 */
211 void setChildrenRenderOffsetY(float childrenRenderOffSetY);
212
213 /**
214 * Create requested constraints
215 * @param left left
216 * @param top top
217 * @param width width
218 * @param height height
219 * @param factor factor
220 * @return requested constraints
221 */
222 static GUINode_RequestedConstraints createRequestedConstraints(const string& left, const string& top, const string& width, const string& height, int factor);
223
224 /**
225 * Get child controller nodes
226 * @param childControllerNodes child controller nodes
227 * @param requireConditionsMet require conditions met
228 */
229 void getChildControllerNodes(vector<GUINode*>& childControllerNodes, bool requireConditionsMet = false);
230
231 // overridden methods
232 void dispose() override;
233 void setConditionsMet() override;
234 void render(GUIRenderer* guiRenderer) override;
235 void determineMouseEventNodes(GUIMouseEvent* event, bool floatingNode, unordered_set<string>& eventNodeIds, unordered_set<string>& eventFloatingNodeIds) override;
236
237 /**
238 * Invalidate render caches
239 */
241
242private:
243 /**
244 * Get child controller nodes internal
245 * @param childControllerNodes child controller nodes
246 * @param requireConditionsMet require conditions met
247 */
248 void getChildControllerNodesInternal(vector<GUINode*>& childControllerNodes, bool requireConditionsMet = false);
249
250 /**
251 * Remove sub node
252 * @param node node
253 * @param resetScrollOffsets reset scroll offsets
254 */
255 void removeSubNode(GUINode* node, bool resetScrollOffsets);
256
257 /**
258 * Unset mouse event condition on element nodes
259 */
260 void unsetMouseOver();
261
262};
GUI parser.
Definition: GUIParser.h:39
GUI module class.
Definition: GUI.h:66
GUI element node conditions.
GUI node base class.
Definition: GUINode.h:63
GUINodeConditions hideOn
Definition: GUINode.h:161
GUIColor backgroundImageEffectColorMul
Definition: GUINode.h:156
GUINode_Border border
Definition: GUINode.h:159
friend class GUIParentNode
Definition: GUINode.h:69
GUINode_Scale9Grid backgroundImageScale9Grid
Definition: GUINode.h:155
GUIColor backgroundImageEffectColorAdd
Definition: GUINode.h:157
GUIParentNode * parentNode
Definition: GUINode.h:147
GUINode_Padding padding
Definition: GUINode.h:158
GUIScreenNode * screenNode
Definition: GUINode.h:146
GUINode_RequestedConstraints requestedConstraints
Definition: GUINode.h:150
GUINode_Alignments alignments
Definition: GUINode.h:149
GUINodeConditions showOn
Definition: GUINode.h:160
GUINode_Flow * flow
Definition: GUINode.h:85
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUIParentNode_Overflow * overflowX
Definition: GUIParentNode.h:67
void getChildControllerNodes(vector< GUINode * > &childControllerNodes, bool requireConditionsMet=false)
Get child controller nodes.
void dispose() override
Dispose node.
virtual void computeHorizontalChildrenAlignment()
Compute horizontal children alignment.
void setConditionsMet() override
Set conditions met for this node and its subnodes.
void getChildControllerNodesInternal(vector< GUINode * > &childControllerNodes, bool requireConditionsMet=false)
Get child controller nodes internal.
static GUIParentNode_Overflow * createOverflow(const string &overflow)
Create over flow.
void setChildrenRenderOffsetX(float childrenRenderOffSetX)
Set children render offset x.
GUIParentNode_Overflow * getOverflowX()
void removeSubNode(GUINode *node, bool resetScrollOffsets)
Remove sub node.
vector< GUINode * > vieportSubNodesCache
Definition: GUIParentNode.h:65
void replaceSubNodes(const string &xml, bool resetScrollOffsets)
Replace sub nodes with given XML.
void layout() override
Layout.
void clearSubNodes()
Clear sub nodes.
void unsetMouseOver()
Unset mouse event condition on element nodes.
GUIParentNode_Overflow * getOverflowY()
vector< GUINode * > floatingNodesCache
Definition: GUIParentNode.h:66
void determineMouseEventNodes(GUIMouseEvent *event, bool floatingNode, unordered_set< string > &eventNodeIds, unordered_set< string > &eventFloatingNodeIds) override
Determine mouse event nodes.
void render(GUIRenderer *guiRenderer) override
Render.
GUIParentNode_Overflow * overflowY
Definition: GUIParentNode.h:68
virtual void layoutSubNodes()
Layout sub nodes.
vector< GUINode * > subNodes
Definition: GUIParentNode.h:63
static GUINode_RequestedConstraints createRequestedConstraints(const string &left, const string &top, const string &width, const string &height, int factor)
Create requested constraints.
vector< GUINode * > detachSubNodes()
Detach sub nodes.
void moveNodes(GUIParentNode *otherParentNode)
Move children nodes from other parent node into this parent node.
void setChildrenRenderOffsetY(float childrenRenderOffSetY)
Set children render offset y.
void addSubNode(GUINode *node)
Add sub node.
virtual void computeVerticalChildrenAlignment()
Compute vertical children alignment.
void addSubNodes(const string &xml, bool resetScrollOffsets)
Add sub nodes with given XML.
void invalidateRenderCaches()
Invalidate render caches.
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.