28#include <TGUI/String.hpp>
29#include <TGUI/Vertex.hpp>
35#if TGUI_HAS_RENDERER_BACKEND_SFML_GRAPHICS && !TGUI_DISABLE_SFML_CONVERSIONS
36 #include <SFML/Graphics/Color.hpp>
50 TGUI_API Color constructColorFromString(
const String&
string);
64#if defined(TGUI_SYSTEM_WINDOWS) && TGUI_COMPILED_WITH_CPP_VER >= 17
98#if TGUI_HAS_RENDERER_BACKEND_SFML_GRAPHICS && !TGUI_DISABLE_SFML_CONVERSIONS
104 constexpr Color(
const sf::Color& color) :
122 constexpr Color(std::uint8_t red, std::uint8_t green, std::uint8_t blue, std::uint8_t alpha = 255) :
131#if defined (_MSC_VER)
132# pragma warning(push)
133# pragma warning(disable: 26495)
143 Color{priv::constructColorFromString(string)}
146#if defined (_MSC_VER)
167 TGUI_NODISCARD
constexpr bool isSet()
const
172#if TGUI_HAS_RENDERER_BACKEND_SFML_GRAPHICS && !TGUI_DISABLE_SFML_CONVERSIONS
178 operator sf::Color()
const
180 return {m_red, m_green, m_blue, m_alpha};
199 TGUI_NODISCARD
constexpr std::uint8_t
getRed()
const
209 TGUI_NODISCARD
constexpr std::uint8_t
getGreen()
const
219 TGUI_NODISCARD
constexpr std::uint8_t
getBlue()
const
229 TGUI_NODISCARD
constexpr std::uint8_t
getAlpha()
const
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);
251 return !(*
this == right);
267 static const std::array<std::pair<StringView, Color>, 9> colorNamesMap;
272 bool m_isSet =
false;
273 std::uint8_t m_red = 0;
274 std::uint8_t m_green = 0;
275 std::uint8_t m_blue = 0;
276 std::uint8_t m_alpha = 0;
281#if TGUI_COMPILED_WITH_CPP_VER >= 17
283 inline constexpr const Color
Color::White {255, 255, 255};
292 inline constexpr const std::array<std::pair<StringView, Color>, 9> Color::colorNamesMap
327 TGUI_NODISCARD TGUI_API Color constructColorFromString(
const String&
string);
Wrapper for colors.
Definition Color.hpp:71
constexpr std::uint8_t getAlpha() const
Returns the alpha component of the color.
Definition Color.hpp:229
static const Color Transparent
Transparent (black) predefined color.
Definition Color.hpp:265
constexpr Color(const sf::Color &color)
Creates the object from an sf::Color.
Definition Color.hpp:104
constexpr std::uint8_t getGreen() const
Returns the green component of the color.
Definition Color.hpp:209
static constexpr Color applyOpacity(const Color &color, float alpha)
Returns the color with its alpha channel multiplied with the alpha parameter.
Definition Color.hpp:77
static const Color Black
Black predefined color.
Definition Color.hpp:257
static const Color Green
Green predefined color.
Definition Color.hpp:260
constexpr Color()
Creates the object without a color.
Definition Color.hpp:89
constexpr std::uint8_t getBlue() const
Returns the blue component of the color.
Definition Color.hpp:219
static const Color White
White predefined color.
Definition Color.hpp:258
constexpr bool operator!=(const Color &right) const
Compares the color with another one.
Definition Color.hpp:249
Color(const char *string)
Creates the object from a string.
Definition Color.hpp:157
constexpr std::uint8_t getRed() const
Returns the red component of the color.
Definition Color.hpp:199
static const Color Cyan
Cyan predefined color.
Definition Color.hpp:264
constexpr bool isSet() const
Checks if a color was set.
Definition Color.hpp:167
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:263
static const Color Yellow
Yellow predefined color.
Definition Color.hpp:262
static const Color Red
Red predefined color.
Definition Color.hpp:259
static const Color Blue
Blue predefined color.
Definition Color.hpp:261
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:122
Color(const String &string)
Creates the object from a string.
Definition Color.hpp:142
Wrapper class to store strings.
Definition String.hpp:94
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:36