TDME2 1.9.121
GUILayerNode.cpp
Go to the documentation of this file.
2
3#include <set>
4#include <string>
5
6#include <tdme/tdme.h>
19#include <tdme/gui/GUI.h>
20
21using std::set;
22using std::to_string;
23
25
37using tdme::gui::GUI;
38
39GUILayerNode::GUILayerNode(
40 GUIScreenNode* screenNode,
41 GUIParentNode* parentNode,
42 const string& id,
43 GUINode_Flow* flow,
44 GUIParentNode_Overflow* overflowX,
45 GUIParentNode_Overflow* overflowY,
46 const GUINode_Alignments& alignments,
47 const GUINode_RequestedConstraints& requestedConstraints,
48 const GUIColor& backgroundColor,
49 const string& backgroundImage,
50 const GUINode_Scale9Grid& backgroundImageScaleGrid,
51 const GUIColor& backgroundImageEffectColorMul,
52 const GUIColor& backgroundImageEffectColorAdd,
53 const GUINode_Border& border,
54 const GUINode_Padding& padding,
55 const GUINodeConditions& showOn,
56 const GUINodeConditions& hideOn
57 ) :
58 GUIParentNode(screenNode, parentNode, id, flow, overflowX, overflowY, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScaleGrid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
59{
60}
61
63{
64 return "element";
65}
66
68{
69 return false;
70}
71
73{
74 auto width = 0;
75 for (auto i = 0; i < subNodes.size(); i++) {
76 auto guiSubNode = subNodes[i];
77 if (guiSubNode->conditionsMet == false) continue;
78 auto contentWidth = guiSubNode->getAutoWidth();
79 if (contentWidth > width) {
80 width = contentWidth;
81 }
82 }
83 width += border.left + border.right;
84 width += padding.left + padding.right;
85 return width;
86}
87
89{
90 auto height = 0;
91 for (auto i = 0; i < subNodes.size(); i++) {
92 auto guiSubNode = subNodes[i];
93 if (guiSubNode->conditionsMet == false) continue;
94 auto contentHeight = guiSubNode->getAutoHeight();
95 if (contentHeight > height) {
96 height = contentHeight;
97 }
98 }
99 height += border.top + border.bottom;
100 height += padding.top + padding.bottom;
101 return height;
102}
103
105{
109 for (auto i = 0; i < subNodes.size(); i++) {
110 auto guiSubNode = subNodes[i];
111 if (guiSubNode->conditionsMet == false) continue;
112 guiSubNode->setTop(top);
113 }
114}
115
117{
121 for (auto i = 0; i < subNodes.size(); i++) {
122 auto guiSubNode = subNodes[i];
123 if (guiSubNode->conditionsMet == false) continue;
124 guiSubNode->setLeft(left);
125 }
126}
127
129{
130 if (conditionsMet == false) return;
134 for (auto i = 0; i < subNodes.size(); i++) {
135 auto guiSubNode = subNodes[i];
136 if (guiSubNode->conditionsMet == false) continue;
137 auto doLayoutSubNodes = false;
138 if (guiSubNode->requestedConstraints.heightType == GUINode_RequestedConstraints_RequestedConstraintsType::STAR) {
139 guiSubNode->computedConstraints.height = height;
140 doLayoutSubNodes = true;
141 } else
142 if (guiSubNode->requestedConstraints.widthType == GUINode_RequestedConstraints_RequestedConstraintsType::STAR) {
143 guiSubNode->computedConstraints.width = width;
144 doLayoutSubNodes = true;
145 }
146 if (dynamic_cast<GUIParentNode*>(guiSubNode) != nullptr && doLayoutSubNodes == true) {
147 (required_dynamic_cast<GUIParentNode*>(guiSubNode))->layoutSubNodes();
148 }
149 }
154}
155
157{
158 if (conditionsMet == false) return;
161 for (auto i = 0; i < subNodes.size(); i++) {
162 auto guiSubNode = subNodes[i];
163 if (guiSubNode->conditionsMet == false) continue;
164 if (overflowY == GUIParentNode_Overflow::DOWNSIZE_CHILDREN && guiSubNode->requestedConstraints.heightType == GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL && guiSubNode->requestedConstraints.height > subNodesHeight) {
165 guiSubNode->requestedConstraints.height = subNodesHeight;
166 }
167 }
168 }
171 for (auto i = 0; i < subNodes.size(); i++) {
172 auto guiSubNode = subNodes[i];
173 if (guiSubNode->conditionsMet == false) continue;
174 if (overflowY == GUIParentNode_Overflow::DOWNSIZE_CHILDREN && guiSubNode->requestedConstraints.widthType == GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL && guiSubNode->requestedConstraints.width > subNodesWidth) {
175 guiSubNode->requestedConstraints.width = subNodesWidth;
176 }
177 }
178 }
180}
GUI module class.
Definition: GUI.h:66
const string getNodeType() override
void setTop(int top) override
Set computed top.
void layout() override
Layout.
void setLeft(int left) override
Set computed left.
void layoutSubNodes() override
Layout sub nodes.
GUI element node conditions.
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * STAR
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * PIXEL
GUI node base class.
Definition: GUINode.h:63
GUINode_Border border
Definition: GUINode.h:159
virtual void setLeft(int left)
Set computed left.
Definition: GUINode.cpp:177
GUINode_ComputedConstraints computedConstraints
Definition: GUINode.h:151
GUINode_Padding padding
Definition: GUINode.h:158
virtual void setTop(int top)
Set computed top.
Definition: GUINode.cpp:183
GUINode_RequestedConstraints requestedConstraints
Definition: GUINode.h:150
static STATIC_DLL_IMPEXT GUIParentNode_Overflow * DOWNSIZE_CHILDREN
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
virtual void computeHorizontalChildrenAlignment()
Compute horizontal children alignment.
void layout() override
Layout.
GUIParentNode_Overflow * overflowY
Definition: GUIParentNode.h:68
virtual void layoutSubNodes()
Layout sub nodes.
vector< GUINode * > subNodes
Definition: GUIParentNode.h:63
virtual void computeVerticalChildrenAlignment()
Compute vertical children alignment.
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.
GUINode_RequestedConstraints_RequestedConstraintsType * topType
GUINode_RequestedConstraints_RequestedConstraintsType * widthType
GUINode_RequestedConstraints_RequestedConstraintsType * leftType
GUINode_RequestedConstraints_RequestedConstraintsType * heightType
GUI node scale 9 grid entity.