1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/x11/color.hpp

35 lines
585 B
C++
Raw Normal View History

2016-11-02 15:22:45 -04:00
#pragma once
#include <X11/Xft/Xft.h>
#include "common.hpp"
#include "utils/color.hpp"
LEMONBUDDY_NS
class color {
public:
explicit color(string hex);
string source() const;
operator XRenderColor() const;
operator string() const;
operator uint32_t() const;
static color parse(string input, color fallback);
static color parse(string input);
protected:
2016-11-04 13:54:33 -04:00
uint32_t m_value;
2016-11-02 15:22:45 -04:00
uint32_t m_color;
string m_source;
};
extern map<string, class color> g_colorstore;
extern color g_colorempty;
extern color g_colorblack;
extern color g_colorwhite;
LEMONBUDDY_NS_END