TDME2 1.9.121
GUISelectBoxParentOptionController.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
12#include <tdme/gui/GUI.h>
13
23using tdme::gui::GUI;
24
25string GUISelectBoxParentOptionController::CONDITION_EXPANDED = "expanded";
26string GUISelectBoxParentOptionController::CONDITION_COLLAPSED = "collapsed";
27
28GUISelectBoxParentOptionController::GUISelectBoxParentOptionController(GUINode* node)
29 : GUISelectBoxOptionController(node), expanded(false)
30{
31}
32
34{
35 class ArrowNodeActionListener: public virtual GUIActionListener
36 {
37
38 public:
39 // overriden method
40 void onActionPerformed(GUIActionListenerType type, GUIElementNode* node) override {
41 if (node == selectBoxParentOptionController->arrowNode && type == GUIActionListenerType::PERFORMED) {
42 required_dynamic_cast<GUISelectBoxController*>(selectBoxParentOptionController->selectBoxNode->getController())->toggleOpenState(required_dynamic_cast<GUIElementNode*>(selectBoxParentOptionController->node));
43 }
44 }
45
46 /**
47 * Public constructor
48 * @param selectBoxParentOptionController select box parent option controller
49 */
50 ArrowNodeActionListener(GUISelectBoxParentOptionController* selectBoxParentOptionController): selectBoxParentOptionController(selectBoxParentOptionController) {
51 }
52
53 private:
54 GUISelectBoxParentOptionController* selectBoxParentOptionController { nullptr };
55 };
56 arrowNode = required_dynamic_cast<GUIElementNode*>(node->getScreenNode()->getNodeById(node->getId() + "_arrow"));
58 arrowNode->getScreenNode()->addActionListener(arrowNodeActionListener = new ArrowNodeActionListener(this));
59 //
61}
62
64 if (arrowNodeActionListener != nullptr) {
68 }
69}
70
72 return expanded;
73}
74
76{
78 expanded = expanded == true?false:true;
80}
GUI module class.
Definition: GUI.h:66
void initialize() override
Initialize controller after element has been created.
void initialize() override
Initialize controller after element has been created.
GUINodeConditions & getActiveConditions()
GUI element node conditions.
bool add(const string &condition)
Add a condition.
bool remove(const string &condition)
Remove a condition.
GUI node base class.
Definition: GUINode.h:63
const string & getId()
Definition: GUINode.h:329
GUIScreenNode * getScreenNode()
Definition: GUINode.h:315
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
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void removeActionListener(GUIActionListener *listener)
Remove action listener.
void addActionListener(GUIActionListener *listener)
Add action listener.
GUI action listener interface.