TDME2 1.9.121
GUIImageNode.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>
14
15using std::string;
16
30
31/**
32 * GUI image node
33 * @author Andreas Drewke
34 * @version $Id$
35 */
37 : public GUITextureBaseNode
38{
40
41private:
42 Texture* texture { nullptr };
43 string source;
45
46protected:
47 /**
48 * Constructor
49 * @param screenNode screen node
50 * @param parentNode parent node
51 * @param id id
52 * @param flow flow
53 * @param alignments alignments
54 * @param requestedConstraints requested constraints
55 * @param backgroundColor background color
56 * @param backgroundImage background image
57 * @param backgroundImageScale9Grid background image scale 9 grid
58 * @param backgroundImageEffectColorMul background image effect color mul
59 * @param backgroundImageEffectColorAdd background image effect color add
60 * @param border border
61 * @param padding padding
62 * @param showOn show on
63 * @param hideOn hide on
64 * @param source source
65 * @param requestedDimensionConstraints requested dimension constraints
66 * @param mirrorX mirror X
67 * @param mirrorY mirror Y
68 * @param effectColorMul effect color mul
69 * @param effectColorAdd effect color add
70 * @param scale9Grid scale 9 grid
71 * @param clipping clipping
72 * @param mask mask image
73 * @param maskMaxValue maximum value of mask to display image
74 * @param rotation rotation
75 * @throws tdme::gui::GUIParserException
76 */
80 const string& id,
85 const string& backgroundImage,
93 const string& source,
95 bool mirrorX,
96 bool mirrorY,
101 const string& mask,
102 float maskMaxValue,
103 float rotation
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 image source
117 */
118 const string& getSource();
119
120 /**
121 * Set image source
122 * @param source source
123 */
124 void setSource(const string& source);
125
126 /**
127 * @return texture
128 */
129 inline Texture* getTexture() {
130 return texture;
131 }
132
133 /**
134 * Rotate image around center
135 */
136 void rotate(float rotation);
137};
GUI parser.
Definition: GUIParser.h:39
const string getNodeType() override
void dispose() override
Dispose node.
void setSource(const string &source)
Set image source.
static STATIC_DLL_IMPEXT int thumbnailTextureIdx
Definition: GUIImageNode.h:44
void rotate(float rotation)
Rotate image around center.
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
friend class GUIImageNode
Definition: GUINode.h:66
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
GUI node border entity.
GUI node clipping entity.
GUI node padding entity.
GUI node scale 9 grid entity.
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11