29#include <TGUI/String.hpp>
30#include <TGUI/Vertex.hpp>
35#if TGUI_HAS_RENDERER_BACKEND_SFML_GRAPHICS && !TGUI_DISABLE_SFML_CONVERSIONS
36 #include <SFML/Graphics/Color.hpp>
46 TGUI_API Color constructColorFromString(
const String&
string);
58#if TGUI_COMPILED_WITH_CPP_VER >= 17
91#if TGUI_HAS_RENDERER_BACKEND_SFML_GRAPHICS && !TGUI_DISABLE_SFML_CONVERSIONS
97 constexpr Color(
const sf::Color& color) :
115 constexpr Color(std::uint8_t red, std::uint8_t green, std::uint8_t blue, std::uint8_t alpha = 255) :
125#if defined (_MSC_VER)
126# pragma warning(push)
127# pragma warning(disable: 26495)
137 Color{priv::constructColorFromString(string)}
140#if defined (_MSC_VER)
167#if TGUI_HAS_RENDERER_BACKEND_SFML_GRAPHICS && !TGUI_DISABLE_SFML_CONVERSIONS
173 operator sf::Color()
const
175 return {m_red, m_green, m_blue, m_alpha};
239 return (m_isSet == rhs.m_isSet)
240 && (m_red == rhs.m_red)
241 && (m_green == rhs.m_green)
242 && (m_blue == rhs.m_blue)
243 && (m_alpha == rhs.m_alpha);
252 return !(*
this == right);
269#if TGUI_COMPILED_WITH_CPP_VER >= 17
270 static const std::array<std::pair<StringView, Color>, 9> colorNamesMap;
272 static const std::array<std::pair<std::decay_t<StringView>,
Color>, 9> colorNamesMap;
279 bool m_isSet =
false;
280 std::uint8_t m_red = 0;
281 std::uint8_t m_green = 0;
282 std::uint8_t m_blue = 0;
283 std::uint8_t m_alpha = 0;
304 TGUI_API
Color constructColorFromString(
const String&
string);
310#if TGUI_COMPILED_WITH_CPP_VER >= 17
312 inline constexpr const Color
Color::White {255, 255, 255};
313 inline constexpr const Color
Color::Red {255, 0, 0};
315 inline constexpr const Color
Color::Blue { 0, 0, 255};
318 inline constexpr const Color
Color::Cyan { 0, 255, 255};
321 inline constexpr const std::array<std::pair<StringView, Color>, 9> Color::colorNamesMap
Wrapper for colors.
Definition: Color.hpp:63
constexpr std::uint8_t getAlpha() const
Returns the alpha component of the color.
Definition: Color.hpp:228
static const Color Transparent
Transparent (black) predefined color.
Definition: Color.hpp:267
constexpr Color(const sf::Color &color)
Creates the object from an sf::Color.
Definition: Color.hpp:97
constexpr std::uint8_t getGreen() const
Returns the green component of the color.
Definition: Color.hpp:206
static constexpr Color applyOpacity(const Color &color, float alpha)
Returns the color with its alpha channel multiplied with the alpha parameter.
Definition: Color.hpp:69
static const Color Black
Black predefined color.
Definition: Color.hpp:259
static const Color Green
Green predefined color.
Definition: Color.hpp:262
constexpr Color()
Creates the object without a color.
Definition: Color.hpp:82
constexpr std::uint8_t getBlue() const
Returns the blue component of the color.
Definition: Color.hpp:217
static const Color White
White predefined color.
Definition: Color.hpp:260
constexpr bool operator!=(const Color &right) const
Compares the color with another one.
Definition: Color.hpp:250
Color(const char *string)
Creates the object from a string.
Definition: Color.hpp:151
constexpr std::uint8_t getRed() const
Returns the red component of the color.
Definition: Color.hpp:195
static const Color Cyan
Cyan predefined color.
Definition: Color.hpp:266
constexpr bool isSet() const
Checks if a color was set.
Definition: Color.hpp:162
constexpr bool operator==(const Color &rhs) const
Compares the color with another one.
Definition: Color.hpp:237
static const Color Magenta
Magenta predefined color.
Definition: Color.hpp:265
static const Color Yellow
Yellow predefined color.
Definition: Color.hpp:264
static const Color Red
Red predefined color.
Definition: Color.hpp:261
static const Color Blue
Blue predefined color.
Definition: Color.hpp:263
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:115
Color(const String &string)
Creates the object from a string.
Definition: Color.hpp:136
Wrapper class to store strings.
Definition: String.hpp:79
Namespace that contains all TGUI functions and classes.
Definition: AbsoluteOrRelativeValue.hpp:36
Definition: Vertex.hpp:39