20GUIScrollAreaController::GUIScrollAreaController(
GUINode* node)
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)
48 auto childrenRenderOffsetY = contentNode->getChildrenRenderOffsetY() - 1.0f;
49 if (childrenRenderOffsetY < 0.0f)
50 childrenRenderOffsetY = 0.0f;
52 contentNode->setChildrenRenderOffsetY(childrenRenderOffsetY);
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)
61 auto childrenRenderOffsetY = contentNode->getChildrenRenderOffsetY() + 1.0f;
62 if (childrenRenderOffsetY > contentHeight - contentNode->getComputedConstraints().height) {
63 childrenRenderOffsetY = contentHeight - contentNode->getComputedConstraints().height;
65 contentNode->setChildrenRenderOffsetY(childrenRenderOffsetY);
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)
74 auto childrenRenderOffsetX = contentNode->getChildrenRenderOffsetX() - 1.0f;
75 if (childrenRenderOffsetX < 0.0f)
76 childrenRenderOffsetX = 0.0f;
78 contentNode->setChildrenRenderOffsetX(childrenRenderOffsetX);
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)
87 auto childrenRenderOffsetX = contentNode->getChildrenRenderOffsetX() + 1.0f;
88 if (childrenRenderOffsetX > contentWidth - contentNode->getComputedConstraints().width) {
89 childrenRenderOffsetX = contentWidth - contentNode->getComputedConstraints().width;
91 contentNode->setChildrenRenderOffsetX(childrenRenderOffsetX);
105 : guiScrollAreaController(guiScrollAreaController)
106 , contentNode(contentNode)
107 , upArrowNode(upArrowNode)
108 , downArrowNode(downArrowNode)
109 , leftArrowNode(leftArrowNode)
110 , rightArrowNode(rightArrowNode) {
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");
151 required_dynamic_cast<GUIElementNode*>(
node)->getActiveConditions().remove(
"vertical-scrollbar");
152 contentNode->setChildrenRenderOffsetY(0.0f);
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");
163 contentNode->setChildrenRenderOffsetX(0.0f);
164 required_dynamic_cast<GUIElementNode*>(
node)->getActiveConditions().remove(
"horizontal-scrollbar");
GUI node controller base class.
GUIScreenNode * getScreenNode()
GUI parent node base class thats supporting child nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
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.