Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
pu::ui::Color Struct Reference

Type encoding a RGBA-8888 color. More...

#include <ui_Types.hpp>

Public Member Functions

constexpr Color ()
 Creates a new Color with all values set to 0 (black color by default).
 
constexpr Color (const u8 r, const u8 g, const u8 b, const u8 a)
 Creates a new Color with the specified values.
 
Color WithAlpha (const u8 a)
 Creates a new Color with this Color's RGB values and the specified alpha value.
 

Static Public Member Functions

static Color FromHex (const std::string &str_clr)
 Creates a new Color from a hexadecimal string ("#rrggbbaa" format).
 

Public Attributes

u8 r
 
u8 g
 
u8 b
 
u8 a
 

Detailed Description

Type encoding a RGBA-8888 color.

Constructor & Destructor Documentation

◆ Color() [1/2]

pu::ui::Color::Color ( )
inlineconstexpr

Creates a new Color with all values set to 0 (black color by default).

◆ Color() [2/2]

pu::ui::Color::Color ( const u8 r,
const u8 g,
const u8 b,
const u8 a )
inlineconstexpr

Creates a new Color with the specified values.

Parameters
rRed value.
gGreen value.
bBlue value.
aAlpha value.

Member Function Documentation

◆ FromHex()

static Color pu::ui::Color::FromHex ( const std::string & str_clr)
static

Creates a new Color from a hexadecimal string ("#rrggbbaa" format).

Parameters
str_clrHexadecimal string to create the Color from.
Returns
Created Color.

◆ WithAlpha()

Color pu::ui::Color::WithAlpha ( const u8 a)
inline

Creates a new Color with this Color's RGB values and the specified alpha value.

Parameters
aAlpha value to set.
Returns
Created Color.

Member Data Documentation

◆ a

u8 pu::ui::Color::a

◆ b

u8 pu::ui::Color::b

◆ g

u8 pu::ui::Color::g

◆ r

u8 pu::ui::Color::r

The documentation for this struct was generated from the following file: