2012-09-17 19:01:13 +02:00
|
|
|
#ifndef color_hh_INCLUDED
|
|
|
|
#define color_hh_INCLUDED
|
|
|
|
|
2014-12-16 19:57:19 +01:00
|
|
|
#include "hash.hh"
|
|
|
|
|
2012-09-17 19:01:13 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-03-25 23:35:59 +01:00
|
|
|
class String;
|
2014-08-20 00:16:21 +02:00
|
|
|
class StringView;
|
2013-03-25 23:35:59 +01:00
|
|
|
|
2013-05-07 18:52:23 +02:00
|
|
|
enum class Colors : char
|
2012-09-17 19:01:13 +02:00
|
|
|
{
|
|
|
|
Default,
|
|
|
|
Black,
|
|
|
|
Red,
|
|
|
|
Green,
|
|
|
|
Yellow,
|
|
|
|
Blue,
|
|
|
|
Magenta,
|
|
|
|
Cyan,
|
2013-05-07 18:52:23 +02:00
|
|
|
White,
|
|
|
|
RGB,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Color
|
|
|
|
{
|
|
|
|
Colors color;
|
|
|
|
unsigned char r;
|
|
|
|
unsigned char g;
|
|
|
|
unsigned char b;
|
|
|
|
|
|
|
|
Color() : Color{Colors::Default} {}
|
|
|
|
Color(Colors c) : color{c}, r{0}, g{0}, b{0} {}
|
|
|
|
Color(unsigned char r, unsigned char g, unsigned char b)
|
|
|
|
: color{Colors::RGB}, r{r}, g{g}, b{b} {}
|
2012-09-17 19:01:13 +02:00
|
|
|
};
|
|
|
|
|
2015-03-20 20:03:41 +01:00
|
|
|
constexpr bool operator==(Color lhs, Color rhs)
|
2014-12-16 19:57:19 +01:00
|
|
|
{
|
|
|
|
return lhs.color == rhs.color and
|
|
|
|
lhs.r == rhs.r and lhs.g == rhs.g and lhs.b == rhs.b;
|
|
|
|
}
|
|
|
|
|
2015-03-20 20:03:41 +01:00
|
|
|
constexpr bool operator!=(Color lhs, Color rhs)
|
2014-12-16 19:57:19 +01:00
|
|
|
{
|
|
|
|
return not (lhs == rhs);
|
|
|
|
}
|
|
|
|
|
2014-08-20 00:16:21 +02:00
|
|
|
Color str_to_color(StringView color);
|
2013-07-26 00:26:43 +02:00
|
|
|
String color_to_str(Color color);
|
2013-03-25 23:35:59 +01:00
|
|
|
|
2013-07-26 00:26:43 +02:00
|
|
|
String option_to_string(Color color);
|
2014-08-20 00:16:21 +02:00
|
|
|
void option_from_string(StringView str, Color& color);
|
|
|
|
|
|
|
|
bool is_color_name(StringView color);
|
2013-03-29 19:31:06 +01:00
|
|
|
|
2014-12-16 19:57:19 +01:00
|
|
|
inline size_t hash_value(const Color& val)
|
|
|
|
{
|
2015-02-10 23:53:37 +01:00
|
|
|
return val.color == Colors::RGB ?
|
|
|
|
hash_values(val.color, val.r, val.g, val.b)
|
|
|
|
: hash_value(val.color);
|
2014-12-16 19:57:19 +01:00
|
|
|
}
|
|
|
|
|
2012-09-17 19:01:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // color_hh_INCLUDED
|