2018-10-10 14:49:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Types.h>
|
|
|
|
|
2019-01-10 04:36:32 +00:00
|
|
|
typedef dword RGBA32;
|
|
|
|
|
2019-01-25 01:09:29 +00:00
|
|
|
inline constexpr dword make_rgb(byte r, byte g, byte b)
|
|
|
|
{
|
|
|
|
return ((r << 16) | (g << 8) | b);
|
|
|
|
}
|
|
|
|
|
2018-10-10 14:49:36 +00:00
|
|
|
class Color {
|
|
|
|
public:
|
2018-10-12 18:05:11 +00:00
|
|
|
enum NamedColor {
|
|
|
|
Black,
|
|
|
|
White,
|
|
|
|
Red,
|
|
|
|
Green,
|
|
|
|
Blue,
|
2019-01-12 03:02:36 +00:00
|
|
|
Yellow,
|
|
|
|
Magenta,
|
2018-10-12 21:02:23 +00:00
|
|
|
DarkGray,
|
|
|
|
MidGray,
|
|
|
|
LightGray,
|
2018-10-12 18:05:11 +00:00
|
|
|
};
|
|
|
|
|
2018-10-10 14:49:36 +00:00
|
|
|
Color() { }
|
2018-10-12 18:05:11 +00:00
|
|
|
Color(NamedColor);
|
2019-01-15 03:44:47 +00:00
|
|
|
Color(byte r, byte g, byte b) : m_value((r << 16) | (g << 8) | b) { }
|
2019-01-13 00:59:38 +00:00
|
|
|
Color(RGBA32 rgba) : m_value(rgba) { }
|
2018-10-10 14:49:36 +00:00
|
|
|
|
2019-01-25 04:01:27 +00:00
|
|
|
int red() const { return (m_value >> 16) & 0xff; }
|
|
|
|
int green() const { return (m_value >> 8) & 0xff; }
|
|
|
|
int blue() const { return m_value & 0xff; }
|
|
|
|
|
2019-01-10 04:36:32 +00:00
|
|
|
RGBA32 value() const { return m_value; }
|
2018-10-10 14:49:36 +00:00
|
|
|
|
|
|
|
private:
|
2019-01-10 04:36:32 +00:00
|
|
|
RGBA32 m_value { 0 };
|
2018-10-10 14:49:36 +00:00
|
|
|
};
|