44GUITableNode::GUITableNode(
54 const string& backgroundImage,
56 const GUIColor& backgroundImageEffectColorMul,
57 const GUIColor& backgroundImageEffectColorAdd,
63 GUIParentNode(screenNode, parentNode, id, flow, overflowX, overflowY, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
80 for (
auto i = 0; i <
subNodes.size(); i++) {
82 if (guiSubNode->conditionsMet ==
false)
continue;
86 auto contentWidth = guiSubNode->getAutoWidth();
87 if (contentWidth > width) {
99 for (
auto i = 0; i <
subNodes.size(); i++) {
101 if (guiSubNode->conditionsMet ==
false)
continue;
105 height += guiSubNode->getAutoHeight();
119 auto nodesHeight = 0;
120 auto finalNodesHeight = 0;
121 for (
auto i = 0; i <
subNodes.size(); i++) {
123 if (guiSubNode->conditionsMet ==
false)
continue;
130 nodesHeight += guiSubNode->computedConstraints.height;
131 finalNodesHeight += guiSubNode->computedConstraints.height;
134 auto verticalStarPixelRest = 0.0f;
135 for (
auto i = 0; i <
subNodes.size(); i++) {
137 if (guiSubNode->conditionsMet ==
false)
continue;
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);
146 guiSubNode->requestedConstraints.height = nodeStarHeightInt;
147 guiSubNode->computedConstraints.height = nodeStarHeightInt;
148 if (guiSubNode->computedConstraints.height < 0) {
149 guiSubNode->computedConstraints.height = 0;
151 finalNodesHeight += guiSubNode->computedConstraints.height;
153 required_dynamic_cast<GUIParentNode*>(guiSubNode)->layoutSubNodes();
158 for (
auto i = 0; i <
subNodes.size(); i++) {
160 if (guiSubNode->conditionsMet ==
false)
continue;
165 for (
auto i = 0; i <
subNodes.size(); i++) {
167 if (guiSubNode->conditionsMet ==
false)
continue;
168 guiSubNode->computedConstraints.alignmentTop =
border.
top +
padding.
top + ((height - finalNodesHeight) / 2);
172 for (
auto i = 0; i <
subNodes.size(); i++) {
174 if (guiSubNode->conditionsMet ==
false)
continue;
175 guiSubNode->computedConstraints.alignmentTop = (height - finalNodesHeight);
182 for (
auto i = 0; i <
subNodes.size(); i++) {
184 guiSubNode->computeContentAlignment();
195 for (
auto i = 0; i <
subNodes.size(); i++) {
197 if (guiSubNode->conditionsMet ==
false)
continue;
198 guiSubNode->setTop(top);
202 top += guiSubNode->computedConstraints.height;
211 for (
auto i = 0; i <
subNodes.size(); i++) {
213 if (guiSubNode->conditionsMet ==
false)
continue;
214 guiSubNode->setLeft(left);
216 left += guiSubNode->computedConstraints.width;
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();
230 maxWidth = Math::max(maxWidth, guiTableCellNode->getAutoWidth());
233 maxWidth = Math::max(maxWidth, guiTableCellNode->getContentWidth());
241 for (
auto guiTableCellNode: required_dynamic_cast<GUITableRowNode*>(
subNodes.at(y))->subNodes) {
242 if (guiTableCellNode->conditionsMet ==
false)
continue;
243 auto& requestedConstaints = guiTableCellNode->getRequestsConstraints();
248 maxHeight = Math::max(maxHeight, guiTableCellNode->getAutoHeight());
251 maxHeight = Math::max(maxHeight, guiTableCellNode->getContentHeight());
GUI element node conditions.
GUI node horizontal alignment enum.
GUI node vertical alignment enum.
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
GUI node requested constraints requested constraints type enum.
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * STAR
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * PIXEL
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * AUTO
virtual void setLeft(int left)
Set computed left.
GUINode_ComputedConstraints computedConstraints
virtual void setTop(int top)
Set computed top.
GUINode_RequestedConstraints requestedConstraints
GUINode_Alignments alignments
GUI parent node overflow enum.
GUI parent node base class thats supporting child nodes.
virtual void computeHorizontalChildrenAlignment()
Compute horizontal children alignment.
virtual void layoutSubNodes()
Layout sub nodes.
vector< GUINode * > subNodes
GUI screen node that represents a screen that can be rendered via GUI system.
const string getNodeType() override
int getContentWidth() override
int getContentHeight() override
void setTop(int top) override
Set computed top.
void setLeft(int left) override
Set computed left.
int getTableCellMaxHeight(int y)
int getTableCellMaxWidth(int x)
bool isContentNode() override
void layoutSubNodes() override
Layout sub nodes.
GUINode_AlignmentVertical * vertical
GUI node computed constraints.
GUI node requested constraints entity.
GUINode_RequestedConstraints_RequestedConstraintsType * topType
GUINode_RequestedConstraints_RequestedConstraintsType * leftType
GUI node scale 9 grid entity.