TDME2 1.9.121
GUITextureNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
8#include <tdme/gui/fwd-tdme.h>
16
17using std::string;
18
34
35/**
36 * GUI texture node
37 * @author Andreas Drewke
38 * @version $Id$
39 */
41 : public GUITextureBaseNode
42{
44
45private:
46 Texture* texture { nullptr };
47
48protected:
49 /**
50 * Constructor
51 * @param screenNode screen node
52 * @param parentNode parent node
53 * @param id id
54 * @param flow flow
55 * @param alignments alignments
56 * @param requestedConstraints requested constraints
57 * @param backgroundColor background color
58 * @param backgroundImage background image
59 * @param backgroundImageScale9Grid background image scale 9 grid
60 * @param backgroundImageEffectColorMul background image effect color mul
61 * @param backgroundImageEffectColorAdd background image effect color add
62 * @param border border
63 * @param padding padding
64 * @param showOn show on
65 * @param hideOn hide on
66 * @param texture texture
67 * @param requestedDimensionConstraints requested dimension constraints
68 * @param mirrorX mirror X
69 * @param mirrorY mirror Y
70 * @param effectColorMul effect color mul
71 * @param effectColorAdd effect color add
72 * @param scale9Grid scale 9 grid
73 * @param clipping clipping
74 * @param mask mask image
75 * @param maskMaxValue maximum value of mask to display image
76 * @throws tdme::gui::GUIParserException
77 */
81 const string& id,
86 const string& backgroundImage,
95 const RequestedDimensionConstraints& requestedDimensionConstraints,
96 bool mirrorX,
97 bool mirrorY,
102 const string& mask,
103 float maskMaxValue
104 );
105
106 /**
107 * @return node type
108 */
109 const string getNodeType() override;
110
111public:
112 // overridden methods
113 void dispose() override;
114
115 /**
116 * @return texture
117 */
119
120 /**
121 * Set texture
122 * @param texture texture
123 */
125
126};
Frame buffer class.
Definition: FrameBuffer.h:21
GUI parser.
Definition: GUIParser.h:39
GUI element node conditions.
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
RequestedDimensionConstraints requestedDimensionConstraints
const string getNodeType() override
void dispose() override
Dispose node.
void setTexture(Texture *texture)
Set texture.
GUITextureNode(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, Texture *texture, const RequestedDimensionConstraints &requestedDimensionConstraints, bool mirrorX, bool mirrorY, const GUIColor &effectColorMul, const GUIColor &effectColorAdd, const GUINode_Scale9Grid &scale9Grid, const GUINode_Clipping &clipping, const string &mask, float maskMaxValue)
Constructor.
GUI node border entity.
GUI node clipping entity.
GUI node padding entity.
GUI node scale 9 grid entity.