TDME2 1.9.121
GUITextNode.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
14#include <tdme/gui/GUI.h>
17
18using std::string;
19using std::vector;
20
29using tdme::gui::GUI;
32
33GUITextNode::GUITextNode(
34 GUIScreenNode* screenNode,
35 GUIParentNode* parentNode,
36 const string& id,
37 GUINode_Flow* flow,
38 const GUINode_Alignments& alignments,
39 const GUINode_RequestedConstraints& requestedConstraints,
40 const GUIColor& backgroundColor,
41 const string& backgroundImage,
42 const GUINode_Scale9Grid& backgroundImageScale9Grid,
43 const GUIColor& backgroundImageEffectColorMul,
44 const GUIColor& backgroundImageEffectColorAdd,
45 const GUINode_Border& border,
46 const GUINode_Padding& padding,
47 const GUINodeConditions& showOn,
48 const GUINodeConditions& hideOn,
49 const string& font,
50 const string& color,
51 const MutableString& text
52):
53 GUINode(screenNode, parentNode, id, flow, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
54{
55 this->font = font.empty() == true?nullptr:GUI::getFont(screenNode->getApplicationRootPathName(), font);
56 this->color = color.empty() == true || color.length() == 0?GUIColor():GUIColor(color);
57 this->text.set(text);
58 if (this->font != nullptr) this->font->initialize();
59}
60
62{
63 return "text";
64}
65
67{
68 return true;
69}
70
72{
73 return font != nullptr?font->getTextWidth(text) + border.left + border.right + padding.left + padding.right:0;
74}
75
77{
78 return font != nullptr?font->getLineHeight() + border.top + border.bottom + padding.top + padding.bottom:0;
79}
80
82 this->text = text;
84}
85
87{
88 if (font != nullptr) font->dispose();
90}
91
93{
94 if (shouldRender() == false) return;
95
96 GUINode::render(guiRenderer);
97 if (font != nullptr) {
99 guiRenderer,
102 text,
103 0,
104 0,
105 color
106 );
107 }
108}
109
GUI module class.
Definition: GUI.h:66
static GUIFont * getFont(const string &applicationRootPath, const string &fileName)
Get font.
Definition: GUI.cpp:108
GUI element node conditions.
GUI node base class.
Definition: GUINode.h:63
GUINode_Border border
Definition: GUINode.h:159
virtual void render(GUIRenderer *guiRenderer)
Render.
Definition: GUINode.cpp:508
GUINode_ComputedConstraints computedConstraints
Definition: GUINode.h:151
GUINode_Padding padding
Definition: GUINode.h:158
GUIScreenNode * screenNode
Definition: GUINode.h:146
bool shouldRender()
Determine if to render.
Definition: GUINode.h:295
virtual void dispose()
Dispose node.
Definition: GUINode.cpp:460
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
void invalidateLayout(GUINode *node)
Mark a node to be invalidated regarding layout.
const string & getApplicationRootPathName()
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
void drawString(GUIRenderer *guiRenderer, int x, int y, const MutableString &text, int offset, int length, const GUIColor &color, int selectionStartIndex=-1, int selectionEndIndex=-1, const GUIColor &backgroundColor=GUIColor::GUICOLOR_TRANSPARENT)
Draw string.
Definition: GUIFont.cpp:294
int getTextWidth(const MutableString &text)
Text width.
Definition: GUIFont.cpp:204
Mutable string class.
Definition: MutableString.h:16
MutableString & set(char c)
Set character.
std::exception Exception
Exception base class.
Definition: Exception.h:19
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.