TDME2 1.9.121
GUIGradientNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
7#include <tdme/gui/fwd-tdme.h>
15
16using std::string;
17
33
34/**
35 * GUI gradient node
36 * @author Andreas Drewke
37 * @version $Id$
38 */
40 : public GUINode
41{
43
44public:
45 struct Gradient {
46 int count { 0 };
47 array<GUIColor, 10> colors;
48 array<float, 10> colorStarts;
49 float rotationAngle { 0.0f };
50 };
51
52 /**
53 * Create gradient from string values
54 * @param colors colors
55 * @param rotation rotation
56 */
57 static Gradient createGradient(const string& colors, const string& rotation);
58
59private:
63 Texture* maskTexture { nullptr };
65 int32_t maskTextureId { 0 };
66
68 string mask;
69
71protected:
72 /**
73 * Constructor
74 * @param screenNode screen node
75 * @param parentNode parent node
76 * @param id id
77 * @param flow flow
78 * @param alignments alignments
79 * @param requestedConstraints requested constraints
80 * @param backgroundColor background color
81 * @param backgroundImage background image
82 * @param backgroundImageScale9Grid background image scale 9 grid
83 * @param backgroundImageEffectColorMul background image effect color mul
84 * @param backgroundImageEffectColorAdd background image effect color add
85 * @param border border
86 * @param padding padding
87 * @param showOn show on
88 * @param hideOn hide on
89 * @param effectColorMul effect color mul
90 * @param effectColorAdd effect color add
91 * @param clipping clipping
92 * @param mask mask image
93 * @param maskMaxValue maximum value of mask to display image
94 * @param gradient gradient
95 * @throws tdme::gui::GUIParserException
96 */
100 const string& id,
105 const string& backgroundImage,
109 const GUINode_Border& border,
116 const string& mask,
117 float maskMaxValue,
118 const Gradient& gradient
119 );
120
121 /**
122 * @return node type
123 */
124 const string getNodeType() override;
125 bool isContentNode() override;
126
127public:
128 // overridden methods
129 int getContentWidth() override;
130 int getContentHeight() override;
131 void dispose() override;
132 void render(GUIRenderer* guiRenderer) override;
133
134 /**
135 * Set texture matrix
136 * @param textureMatrix texture matrix
137 */
139
140 /**
141 * @return effect color mul
142 */
144
145 /**
146 * Set effect color mul
147 * @param effectColorMul effect color mul
148 */
150
151 /**
152 * @return effect color add
153 */
155
156 /**
157 * Set effect color add
158 * @param effectColorAdd effect color add
159 */
161
162 /**
163 * @return clipping
164 */
166
167 /**
168 * Create clipping
169 * @param allClipping all sides
170 * @param left left
171 * @param top top
172 * @param right right
173 * @param bottom bottom
174 */
175 static GUINode_Clipping createClipping(const string& allClipping, const string& left, const string& top, const string& right, const string& bottom);
176
177 /**
178 * @return mask source
179 */
180 const string& getMask();
181
182 /**
183 * Set mask source
184 * @param mask mask source
185 */
186 void setMask(const string& mask);
187
188 /**
189 * @return maximum value of mask to display image
190 */
192 return maskMaxValue;
193 }
194
195 /**
196 * Set maximum value of mask to display image
197 * @param maskMinValue value of mask to display image
198 */
200 this->maskMaxValue = maskMaxValue;
201 }
202
203};
GUI parser.
Definition: GUIParser.h:39
static GUINode_Clipping createClipping(const string &allClipping, const string &left, const string &top, const string &right, const string &bottom)
Create clipping.
const string getNodeType() override
void setEffectColorMul(const GUIColor &effectColorMul)
Set effect color mul.
void dispose() override
Dispose node.
void setMaskMaxValue(float maskMaxValue)
Set maximum value of mask to display image.
void setTextureMatrix(const Matrix2D3x3 &textureMatrix)
Set texture matrix.
void setMask(const string &mask)
Set mask source.
GUIGradientNode(GUIScreenNode *screenNode, GUIParentNode *parentNode, const string &id, GUINode_Flow *flow, const GUINode_Alignments &alignments, const GUINode_RequestedConstraints &requestedConstraints, const GUIColor &backgroundColor, const string &backgroundImage, const GUINode_Scale9Grid &backgroundImageScale9Grid, const GUIColor &backgroundImageEffectColorMul, const GUIColor &backgroundImageEffectColorAdd, const GUINode_Border &border, const GUINode_Padding &padding, const GUINodeConditions &showOn, const GUINodeConditions &hideOn, const GUIColor &effectColorMul, const GUIColor &effectColorAdd, const GUINode_Clipping &clipping, const string &mask, float maskMaxValue, const Gradient &gradient)
Constructor.
static Gradient createGradient(const string &colors, const string &rotation)
Create gradient from string values.
void render(GUIRenderer *guiRenderer) override
Render.
void setEffectColorAdd(const GUIColor &effectColorAdd)
Set effect color add.
GUI element node conditions.
GUI node base class.
Definition: GUINode.h:63
GUINodeConditions hideOn
Definition: GUINode.h:161
GUIColor backgroundImageEffectColorMul
Definition: GUINode.h:156
GUINode_Border border
Definition: GUINode.h:159
GUINode_Scale9Grid backgroundImageScale9Grid
Definition: GUINode.h:155
GUIColor backgroundImageEffectColorAdd
Definition: GUINode.h:157
GUIParentNode * parentNode
Definition: GUINode.h:147
GUINode_Padding padding
Definition: GUINode.h:158
GUIScreenNode * screenNode
Definition: GUINode.h:146
GUINode_RequestedConstraints requestedConstraints
Definition: GUINode.h:150
GUINode_Alignments alignments
Definition: GUINode.h:149
GUINodeConditions showOn
Definition: GUINode.h:160
GUINode_Flow * flow
Definition: GUINode.h:85
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
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
GUI node border entity.
GUI node clipping entity.
GUI node padding entity.
GUI node scale 9 grid entity.