TDME2 1.9.121
GUIFrameBufferNode.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
32
33/**
34 * GUI frame buffer node
35 * @author Andreas Drewke
36 * @version $Id$
37 */
39 : public GUITextureBaseNode
40{
42
43private:
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 frameBuffer frame buffer
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 * @throws tdme::gui::GUIParserException
75 */
79 const string& id,
84 const string& backgroundImage,
93 const RequestedDimensionConstraints& requestedDimensionConstraints,
94 bool mirrorX,
95 bool mirrorY,
100 const string& mask,
101 float maskMaxValue
102 );
103
104 /**
105 * @return node type
106 */
107 const string getNodeType() override;
108
109public:
110 // overridden methods
111 void dispose() override;
112
113 /**
114 * @return frame buffer
115 */
117
118 /**
119 * Set frame buffer
120 * @param frameBuffer frame buffer
121 */
123
124};
Frame buffer class.
Definition: FrameBuffer.h:21
GUI parser.
Definition: GUIParser.h:39
GUIFrameBufferNode(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, FrameBuffer *frameBuffer, 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.
void dispose() override
Dispose node.
void setFrameBuffer(FrameBuffer *frameBuffer)
Set frame buffer.
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
GUI node border entity.
GUI node clipping entity.
GUI node padding entity.
GUI node scale 9 grid entity.