TGUI  1.0-beta
Loading...
Searching...
No Matches
ColorPicker.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2022 Bruno Van de Velde (vdv_b@tgui.eu)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25#ifndef TGUI_COLOR_PICKER_HPP
26#define TGUI_COLOR_PICKER_HPP
27
28
29#include <TGUI/Widgets/ChildWindow.hpp>
30#include <TGUI/Widgets/Slider.hpp>
31#include <TGUI/Widgets/Panel.hpp>
32#include <TGUI/Renderers/ColorPickerRenderer.hpp>
33
35
36namespace tgui
37{
41 class TGUI_API ColorPicker : public ChildWindow
42 {
43 public:
44
45 using Ptr = std::shared_ptr<ColorPicker>;
46 using ConstPtr = std::shared_ptr<const ColorPicker>;
47
48 static constexpr const char StaticWidgetType[] = "ColorPicker";
49
50
58 ColorPicker(const char* typeName = StaticWidgetType, bool initRenderer = true);
59
60
69 static ColorPicker::Ptr create(const String& title = "", Color color = Color::Black);
70
71
76
77
81 ColorPicker(ColorPicker&& copy) noexcept;
82
83
88
89
93 ColorPicker& operator=(ColorPicker&& right) noexcept;
94
95
104 static ColorPicker::Ptr copy(const ColorPicker::ConstPtr& colorPicker);
105
106
112 const ColorPickerRenderer* getSharedRenderer() const;
113
120
121
127 void setColor(const Color& color);
128
129
136
137
141 void leftMousePressed(Vector2f pos) override;
142
146 void leftMouseButtonNoLongerDown() override;
147
151 void mouseMoved(Vector2f pos) override;
152
153
160 void draw(BackendRenderTarget& target, RenderStates states) const override;
161
162
164 protected:
165
167 // Makes sure all widgets lie within the window and places them on the correct position.
169 void rearrange();
170
171
181 Signal& getSignal(String signalName) override;
182
183
190 void rendererChanged(const String& property) override;
191
192
196 std::unique_ptr<DataIO::Node> save(SavingRenderersMap& renderers) const override;
197
198
202 void load(const std::unique_ptr<DataIO::Node>& node, const LoadingRenderersMap& renderers) override;
203
204
206 // Makes a copy of the widget
208 Widget::Ptr clone() const override;
209
210
212 private:
213
215 // Figure and connect signals of widgets
217 void identifyButtonsAndConnect();
218
219
221 public:
222
223 SignalColor onColorChange = {"ColorChanged"};
224 SignalColor onOkPress = {"OkPress"};
225
226
228 protected:
229
230 Texture m_colorWheelTexture;
231 Sprite m_colorWheelSprite;
232
233 Slider::Ptr m_red = Slider::create(0, 255);
234 Slider::Ptr m_green = Slider::create(0, 255);
235 Slider::Ptr m_blue = Slider::create(0, 255);
236 Slider::Ptr m_alpha = Slider::create(0, 255);
237
238 Slider::Ptr m_value = Slider::create(0, 100);
239
240 Panel::Ptr m_last = Panel::create({60, 30});
241 Panel::Ptr m_current = Panel::create({60, 30});
242
243 bool m_colorRead = false;
244 };
245
247}
248
250#endif //TGUI_COLOR_PICKER_HPP
Base class for render targets.
Definition: BackendRenderTarget.hpp:48
Child window widget.
Definition: ChildWindow.hpp:44
Definition: ColorPickerRenderer.hpp:37
Color picker widget.
Definition: ColorPicker.hpp:42
static ColorPicker::Ptr copy(const ColorPicker::ConstPtr &colorPicker)
Makes a copy of another color picker.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
ColorPickerRenderer * getRenderer()
Returns the renderer, which gives access to functions that determine how the widget is displayed.
void load(const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override
Loads the widget from a tree of nodes.
Signal & getSignal(String signalName) override
Retrieves a signal based on its name.
ColorPickerRenderer * getSharedRenderer()
Returns the renderer, which gives access to functions that determine how the widget is displayed.
void rendererChanged(const String &property) override
Function called when one of the properties of the renderer is changed.
static ColorPicker::Ptr create(const String &title="", Color color=Color::Black)
Creates a new color picker widget.
std::shared_ptr< ColorPicker > Ptr
Shared widget pointer.
Definition: ColorPicker.hpp:45
Color getColor() const
Returns the picked color.
std::shared_ptr< const ColorPicker > ConstPtr
Shared constant widget pointer.
Definition: ColorPicker.hpp:46
ColorPicker & operator=(ColorPicker &&right) noexcept
Overload of move assignment operator.
ColorPicker(ColorPicker &&copy) noexcept
Move constructor.
ColorPicker(const ColorPicker &copy)
Copy constructor.
void setColor(const Color &color)
Changes the color of Color Picker.
ColorPicker & operator=(const ColorPicker &right)
Overload of copy assignment operator.
void draw(BackendRenderTarget &target, RenderStates states) const override
Draw the widget to a render target.
std::unique_ptr< DataIO::Node > save(SavingRenderersMap &renderers) const override
Saves the widget as a tree node in order to save it to a file.
Wrapper for colors.
Definition: Color.hpp:63
std::shared_ptr< Panel > Ptr
Shared widget pointer.
Definition: Panel.hpp:44
Signal to which the user can subscribe to get callbacks from.
Definition: Signal.hpp:58
std::shared_ptr< Slider > Ptr
Shared widget pointer.
Definition: Slider.hpp:44
Definition: Sprite.hpp:45
Wrapper class to store strings.
Definition: String.hpp:79
Definition: Texture.hpp:52
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition: Widget.hpp:73
Namespace that contains all TGUI functions and classes.
Definition: AbsoluteOrRelativeValue.hpp:36
States used for drawing.
Definition: RenderStates.hpp:39