TDME2 1.9.121
GUITableRowNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
4#include <tdme/gui/fwd-tdme.h>
8
21
22/**
23 * GUI layout node
24 */
26{
28private:
29 int tableRowNodeIdx { -1 };
30
31protected:
32 /**
33 * Constructor
34 * @param screenNode screen node
35 * @param parentNode parent node
36 * @param id id
37 * @param flow flow
38 * @param overflowX overflow x
39 * @param overflowY overflow y
40 * @param alignments alignments
41 * @param requestedConstraints requested constraints
42 * @param backgroundColor background color
43 * @param backgroundImage background image
44 * @param backgroundImageScale9Grid background image scale 9 grid
45 * @param backgroundImageEffectColorMul background image effect color mul
46 * @param backgroundImageEffectColorAdd background image effect color add
47 * @param border border
48 * @param padding padding
49 * @param showOn show on
50 * @param hideOn hide on
51 * @throws tdme::gui::GUIParserException
52 */
56 const string& id,
63 const string& backgroundImage,
71 );
72
73 // overridden methods
74 const string getNodeType() override;
75 bool isContentNode() override;
76 void layoutSubNodes() override;
77 void setTop(int top) override;
78 void setLeft(int left) override;
79
80public:
81 // overridden methods
82 int getContentWidth() override;
83 int getContentHeight() override;
84
85 /**
86 * Create requested constraints
87 * @param left left
88 * @param top top
89 * @param width width
90 * @param height height
91 * @param factor factor
92 * @return requested constraints
93 */
94 static GUINode_RequestedConstraints createRequestedConstraints(const string& left, const string& top, const string& width, const string& height, int factor);
95
96};
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.
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.
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.