TDME2 1.9.121
GUITableNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
4#include <tdme/gui/fwd-tdme.h>
7
19
20/**
21 * GUI layout node
22 */
24{
26 friend class GUITableRowNode;
27
28protected:
29 /**
30 * Constructor
31 * @param screenNode screen node
32 * @param parentNode parent node
33 * @param id id
34 * @param flow flow
35 * @param overflowX overflow x
36 * @param overflowY overflow y
37 * @param alignments alignments
38 * @param requestedConstraints requested constraints
39 * @param backgroundColor background color
40 * @param backgroundImage background image
41 * @param backgroundImageScale9Grid background image scale 9 grid
42 * @param backgroundImageEffectColorMul background image effect color mul
43 * @param backgroundImageEffectColorAdd background image effect color add
44 * @param border border
45 * @param padding padding
46 * @param showOn show on
47 * @param hideOn hide on
48 * @param alignment alignment
49 * @throws tdme::gui::GUIParserException
50 */
54 const string& id,
61 const string& backgroundImage,
69 );
70
71 // overridden methods
72 const string getNodeType() override;
73 bool isContentNode() override;
74 void layoutSubNodes() override;
75 void setTop(int top) override;
76 void setLeft(int left) override;
77
78 /**
79 * @return table cell max width @ x position
80 */
81 int getTableCellMaxWidth(int x);
82
83 /**
84 * @return table cell max height @ y position
85 */
86 int getTableCellMaxHeight(int y);
87
88public:
89 // overridden methods
90 int getContentWidth() override;
91 int getContentHeight() override;
92
93};
GUI parser.
Definition: GUIParser.h:39
GUI element node conditions.
GUINodeConditions hideOn
Definition: GUINode.h:161
GUIColor backgroundImageEffectColorMul
Definition: GUINode.h:156
GUINode_Border border
Definition: GUINode.h:159
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
GUIParentNode_Overflow * overflowY
Definition: GUIParentNode.h:68
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.
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.