TDME2
1.9.121
src
tdme
gui
nodes
GUIImageNode.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/engine/fileio/textures/fwd-tdme.h
>
7
#include <
tdme/gui/fwd-tdme.h
>
8
#include <
tdme/gui/nodes/fwd-tdme.h
>
9
#include <
tdme/gui/nodes/GUIColor.h
>
10
#include <
tdme/gui/nodes/GUINode_Clipping.h
>
11
#include <
tdme/gui/nodes/GUINode_Scale9Grid.h
>
12
#include <
tdme/gui/nodes/GUITextureBaseNode.h
>
13
#include <
tdme/gui/renderer/fwd-tdme.h
>
14
15
using
std::string;
16
17
using
tdme::engine::fileio::textures::Texture
;
18
using
tdme::gui::nodes::GUIColor
;
19
using
tdme::gui::nodes::GUINode_Alignments
;
20
using
tdme::gui::nodes::GUINode_Border
;
21
using
tdme::gui::nodes::GUINode_Clipping
;
22
using
tdme::gui::nodes::GUINode_Flow
;
23
using
tdme::gui::nodes::GUINode_Padding
;
24
using
tdme::gui::nodes::GUINode_RequestedConstraints
;
25
using
tdme::gui::nodes::GUINode_Scale9Grid
;
26
using
tdme::gui::nodes::GUINodeConditions
;
27
using
tdme::gui::nodes::GUIParentNode
;
28
using
tdme::gui::nodes::GUIScreenNode
;
29
using
tdme::gui::nodes::GUITextureBaseNode
;
30
31
/**
32
* GUI image node
33
* @author Andreas Drewke
34
* @version $Id$
35
*/
36
class
tdme::gui::nodes::GUIImageNode
final
37
:
public
GUITextureBaseNode
38
{
39
friend
class
tdme::gui::GUIParser
;
40
41
private
:
42
Texture
*
texture
{
nullptr
};
43
string
source
;
44
STATIC_DLL_IMPEXT
static
int
thumbnailTextureIdx
;
45
46
protected
:
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
*/
77
GUIImageNode
(
78
GUIScreenNode
*
screenNode
,
79
GUIParentNode
*
parentNode
,
80
const
string
&
id
,
81
GUINode_Flow
*
flow
,
82
const
GUINode_Alignments
&
alignments
,
83
const
GUINode_RequestedConstraints
&
requestedConstraints
,
84
const
GUIColor
&
backgroundColor
,
85
const
string
& backgroundImage,
86
const
GUINode_Scale9Grid
&
backgroundImageScale9Grid
,
87
const
GUIColor
&
backgroundImageEffectColorMul
,
88
const
GUIColor
&
backgroundImageEffectColorAdd
,
89
const
GUINode_Border
&
border
,
90
const
GUINode_Padding
&
padding
,
91
const
GUINodeConditions
&
showOn
,
92
const
GUINodeConditions
&
hideOn
,
93
const
string
&
source
,
94
const
RequestedDimensionConstraints
&
requestedDimensionConstraints
,
95
bool
mirrorX
,
96
bool
mirrorY
,
97
const
GUIColor
&
effectColorMul
,
98
const
GUIColor
&
effectColorAdd
,
99
const
GUINode_Scale9Grid
&
scale9Grid
,
100
const
GUINode_Clipping
&
clipping
,
101
const
string
&
mask
,
102
float
maskMaxValue
,
103
float
rotation
104
);
105
106
/**
107
* @return node type
108
*/
109
const
string
getNodeType
()
override
;
110
111
public
:
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
};
GUIColor.h
GUINode_Clipping.h
GUINode_Scale9Grid.h
GUITextureBaseNode.h
tdme::engine::fileio::textures::Texture
Texture entity.
Definition:
Texture.h:21
tdme::gui::GUIParser
GUI parser.
Definition:
GUIParser.h:39
tdme::gui::nodes::GUIColor
GUI color.
Definition:
GUIColor.h:29
tdme::gui::nodes::GUIImageNode
GUI image node.
Definition:
GUIImageNode.h:38
tdme::gui::nodes::GUIImageNode::source
string source
Definition:
GUIImageNode.h:43
tdme::gui::nodes::GUIImageNode::getNodeType
const string getNodeType() override
Definition:
GUIImageNode.cpp:112
tdme::gui::nodes::GUIImageNode::dispose
void dispose() override
Dispose node.
Definition:
GUIImageNode.cpp:117
tdme::gui::nodes::GUIImageNode::setSource
void setSource(const string &source)
Set image source.
Definition:
GUIImageNode.cpp:127
tdme::gui::nodes::GUIImageNode::thumbnailTextureIdx
static STATIC_DLL_IMPEXT int thumbnailTextureIdx
Definition:
GUIImageNode.h:44
tdme::gui::nodes::GUIImageNode::getTexture
Texture * getTexture()
Definition:
GUIImageNode.h:129
tdme::gui::nodes::GUIImageNode::texture
Texture * texture
Definition:
GUIImageNode.h:42
tdme::gui::nodes::GUIImageNode::rotate
void rotate(float rotation)
Rotate image around center.
Definition:
GUIImageNode.cpp:188
tdme::gui::nodes::GUIImageNode::getSource
const string & getSource()
Definition:
GUIImageNode.cpp:123
tdme::gui::nodes::GUINodeConditions
GUI element node conditions.
Definition:
GUINodeConditions.h:23
tdme::gui::nodes::GUINode_Flow
GUI node flow enum.
Definition:
GUINode_Flow.h:28
tdme::gui::nodes::GUINode::hideOn
GUINodeConditions hideOn
Definition:
GUINode.h:161
tdme::gui::nodes::GUINode::backgroundColor
GUIColor backgroundColor
Definition:
GUINode.h:152
tdme::gui::nodes::GUINode::backgroundImageEffectColorMul
GUIColor backgroundImageEffectColorMul
Definition:
GUINode.h:156
tdme::gui::nodes::GUINode::border
GUINode_Border border
Definition:
GUINode.h:159
tdme::gui::nodes::GUINode::backgroundImageScale9Grid
GUINode_Scale9Grid backgroundImageScale9Grid
Definition:
GUINode.h:155
tdme::gui::nodes::GUINode::backgroundImageEffectColorAdd
GUIColor backgroundImageEffectColorAdd
Definition:
GUINode.h:157
tdme::gui::nodes::GUINode::parentNode
GUIParentNode * parentNode
Definition:
GUINode.h:147
tdme::gui::nodes::GUINode::padding
GUINode_Padding padding
Definition:
GUINode.h:158
tdme::gui::nodes::GUINode::screenNode
GUIScreenNode * screenNode
Definition:
GUINode.h:146
tdme::gui::nodes::GUINode::requestedConstraints
GUINode_RequestedConstraints requestedConstraints
Definition:
GUINode.h:150
tdme::gui::nodes::GUINode::alignments
GUINode_Alignments alignments
Definition:
GUINode.h:149
tdme::gui::nodes::GUINode::showOn
GUINodeConditions showOn
Definition:
GUINode.h:160
tdme::gui::nodes::GUINode::flow
GUINode_Flow * flow
Definition:
GUINode.h:85
tdme::gui::nodes::GUINode::GUIImageNode
friend class GUIImageNode
Definition:
GUINode.h:66
tdme::gui::nodes::GUIParentNode
GUI parent node base class thats supporting child nodes.
Definition:
GUIParentNode.h:43
tdme::gui::nodes::GUIScreenNode
GUI screen node that represents a screen that can be rendered via GUI system.
Definition:
GUIScreenNode.h:57
tdme::gui::nodes::GUITextureBaseNode
GUI texture base node.
Definition:
GUITextureBaseNode.h:43
tdme::gui::nodes::GUITextureBaseNode::effectColorAdd
GUIColor effectColorAdd
Definition:
GUITextureBaseNode.h:56
tdme::gui::nodes::GUITextureBaseNode::mask
string mask
Definition:
GUITextureBaseNode.h:65
tdme::gui::nodes::GUITextureBaseNode::scale9Grid
GUINode_Scale9Grid scale9Grid
Definition:
GUITextureBaseNode.h:64
tdme::gui::nodes::GUITextureBaseNode::clipping
GUINode_Clipping clipping
Definition:
GUITextureBaseNode.h:57
tdme::gui::nodes::GUITextureBaseNode::mirrorX
bool mirrorX
Definition:
GUITextureBaseNode.h:53
tdme::gui::nodes::GUITextureBaseNode::requestedDimensionConstraints
RequestedDimensionConstraints requestedDimensionConstraints
Definition:
GUITextureBaseNode.h:52
tdme::gui::nodes::GUITextureBaseNode::effectColorMul
GUIColor effectColorMul
Definition:
GUITextureBaseNode.h:55
tdme::gui::nodes::GUITextureBaseNode::mirrorY
bool mirrorY
Definition:
GUITextureBaseNode.h:54
tdme::gui::nodes::GUITextureBaseNode::maskMaxValue
float maskMaxValue
Definition:
GUITextureBaseNode.h:59
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
tdme::gui::nodes::GUINode_Alignments
GUI node alignments.
Definition:
GUINode_Alignments.h:22
tdme::gui::nodes::GUINode_Border
GUI node border entity.
Definition:
GUINode_Border.h:24
tdme::gui::nodes::GUINode_Clipping
GUI node clipping entity.
Definition:
GUINode_Clipping.h:14
tdme::gui::nodes::GUINode_Padding
GUI node padding entity.
Definition:
GUINode_Padding.h:12
tdme::gui::nodes::GUINode_RequestedConstraints
GUI node requested constraints entity.
Definition:
GUINode_RequestedConstraints.h:22
tdme::gui::nodes::GUINode_Scale9Grid
GUI node scale 9 grid entity.
Definition:
GUINode_Scale9Grid.h:12
tdme::gui::nodes::GUITextureBaseNode::RequestedDimensionConstraints
Definition:
GUITextureBaseNode.h:46
tdme.h
STATIC_DLL_IMPEXT
#define STATIC_DLL_IMPEXT
Definition:
tdme.h:11
Generated by
1.9.3