TDME2 1.9.121
GUISpaceNode.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
10
11using std::string;
12
18
19GUISpaceNode::GUISpaceNode(
20 GUIScreenNode* screenNode,
21 GUIParentNode* parentNode,
22 const string& id,
23 GUINode_Flow* flow,
24 const GUINode_Alignments& alignments,
25 const GUINode_RequestedConstraints& requestedConstraints,
26 const GUIColor& backgroundColor,
27 const string& backgroundImage,
28 const GUINode_Scale9Grid& backgroundImageScale9Grid,
29 const GUIColor& backgroundImageEffectColorMul,
30 const GUIColor& backgroundImageEffectColorAdd,
31 const GUINode_Border& border,
32 const GUINode_Padding& padding,
33 const GUINodeConditions& showOn,
34 const GUINodeConditions& hideOn
35):
36 GUINode(screenNode, parentNode, id, flow, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
37{
38}
39
41{
42 return "space";
43}
44
46{
47 return false;
48}
49
51{
53}
54
56{
58}
59
60GUINode_RequestedConstraints GUISpaceNode::createRequestedConstraints(const string& left, const string& top, const string& width, const string& height, int factor)
61{
64 constraints.left = getRequestedConstraintsValue(StringTools::trim(left), 0);
66 constraints.top = getRequestedConstraintsValue(StringTools::trim(top), 0);
68 constraints.width = getRequestedConstraintsValue(StringTools::trim(width), 1);
70 constraints.height = getRequestedConstraintsValue(StringTools::trim(height), 1);
71 if (constraints.leftType == GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL) constraints.left*= factor;
72 if (constraints.topType == GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL) constraints.top*= factor;
75 return constraints;
76}
77
79{
81}
82
84{
85 if (shouldRender() == false) return;
86
87 GUINode::render(guiRenderer);
88}
89
GUI element node conditions.
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * PIXEL
GUI node base class.
Definition: GUINode.h:63
static GUINode_RequestedConstraints_RequestedConstraintsType * getRequestedConstraintsType(const string &constraint, GUINode_RequestedConstraints_RequestedConstraintsType *defaultConstraintsType)
Get requested constraints type.
Definition: GUINode.cpp:286
virtual void render(GUIRenderer *guiRenderer)
Render.
Definition: GUINode.cpp:508
GUINode_ComputedConstraints computedConstraints
Definition: GUINode.h:151
bool shouldRender()
Determine if to render.
Definition: GUINode.h:295
virtual void dispose()
Dispose node.
Definition: GUINode.cpp:460
static int getRequestedConstraintsValue(const string &constraint, int defaultConstraintsValue)
Get requested constraints value.
Definition: GUINode.cpp:304
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.
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.
String tools class.
Definition: StringTools.h:20
GUI node border entity.
GUI node padding entity.
GUINode_RequestedConstraints_RequestedConstraintsType * topType
GUINode_RequestedConstraints_RequestedConstraintsType * widthType
GUINode_RequestedConstraints_RequestedConstraintsType * leftType
GUINode_RequestedConstraints_RequestedConstraintsType * heightType
GUI node scale 9 grid entity.