66string GUIElementNode::CONDITION_ALWAYS =
"always";
67string GUIElementNode::CONDITION_ONMOUSEOVER =
"mouseover";
68string GUIElementNode::CONDITION_CLICK =
"click";
69string GUIElementNode::CONDITION_FOCUS =
"focus";
71GUIElementNode::GUIElementNode(
81 const string& backgroundImage,
83 const GUIColor& backgroundImageEffectColorMul,
84 const GUIColor& backgroundImageEffectColorAdd,
95 const string& onInitializeExpression,
96 const string& onMouseClickExpression,
97 const string& onMouseDoubleClickExpression,
98 const string& onMouseOverExpression,
99 const string& onMouseOutExpression,
100 const string& onChangeExpression,
101 const string& parentElementId,
102 const string& options
104 GUILayerNode(screenNode, parentNode, id, flow, overflowX, overflowY, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScaleGrid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn),
105 activeConditions(this)
125 while (t.
hasMoreTokens() ==
true) this->options.push_back(StringTools::toLowerCase(StringTools::trim(t.
nextToken())));
190 if (StringTools::startsWith(expression,
"http://") ==
true || StringTools::startsWith(expression,
"https://") ==
true) {
191 Application::openBrowser(expression);
204 command = StringTools::trim(t2.
nextToken());
209 nodeId = StringTools::trim(t2.
nextToken());
210 subCommand = StringTools::trim(t2.
nextToken());
213 if (subCommand ==
"value") {
215 auto nodeController = nodeElementNode !=
nullptr?nodeElementNode->
getController():
nullptr;
216 if (StringTools::startsWith(
value,
"'") ==
true && StringTools::endsWith(
value,
"'") ==
true) {
219 if (StringTools::endsWith(
value,
".value") ==
true) {
221 auto nodeValueController = nodeValueElementNode !=
nullptr?nodeValueElementNode->
getController():
nullptr;
222 if (nodeController !=
nullptr && nodeValueController !=
nullptr) nodeController->
setValue(nodeValueController->getValue());
224 Console::println(
"GUIElementController::executeExpression(): Unknown value in expression: " +
value);
228 if (subCommand ==
"condition") {
230 if (nodeElementNode !=
nullptr) {
231 if (
value.find(
'?') != string::npos &&
232 value.find(
':') != string::npos &&
238 if (testCondition.empty() ==
true ||
239 setOnTrueCondition.empty() ==
true ||
240 setOnFalseCondition.empty() ==
true) {
241 Console::println(
"GUIElementController::executeExpression(): = ternary operator requires the following format 'node.condition=a?b:c'");
244 if (nodeElementNode !=
nullptr) {
245 if (nodeElementNode->getActiveConditions().has(testCondition) ==
true) {
247 nodeElementNode->getActiveConditions().add(setOnTrueCondition);
249 nodeElementNode->getActiveConditions().removeAll();
250 nodeElementNode->getActiveConditions().add(setOnFalseCondition);
255 nodeElementNode->getActiveConditions().removeAll();
256 nodeElementNode->getActiveConditions().add(
value);
260 if (subCommand ==
"condition-") {
264 if (subCommand ==
"condition+") {
268 if (subCommand ==
"condition!") {
270 if (nodeElementNode !=
nullptr) {
271 if (nodeElementNode->getActiveConditions().has(
value) ==
true) {
274 nodeElementNode->getActiveConditions().add(
value);
278 if (subCommand ==
"condition?") {
283 if (
value.find(
'?') == string::npos ||
284 value.find(
':') == string::npos ||
286 testCondition.empty() ==
true ||
287 setOnTrueCondition.empty() ==
true ||
288 setOnFalseCondition.empty() ==
true) {
289 Console::println(
"GUIElementController::executeExpression(): ?= ternary operator requires the following format 'node.condition?=a?b:c'");
292 if (nodeElementNode !=
nullptr) {
293 if (nodeElementNode->getActiveConditions().has(testCondition) ==
true) {
295 nodeElementNode->getActiveConditions().add(setOnTrueCondition);
297 nodeElementNode->getActiveConditions().remove(setOnTrueCondition);
298 nodeElementNode->getActiveConditions().add(setOnFalseCondition);
303 if (subCommand ==
"maskmaxvalue") {
305 if (imageNode !=
nullptr) {
306 if (StringTools::endsWith(
value,
".value") ==
true) {
308 auto nodeValueController = nodeValueElementNode !=
nullptr?nodeValueElementNode->
getController():
nullptr;
309 if (nodeValueController !=
nullptr) imageNode->setMaskMaxValue(Float::parse(nodeValueController->getValue().getString()));
311 imageNode->setMaskMaxValue(Float::parse(
value));
315 if (StringTools::startsWith(command,
"delay(") ==
true &&
316 StringTools::endsWith(command,
")") ==
true) {
317 int64_t delay = Integer::parse(StringTools::substring(command, command.find(
'(') + 1, command.rfind(
')')));
321 Console::println(
"GUIElementController::executeExpression(): Unknown sub command in expression: " + subCommand);
343 auto optionName = StringTools::trim(t.
nextToken());
344 if (optionName != option)
continue;
364 vector<GUINode*> childControllerNodes;
370 for (
auto childControllerNode: childControllerNodes) {
371 childControllerNode->getController()->handleKeyboardEvent(event);
Application base class, please make sure to allocate application on heap to have correct application ...
const string getNodeType() override
const string & getOnMouseClickExpression()
void executeOnChangeExpression()
Execute on change expression.
const string & getOnInitializeExpression()
const string & getOnMouseDoubleClickExpression()
string onChangeExpression
const string & getOnMouseOverExpression()
GUINodeConditions activeConditions
const string & getParentElementNodeId()
string onInitializeExpression
const string getOptionValue(const string &option)
string onMouseClickExpression
string onMouseDoubleClickExpression
const string & getOnChangeExpression()
bool hasOption(const string &option)
string onMouseOverExpression
string onMouseOutExpression
const string & getValue()
const string & getOnMouseOutExpression()
bool isContentNode() override
static void executeExpression(GUIScreenNode *screenNode, const string &expression)
Execute expression.
void handleKeyboardEvent(GUIKeyboardEvent *event)
Handle keyboard event.
GUINodeConditions & getActiveConditions()
GUI element node conditions.
bool add(const string &condition)
Add a condition.
bool removeAll()
Remove all.
bool remove(const string &condition)
Remove a condition.
GUI node controller base class.
virtual void setValue(const MutableString &value)=0
Set value.
virtual void initialize()=0
Initialize controller after element has been created.
virtual void handleKeyboardEvent(GUIKeyboardEvent *event)=0
Handle keyboard event.
GUI node requested constraints requested constraints type enum.
GUINodeController * controller
GUIScreenNode * screenNode
GUIScreenNode * getScreenNode()
GUINodeController * getController()
GUI parent node overflow enum.
GUI parent node base class thats supporting child nodes.
void getChildControllerNodes(vector< GUINode * > &childControllerNodes, bool requireConditionsMet=false)
Get child controller nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
void addTimedExpression(int64_t time, const string &expression)
Add a timed expression.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
const string & nextToken()
void tokenize(const string &str, const string &delimiters)
Tokenize.
GUI node computed constraints.
GUI node requested constraints entity.
GUI node scale 9 grid entity.