2016-11-02 15:22:45 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <X11/Xresource.h>
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-11-02 15:22:45 -04:00
|
|
|
|
|
|
|
class xresource_manager {
|
|
|
|
public:
|
2016-12-09 06:43:31 -05:00
|
|
|
using make_type = const xresource_manager&;
|
|
|
|
static make_type make();
|
2016-12-09 03:02:47 -05:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
explicit xresource_manager();
|
2016-12-09 16:54:30 -05:00
|
|
|
~xresource_manager();
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-11-18 11:40:16 -05:00
|
|
|
string get_string(string name, string fallback = "") const;
|
|
|
|
float get_float(string name, float fallback = 0.0f) const;
|
|
|
|
int get_int(string name, int fallback = 0) const;
|
2016-11-02 15:22:45 -04:00
|
|
|
|
|
|
|
protected:
|
2016-11-25 07:55:15 -05:00
|
|
|
string load_value(const string& key, const string& res_type, size_t n) const;
|
2016-11-02 15:22:45 -04:00
|
|
|
|
|
|
|
private:
|
2016-12-09 16:54:30 -05:00
|
|
|
char* m_manager{nullptr};
|
2016-11-02 15:22:45 -04:00
|
|
|
XrmDatabase m_db;
|
|
|
|
};
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|