TDME2 1.9.121
GUIInputInternalNode.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>
14
15using std::string;
16
32
33/**
34 * GUI input internal node
35 * @author Andreas Drewke
36 * @version $Id$
37 */
39 : public GUINode
40{
42
43public:
44
45 /**
46 * Create max length
47 * @param s s
48 * @return max length
49 */
50 static int createMaxLength(const string& s);
51
52private:
53 GUIFont* font { nullptr };
58
59protected:
60 /**
61 * Constructor
62 * @param screenNode screen node
63 * @param parentNode parent node
64 * @param id id
65 * @param flow flow
66 * @param alignments alignments
67 * @param requestedConstraints requested constraints
68 * @param backgroundColor background color
69 * @param backgroundImage background image
70 * @param backgroundImageScale9Grid background image scale 9 grid
71 * @param backgroundImageEffectColorMul background image effect color mul
72 * @param backgroundImageEffectColorAdd background image effect color add
73 * @param border border
74 * @param padding padding
75 * @param showOn show on
76 * @param hideOn hide on
77 * @param font font
78 * @param color color
79 * @param colorDisabled color disabled
80 * @param text text
81 * @param maxLength max length
82 */
86 const string& id,
91 const string& backgroundImage,
99 const string& font,
100 const string& color,
101 const string& colorDisabled,
102 const MutableString& text,
103 int maxLength
104 );
105
106 // overridden methods
107 const string getNodeType() override;
108 bool isContentNode() override;
109
110public:
111 // overridden methods
112 int getContentWidth() override;
113 int getContentHeight() override;
114 void dispose() override;
115 void render(GUIRenderer* guiRenderer) override;
116
117 /**
118 * @return font
119 */
120 inline GUIFont* getFont() {
121 return font;
122 }
123
124 /**
125 * @return text
126 */
128 return text;
129 }
130
131 /**
132 * @return max length
133 */
134 inline int getMaxLength() {
135 return maxLength;
136 }
137
138};
GUI parser.
Definition: GUIParser.h:39
static int createMaxLength(const string &s)
Create max length.
void render(GUIRenderer *guiRenderer) override
Render.
GUIInputInternalNode(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 string &colorDisabled, const MutableString &text, int maxLength)
Constructor.
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
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.