TDME2 1.9.121
GUIParentNode.cpp
Go to the documentation of this file.
2
3#include <algorithm>
4#include <string>
5#include <unordered_set>
6#include <vector>
7
8#include <tdme/tdme.h>
26#include <tdme/gui/GUI.h>
27#include <tdme/gui/GUIParser.h>
29#include <tdme/math/Math.h>
31
32using std::remove;
33using std::string;
34using std::to_string;
35using std::unordered_set;
36using std::vector;
37
56using tdme::gui::GUI;
61
62GUIParentNode::GUIParentNode(
63 GUIScreenNode* screenNode,
64 GUIParentNode* parentNode,
65 const string& id,
66 GUINode_Flow* flow,
67 GUIParentNode_Overflow* overflowX,
68 GUIParentNode_Overflow* overflowY,
69 const GUINode_Alignments& alignments,
70 const GUINode_RequestedConstraints& requestedConstraints,
71 const GUIColor& backgroundColor,
72 const string& backgroundImage,
73 const GUINode_Scale9Grid& backgroundImageScale9Grid,
74 const GUIColor& backgroundImageEffectColorMul,
75 const GUIColor& backgroundImageEffectColorAdd,
76 const GUINode_Border& border,
77 const GUINode_Padding& padding,
78 const GUINodeConditions& showOn,
79 const GUINodeConditions& hideOn
80 ):
81 GUINode(screenNode, parentNode, id, flow, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
82{
83 this->overflowX = overflowX;
84 this->overflowY = overflowY;
85 this->childrenRenderOffsetX = 0.0f;
86 this->childrenRenderOffsetY = 0.0f;
87 this->computeViewportCache = true;
88}
89
91{
92 //
93 auto detachedSubNodes = subNodes;
94 for (auto subNode: detachedSubNodes) {
95 subNode->parentNode = nullptr;
96 }
97
98 //
99 auto parentControllerNode = controller != nullptr?this:getParentControllerNode();
100
103 subNodes.clear();
104
105 {
106 auto _parentControllerNode = parentControllerNode;
107 while (_parentControllerNode != nullptr) {
108 _parentControllerNode->getController()->onSubTreeChange();
109 _parentControllerNode = _parentControllerNode->getParentControllerNode();
110 }
111 }
112
114
116 floatingNodesCache.clear();
118
119 {
120 auto _parentControllerNode = parentControllerNode;
121 while (_parentControllerNode != nullptr) {
122 _parentControllerNode->getController()->onSubTreeChange();
123 _parentControllerNode = _parentControllerNode->getParentControllerNode();
124 }
125 }
126
127 //
128 return detachedSubNodes;
129}
130
132{
133 //
134 auto detachedSubNodes = detachSubNodes();
135
136 //
137 for (auto i = 0; i < detachedSubNodes.size(); i++) {
138 auto subNode = detachedSubNodes[i];
139 screenNode->removeNode(subNode);
140 }
141}
142
143void GUIParentNode::replaceSubNodes(const string& xml, bool resetScrollOffsets)
144{
145 auto parentControllerNode = controller != nullptr?this:getParentControllerNode();
146
147 for (auto i = 0; i < subNodes.size(); i++) {
148 auto subNode = subNodes[i];
149 screenNode->removeNode(subNode);
150 }
151 subNodes.clear();
152
153 {
154 auto _parentControllerNode = parentControllerNode;
155 while (_parentControllerNode != nullptr) {
156 _parentControllerNode->getController()->onSubTreeChange();
157 _parentControllerNode = _parentControllerNode->getParentControllerNode();
158 }
159 }
160
162 GUIParser::parse(this, xml);
163
164 floatingNodesCache.clear();
165 for (auto i = 0; i < subNodes.size(); i++) {
166 auto guiSubNode = subNodes[i];
167 if (guiSubNode->flow == GUINode_Flow::FLOATING) {
168 floatingNodesCache.push_back(guiSubNode);
169 }
170 }
171
174
175 if (layouted == false || resetScrollOffsets == true) {
178 } else {
180 float elementWidth = computedConstraints.width;
181 float contentWidth = getContentWidth();
182 auto scrollableWidth = contentWidth - elementWidth;
183 if (scrollableWidth < 0.0f) scrollableWidth = 0.0;
185 if (scrollableWidth > 0 && childrenRenderOffsetX > scrollableWidth) childrenRenderOffsetX = scrollableWidth;
186 }
187
189 float elementHeight = computedConstraints.height;
190 float contentHeight = getContentHeight();
191 auto scrollableHeight = contentHeight - elementHeight;
192 if (scrollableHeight < 0.0f) scrollableHeight = 0.0f;
194 if (scrollableHeight > 0 && childrenRenderOffsetY > scrollableHeight) childrenRenderOffsetY = scrollableHeight;
195 }
196 }
197
198 {
199 auto _parentControllerNode = parentControllerNode;
200 while (_parentControllerNode != nullptr) {
201 _parentControllerNode->getController()->onSubTreeChange();
202 _parentControllerNode = _parentControllerNode->getParentControllerNode();
203 }
204 }
205}
206
207void GUIParentNode::addSubNodes(const string& xml, bool resetScrollOffsets)
208{
210 GUIParser::parse(this, xml);
211
212 floatingNodesCache.clear();
213 for (auto i = 0; i < subNodes.size(); i++) {
214 auto guiSubNode = subNodes[i];
215 if (guiSubNode->flow == GUINode_Flow::FLOATING) {
216 floatingNodesCache.push_back(guiSubNode);
217 }
218 }
219
222
223 if (layouted == false || resetScrollOffsets == true) {
226 } else {
228 float elementWidth = computedConstraints.width;
229 float contentWidth = getContentWidth();
230 auto scrollableWidth = contentWidth - elementWidth;
231 if (scrollableWidth < 0.0f) scrollableWidth = 0.0;
233 if (scrollableWidth > 0 && childrenRenderOffsetX > scrollableWidth) childrenRenderOffsetX = scrollableWidth;
234 }
235
237 float elementHeight = computedConstraints.height;
238 float contentHeight = getContentHeight();
239 auto scrollableHeight = contentHeight - elementHeight;
240 if (scrollableHeight < 0.0f) scrollableHeight = 0.0f;
242 if (scrollableHeight > 0 && childrenRenderOffsetY > scrollableHeight) childrenRenderOffsetY = scrollableHeight;
243 }
244 }
245
246 {
247 auto parentControllerNode = controller != nullptr?this:getParentControllerNode();
248 while (parentControllerNode != nullptr) {
249 parentControllerNode->getController()->onSubTreeChange();
250 parentControllerNode = parentControllerNode->getParentControllerNode();
251 }
252 }
253}
254
256{
257 if (screenNode->addNode(node) == false) {
258 throw GUIParserException(
259 "Screen '" +
260 (screenNode->id) +
261 "' already has a node attached with given node id '" +
262 (node->id) +
263 "'"
264 );
265 }
266 subNodes.push_back(node);
267 if (node->flow == GUINode_Flow::FLOATING) {
268 floatingNodesCache.push_back(node);
269 }
270}
271
273 auto detachedSubNodes = otherParentNode->detachSubNodes();
274
275 //
277
278 // attach detached sub nodes here
279 for (auto subNode: detachedSubNodes) {
280 subNode->parentNode = this;
281 subNodes.push_back(subNode);
282 }
283
284 floatingNodesCache.clear();
285 for (auto i = 0; i < subNodes.size(); i++) {
286 auto guiSubNode = subNodes[i];
287 if (guiSubNode->flow == GUINode_Flow::FLOATING) {
288 floatingNodesCache.push_back(guiSubNode);
289 }
290 }
291
294
297
298 //
299 {
300 auto parentControllerNode = controller != nullptr?this:getParentControllerNode();
301 while (parentControllerNode != nullptr) {
302 parentControllerNode->getController()->onSubTreeChange();
303 parentControllerNode = parentControllerNode->getParentControllerNode();
304 }
305 }
306}
307
309{
310 return overflowX;
311}
312
314{
315 return overflowY;
316}
317
319{
320 if (StringTools::equalsIgnoreCase(StringTools::trim(overflow), "hidden") == true) {
322 } else
323 if (StringTools::equalsIgnoreCase(StringTools::trim(overflow), "downsize-children") == true) {
325 } else
326 if (StringTools::equalsIgnoreCase(StringTools::trim(overflow), "scroll") == true) {
328 } else
329 if (overflow.empty() == true || StringTools::trim(overflow).length() == 0) {
331 } else {
332 throw GUIParserException(
333 "Unknown overflow '" +
334 (overflow) +
335 "'"
336 );
337 }
338}
339
341{
343}
344
345void GUIParentNode::setChildrenRenderOffsetX(float childrenRenderOffsetX)
346{
348 this->childrenRenderOffsetX = childrenRenderOffsetX;
349}
350
352{
354}
355
356void GUIParentNode::setChildrenRenderOffsetY(float childrenRenderOffsetY)
357{
359 this->childrenRenderOffsetY = childrenRenderOffsetY;
360}
361
362GUINode_RequestedConstraints GUIParentNode::createRequestedConstraints(const string& left, const string& top, const string& width, const string& height, int factor)
363{
366 constraints.left = getRequestedConstraintsValue(StringTools::trim(left), 0);
368 constraints.top = getRequestedConstraintsValue(StringTools::trim(top), 0);
370 constraints.width = getRequestedConstraintsValue(StringTools::trim(width), -1);
372 constraints.height = getRequestedConstraintsValue(StringTools::trim(height), -1);
373 if (constraints.leftType == GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL) constraints.left*= factor;
374 if (constraints.topType == GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL) constraints.top*= factor;
377 return constraints;
378}
379
381{
382 if (conditionsMet == false) return;
385}
386
388{
389 if (conditionsMet == false) {
390 layouted = false;
391 return;
392 }
393 for (auto i = 0; i < subNodes.size(); i++) {
394 subNodes[i]->layout();
395 }
396}
397
399{
400 {
402 for (auto i = 0; i < subNodes.size(); i++) {
403 auto guiSubNode = subNodes[i];
404 if (guiSubNode->conditionsMet == false) continue;
405 guiSubNode->computedConstraints.alignmentLeft = Math::max(0, border.left + padding.left);
406 }
407 } else
409 for (auto i = 0; i < subNodes.size(); i++) {
410 auto guiSubNode = subNodes[i];
411 if (guiSubNode->conditionsMet == false) continue;
412 guiSubNode->computedConstraints.alignmentLeft = Math::max(0, (computedConstraints.width - guiSubNode->computedConstraints.width) / 2);
413 }
414 } else
416 for (auto i = 0; i < subNodes.size(); i++) {
417 auto guiSubNode = subNodes[i];
418 if (guiSubNode->conditionsMet == false) continue;
419 guiSubNode->computedConstraints.alignmentLeft = Math::max(0, (computedConstraints.width - guiSubNode->computedConstraints.width - border.right - padding.right));
420 }
421 }
422 }
423}
424
426{
427 {
429 for (auto i = 0; i < subNodes.size(); i++) {
430 auto guiSubNode = subNodes[i];
431 if (guiSubNode->conditionsMet == false) continue;
432 guiSubNode->computedConstraints.alignmentTop = Math::max(0, border.top + padding.top);
433 }
434 } else
436 for (auto i = 0; i < subNodes.size(); i++) {
437 auto guiSubNode = subNodes[i];
438 if (guiSubNode->conditionsMet == false) continue;
439 guiSubNode->computedConstraints.alignmentTop = Math::max(0, (computedConstraints.height - guiSubNode->computedConstraints.height) / 2);
440 }
441 } else
443 for (auto i = 0; i < subNodes.size(); i++) {
444 auto guiSubNode = subNodes[i];
445 if (guiSubNode->conditionsMet == false) continue;
446 guiSubNode->computedConstraints.alignmentTop = Math::max(0, (computedConstraints.height - guiSubNode->computedConstraints.height - border.bottom - padding.bottom));
447 }
448 }
449 }
450}
451
452void GUIParentNode::getChildControllerNodesInternal(vector<GUINode*>& childControllerNodes, bool requireConditionsMet)
453{
454 if (requireConditionsMet == true && conditionsMet == false) return;
455 for (auto i = 0; i < subNodes.size(); i++) {
456 auto node = subNodes[i];
457 if (node->controller != nullptr) {
458 childControllerNodes.push_back(node);
459 }
460 if (dynamic_cast<GUIParentNode*>(node) != nullptr) {
461 (required_dynamic_cast<GUIParentNode*>(node))->getChildControllerNodesInternal(childControllerNodes);
462 }
463 }
464}
465
466void GUIParentNode::getChildControllerNodes(vector<GUINode*>& childControllerNodes, bool requireConditionsMet)
467{
468 childControllerNodes.clear();
469 getChildControllerNodesInternal(childControllerNodes, requireConditionsMet);
470}
471
473{
474 for (auto i = 0; i < subNodes.size(); i++) {
475 subNodes[i]->dispose();
476 }
478}
479
481{
482 auto conditionsMetBefore = conditionsMet;
484 for (auto i = 0; i < subNodes.size(); i++) {
485 auto guiSubNode = subNodes[i];
486 guiSubNode->setConditionsMet();
487 }
488 if (conditionsMetBefore != conditionsMet) invalidateRenderCaches();
489}
490
492{
494
495 if (shouldRender() == false) return;
496
497 auto renderAreaLeftCurrent = guiRenderer->getRenderAreaLeft();
498 auto renderAreaTopCurrent = guiRenderer->getRenderAreaTop();
499 auto renderAreaRightCurrent = guiRenderer->getRenderAreaRight();
500 auto renderAreaBottomCurrent = guiRenderer->getRenderAreaBottom();
501 auto screenWidth = screenNode->getScreenWidth();
502 auto screenHeight = screenNode->getScreenHeight();
505 float width = computedConstraints.width;
506 float height = computedConstraints.height;
507 auto renderOffsetXCurrent = guiRenderer->getRenderOffsetX();
508 auto renderOffsetYCurrent = guiRenderer->getRenderOffsetY();
509 auto renderOffsetXPixel = 0.0f;
510 auto renderOffsetYPixel = 0.0f;
511 for (auto *_parentNode = this; _parentNode != nullptr; _parentNode = _parentNode->parentNode) {
512 renderOffsetXPixel += _parentNode->childrenRenderOffsetX;
513 renderOffsetYPixel += _parentNode->childrenRenderOffsetY;
514 }
515 auto renderOffsetX = renderOffsetXPixel / (screenWidth / 2.0f);
516 auto renderOffsetY = renderOffsetYPixel / (screenHeight / 2.0f);
517 auto renderAreaLeft = renderAreaLeftCurrent;
518 auto renderAreaTop = renderAreaTopCurrent;
519 auto renderAreaRight = renderAreaRightCurrent;
520 auto renderAreaBottom = renderAreaBottomCurrent;
521 // Floating node does not have correct dimension and such due non existance when layouting
523 renderAreaLeft = ((left) / (screenWidth / 2.0f)) - 1.0f;
524 renderAreaTop = ((screenHeight - top) / (screenHeight / 2.0f)) + renderOffsetYCurrent - 1.0f;
525 renderAreaRight = ((left + width) / (screenWidth / 2.0f)) - 1.0f;
526 renderAreaBottom = ((screenHeight - top - height) / (screenHeight / 2.0f)) + renderOffsetYCurrent - 1.0f;
527 }
528 guiRenderer->setSubRenderAreaLeft(renderAreaLeft);
529 guiRenderer->setSubRenderAreaTop(renderAreaTop);
530 guiRenderer->setSubRenderAreaRight(renderAreaRight);
531 guiRenderer->setSubRenderAreaBottom(renderAreaBottom);
532 guiRenderer->setRenderOffsetX(renderOffsetX);
533 guiRenderer->setRenderOffsetY(renderOffsetY);
534
535 //
536 GUINode::render(guiRenderer);
537
538 //
539 if (computeViewportCache == true) {
540 for (auto i = 0; i < subNodes.size(); i++) {
541 auto guiSubNode = subNodes[i];
542 if (guiSubNode->flow == GUINode_Flow::FLOATING) {
543 continue;
544 }
545 if (guiSubNode->layouted == false) {
546 continue;
547 }
548 guiRenderer->setRenderAreaLeft(renderAreaLeftCurrent);
549 guiRenderer->setRenderAreaTop(renderAreaTopCurrent);
550 guiRenderer->setRenderAreaRight(renderAreaRightCurrent);
551 guiRenderer->setRenderAreaBottom(renderAreaBottomCurrent);
552 guiRenderer->setSubRenderAreaLeft(renderAreaLeft);
553 guiRenderer->setSubRenderAreaTop(renderAreaTop);
554 guiRenderer->setSubRenderAreaRight(renderAreaRight);
555 guiRenderer->setSubRenderAreaBottom(renderAreaBottom);
556 guiRenderer->setRenderOffsetX(renderOffsetX);
557 guiRenderer->setRenderOffsetY(renderOffsetY);
558 float left = guiSubNode->computedConstraints.left + guiSubNode->computedConstraints.alignmentLeft + guiSubNode->border.left;
559 float top = guiSubNode->computedConstraints.top + guiSubNode->computedConstraints.alignmentTop + guiSubNode->border.top;
560 float width = guiSubNode->computedConstraints.width - guiSubNode->border.left - guiSubNode->border.right;
561 float height = guiSubNode->computedConstraints.height - guiSubNode->border.top - guiSubNode->border.bottom;
562 if (guiRenderer->isQuadVisible(
563 ((left) / (screenWidth / 2.0f)) - 1.0f,
564 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
565 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
566 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
567 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
568 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
569 ((left) / (screenWidth / 2.0f)) - 1.0f,
570 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f) == true) {
571 //
572 //
573 if (guiSubNode->hasEffects() == true) guiSubNode->applyEffects(guiRenderer);
574 guiSubNode->render(guiRenderer);
575 if (guiSubNode->hasEffects() == true) guiSubNode->undoEffects(guiRenderer);
576 vieportSubNodesCache.push_back(guiSubNode);
577 }
578 }
579 computeViewportCache = false;
580 } else {
581 for (auto i = 0; i < vieportSubNodesCache.size(); i++) {
582 auto guiSubNode = vieportSubNodesCache[i];
583 guiRenderer->setRenderAreaLeft(renderAreaLeftCurrent);
584 guiRenderer->setRenderAreaTop(renderAreaTopCurrent);
585 guiRenderer->setRenderAreaRight(renderAreaRightCurrent);
586 guiRenderer->setRenderAreaBottom(renderAreaBottomCurrent);
587 guiRenderer->setSubRenderAreaLeft(renderAreaLeft);
588 guiRenderer->setSubRenderAreaTop(renderAreaTop);
589 guiRenderer->setSubRenderAreaRight(renderAreaRight);
590 guiRenderer->setSubRenderAreaBottom(renderAreaBottom);
591 guiRenderer->setRenderOffsetX(renderOffsetX);
592 guiRenderer->setRenderOffsetY(renderOffsetY);
593 if (guiSubNode->hasEffects() == true) guiSubNode->applyEffects(guiRenderer);
594 guiSubNode->render(guiRenderer);
595 if (guiSubNode->hasEffects() == true) guiSubNode->undoEffects(guiRenderer);
596 }
597 }
598
599 //
600 guiRenderer->setRenderOffsetX(renderOffsetXCurrent);
601 guiRenderer->setRenderOffsetY(renderOffsetYCurrent);
602 guiRenderer->setRenderAreaLeft(renderAreaLeftCurrent);
603 guiRenderer->setRenderAreaTop(renderAreaTopCurrent);
604 guiRenderer->setRenderAreaRight(renderAreaRightCurrent);
605 guiRenderer->setRenderAreaBottom(renderAreaBottomCurrent);
606}
607
608void GUIParentNode::determineMouseEventNodes(GUIMouseEvent* event, bool floatingNode, unordered_set<string>& eventNodeIds, unordered_set<string>& eventFloatingNodeIds)
609{
610 if (conditionsMet == false)
611 return;
612
613 if (isEventBelongingToNode(event) == true || flow == GUINode_Flow::FLOATING) {
614 if (event->getType() == GUIMouseEvent::MOUSEEVENT_WHEEL_MOVED) {
615 if (event->getWheelX() != 0.0f && overflowX == GUIParentNode_Overflow::SCROLL) {
616 childrenRenderOffsetX -= event->getWheelX() * 10.0f;
617 float nodeWidth = this->computedConstraints.width;
618 float contentWidth = this->getContentWidth();
619 auto scrollableWidth = contentWidth - nodeWidth;
620 if (static_cast<int>(nodeWidth) >= static_cast<int>(contentWidth)) {
622 } else {
624 if (childrenRenderOffsetX > scrollableWidth) childrenRenderOffsetX = scrollableWidth;
625 event->setProcessed(true);
626 }
628 return;
629 }
630 if (event->getWheelY() != 0.0f && overflowY == GUIParentNode_Overflow::SCROLL) {
631 childrenRenderOffsetY -= event->getWheelY() * 10.0f;
632 float nodeHeight = this->computedConstraints.height;
633 float contentHeight = this->getContentHeight();
634 auto scrollableHeight = contentHeight - nodeHeight;
635 if (static_cast<int>(nodeHeight) >= static_cast<int>(contentHeight)) {
637 } else {
639 if (childrenRenderOffsetY > scrollableHeight) childrenRenderOffsetY = scrollableHeight;
640 event->setProcessed(true);
641 }
643 return;
644 }
645 }
646 for (auto i = 0; i < vieportSubNodesCache.size(); i++) {
647 auto subNode = vieportSubNodesCache[i];
648 subNode->determineMouseEventNodes(event, floatingNode == true || subNode->flow == GUINode_Flow::FLOATING, eventNodeIds, eventFloatingNodeIds);
649 }
650 }
651
652 GUINode::determineMouseEventNodes(event, floatingNode, eventNodeIds, eventFloatingNodeIds);
653}
654
657 vieportSubNodesCache.clear();
658 for (auto i = 0; i < subNodes.size(); i++) {
659 auto guiSubNodeParentNode = dynamic_cast<GUIParentNode*>(subNodes[i]);
660 if (guiSubNodeParentNode != nullptr) guiSubNodeParentNode->invalidateRenderCaches();
661 }
662}
663
664void GUIParentNode::removeSubNode(GUINode* node, bool resetScrollOffsets)
665{
667 subNodes.erase(remove(subNodes.begin(), subNodes.end(), node), subNodes.end());
668
669 floatingNodesCache.clear();
670 for (auto i = 0; i < subNodes.size(); i++) {
671 auto guiSubNode = subNodes[i];
672 if (guiSubNode->flow == GUINode_Flow::FLOATING) {
673 floatingNodesCache.push_back(guiSubNode);
674 }
675 }
676
679
680 {
681 auto parentControllerNode = controller != nullptr?this:getParentControllerNode();
682 while (parentControllerNode != nullptr) {
683 parentControllerNode->getController()->onSubTreeChange();
684 parentControllerNode = parentControllerNode->getParentControllerNode();
685 }
686 }
687
688 if (layouted == false || resetScrollOffsets == true) {
691 } else {
693 float elementWidth = computedConstraints.width;
694 float contentWidth = getContentWidth();
695 auto scrollableWidth = contentWidth - elementWidth;
696 if (scrollableWidth < 0.0f) scrollableWidth = 0.0;
698 if (scrollableWidth > 0 && childrenRenderOffsetX > scrollableWidth) childrenRenderOffsetX = scrollableWidth;
699 }
700
702 float elementHeight = computedConstraints.height;
703 float contentHeight = getContentHeight();
704 auto scrollableHeight = contentHeight - elementHeight;
705 if (scrollableHeight < 0.0f) scrollableHeight = 0.0f;
707 if (scrollableHeight > 0 && childrenRenderOffsetY > scrollableHeight) childrenRenderOffsetY = scrollableHeight;
708 }
709 }
710}
711
713 for (auto i = 0; i < subNodes.size(); i++) {
714 auto guiSubNode = subNodes[i];
715 auto guiElementSubNode = dynamic_cast<GUIElementNode*>(guiSubNode);
716 if (guiElementSubNode != nullptr) {
718 guiElementSubNode->unsetMouseOver();
719 } else {
720 auto guiParentSubNode = dynamic_cast<GUIParentNode*>(guiSubNode);
721 if (guiParentSubNode != nullptr) guiParentSubNode->unsetMouseOver();
722 }
723 }
724}
GUI parser.
Definition: GUIParser.h:39
static GUIScreenNode * parse(const string &pathName, const string &fileName, const unordered_map< string, string > &parameters=unordered_map< string, string >())
Parses a GUI XML file.
Definition: GUIParser.cpp:160
GUI module class.
Definition: GUI.h:66
static STATIC_DLL_IMPEXT string CONDITION_ONMOUSEOVER
GUINodeConditions & getActiveConditions()
GUI element node conditions.
bool remove(const string &condition)
Remove a condition.
GUI node controller base class.
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * RIGHT
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * CENTER
static STATIC_DLL_IMPEXT GUINode_AlignmentHorizontal * LEFT
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * BOTTOM
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * CENTER
static STATIC_DLL_IMPEXT GUINode_AlignmentVertical * TOP
static STATIC_DLL_IMPEXT GUINode_Flow * FLOATING
Definition: GUINode_Flow.h:31
static STATIC_DLL_IMPEXT GUINode_Flow * INTEGRATED
Definition: GUINode_Flow.h:30
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * NONE
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * PIXEL
static STATIC_DLL_IMPEXT GUINode_RequestedConstraints_RequestedConstraintsType * AUTO
GUI node base class.
Definition: GUINode.h:63
GUINodeController * controller
Definition: GUINode.h:162
virtual int getContentHeight()=0
static GUINode_RequestedConstraints_RequestedConstraintsType * getRequestedConstraintsType(const string &constraint, GUINode_RequestedConstraints_RequestedConstraintsType *defaultConstraintsType)
Get requested constraints type.
Definition: GUINode.cpp:286
virtual void determineMouseEventNodes(GUIMouseEvent *event, bool floatingNode, unordered_set< string > &eventNodeIds, unordered_set< string > &eventFloatingNodeIds)
Determine mouse event nodes.
Definition: GUINode.cpp:1062
GUINode_Border border
Definition: GUINode.h:159
virtual int getContentWidth()=0
virtual void layoutOnDemand()
Layout on demand.
Definition: GUINode.cpp:471
virtual void render(GUIRenderer *guiRenderer)
Render.
Definition: GUINode.cpp:508
GUINode_ComputedConstraints computedConstraints
Definition: GUINode.h:151
GUINode_Padding padding
Definition: GUINode.h:158
virtual void setConditionsMet()
Set conditions met for this node and its subnodes.
Definition: GUINode.cpp:466
GUIScreenNode * screenNode
Definition: GUINode.h:146
bool shouldRender()
Determine if to render.
Definition: GUINode.h:295
GUIParentNode * getParentControllerNode()
Definition: GUINode.cpp:1053
virtual void dispose()
Dispose node.
Definition: GUINode.cpp:460
bool isEventBelongingToNode(GUIMouseEvent *event, Vector2 &position)
Is event belonging to node.
Definition: GUINode.cpp:973
GUINode_Alignments alignments
Definition: GUINode.h:149
virtual void layout()
Layout.
Definition: GUINode.cpp:189
GUINode_Flow * flow
Definition: GUINode.h:85
static int getRequestedConstraintsValue(const string &constraint, int defaultConstraintsValue)
Get requested constraints value.
Definition: GUINode.cpp:304
static STATIC_DLL_IMPEXT GUIParentNode_Overflow * DOWNSIZE_CHILDREN
static STATIC_DLL_IMPEXT GUIParentNode_Overflow * HIDDEN
static STATIC_DLL_IMPEXT GUIParentNode_Overflow * SCROLL
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUIParentNode_Overflow * overflowX
Definition: GUIParentNode.h:67
void getChildControllerNodes(vector< GUINode * > &childControllerNodes, bool requireConditionsMet=false)
Get child controller nodes.
void dispose() override
Dispose node.
virtual void computeHorizontalChildrenAlignment()
Compute horizontal children alignment.
void setConditionsMet() override
Set conditions met for this node and its subnodes.
void getChildControllerNodesInternal(vector< GUINode * > &childControllerNodes, bool requireConditionsMet=false)
Get child controller nodes internal.
static GUIParentNode_Overflow * createOverflow(const string &overflow)
Create over flow.
void setChildrenRenderOffsetX(float childrenRenderOffSetX)
Set children render offset x.
GUIParentNode_Overflow * getOverflowX()
void removeSubNode(GUINode *node, bool resetScrollOffsets)
Remove sub node.
vector< GUINode * > vieportSubNodesCache
Definition: GUIParentNode.h:65
void replaceSubNodes(const string &xml, bool resetScrollOffsets)
Replace sub nodes with given XML.
void layout() override
Layout.
void clearSubNodes()
Clear sub nodes.
void unsetMouseOver()
Unset mouse event condition on element nodes.
GUIParentNode_Overflow * getOverflowY()
vector< GUINode * > floatingNodesCache
Definition: GUIParentNode.h:66
void determineMouseEventNodes(GUIMouseEvent *event, bool floatingNode, unordered_set< string > &eventNodeIds, unordered_set< string > &eventFloatingNodeIds) override
Determine mouse event nodes.
void render(GUIRenderer *guiRenderer) override
Render.
GUIParentNode_Overflow * overflowY
Definition: GUIParentNode.h:68
virtual void layoutSubNodes()
Layout sub nodes.
vector< GUINode * > subNodes
Definition: GUIParentNode.h:63
static GUINode_RequestedConstraints createRequestedConstraints(const string &left, const string &top, const string &width, const string &height, int factor)
Create requested constraints.
vector< GUINode * > detachSubNodes()
Detach sub nodes.
void moveNodes(GUIParentNode *otherParentNode)
Move children nodes from other parent node into this parent node.
void setChildrenRenderOffsetY(float childrenRenderOffSetY)
Set children render offset y.
void addSubNode(GUINode *node)
Add sub node.
virtual void computeVerticalChildrenAlignment()
Compute vertical children alignment.
void addSubNodes(const string &xml, bool resetScrollOffsets)
Add sub nodes with given XML.
void invalidateRenderCaches()
Invalidate render caches.
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.
bool removeNode(GUINode *node)
Add node.
bool addNode(GUINode *node)
Add node.
void setSubRenderAreaBottom(float renderAreaBottom)
Set sub render area bottom.
Definition: GUIRenderer.h:318
void setRenderAreaLeft(float renderAreaLeft)
Set up render area left.
Definition: GUIRenderer.h:241
void setRenderAreaRight(float renderAreaRight)
Set up render area right.
Definition: GUIRenderer.h:287
void setRenderAreaTop(float renderAreaTop)
Set up render area top.
Definition: GUIRenderer.h:264
void setSubRenderAreaRight(float renderAreaRight)
Set sub render area right.
Definition: GUIRenderer.h:295
void setSubRenderAreaLeft(float renderAreaLeft)
Set sub render area left.
Definition: GUIRenderer.h:249
bool isQuadVisible(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4)
Definition: GUIRenderer.h:391
void setSubRenderAreaTop(float renderAreaTop)
Set sub render area top.
Definition: GUIRenderer.h:272
void setRenderOffsetY(float renderOffsetY)
Set render offset y.
Definition: GUIRenderer.h:348
void setRenderAreaBottom(float renderAreaBottom)
Set up render area bottom.
Definition: GUIRenderer.h:310
void setRenderOffsetX(float renderOffsetX)
Set render offset x.
Definition: GUIRenderer.h:333
Standard math functions.
Definition: Math.h:21
String tools class.
Definition: StringTools.h:20
GUINode_AlignmentVertical * vertical
GUINode_AlignmentHorizontal * horizontal
GUI node border entity.
GUI node padding entity.
GUINode_RequestedConstraints_RequestedConstraintsType * topType
GUINode_RequestedConstraints_RequestedConstraintsType * widthType
GUINode_RequestedConstraints_RequestedConstraintsType * leftType
GUINode_RequestedConstraints_RequestedConstraintsType * heightType
GUI node scale 9 grid entity.