TDME2 1.9.121
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
GUIElementController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
14#include <tdme/gui/GUI.h>
16#include <tdme/utilities/Time.h>
17
18using std::string;
19using std::to_string;
20
30using tdme::gui::GUI;
33
34GUIElementController::GUIElementController(GUINode* node)
35 : GUINodeController(node)
36{
37 this->isActionPerforming = false;
38 this->disabled = required_dynamic_cast<GUIElementNode*>(node)->isDisabled();
39 this->initialized = false;
40}
41
44
46{
47 return disabled;
48}
49
51{
52 auto& nodeConditions = required_dynamic_cast<GUIElementNode*>(node)->getActiveConditions();
53 nodeConditions.remove(this->disabled == true?CONDITION_DISABLED:CONDITION_ENABLED);
54 this->disabled = disabled;
55 nodeConditions.add(this->disabled == true?CONDITION_DISABLED:CONDITION_ENABLED);
56 isActionPerforming = false;
57}
58
60{
61 this->node->getScreenNode()->addTickNode(this->node);
63}
64
66{
67}
68
70{
71}
72
74{
75 if (disabled == true) return;
76 auto elementNode = required_dynamic_cast<GUIElementNode*>(this->node);
77 if (node == elementNode && elementNode->isEventBelongingToNode(event) == true && event->getButton() == MOUSE_BUTTON_LEFT) {
78 event->setProcessed(true);
79 if (event->getType() == GUIMouseEvent::MOUSEEVENT_PRESSED) {
80 elementNode->getActiveConditions().add(GUIElementNode::CONDITION_CLICK);
81 isActionPerforming = true;
82 if (elementNode->isFocusable() == true) {
83 node->getScreenNode()->getGUI()->setFoccussedNode(elementNode);
84 }
85 } else
86 if (event->getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) {
87 isActionPerforming = true;
88 } else
89 if (event->getType() == GUIMouseEvent::MOUSEEVENT_RELEASED) {
90 elementNode->getActiveConditions().remove(GUIElementNode::CONDITION_CLICK);
91 isActionPerforming = false;
92 auto now = Time::getCurrentMillis();
93 if (timeLastClicked != -1LL) {
95 auto onMouseDoubleClickExpression = elementNode->getOnMouseDoubleClickExpression();
96 if (onMouseDoubleClickExpression.size() > 0) {
97 GUIElementNode::executeExpression(elementNode->getScreenNode(), onMouseDoubleClickExpression);
98 } else {
99 auto onMouseClickExpression = elementNode->getOnMouseClickExpression();
100 if (onMouseClickExpression.size() > 0) GUIElementNode::executeExpression(elementNode->getScreenNode(), onMouseClickExpression);
102 }
103 timeLastClicked = -1LL;
104 } else {
105 auto onMouseClickExpression = elementNode->getOnMouseClickExpression();
106 if (onMouseClickExpression.size() > 0) GUIElementNode::executeExpression(elementNode->getScreenNode(), onMouseClickExpression);
108 timeLastClicked = -1LL;
109 }
110 } else {
111 auto onMouseDoubleClickExpression = elementNode->getOnMouseDoubleClickExpression();
112 if (onMouseDoubleClickExpression.size() > 0) {
113 timeLastClicked = now;
114 } else {
115 auto onMouseClickExpression = elementNode->getOnMouseClickExpression();
116 if (onMouseClickExpression.size() > 0) GUIElementNode::executeExpression(elementNode->getScreenNode(), onMouseClickExpression);
118 }
119 }
120 }
121 } else
122 if (node == elementNode && elementNode->isEventBelongingToNode(event) == true && event->getButton() == MOUSE_BUTTON_RIGHT) {
123 if (event->getType() == GUIMouseEvent::MOUSEEVENT_PRESSED) {
124 node->getScreenNode()->delegateContextMenuRequest(elementNode, event->getXUnscaled(), event->getYUnscaled());
125 }
126 event->setProcessed(true);
127 } else
128 if (node == elementNode && event->getType() == GUIMouseEvent::MOUSEEVENT_RELEASED && event->getButton() == MOUSE_BUTTON_LEFT && elementNode->getActiveConditions().has(GUIElementNode::CONDITION_CLICK)) {
129 elementNode->getActiveConditions().remove(GUIElementNode::CONDITION_CLICK);
130 event->setProcessed(true);
131 } else
132 if (event->getType() == GUIMouseEvent::MOUSEEVENT_MOVED) {
133 if (elementNode->isEventBelongingToNode(event) == true) {
134 if (elementNode->getOptionValue("mouse-cursor") == "hand") Application::setMouseCursor(MOUSE_CURSOR_HAND);
135 node->getScreenNode()->delegateMouseOver(elementNode);
136 elementNode->getActiveConditions().add(GUIElementNode::CONDITION_ONMOUSEOVER);
138 auto onMouseOverExpression = elementNode->getOnMouseOverExpression();
139 if (onMouseOverExpression.size() > 0) GUIElementNode::executeExpression(elementNode->getScreenNode(), onMouseOverExpression);
140 } else {
141 if (elementNode->getOptionValue("mouse-cursor") == "hand") Application::setMouseCursor(MOUSE_CURSOR_NORMAL);
142 elementNode->getActiveConditions().remove(GUIElementNode::CONDITION_ONMOUSEOVER);
143 auto onMouseOutExpression = elementNode->getOnMouseOutExpression();
144 if (onMouseOutExpression.size() > 0) GUIElementNode::executeExpression(elementNode->getScreenNode(), onMouseOutExpression);
145 }
146 } else {
147 isActionPerforming = false;
148 }
149}
150
152{
153 if (disabled == false) {
154 switch (event->getKeyCode()) {
155 case GUIKeyboardEvent::KEYCODE_SPACE: {
156 event->setProcessed(true);
157 if (event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED) {
158 auto onMouseClickExpression = required_dynamic_cast<GUIElementNode*>(node)->getOnMouseClickExpression();
159 if (onMouseClickExpression.size() > 0) GUIElementNode::executeExpression(node->getScreenNode(), onMouseClickExpression);
160 node->getScreenNode()->delegateActionPerformed(GUIActionListenerType::PERFORMED, required_dynamic_cast<GUIElementNode*>(node));
161 }
162 }
163 break;
164 default: {
165 break;
166 }
167 }
168 }
169}
170
172{
173 if (initialized == false) {
174 auto onInitializeExpression = required_dynamic_cast<GUIElementNode*>(node)->getOnInitializeExpression();
175 if (onInitializeExpression.size() > 0) GUIElementNode::executeExpression(node->getScreenNode(), onInitializeExpression);
176 initialized = true;
177 // TODO: check me, the following code has performance relevance!!!
178 // auto onMouseClickExpression = required_dynamic_cast<GUIElementNode*>(node)->getOnMouseClickExpression();
179 // if (onMouseClickExpression.size() == 0) node->getScreenNode()->removeTickNode(node);
180 }
181
182 auto now = Time::getCurrentMillis();
183 if (timeLastClicked != -1LL && now - timeLastClicked >= TIME_DOUBLECLICK) {
184 timeLastClicked = -1LL;
185 auto onMouseClickExpression = required_dynamic_cast<GUIElementNode*>(node)->getOnMouseClickExpression();
186 if (onMouseClickExpression.size() > 0) GUIElementNode::executeExpression(node->getScreenNode(), onMouseClickExpression);
187 node->getScreenNode()->delegateActionPerformed(GUIActionListenerType::PERFORMED, required_dynamic_cast<GUIElementNode*>(node));
188 }
189
190 if (isActionPerforming == true) {
191 if (disabled == true) {
192 isActionPerforming = false;
193 return;
194 }
195 node->getScreenNode()->delegateActionPerformed(GUIActionListenerType::PERFORMING, required_dynamic_cast<GUIElementNode*>(node));
196 }
197}
198
200{
201}
202
204{
205}
206
208{
209 return false;
210}
211
213{
214 return value;
215}
216
218{
219}
220
222{
223}
#define MOUSE_CURSOR_NORMAL
Definition: Application.h:13
#define MOUSE_CURSOR_HAND
Definition: Application.h:14
#define MOUSE_BUTTON_LEFT
#define MOUSE_BUTTON_RIGHT
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
GUI module class.
Definition: GUI.h:66
void addMouseOutCandidateElementNode(GUINode *node)
Add node that is a possible mouse out candidate as it received a mouse over.
Definition: GUI.h:110
void setFoccussedNode(GUIElementNode *newFoccussedNode)
Set focussed node.
Definition: GUI.cpp:359
void onFocusGained() override
On focus gained.
void dispose() override
Dispose controller.
void postLayout() override
Post layout event.
void initialize() override
Initialize controller after element has been created.
void handleKeyboardEvent(GUIKeyboardEvent *event) override
Handle keyboard event.
void onFocusLost() override
On focus lost.
void setValue(const MutableString &value) override
Set value.
void handleMouseEvent(GUINode *node, GUIMouseEvent *event) override
Handle mouse event.
void tick() override
Tick method will be executed once per frame.
static STATIC_DLL_IMPEXT string CONDITION_DISABLED
static STATIC_DLL_IMPEXT string CONDITION_ENABLED
void setDisabled(bool disabled) override
Set disabled.
const MutableString & getValue() override
void onSubTreeChange() override
On sub tree change.
static STATIC_DLL_IMPEXT string CONDITION_ONMOUSEOVER
static STATIC_DLL_IMPEXT string CONDITION_CLICK
static void executeExpression(GUIScreenNode *screenNode, const string &expression)
Execute expression.
GUI element node conditions.
GUI node controller base class.
GUI node base class.
Definition: GUINode.h:63
bool isEventBelongingToNode(GUIMouseEvent *event, Vector2 &position)
Is event belonging to node.
Definition: GUINode.cpp:973
GUIScreenNode * getScreenNode()
Definition: GUINode.h:315
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void delegateMouseOver(GUIElementNode *node)
Delegate mouse over event.
void delegateActionPerformed(GUIActionListenerType type, GUIElementNode *node)
Delegate action performed.
void delegateContextMenuRequest(GUIElementNode *node, int mouseX, int mouseY)
Delegate mouse over event.
void addTickNode(GUINode *node)
Add tick node, registered node controllers will have a tick once per frame.
Console class.
Definition: Console.h:26
Mutable string class.
Definition: MutableString.h:16
Time utility class.
Definition: Time.h:21