TDME2 1.9.121
GUITextNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
7#include <tdme/gui/fwd-tdme.h>
15
16using std::string;
17using std::vector;
18
34
35/**
36 * GUI text node
37 * @author Andreas Drewke
38 * @version $Id$
39 */
41 : public GUINode
42{
44
45private:
46 GUIFont* font { nullptr };
49
50protected:
51 /**
52 * Constructor
53 * @param screenNode screen node
54 * @param parentNode parent node
55 * @param id id
56 * @param flow flow
57 * @param alignments alignments
58 * @param requestedConstraints requested constraints
59 * @param backgroundColor background color
60 * @param backgroundImage background image
61 * @param backgroundImageScale9Grid background image scale 9 grid
62 * @param backgroundImageEffectColorMul background image effect color mul
63 * @param backgroundImageEffectColorAdd background image effect color add
64 * @param border border
65 * @param padding padding
66 * @param showOn show on
67 * @param hideOn hide on
68 * @param font font
69 * @param color color
70 * @param text text
71 * @throws tdme::gui::GUIParserException
72 */
76 const string& id,
81 const string& backgroundImage,
89 const string& font,
90 const string& color,
91 const MutableString& text
92 );
93
94 // overridden methods
95 const string getNodeType() override;
96 bool isContentNode() override;
97
98public:
99 // overridden methods
100 int getContentWidth() override;
101 int getContentHeight() override;
102
103 /**
104 * @return text
105 */
106 inline const MutableString& getText() const {
107 return text;
108 }
109
110 /**
111 * Set text
112 * @param text text
113 */
114 void setText(const MutableString& text);
115
116 // overridden methods
117 void dispose() override;
118 void render(GUIRenderer* guiRenderer) override;
119};
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
GUITextNode(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, const string &font, const string &color, const MutableString &text)
Constructor.
Definition: GUITextNode.cpp:33
const MutableString & getText() const
Definition: GUITextNode.h:106
const string getNodeType() override
Definition: GUITextNode.cpp:61
void dispose() override
Dispose node.
Definition: GUITextNode.cpp:86
void setText(const MutableString &text)
Set text.
Definition: GUITextNode.cpp:81
void render(GUIRenderer *guiRenderer) override
Render.
Definition: GUITextNode.cpp:92
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
Definition: GUIFont.h:48
Mutable string class.
Definition: MutableString.h:16
std::exception Exception
Exception base class.
Definition: Exception.h:19
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.