TDME2 1.9.121
GUITableCellNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <set>
4#include <string>
5
6#include <tdme/tdme.h>
8#include <tdme/gui/fwd-tdme.h>
12
13using std::set;
14using std::string;
15
31
32/**
33 * GUI panel node
34 * @author Andreas Drewke
35 * @version $Id$
36 */
38 : public GUILayoutNode
39{
41
42protected:
43 /**
44 * Constructor
45 * @param screenNode screen node
46 * @param parentNode parent node
47 * @param id id
48 * @param flow flow
49 * @param overflowX overflow x
50 * @param overflowY overflow y
51 * @param alignments alignments
52 * @param requestedConstraints requested constraints
53 * @param backgroundColor background color
54 * @param backgroundImage background image
55 * @param backgroundImageScale9Grid background image scale 9 grid
56 * @param backgroundImageEffectColorMul background image effect color mul
57 * @param backgroundImageEffectColorAdd background image effect color add
58 * @param border border
59 * @param padding padding
60 * @param showOn show on
61 * @param hideOn hide on
62 * @param alignment alignment
63 */
67 const string& id,
74 const string& backgroundImage,
83 );
84
85 // overridden methods
86 const string getNodeType() override;
87
88public:
89 /**
90 * Create requested constraints
91 * @param left left
92 * @param top top
93 * @param width width
94 * @param height height
95 * @param factor factor
96 * @return requested constraints
97 */
98 static GUINode_RequestedConstraints createRequestedConstraints(const string& left, const string& top, const string& width, const string& height, int factor);
99
100};
GUI parser.
Definition: GUIParser.h:39
GUILayoutNode_Alignment * alignment
Definition: GUILayoutNode.h:29
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
GUIParentNode_Overflow * overflowX
Definition: GUIParentNode.h:67
GUIParentNode_Overflow * overflowY
Definition: GUIParentNode.h:68
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
const string getNodeType() override
static GUINode_RequestedConstraints createRequestedConstraints(const string &left, const string &top, const string &width, const string &height, int factor)
Create requested constraints.
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.