qxLib
Public Member Functions | Static Public Member Functions | List of all members
qx::color Class Reference

RGBA color. More...

#include <color.h>

Public Member Functions

constexpr color (float fRed, float fGreen, float fBlue, float fAlpha=1.f) noexcept
 color object constructor More...
 
constexpr color (int nRed, int nGreen, int nBlue, int nAlpha=255) noexcept
 color object constructor More...
 
constexpr color (u64 nHexValue) noexcept
 color object constructor More...
 
constexpr color (const glm::ivec3 &vec3) noexcept
 color object constructor More...
 
constexpr color (const glm::ivec4 &vec4) noexcept
 color object constructor More...
 
constexpr float r () const noexcept
 Get red component. More...
 
constexpr float g () const noexcept
 Get green component. More...
 
constexpr float b () const noexcept
 Get blue component. More...
 
constexpr float a () const noexcept
 Get alpha component. More...
 
constexpr float & operator[] (size_t i) noexcept
 Get color component. More...
 
constexpr const float & operator[] (size_t i) const noexcept
 Get color component. More...
 
constexpr int r_dec () const noexcept
 Get red component as decimal. More...
 
constexpr int g_dec () const noexcept
 Get green component as decimal. More...
 
constexpr int b_dec () const noexcept
 Get blue component as decimal. More...
 
constexpr int a_dec () const noexcept
 Get alpha component as decimal. More...
 
constexpr const float * data () const noexcept
 Get pointer to the first component. More...
 
constexpr unsigned int hex_rgb () const noexcept
 Get color as hex. More...
 
constexpr unsigned int hex_rgba () const noexcept
 Get color as hex. More...
 
constexpr unsigned int hex_argb () const noexcept
 Get color as hex. More...
 
constexpr void update_r (float fDeltaValue) noexcept
 Add value to red component. More...
 
constexpr void update_g (float fDeltaValue) noexcept
 Add value to green component. More...
 
constexpr void update_b (float fDeltaValue) noexcept
 Add value to blue component. More...
 
constexpr void update_a (float fDeltaValue) noexcept
 Add value to alpha component. More...
 
constexpr void update_r_dec (int nDeltaValue) noexcept
 Add value to red component. More...
 
constexpr void update_g_dec (int nDeltaValue) noexcept
 Add value to green component. More...
 
constexpr void update_b_dec (int nDeltaValue) noexcept
 Add value to blue component. More...
 
constexpr void update_a_dec (int nDeltaValue) noexcept
 Add value to alpha component. More...
 
constexpr void set_r (float fValue) noexcept
 Set new value of red component. More...
 
constexpr void set_g (float fValue) noexcept
 Set new value of green component. More...
 
constexpr void set_b (float fValue) noexcept
 Set new value of blue component. More...
 
constexpr void set_a (float fValue) noexcept
 Set new value of alpha component. More...
 
constexpr void set_r_dec (int nValue) noexcept
 Set new value of red component. More...
 
constexpr void set_g_dec (int nValue) noexcept
 Set new value of green component. More...
 
constexpr void set_b_dec (int nValue) noexcept
 Set new value of blue component. More...
 
constexpr void set_a_dec (int nValue) noexcept
 Set new value of alpha component. More...
 
constexpr void darken (float fPercent) noexcept
 Make color darker. More...
 
constexpr void brighten (float fPercent) noexcept
 Make color brighter. More...
 
 _QX_DEFINE_COLOR (alice_blue, AliceBlue, 240, 248, 255)
 

Static Public Member Functions

constexpr static color darken (const color &other, float fPercent) noexcept
 Make darker color. More...
 
constexpr static color brighten (const color &other, float fPercent) noexcept
 Make brighter color. More...
 
static std::optional< colorfrom_string (string_view svColorName) noexcept
 Try to create color from string. More...
 
static constexpr color empty () noexcept
 Get empty color (0, 0, 0, 0) More...
 
static constexpr size_t size () noexcept
 Get number of float components. More...
 

Detailed Description

RGBA color.

~

Author
Khrapov
Date
10.04.2021

Definition at line 37 of file color.h.

Constructor & Destructor Documentation

◆ color() [1/5]

constexpr qx::color::color ( float  fRed,
float  fGreen,
float  fBlue,
float  fAlpha = 1.f 
)
constexprnoexcept

color object constructor

out of bound values will be clamped

Parameters
fRed- red component [0.f, 1.f]
fGreen- green component [0.f, 1.f]
fBlue- blue component [0.f, 1.f]
fAlpha- alpha component [0.f, 1.f]

Definition at line 60 of file color.inl.

◆ color() [2/5]

constexpr qx::color::color ( int  nRed,
int  nGreen,
int  nBlue,
int  nAlpha = 255 
)
constexprnoexcept

color object constructor

out of bound values will be clamped

Parameters
nRed- red component [0, 255]
nGreen- green component [0, 255]
nBlue- blue component [0, 255]
nAlpha- alpha component [0, 255]

Definition at line 65 of file color.inl.

◆ color() [3/5]

constexpr qx::color::color ( u64  nHexValue)
explicitconstexprnoexcept

color object constructor

Parameters
nHexValue- hex color value in 0xRRGGBBAA format

Definition at line 70 of file color.inl.

◆ color() [4/5]

constexpr qx::color::color ( const glm::ivec3 &  vec3)
explicitconstexprnoexcept

color object constructor

Parameters
vec3- int vector

Definition at line 79 of file color.inl.

◆ color() [5/5]

constexpr qx::color::color ( const glm::ivec4 &  vec4)
explicitconstexprnoexcept

color object constructor

Parameters
vec4- int vector

Definition at line 84 of file color.inl.

Member Function Documentation

◆ _QX_DEFINE_COLOR()

qx::color::_QX_DEFINE_COLOR ( alice_blue  ,
AliceBlue  ,
240  ,
248  ,
255   
)

◆ a()

constexpr float qx::color::a ( ) const
constexprnoexcept

Get alpha component.

Return values
-alpha component

Definition at line 104 of file color.inl.

◆ a_dec()

constexpr int qx::color::a_dec ( ) const
constexprnoexcept

Get alpha component as decimal.

Return values
-alpha component as decimal

Definition at line 134 of file color.inl.

◆ b()

constexpr float qx::color::b ( ) const
constexprnoexcept

Get blue component.

Return values
-blue component

Definition at line 99 of file color.inl.

◆ b_dec()

constexpr int qx::color::b_dec ( ) const
constexprnoexcept

Get blue component as decimal.

Return values
-blue component as decimal

Definition at line 129 of file color.inl.

◆ brighten() [1/2]

constexpr color qx::color::brighten ( const color other,
float  fPercent 
)
staticconstexprnoexcept

Make brighter color.

Parameters
other- original color
fPercent- brighter factor
Return values
-brighter color

Definition at line 287 of file color.inl.

◆ brighten() [2/2]

constexpr void qx::color::brighten ( float  fPercent)
constexprnoexcept

Make color brighter.

Parameters
fPercent- brighter factor

Definition at line 273 of file color.inl.

◆ darken() [1/2]

constexpr color qx::color::darken ( const color other,
float  fPercent 
)
staticconstexprnoexcept

Make darker color.

Parameters
other- original color
fPercent- dark factor
Return values
-darker color

Definition at line 280 of file color.inl.

◆ darken() [2/2]

constexpr void qx::color::darken ( float  fPercent)
constexprnoexcept

Make color darker.

Parameters
fPercent- dark factor

Definition at line 268 of file color.inl.

◆ data()

constexpr const float * qx::color::data ( ) const
constexprnoexcept

Get pointer to the first component.

Return values
-pointer to the first component

Definition at line 139 of file color.inl.

◆ empty()

constexpr color qx::color::empty ( )
staticconstexprnoexcept

Get empty color (0, 0, 0, 0)

  • empty color can be useful for out of border values as they won't affect calc result
    Return values
    -empty color

Definition at line 345 of file color.inl.

◆ from_string()

std::optional< color > qx::color::from_string ( string_view  svColorName)
inlinestaticnoexcept

Try to create color from string.

Parameters
svColorName- color name: css style (alice_blue, AliceBlue, aliceblue) or #F0F8FF or 0xF0F8FFFF(0xRRGGBBAA) or 0xF0F8FF(0xRRGGBB)
Return values
-found color or nullopt

Definition at line 305 of file color.inl.

◆ g()

constexpr float qx::color::g ( ) const
constexprnoexcept

Get green component.

Return values
-green component

Definition at line 94 of file color.inl.

◆ g_dec()

constexpr int qx::color::g_dec ( ) const
constexprnoexcept

Get green component as decimal.

Return values
-green component as decimal

Definition at line 124 of file color.inl.

◆ hex_argb()

constexpr unsigned int qx::color::hex_argb ( ) const
constexprnoexcept

Get color as hex.

Return values
-hex color value in 0xAARRGGBB format

Definition at line 163 of file color.inl.

◆ hex_rgb()

constexpr unsigned int qx::color::hex_rgb ( ) const
constexprnoexcept

Get color as hex.

Return values
-hex color value in 0xRRGGBB format

Definition at line 144 of file color.inl.

◆ hex_rgba()

constexpr unsigned int qx::color::hex_rgba ( ) const
constexprnoexcept

Get color as hex.

Return values
-hex color value in 0xRRGGBBAA format

Definition at line 153 of file color.inl.

◆ operator[]() [1/2]

constexpr const float & qx::color::operator[] ( size_t  i) const
constexprnoexcept

Get color component.

Parameters
i- component number [0, 3]
Return values
-component value

Definition at line 114 of file color.inl.

◆ operator[]() [2/2]

constexpr float & qx::color::operator[] ( size_t  i)
constexprnoexcept

Get color component.

Parameters
i- component number [0, 3]
Return values
-component value

Definition at line 109 of file color.inl.

◆ r()

constexpr float qx::color::r ( ) const
constexprnoexcept

Get red component.

Return values
-red component

Definition at line 89 of file color.inl.

◆ r_dec()

constexpr int qx::color::r_dec ( ) const
constexprnoexcept

Get red component as decimal.

Return values
-red component as decimal

Definition at line 119 of file color.inl.

◆ set_a()

constexpr void qx::color::set_a ( float  fValue)
constexprnoexcept

Set new value of alpha component.

if the new value goes out of range, it will be clamped

Parameters
fValue- new value of component

Definition at line 243 of file color.inl.

◆ set_a_dec()

constexpr void qx::color::set_a_dec ( int  nValue)
constexprnoexcept

Set new value of alpha component.

if the new value goes out of range, it will be clamped

Parameters
nValue- new value of component

Definition at line 263 of file color.inl.

◆ set_b()

constexpr void qx::color::set_b ( float  fValue)
constexprnoexcept

Set new value of blue component.

if the new value goes out of range, it will be clamped

Parameters
fValue- new value of component

Definition at line 238 of file color.inl.

◆ set_b_dec()

constexpr void qx::color::set_b_dec ( int  nValue)
constexprnoexcept

Set new value of blue component.

if the new value goes out of range, it will be clamped

Parameters
nValue- new value of component

Definition at line 258 of file color.inl.

◆ set_g()

constexpr void qx::color::set_g ( float  fValue)
constexprnoexcept

Set new value of green component.

if the new value goes out of range, it will be clamped

Parameters
fValue- new value of component

Definition at line 233 of file color.inl.

◆ set_g_dec()

constexpr void qx::color::set_g_dec ( int  nValue)
constexprnoexcept

Set new value of green component.

if the new value goes out of range, it will be clamped

Parameters
nValue- new value of component

Definition at line 253 of file color.inl.

◆ set_r()

constexpr void qx::color::set_r ( float  fValue)
constexprnoexcept

Set new value of red component.

if the new value goes out of range, it will be clamped

Parameters
fValue- new value of component

Definition at line 228 of file color.inl.

◆ set_r_dec()

constexpr void qx::color::set_r_dec ( int  nValue)
constexprnoexcept

Set new value of red component.

if the new value goes out of range, it will be clamped

Parameters
nValue- new value of component

Definition at line 248 of file color.inl.

◆ size()

constexpr size_t qx::color::size ( )
staticconstexprnoexcept

Get number of float components.

Return values
-number of float components

Definition at line 350 of file color.inl.

◆ update_a()

constexpr void qx::color::update_a ( float  fDeltaValue)
constexprnoexcept

Add value to alpha component.

if the new value goes out of range, it will be clamped

Parameters
fDeltaValue- delta value

Definition at line 203 of file color.inl.

◆ update_a_dec()

constexpr void qx::color::update_a_dec ( int  nDeltaValue)
constexprnoexcept

Add value to alpha component.

if the new value goes out of range, it will be clamped

Parameters
nDeltaValue- delta value

Definition at line 223 of file color.inl.

◆ update_b()

constexpr void qx::color::update_b ( float  fDeltaValue)
constexprnoexcept

Add value to blue component.

if the new value goes out of range, it will be clamped

Parameters
fDeltaValue- delta value

Definition at line 198 of file color.inl.

◆ update_b_dec()

constexpr void qx::color::update_b_dec ( int  nDeltaValue)
constexprnoexcept

Add value to blue component.

if the new value goes out of range, it will be clamped

Parameters
nDeltaValue- delta value

Definition at line 218 of file color.inl.

◆ update_g()

constexpr void qx::color::update_g ( float  fDeltaValue)
constexprnoexcept

Add value to green component.

if the new value goes out of range, it will be clamped

Parameters
fDeltaValue- delta value

Definition at line 193 of file color.inl.

◆ update_g_dec()

constexpr void qx::color::update_g_dec ( int  nDeltaValue)
constexprnoexcept

Add value to green component.

if the new value goes out of range, it will be clamped

Parameters
nDeltaValue- delta value

Definition at line 213 of file color.inl.

◆ update_r()

constexpr void qx::color::update_r ( float  fDeltaValue)
constexprnoexcept

Add value to red component.

if the new value goes out of range, it will be clamped

Parameters
fDeltaValue- delta value

Definition at line 188 of file color.inl.

◆ update_r_dec()

constexpr void qx::color::update_r_dec ( int  nDeltaValue)
constexprnoexcept

Add value to red component.

if the new value goes out of range, it will be clamped

Parameters
nDeltaValue- delta value

Definition at line 208 of file color.inl.


The documentation for this class was generated from the following files: