TDME2 1.9.121
GUISpaceNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
6#include <tdme/gui/fwd-tdme.h>
11
12using std::string;
13
26
27/**
28 * GUI space node
29 * @author Andreas Drewke
30 * @version $Id$
31 */
33 : public GUINode
34{
36
37protected:
38 /**
39 * Constructor
40 * @param screenNode screen node
41 * @param parentNode parent node
42 * @param id id
43 * @param flow flow
44 * @param alignments alignments
45 * @param requestedConstraints requested constraints
46 * @param backgroundColor background color
47 * @param backgroundImage background image
48 * @param backgroundImageScale9Grid background image scale 9 grid
49 * @param backgroundImageEffectColorMul background image effect color mul
50 * @param backgroundImageEffectColorAdd background image effect color add
51 * @param border border
52 * @param padding padding
53 * @param showOn show on
54 * @param hideOn hide on
55 */
59 const string& id,
64 const string& backgroundImage,
72 );
73
74 // overridden methods
75 const string getNodeType() override;
76 bool isContentNode() override;
77
78public:
79 // overridden methods
80 int getContentWidth() override;
81 int getContentHeight() override;
82
83 /**
84 * Create requested constraints
85 * @param left left
86 * @param top top
87 * @param width width
88 * @param height height
89 * @param factor factor
90 * @return requested constraints
91 */
92 static GUINode_RequestedConstraints createRequestedConstraints(const string& left, const string& top, const string& width, const string& height, int factor);
93
94 // overridden methods
95 void dispose() override;
96 void render(GUIRenderer* guiRenderer) override;
97
98};
GUI parser.
Definition: GUIParser.h:39
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
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
const string getNodeType() override
void dispose() override
Dispose node.
GUISpaceNode(GUIScreenNode *screenNode, GUIParentNode *parentNode, const string &id, GUINode_Flow *flow, const GUINode_Alignments &alignments, const GUINode_RequestedConstraints &requestedConstraints, const GUIColor &backgroundColor, const string &backgroundImage, const GUINode_Scale9Grid &backgroundImageScale9Grid, const GUIColor &backgroundImageEffectColorMul, const GUIColor &backgroundImageEffectColorAdd, const GUINode_Border &border, const GUINode_Padding &padding, const GUINodeConditions &showOn, const GUINodeConditions &hideOn)
Constructor.
void render(GUIRenderer *guiRenderer) override
Render.
static GUINode_RequestedConstraints createRequestedConstraints(const string &left, const string &top, const string &width, const string &height, int factor)
Create requested constraints.
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.