TDME2 1.9.121
GUIElementNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <set>
4#include <string>
5
6#include <tdme/tdme.h>
8#include <tdme/gui/fwd-tdme.h>
13
14using std::set;
15using std::string;
16
31
32/**
33 * GUI element node
34 * @author Andreas Drewke
35 * @version $Id$
36 */
38{
40 friend class GUINode;
41 friend class GUIScreenNode;
42
43public:
48
49private:
50 string name;
51 string value;
64 vector<string> options;
65
66protected:
67 /**
68 * @return node type
69 */
70 const string getNodeType() override;
71 bool isContentNode() override;
72
73 /**
74 * Constructor
75 * @param screenNode screen node
76 * @param parentNode parent node
77 * @param id id
78 * @param flow flow
79 * @param overflowX overflow x
80 * @param overflowY overflow y
81 * @param alignments alignments
82 * @param requestedConstraints requested constraints
83 * @param backgroundColor background color
84 * @param backgroundImage background image
85 * @param backgroundImageScale9Grid background image scale 9 grid
86 * @param backgroundImageEffectColorMul background image effect color mul
87 * @param backgroundImageEffectColorAdd background image effect color add
88 * @param border border
89 * @param padding padding
90 * @param showOn show on
91 * @param hideOn hide on
92 * @param name name
93 * @param value value
94 * @param selected selected
95 * @param disabled disabled
96 * @param focusable focusable
97 * @param ignoreEvents ignore events
98 * @param onInitialize on initialize expression
99 * @param onMouseClick on mouse click expression
100 * @param onMouseDoubleClickExpression on mouse double click expression
101 * @param onMouseOver on mouse over expression
102 * @param onMouseOut on mouse out expression
103 * @param onChangeExpression on change expression
104 * @param parentElementId parent element id
105 * @param options options
106 */
110 const string& id,
117 const string& backgroundImage,
121 const GUINode_Border& border,
125 const string& name,
126 const string& value,
127 bool selected,
128 bool disabled,
129 bool focusable,
130 bool ignoreEvents,
131 const string& onInitialize,
132 const string& onMouseClick,
133 const string& onMouseDoubleClickExpression,
134 const string& onMouseOver,
135 const string& onMouseOut,
136 const string& onChangeExpression,
137 const string& parentElementId,
138 const string& options
139 );
140
141public:
142 /**
143 * @return focusable
144 */
145 bool isFocusable();
146
147 /**
148 * @return name
149 */
150 const string& getName();
151
152 /**
153 * @return value
154 */
155 const string& getValue();
156
157 /**
158 * @return is selected
159 */
160 bool isSelected();
161
162 /**
163 * @return is disabled
164 */
165 bool isDisabled();
166
167
168 /**
169 * @return on initialize expression
170 */
171 const string& getOnInitializeExpression();
172
173 /**
174 * @return on mouse click expression
175 */
176 const string& getOnMouseClickExpression();
177
178 /**
179 * @return on mouse double click expression
180 */
181 const string& getOnMouseDoubleClickExpression();
182
183 /**
184 * @return on mouse over expression
185 */
186 const string& getOnMouseOverExpression();
187
188 /**
189 * @return on mouse out expression
190 */
191 const string& getOnMouseOutExpression();
192
193 /**
194 * @return on change expression
195 */
196 const string& getOnChangeExpression();
197
198 /**
199 * Execute on change expression
200 */
202
203 /**
204 * Execute expression
205 * @param screenNode screen node
206 * @param expression expression
207 */
208 static void executeExpression(GUIScreenNode* screenNode, const string& expression);
209
210 /**
211 * @return parent element id
212 */
213 const string& getParentElementNodeId();
214
215 /**
216 * @returns if option is among given options
217 */
218 bool hasOption(const string& option);
219
220 /**
221 * @returns an option value, like <... options="type=float,min=0.0,max=1.0,step=0.1" /> or empty string if option does not exist
222 */
223 const string getOptionValue(const string& option);
224
225 /**
226 * @return active conditions
227 */
229
230 /**
231 * Handle keyboard event
232 * @param event keyboard event
233 */
235
236};
GUI parser.
Definition: GUIParser.h:39
static STATIC_DLL_IMPEXT string CONDITION_ALWAYS
const string getNodeType() override
const string & getOnMouseClickExpression()
void executeOnChangeExpression()
Execute on change expression.
const string & getOnInitializeExpression()
const string & getOnMouseDoubleClickExpression()
GUINodeConditions activeConditions
static STATIC_DLL_IMPEXT string CONDITION_FOCUS
static STATIC_DLL_IMPEXT string CONDITION_ONMOUSEOVER
const string getOptionValue(const string &option)
bool hasOption(const string &option)
static STATIC_DLL_IMPEXT string CONDITION_CLICK
static void executeExpression(GUIScreenNode *screenNode, const string &expression)
Execute expression.
void handleKeyboardEvent(GUIKeyboardEvent *event)
Handle keyboard event.
GUINodeConditions & getActiveConditions()
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
GUIParentNode_Overflow * overflowX
Definition: GUIParentNode.h:67
GUIParentNode_Overflow * overflowY
Definition: GUIParentNode.h:68
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11