TDME2 1.9.121
GUILayoutNode.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
20
21/**
22 * GUI layout node
23 */
25{
27
28private:
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 * @param alignment alignment
52 * @throws tdme::gui::GUIParserException
53 */
57 const string& id,
64 const string& backgroundImage,
73 );
74
75 // overridden methods
76 const string getNodeType() override;
77 bool isContentNode() override;
78 void layoutSubNodes() override;
79 void setTop(int top) override;
80 void setLeft(int left) override;
81
82public:
83 // overridden methods
84 int getContentWidth() override;
85 int getContentHeight() override;
86
87 /**
88 * Create alignment
89 * @param alignment alignment
90 * @return alignment
91 */
93
94};
GUI parser.
Definition: GUIParser.h:39
const string getNodeType() override
void setTop(int top) override
Set computed top.
static GUILayoutNode_Alignment * createAlignment(const string &alignment)
Create alignment.
void setLeft(int left) override
Set computed left.
GUILayoutNode_Alignment * alignment
Definition: GUILayoutNode.h:29
void layoutSubNodes() override
Layout sub nodes.
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
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.