TDME2 1.9.121
GUIVerticalScrollbarInternalNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
11
12using std::string;
13
26
27/**
28 * GUI vertical scroll bar internal node
29 * @author Andreas Drewke
30 * @version $Id$
31 */
33 : public GUINode
34{
35
36private:
40
41protected:
42 const string getNodeType() override;
43 bool isContentNode() override;
44
45public:
46 /**
47 * Constructor
48 * @param screenNode screen node
49 * @param parentNode parent node
50 * @param id id
51 * @param flow flow
52 * @param alignments alignments
53 * @param requestedConstraints requested constraints
54 * @param backgroundColor background color
55 * @param backgroundImage background image
56 * @param backgroundImageScale9Grid background image scale 9 grid
57 * @param backgroundImageEffectColorMul background image effect color mul
58 * @param backgroundImageEffectColorAdd background image effect color add
59 * @param border border
60 * @param padding padding
61 * @param showOn show on
62 * @param hideOn hide on
63 * @param barColorNone bar color none
64 * @param barColorMouseOver bar color mouse over
65 * @param barColorDragging bar color dragging
66 */
70 const string& id,
75 const string& backgroundImage,
86 );
87
88 // overridden methods
89 int getContentWidth() override;
90 int getContentHeight() override;
91 void render(GUIRenderer* guiRenderer) override;
92
93};
GUI element node conditions.
GUI node base class.
Definition: GUINode.h:63
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
GUIVerticalScrollbarInternalNode(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, const GUIColor &barColorNone, const GUIColor &barColorMouseOver, const GUIColor &barColorDragging)
Constructor.
void render(GUIRenderer *guiRenderer) override
Render.
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.