TGUI  1.3-dev
Loading...
Searching...
No Matches
Color.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2024 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
26#ifndef TGUI_COLOR_HPP
27#define TGUI_COLOR_HPP
28
29#include <TGUI/String.hpp>
30#include <TGUI/Vertex.hpp>
31
32#if !TGUI_EXPERIMENTAL_USE_STD_MODULE
33 #include <cstdint>
34 #include <string>
35 #include <map>
36#endif
37
38#if TGUI_HAS_RENDERER_BACKEND_SFML_GRAPHICS && !TGUI_DISABLE_SFML_CONVERSIONS
39 #include <SFML/Graphics/Color.hpp>
40#endif
41
43
44TGUI_MODULE_EXPORT namespace tgui
45{
46 class Color;
47}
48
49namespace tgui
50{
51 namespace priv
52 {
53 TGUI_API Color constructColorFromString(const String& string);
54 }
55}
56
57TGUI_MODULE_EXPORT namespace tgui
58{
67#if TGUI_COMPILED_WITH_CPP_VER >= 17
68 class Color
69#else
70 class TGUI_API Color
71#endif
72 {
73 public:
74
78 TGUI_NODISCARD static constexpr Color applyOpacity(const Color& color, float alpha)
79 {
80 return {color.getRed(), color.getGreen(), color.getBlue(), static_cast<std::uint8_t>(color.getAlpha() * alpha)};
81 }
82
83
84 public:
85
91 constexpr Color() :
92 m_isSet{false},
93 m_red {0},
94 m_green{0},
95 m_blue {0},
96 m_alpha{0}
97 {
98 }
99
100#if TGUI_HAS_RENDERER_BACKEND_SFML_GRAPHICS && !TGUI_DISABLE_SFML_CONVERSIONS
106 constexpr Color(const sf::Color& color) :
107 m_isSet{true},
108 m_red {color.r},
109 m_green{color.g},
110 m_blue {color.b},
111 m_alpha{color.a}
112 {
113 }
114#endif
115
124 constexpr Color(std::uint8_t red, std::uint8_t green, std::uint8_t blue, std::uint8_t alpha = 255) :
125 m_isSet{true},
126 m_red {red},
127 m_green{green},
128 m_blue {blue},
129 m_alpha{alpha}
130 {
131 }
132
133
134#if defined (_MSC_VER)
135# pragma warning(push)
136# pragma warning(disable: 26495) // Ignore "Variable is uninitialized" warning to surpress incorrect code analysis
137#endif
145 Color(const String& string) :
146 Color{priv::constructColorFromString(string)}
147 {
148 }
149#if defined (_MSC_VER)
150# pragma warning(pop)
151#endif
152
160 Color(const char* string) :
161 Color{String{string}}
162 {
163 }
164
165
171 TGUI_NODISCARD constexpr bool isSet() const
172 {
173 return m_isSet;
174 }
175
176#if TGUI_HAS_RENDERER_BACKEND_SFML_GRAPHICS && !TGUI_DISABLE_SFML_CONVERSIONS
182 operator sf::Color() const
183 {
184 return {m_red, m_green, m_blue, m_alpha};
185 }
186#endif
187
193 explicit operator Vertex::Color() const
194 {
195 return Vertex::Color{m_red, m_green, m_blue, m_alpha};
196 }
197
198
204 TGUI_NODISCARD constexpr std::uint8_t getRed() const
205 {
206 return m_red;
207 }
208
209
215 TGUI_NODISCARD constexpr std::uint8_t getGreen() const
216 {
217 return m_green;
218 }
219
220
226 TGUI_NODISCARD constexpr std::uint8_t getBlue() const
227 {
228 return m_blue;
229 }
230
231
237 TGUI_NODISCARD constexpr std::uint8_t getAlpha() const
238 {
239 return m_alpha;
240 }
241
242
246 TGUI_NODISCARD constexpr bool operator==(const Color& rhs) const
247 {
248 return (m_isSet == rhs.m_isSet)
249 && (m_red == rhs.m_red)
250 && (m_green == rhs.m_green)
251 && (m_blue == rhs.m_blue)
252 && (m_alpha == rhs.m_alpha);
253 }
254
255
259 TGUI_NODISCARD constexpr bool operator!=(const Color& right) const
260 {
261 return !(*this == right);
262 }
263
264
266 public:
267
268 static const Color Black;
269 static const Color White;
270 static const Color Red;
271 static const Color Green;
272 static const Color Blue;
273 static const Color Yellow;
274 static const Color Magenta;
275 static const Color Cyan;
276 static const Color Transparent;
277
278 static const std::array<std::pair<StringView, Color>, 9> colorNamesMap;
279
280
282 private:
283
284 bool m_isSet = false;
285 std::uint8_t m_red = 0;
286 std::uint8_t m_green = 0;
287 std::uint8_t m_blue = 0;
288 std::uint8_t m_alpha = 0;
289 };
290
292
293
294#if TGUI_COMPILED_WITH_CPP_VER >= 17
295 inline constexpr const Color Color::Black { 0, 0, 0};
296 inline constexpr const Color Color::White {255, 255, 255};
297 inline constexpr const Color Color::Red {255, 0, 0};
298 inline constexpr const Color Color::Green { 0, 255, 0};
299 inline constexpr const Color Color::Blue { 0, 0, 255};
300 inline constexpr const Color Color::Yellow {255, 255, 0};
301 inline constexpr const Color Color::Magenta {255, 0, 255};
302 inline constexpr const Color Color::Cyan { 0, 255, 255};
303 inline constexpr const Color Color::Transparent{ 0, 0, 0, 0};
304
305 inline constexpr const std::array<std::pair<StringView, Color>, 9> Color::colorNamesMap
306 {
307 {{U"black"sv, Color::Black},
308 {U"white"sv, Color::White},
309 {U"red"sv, Color::Red},
310 {U"yellow"sv, Color::Yellow},
311 {U"green"sv, Color::Green},
312 {U"cyan"sv, Color::Cyan},
313 {U"blue"sv, Color::Blue},
314 {U"magenta"sv, Color::Magenta},
315 {U"transparent"sv, Color::Transparent}}
316 };
317#endif
318}
319
321
322namespace tgui
323{
324 namespace priv
325 {
340 TGUI_NODISCARD TGUI_API Color constructColorFromString(const String& string);
341 }
342}
343
345
346#endif // TGUI_COLOR_HPP
Wrapper for colors.
Definition Color.hpp:72
static TGUI_NODISCARD constexpr Color applyOpacity(const Color &color, float alpha)
Returns the color with its alpha channel multiplied with the alpha parameter.
Definition Color.hpp:78
static const Color Transparent
Transparent (black) predefined color.
Definition Color.hpp:276
TGUI_NODISCARD constexpr bool isSet() const
Checks if a color was set.
Definition Color.hpp:171
TGUI_NODISCARD constexpr bool operator!=(const Color &right) const
Compares the color with another one.
Definition Color.hpp:259
constexpr Color(const sf::Color &color)
Creates the object from an sf::Color.
Definition Color.hpp:106
TGUI_NODISCARD constexpr std::uint8_t getAlpha() const
Returns the alpha component of the color.
Definition Color.hpp:237
static const Color Black
Black predefined color.
Definition Color.hpp:268
static const Color Green
Green predefined color.
Definition Color.hpp:271
TGUI_NODISCARD constexpr std::uint8_t getRed() const
Returns the red component of the color.
Definition Color.hpp:204
constexpr Color()
Creates the object without a color.
Definition Color.hpp:91
TGUI_NODISCARD constexpr std::uint8_t getBlue() const
Returns the blue component of the color.
Definition Color.hpp:226
static const Color White
White predefined color.
Definition Color.hpp:269
Color(const char *string)
Creates the object from a string.
Definition Color.hpp:160
TGUI_NODISCARD constexpr bool operator==(const Color &rhs) const
Compares the color with another one.
Definition Color.hpp:246
static const Color Cyan
Cyan predefined color.
Definition Color.hpp:275
static const Color Magenta
Magenta predefined color.
Definition Color.hpp:274
static const Color Yellow
Yellow predefined color.
Definition Color.hpp:273
static const Color Red
Red predefined color.
Definition Color.hpp:270
static const Color Blue
Blue predefined color.
Definition Color.hpp:272
constexpr Color(std::uint8_t red, std::uint8_t green, std::uint8_t blue, std::uint8_t alpha=255)
Creates the object from an the RGB or RGBA values.
Definition Color.hpp:124
TGUI_NODISCARD constexpr std::uint8_t getGreen() const
Returns the green component of the color.
Definition Color.hpp:215
Color(const String &string)
Creates the object from a string.
Definition Color.hpp:145
Wrapper class to store strings.
Definition String.hpp:101
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:39
Definition Vertex.hpp:42