TDME2 1.9.121
ColorPickerScreenController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
14
15using std::string;
16
26
27/**
28 * Color picker screen controller
29 * @author Andreas Drewke
30 * @version $Id$
31 */
33 : public ScreenController
34 , public virtual GUIActionListener
35 , public virtual GUIChangeListener
36 , public virtual GUIFocusListener
37{
38
39private:
49
50 /**
51 * Update color
52 */
53 void updateColor();
54
55 /**
56 * Update color hex
57 */
58 void updateColorHex();
59
60public:
61 /**
62 * Public constructor
63 */
65
66 /**
67 * Public denstructor
68 */
70
71 // overriden methods
72 GUIScreenNode* getScreenNode() override;
73 void initialize() override;
74 void dispose() override;
75 #if defined(_WIN32) && defined(_MSC_VER)
76 // I do not get it currently, somehow it does not accept override whereas everything works fine
79 void onFocus(GUIElementNode* node);
80 void onUnfocus(GUIElementNode* node);
81 #else
82 void onValueChanged(GUIElementNode* node) override;
84 void onFocus(GUIElementNode* node) override;
85 void onUnfocus(GUIElementNode* node) override;
86 #endif
87
88 /**
89 * Shows the pop up
90 * @param color color
91 * @param onColorChangeAction on color change action
92 */
94
95 /**
96 * Closes the pop up
97 */
98 void close();
99
100 /**
101 * Set color
102 * @param color color
103 */
104 void setColor(const Color4Base& color);
105
106 /**
107 * @return color
108 */
110 return color;
111 }
112
113};
Color 4 base definition class.
Definition: Color4Base.h:19
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void onValueChanged(GUIElementNode *node) override
On value changed.
void show(const Color4Base &color, Action *onColorChangeAction)
Shows the pop up.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
GUI action listener interface.
GUI change listener interface.
GUI focus listener interface.
Screen controller, which connects GUI screen definition with code.
Action Interface.
Definition: Action.h:12