TDME2 1.9.121
GUIHorizontalScrollbarInternalNode.cpp
Go to the documentation of this file.
2
3#include <array>
4#include <vector>
5
6#include <tdme/tdme.h>
15#include <tdme/gui/GUI.h>
16
17using std::array;
18using std::vector;
19
22using tdme::gui::nodes::GUIHorizontalScrollbarInternalController_State;
30using tdme::gui::GUI;
31
32GUIHorizontalScrollbarInternalNode::GUIHorizontalScrollbarInternalNode(
33 GUIScreenNode* screenNode,
34 GUIParentNode* parentNode, const
35 string& id,
36 GUINode_Flow* flow,
37 const GUINode_Alignments& alignments,
38 const GUINode_RequestedConstraints& requestedConstraints,
39 const GUIColor& backgroundColor,
40 const string& backgroundImage,
41 const GUINode_Scale9Grid& backgroundImageScale9Grid,
42 const GUIColor& backgroundImageEffectColorMul,
43 const GUIColor& backgroundImageEffectColorAdd,
44 const GUINode_Border& border,
45 const GUINode_Padding& padding,
46 const GUINodeConditions& showOn,
47 const GUINodeConditions& hideOn,
48 const GUIColor& barColorNone,
49 const GUIColor& barColorMouseOver,
50 const GUIColor& barColorDragging
51 ):
52 GUINode(screenNode, parentNode, id, flow, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScale9Grid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn)
53{
55 this->barColorNone = barColorNone;
56 this->barColorMouseOver = barColorMouseOver;
57 this->barColorDragging = barColorDragging;
58}
59
61{
62 return "scrollbar";
63}
64
66{
67 return false;
68}
69
71{
73}
74
76{
78}
79
81{
82 if (shouldRender() == false) return;
83
84 GUINode::render(guiRenderer);
85 auto screenWidth = screenNode->getScreenWidth();
86 auto screenHeight = screenNode->getScreenHeight();
87 auto controller = required_dynamic_cast<GUIHorizontalScrollbarInternalController*>(this->controller);
88 auto barWidth = controller->getBarWidth();
89 auto barLeft = controller->getBarLeft();
90 auto left = barLeft;
92 auto width = barWidth;
94 array<float, 4> barColorArray;
95 {
96 auto state = controller->getState();
98 barColorArray = barColorNone.getArray();
99 } else
101 barColorArray = barColorMouseOver.getArray();
102 } else
104 barColorArray = barColorDragging.getArray();
105 }
106 }
107 guiRenderer->bindTexture(0);
108 guiRenderer->addQuad(
109 ((left) / (screenWidth / 2.0f)) - 1.0f,
110 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
111 barColorArray[0],
112 barColorArray[1],
113 barColorArray[2],
114 barColorArray[3],
115 0.0f,
116 1.0f,
117 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
118 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
119 barColorArray[0],
120 barColorArray[1],
121 barColorArray[2],
122 barColorArray[3],
123 1.0f,
124 1.0f,
125 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
126 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
127 barColorArray[0],
128 barColorArray[1],
129 barColorArray[2],
130 barColorArray[3],
131 1.0f,
132 0.0f,
133 ((left) / (screenWidth / 2.0f)) - 1.0f,
134 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
135 barColorArray[0],
136 barColorArray[1],
137 barColorArray[2],
138 barColorArray[3],
139 0.0f,
140 0.0f
141 );
142 guiRenderer->render();
143}
144
array< float, 4 > & getArray() const
Definition: Color4Base.h:219
GUI module class.
Definition: GUI.h:66
GUI element node conditions.
GUI node controller base class.
GUI node base class.
Definition: GUINode.h:63
GUINodeController * controller
Definition: GUINode.h:162
GUINode_Border border
Definition: GUINode.h:159
virtual void render(GUIRenderer *guiRenderer)
Render.
Definition: GUINode.cpp:508
GUINode_ComputedConstraints computedConstraints
Definition: GUINode.h:151
GUIScreenNode * screenNode
Definition: GUINode.h:146
bool shouldRender()
Determine if to render.
Definition: GUINode.h:295
friend class GUIHorizontalScrollbarInternalController
Definition: GUINode.h:74
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
void bindTexture(int32_t textureId)
Bind texture.
void addQuad(float x1, float y1, float colorR1, float colorG1, float colorB1, float colorA1, float tu1, float tv1, float x2, float y2, float colorR2, float colorG2, float colorB2, float colorA2, float tu2, float tv2, float x3, float y3, float colorR3, float colorG3, float colorB3, float colorA3, float tu3, float tv3, float x4, float y4, float colorR4, float colorG4, float colorB4, float colorA4, float tu4, float tv4)
Add quad Note: quad vertices order 1 2 +-—+ | | | | +-—+ 4 3.
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.