TDME2 1.9.121
GUILayerNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <set>
4#include <string>
5
6#include <tdme/tdme.h>
8#include <tdme/gui/fwd-tdme.h>
15
16using std::set;
17using std::string;
18
30
31/**
32 * GUI layer node
33 * @author Andreas Drewke
34 * @version $Id$
35 */
37{
39 friend class GUINode;
40 friend class GUIScreenNode;
41
42protected:
43 /**
44 * @return node type
45 */
46 const string getNodeType() override;
47 bool isContentNode() override;
48
49 /**
50 * Set computed top
51 * @param top top
52 */
53 void setTop(int top) override;
54
55 /**
56 * Set computed left
57 * @param left left
58 */
59 void setLeft(int left) override;
60 void layoutSubNodes() override;
61 void layout() override;
62
63 /**
64 * Constructor
65 * @param screenNode screen node
66 * @param parentNode parent node
67 * @param id id
68 * @param flow flow
69 * @param overflowX overflow x
70 * @param overflowY overflow y
71 * @param alignments alignments
72 * @param requestedConstraints requested constraints
73 * @param backgroundColor background color
74 * @param backgroundImage background image
75 * @param backgroundImageScale9Grid background image scale 9 grid
76 * @param backgroundImageEffectColorMul background image effect color mul
77 * @param backgroundImageEffectColorAdd background image effect color add
78 * @param border border
79 * @param padding padding
80 * @param showOn show on
81 * @param hideOn hide on
82 */
86 const string& id,
93 const string& backgroundImage,
101 );
102
103public:
104 int getContentWidth() override;
105 int getContentHeight() override;
106
107};
GUI parser.
Definition: GUIParser.h:39
const string getNodeType() override
void setTop(int top) override
Set computed top.
void layout() override
Layout.
void setLeft(int left) override
Set computed left.
void layoutSubNodes() override
Layout sub nodes.
GUI element node conditions.
GUI node base class.
Definition: GUINode.h:63
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.