TDME2 1.9.121
GUIScrollAreaController.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
9#include <tdme/gui/GUI.h>
10
18using tdme::gui::GUI;
19
20GUIScrollAreaController::GUIScrollAreaController(GUINode* node)
21 : GUINodeController(node), actionListener(nullptr)
22{
23}
24
26{
27 return false;
28}
29
31{
32}
33
35{
36 class GUIScrollAreaControllerActionListener: public virtual GUIActionListener
37 {
38
39 public:
40 void onActionPerformed(GUIActionListenerType type, GUIElementNode* node) override {
41 if (node == upArrowNode) {
42 float elementHeight = contentNode->getComputedConstraints().height;
43 float contentHeight = contentNode->getContentHeight();
44 auto scrollableHeight = contentHeight - elementHeight;
45 if (scrollableHeight <= 0.0f)
46 return;
47
48 auto childrenRenderOffsetY = contentNode->getChildrenRenderOffsetY() - 1.0f;
49 if (childrenRenderOffsetY < 0.0f)
50 childrenRenderOffsetY = 0.0f;
51
52 contentNode->setChildrenRenderOffsetY(childrenRenderOffsetY);
53 } else
54 if (node == downArrowNode) {
55 float elementHeight = contentNode->getComputedConstraints().height;
56 float contentHeight = contentNode->getContentHeight();
57 auto scrollableHeight = contentHeight - elementHeight;
58 if (scrollableHeight <= 0.0f)
59 return;
60
61 auto childrenRenderOffsetY = contentNode->getChildrenRenderOffsetY() + 1.0f;
62 if (childrenRenderOffsetY > contentHeight - contentNode->getComputedConstraints().height) {
63 childrenRenderOffsetY = contentHeight - contentNode->getComputedConstraints().height;
64 }
65 contentNode->setChildrenRenderOffsetY(childrenRenderOffsetY);
66 } else
67 if (node == leftArrowNode) {
68 float elementWidth = contentNode->getComputedConstraints().width;
69 float contentWidth = contentNode->getContentWidth();
70 auto scrollableWidth = contentWidth - elementWidth;
71 if (scrollableWidth <= 0.0f)
72 return;
73
74 auto childrenRenderOffsetX = contentNode->getChildrenRenderOffsetX() - 1.0f;
75 if (childrenRenderOffsetX < 0.0f)
76 childrenRenderOffsetX = 0.0f;
77
78 contentNode->setChildrenRenderOffsetX(childrenRenderOffsetX);
79 } else
80 if (node == rightArrowNode) {
81 float elementWidth = contentNode->getComputedConstraints().width;
82 float contentWidth = contentNode->getContentWidth();
83 auto scrollableWidth = contentWidth - elementWidth;
84 if (scrollableWidth <= 0.0f)
85 return;
86
87 auto childrenRenderOffsetX = contentNode->getChildrenRenderOffsetX() + 1.0f;
88 if (childrenRenderOffsetX > contentWidth - contentNode->getComputedConstraints().width) {
89 childrenRenderOffsetX = contentWidth - contentNode->getComputedConstraints().width;
90 }
91 contentNode->setChildrenRenderOffsetX(childrenRenderOffsetX);
92 }
93 }
94
95 /**
96 * Public constructor
97 * @param guiScrollAreaController gui scroll area controller
98 * @param contentNode content node
99 * @param upArrowNode up arrow node
100 * @param downArrowNode down arrow node
101 * @param leftArrowNode left arrow node
102 * @param rightArrowNode right arrow node
103 */
104 GUIScrollAreaControllerActionListener(GUIScrollAreaController* guiScrollAreaController, GUIParentNode* contentNode, GUIElementNode* upArrowNode, GUIElementNode* downArrowNode, GUIElementNode* leftArrowNode, GUIElementNode* rightArrowNode)
105 : guiScrollAreaController(guiScrollAreaController)
106 , contentNode(contentNode)
107 , upArrowNode(upArrowNode)
108 , downArrowNode(downArrowNode)
109 , leftArrowNode(leftArrowNode)
110 , rightArrowNode(rightArrowNode) {
111 }
112
113 private:
114 GUIScrollAreaController* guiScrollAreaController;
115 GUIElementNode* upArrowNode;
116 GUIParentNode* contentNode;
117 GUIElementNode* downArrowNode;
118 GUIElementNode* leftArrowNode;
119 GUIElementNode* rightArrowNode;
120 };
121
122
123 auto const contentNode = required_dynamic_cast<GUIParentNode*>(node->getScreenNode()->getNodeById(node->getId() + "_inner"));
124 auto const upArrowNode = dynamic_cast<GUIElementNode*>(node->getScreenNode()->getNodeById(node->getId() + "_scrollbar_vertical_layout_up"));
125 auto const downArrowNode = dynamic_cast<GUIElementNode*>(node->getScreenNode()->getNodeById(node->getId() + "_scrollbar_vertical_layout_down"));
126 auto const leftArrowNode = dynamic_cast<GUIElementNode*>(node->getScreenNode()->getNodeById(node->getId() + "_scrollbar_horizontal_layout_left"));
127 auto const rightArrowNode = dynamic_cast<GUIElementNode*>(node->getScreenNode()->getNodeById(node->getId() + "_scrollbar_horizontal_layout_right"));
128 node->getScreenNode()->addActionListener(actionListener = new GUIScrollAreaControllerActionListener(this, contentNode, upArrowNode, downArrowNode, leftArrowNode, rightArrowNode));
129}
130
132{
133 if (actionListener != nullptr) {
135 delete actionListener;
136 actionListener = nullptr;
137 }
138}
139
141{
142 //
143 {
144 auto const contentNode = required_dynamic_cast<GUIParentNode*>(node->getScreenNode()->getNodeById(node->getId() + "_inner"));
145 float elementHeight = contentNode->getComputedConstraints().height;
146 float contentHeight = contentNode->getContentHeight();
147 auto scrollableHeight = contentHeight - elementHeight;
148 if (contentHeight > elementHeight) {
149 required_dynamic_cast<GUIElementNode*>(node)->getActiveConditions().add("vertical-scrollbar");
150 } else {
151 required_dynamic_cast<GUIElementNode*>(node)->getActiveConditions().remove("vertical-scrollbar");
152 contentNode->setChildrenRenderOffsetY(0.0f);
153 }
154 }
155 {
156 auto const contentNode = required_dynamic_cast<GUIParentNode*>(node->getScreenNode()->getNodeById(node->getId() + "_inner"));
157 float elementWidth = contentNode->getComputedConstraints().width;
158 float contentWidth = contentNode->getContentWidth();
159 auto scrollableWidth = contentWidth - elementWidth;
160 if (contentWidth > elementWidth) {
161 required_dynamic_cast<GUIElementNode*>(node)->getActiveConditions().add("horizontal-scrollbar");
162 } else {
163 contentNode->setChildrenRenderOffsetX(0.0f);
164 required_dynamic_cast<GUIElementNode*>(node)->getActiveConditions().remove("horizontal-scrollbar");
165 }
166 }
167}
168
170{
171}
172
174{
175}
176
178{
179}
180
182{
183}
184
186{
187}
188
190{
191 return false;
192}
193
195{
196 return value;
197}
198
200{
201}
202
204{
205}
206
GUI module class.
Definition: GUI.h:66
void initialize() override
Initialize controller after element has been created.
void handleKeyboardEvent(GUIKeyboardEvent *event) override
Handle keyboard event.
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.
void setDisabled(bool disabled) override
Set disabled.
void onSubTreeChange() override
On sub tree change.
GUI node controller base class.
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.
Mutable string class.
Definition: MutableString.h:16
GUI action listener interface.