TDME2 1.9.121
GUIPanelNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_set>
5
6#include <tdme/tdme.h>
8#include <tdme/gui/fwd-tdme.h>
11
12using std::string;
13using std::unordered_set;
14
30
31/**
32 * GUI panel node
33 * TODO: remove me!
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 // overridden methods
90 void determineMouseEventNodes(GUIMouseEvent* event, bool floatingNode, unordered_set<string>& eventNodeIds, unordered_set<string>& eventFloatingNodeIds) override;
91
92};
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 panel node TODO: remove me!
Definition: GUIPanelNode.h:39
const string getNodeType() override
void determineMouseEventNodes(GUIMouseEvent *event, bool floatingNode, unordered_set< string > &eventNodeIds, unordered_set< string > &eventFloatingNodeIds) override
Determine mouse event nodes.
GUIPanelNode(GUIScreenNode *screenNode, GUIParentNode *parentNode, const string &id, GUINode_Flow *flow, GUIParentNode_Overflow *overflowX, GUIParentNode_Overflow *overflowY, 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, GUILayoutNode_Alignment *alignment)
Constructor.
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
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.