42GUITableRowNode::GUITableRowNode(
52 const string& backgroundImage,
54 const GUIColor& backgroundImageEffectColorMul,
55 const GUIColor& backgroundImageEffectColorAdd,
61 GUIParentNode(screenNode, parentNode, id, flow, overflowX, overflowY, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
78 for (
auto i = 0; i <
subNodes.size(); i++) {
80 if (guiSubNode->conditionsMet ==
false)
continue;
84 width += guiSubNode->getAutoWidth();
94 for (
auto i = 0; i <
subNodes.size(); i++) {
96 if (guiSubNode->conditionsMet ==
false)
continue;
100 auto contentHeight = guiSubNode->getAutoHeight();
101 if (contentHeight > height) {
102 height = contentHeight;
117 for (
auto guiTableNowChild: guiTableNode->
subNodes) {
118 if (
this == guiTableNowChild)
break;
127 auto finalNodesWidth = 0;
128 for (
auto i = 0; i <
subNodes.size(); i++) {
130 if (guiSubNode->conditionsMet ==
false)
continue;
137 nodesWidth += guiSubNode->computedConstraints.width;
138 finalNodesWidth += guiSubNode->computedConstraints.width;
142 auto horizontalStarPixelRest = 0.0f;
143 for (
auto i = 0; i <
subNodes.size(); i++) {
145 if (guiSubNode->conditionsMet ==
false)
continue;
150 guiSubNode->requestedConstraints.width = tableCellMaxWidth;
151 guiSubNode->computedConstraints.width = tableCellMaxWidth;
152 finalNodesWidth += guiSubNode->computedConstraints.width;
156 guiSubNode->requestedConstraints.height = tableCellMaxHeight;
157 guiSubNode->computedConstraints.height = tableCellMaxHeight;
161 required_dynamic_cast<GUIParentNode*>(guiSubNode)->layoutSubNodes();
166 for (
auto i = 0; i <
subNodes.size(); i++) {
168 if (guiSubNode->conditionsMet ==
false)
continue;
173 for (
auto i = 0; i <
subNodes.size(); i++) {
175 if (guiSubNode->conditionsMet ==
false)
continue;
176 guiSubNode->computedConstraints.alignmentLeft = Math::max(0,
border.
left +
padding.
left + ((width - finalNodesWidth) / 2));
180 for (
auto i = 0; i <
subNodes.size(); i++) {
182 if (guiSubNode->conditionsMet ==
false)
continue;
183 guiSubNode->computedConstraints.alignmentLeft = Math::max(0, (width - finalNodesWidth));
190 for (
auto i = 0; i <
subNodes.size(); i++) {
192 guiSubNode->computeContentAlignment();
203 for (
auto i = 0; i <
subNodes.size(); i++) {
205 if (guiSubNode->conditionsMet ==
false)
continue;
206 guiSubNode->setTop(top);
208 top += guiSubNode->computedConstraints.height;
217 for (
auto i = 0; i <
subNodes.size(); i++) {
219 if (guiSubNode->conditionsMet ==
false)
continue;
220 guiSubNode->setLeft(left);
224 left += guiSubNode->computedConstraints.width;
GUI element node conditions.
GUI node horizontal alignment enum.
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * RIGHT
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * CENTER
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * LEFT
GUI node vertical alignment enum.
static STATIC_DLL_IMPEXT GUINode_Flow * FLOATING
GUI node requested constraints requested constraints type enum.
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * TABLECELL
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * STAR
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * NONE
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * PIXEL
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * AUTO
static GUINode_RequestedConstraints_RequestedConstraintsType * getRequestedConstraintsType(const string &constraint, GUINode_RequestedConstraints_RequestedConstraintsType *defaultConstraintsType)
Get requested constraints type.
virtual void setLeft(int left)
Set computed left.
GUIParentNode * parentNode
GUINode_ComputedConstraints computedConstraints
virtual void setTop(int top)
Set computed top.
GUINode_RequestedConstraints requestedConstraints
GUINode_Alignments alignments
static int getRequestedConstraintsValue(const string &constraint, int defaultConstraintsValue)
Get requested constraints value.
GUI parent node overflow enum.
GUI parent node base class thats supporting child nodes.
virtual void layoutSubNodes()
Layout sub nodes.
vector< GUINode * > subNodes
virtual void computeVerticalChildrenAlignment()
Compute vertical children alignment.
GUI screen node that represents a screen that can be rendered via GUI system.
int getTableCellMaxHeight(int y)
int getTableCellMaxWidth(int x)
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.
bool isContentNode() override
static GUINode_RequestedConstraints createRequestedConstraints(const string &left, const string &top, const string &width, const string &height, int factor)
Create requested constraints.
void layoutSubNodes() override
Layout sub nodes.
GUINode_AlignmentHorizontal * horizontal
GUI node computed constraints.
GUI node requested constraints entity.
GUINode_RequestedConstraints_RequestedConstraintsType * topType
GUINode_RequestedConstraints_RequestedConstraintsType * widthType
GUINode_RequestedConstraints_RequestedConstraintsType * leftType
GUINode_RequestedConstraints_RequestedConstraintsType * heightType
GUI node scale 9 grid entity.