polybar/include/x11/color.hpp

35 lines
579 B
C++
Raw Normal View History

2016-11-02 19:22:45 +00:00
#pragma once
#include <X11/Xft/Xft.h>
#include "common.hpp"
#include "utils/color.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-11-02 19:22:45 +00:00
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 17:54:33 +00:00
uint32_t m_value;
2016-11-02 19:22:45 +00: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;
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END