TDME2 1.9.121
GUITableNode.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
19#include <tdme/gui/GUI.h>
20#include <tdme/math/Math.h>
22
24
40using tdme::gui::GUI;
43
44GUITableNode::GUITableNode(
45 GUIScreenNode* screenNode,
46 GUIParentNode* parentNode,
47 const string& id,
48 GUINode_Flow* flow,
49 GUIParentNode_Overflow* overflowX,
50 GUIParentNode_Overflow* overflowY,
51 const GUINode_Alignments& alignments,
52 const GUINode_RequestedConstraints& requestedConstraints,
53 const GUIColor& backgroundColor,
54 const string& backgroundImage,
55 const GUINode_Scale9Grid& backgroundImageScale9Grid,
56 const GUIColor& backgroundImageEffectColorMul,
57 const GUIColor& backgroundImageEffectColorAdd,
58 const GUINode_Border& border,
59 const GUINode_Padding& padding,
60 const GUINodeConditions& showOn,
61 const GUINodeConditions& hideOn
62):
63 GUIParentNode(screenNode, parentNode, id, flow, overflowX, overflowY, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
64{
65}
66
68{
69 return "table";
70}
71
73{
74 return false;
75}
76
78{
79 auto width = 0;
80 for (auto i = 0; i < subNodes.size(); i++) {
81 auto guiSubNode = subNodes[i];
82 if (guiSubNode->conditionsMet == false) continue;
83 if (guiSubNode->flow == GUINode_Flow::FLOATING) {
84 continue;
85 }
86 auto contentWidth = guiSubNode->getAutoWidth();
87 if (contentWidth > width) {
88 width = contentWidth;
89 }
90 }
91 width += border.left + border.right;
92 width += padding.left + padding.right;
93 return width;
94}
95
97{
98 auto height = 0;
99 for (auto i = 0; i < subNodes.size(); i++) {
100 auto guiSubNode = subNodes[i];
101 if (guiSubNode->conditionsMet == false) continue;
102 if (guiSubNode->flow == GUINode_Flow::FLOATING) {
103 continue;
104 }
105 height += guiSubNode->getAutoHeight();
106 }
107 height += border.top + border.bottom;
108 height += padding.top + padding.bottom;
109 return height;
110}
111
113{
115 if (conditionsMet == false) return;
116 {
117 auto starCount = 0;
119 auto nodesHeight = 0;
120 auto finalNodesHeight = 0;
121 for (auto i = 0; i < subNodes.size(); i++) {
122 auto guiSubNode = subNodes[i];
123 if (guiSubNode->conditionsMet == false) continue;
124 if (guiSubNode->flow == GUINode_Flow::FLOATING) {
125 continue;
126 }
127 if (guiSubNode->requestedConstraints.heightType == GUINode_RequestedConstraints_RequestedConstraintsType::STAR) {
128 starCount++;
129 } else {
130 nodesHeight += guiSubNode->computedConstraints.height;
131 finalNodesHeight += guiSubNode->computedConstraints.height;
132 }
133 }
134 auto verticalStarPixelRest = 0.0f;
135 for (auto i = 0; i < subNodes.size(); i++) {
136 auto guiSubNode = subNodes[i];
137 if (guiSubNode->conditionsMet == false) continue;
138 if (guiSubNode->requestedConstraints.heightType == GUINode_RequestedConstraints_RequestedConstraintsType::STAR) {
139 auto nodeStarHeight = (static_cast<float>(height) - static_cast<float>(nodesHeight)) / static_cast<float>(starCount);
140 auto nodeStarHeightInt = static_cast<int>(nodeStarHeight);
141 verticalStarPixelRest += nodeStarHeight - nodeStarHeightInt;
142 if (static_cast<int>(verticalStarPixelRest) > 0) {
143 nodeStarHeightInt += static_cast<int>(verticalStarPixelRest);
144 verticalStarPixelRest -= static_cast<int>(verticalStarPixelRest);
145 }
146 guiSubNode->requestedConstraints.height = nodeStarHeightInt;
147 guiSubNode->computedConstraints.height = nodeStarHeightInt;
148 if (guiSubNode->computedConstraints.height < 0) {
149 guiSubNode->computedConstraints.height = 0;
150 }
151 finalNodesHeight += guiSubNode->computedConstraints.height;
152 if (dynamic_cast<GUIParentNode*>(guiSubNode) != nullptr) {
153 required_dynamic_cast<GUIParentNode*>(guiSubNode)->layoutSubNodes();
154 }
155 }
156 }
158 for (auto i = 0; i < subNodes.size(); i++) {
159 auto guiSubNode = subNodes[i];
160 if (guiSubNode->conditionsMet == false) continue;
161 guiSubNode->computedConstraints.alignmentTop = border.top + padding.top;
162 }
163 } else
165 for (auto i = 0; i < subNodes.size(); i++) {
166 auto guiSubNode = subNodes[i];
167 if (guiSubNode->conditionsMet == false) continue;
168 guiSubNode->computedConstraints.alignmentTop = border.top + padding.top + ((height - finalNodesHeight) / 2);
169 }
170 } else
172 for (auto i = 0; i < subNodes.size(); i++) {
173 auto guiSubNode = subNodes[i];
174 if (guiSubNode->conditionsMet == false) continue;
175 guiSubNode->computedConstraints.alignmentTop = (height - finalNodesHeight); // TODO: take bottom padding into account
176 }
177 }
178
180 }
181
182 for (auto i = 0; i < subNodes.size(); i++) {
183 auto guiSubNode = subNodes[i];
184 guiSubNode->computeContentAlignment();
185 }
188}
189
191{
195 for (auto i = 0; i < subNodes.size(); i++) {
196 auto guiSubNode = subNodes[i];
197 if (guiSubNode->conditionsMet == false) continue;
198 guiSubNode->setTop(top);
199 if (guiSubNode->flow == GUINode_Flow::FLOATING) {
200 continue;
201 }
202 top += guiSubNode->computedConstraints.height;
203 }
204}
205
207{
211 for (auto i = 0; i < subNodes.size(); i++) {
212 auto guiSubNode = subNodes[i];
213 if (guiSubNode->conditionsMet == false) continue;
214 guiSubNode->setLeft(left);
215 continue;
216 left += guiSubNode->computedConstraints.width;
217 }
218}
219
221 auto maxWidth = -1;
222 for (auto guiTableRowNode: subNodes) {
223 auto guiTableCellNode = required_dynamic_cast<GUITableCellNode*>((required_dynamic_cast<GUITableRowNode*>(guiTableRowNode))->subNodes.at(x));
224 if (guiTableCellNode->conditionsMet == false) continue;
225 auto& requestedConstaints = guiTableCellNode->getRequestsConstraints();
226 if (requestedConstaints.widthType == GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL) {
227 maxWidth = Math::max(maxWidth, computedConstraints.width);
228 } else
229 if (requestedConstaints.widthType == GUINode_RequestedConstraints_RequestedConstraintsType::AUTO) {
230 maxWidth = Math::max(maxWidth, guiTableCellNode->getAutoWidth());
231 } else {
232 // TODO: percent, star
233 maxWidth = Math::max(maxWidth, guiTableCellNode->getContentWidth());
234 }
235 }
236 return maxWidth;
237}
238
240 auto maxHeight = -1;
241 for (auto guiTableCellNode: required_dynamic_cast<GUITableRowNode*>(subNodes.at(y))->subNodes) {
242 if (guiTableCellNode->conditionsMet == false) continue;
243 auto& requestedConstaints = guiTableCellNode->getRequestsConstraints();
244 if (requestedConstaints.heightType == GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL) {
245 maxHeight = Math::max(maxHeight, computedConstraints.height);
246 } else
247 if (requestedConstaints.heightType == GUINode_RequestedConstraints_RequestedConstraintsType::AUTO) {
248 maxHeight = Math::max(maxHeight, guiTableCellNode->getAutoHeight());
249 } else {
250 // TODO: percent, star
251 maxHeight = Math::max(maxHeight, guiTableCellNode->getContentHeight());
252 }
253 }
254 return maxHeight;
255}
GUI module class.
Definition: GUI.h:66
GUI element node conditions.
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * BOTTOM
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * CENTER
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * TOP
static STATIC_DLL_IMPEXT GUINode_Flow * FLOATING
Definition: GUINode_Flow.h:31
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * STAR
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * PIXEL
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * AUTO
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
GUINode_Alignments alignments
Definition: GUINode.h:149
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
virtual void computeHorizontalChildrenAlignment()
Compute horizontal children alignment.
virtual void layoutSubNodes()
Layout sub nodes.
vector< GUINode * > subNodes
Definition: GUIParentNode.h:63
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
const string getNodeType() override
void setTop(int top) override
Set computed top.
void setLeft(int left) override
Set computed left.
void layoutSubNodes() override
Layout sub nodes.
Standard math functions.
Definition: Math.h:21
String tools class.
Definition: StringTools.h:20
GUINode_AlignmentVertical * vertical
GUI node border entity.
GUI node padding entity.
GUINode_RequestedConstraints_RequestedConstraintsType * topType
GUINode_RequestedConstraints_RequestedConstraintsType * leftType
GUI node scale 9 grid entity.