2016-06-15 03:32:35 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-12-05 19:41:00 +00:00
|
|
|
#include <map>
|
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
#include "common.hpp"
|
2016-12-26 16:06:28 +00:00
|
|
|
#include "components/types.hpp"
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2016-12-05 19:41:00 +00:00
|
|
|
using std::map;
|
|
|
|
|
2016-11-19 14:49:03 +00:00
|
|
|
// fwd decl
|
|
|
|
namespace drawtypes {
|
|
|
|
class label;
|
|
|
|
using label_t = shared_ptr<label>;
|
|
|
|
}
|
2016-06-15 03:32:35 +00:00
|
|
|
using namespace drawtypes;
|
|
|
|
|
|
|
|
class builder {
|
|
|
|
public:
|
2016-12-31 03:32:11 +00:00
|
|
|
explicit builder(const bar_settings& bar);
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2016-11-02 19:22:45 +00:00
|
|
|
string flush();
|
2016-12-26 16:06:28 +00:00
|
|
|
void append(string text);
|
2016-11-02 19:22:45 +00:00
|
|
|
void node(string str, bool add_space = false);
|
|
|
|
void node(string str, int font_index, bool add_space = false);
|
2016-11-25 12:55:15 +00:00
|
|
|
void node(const label_t& label, bool add_space = false);
|
2016-12-04 03:11:47 +00:00
|
|
|
void node_repeat(const string& str, size_t n, bool add_space = false);
|
2016-11-30 21:17:52 +00:00
|
|
|
void node_repeat(const label_t& label, size_t n, bool add_space = false);
|
2016-11-02 19:22:45 +00:00
|
|
|
void offset(int pixels = 0);
|
2016-12-26 16:06:28 +00:00
|
|
|
void space(size_t width);
|
|
|
|
void space();
|
|
|
|
void remove_trailing_space(size_t len);
|
|
|
|
void remove_trailing_space();
|
2016-11-02 19:22:45 +00:00
|
|
|
void font(int index);
|
2016-11-24 18:24:47 +00:00
|
|
|
void font_close();
|
2016-11-02 19:22:45 +00:00
|
|
|
void background(string color);
|
2016-11-24 18:24:47 +00:00
|
|
|
void background_close();
|
|
|
|
void color(string color);
|
|
|
|
void color_alpha(string alpha);
|
|
|
|
void color_close();
|
2016-11-25 12:55:15 +00:00
|
|
|
void line_color(const string& color);
|
2016-11-24 18:24:47 +00:00
|
|
|
void line_color_close();
|
2016-11-21 15:14:40 +00:00
|
|
|
void overline_color(string color);
|
2016-11-24 18:24:47 +00:00
|
|
|
void overline_color_close();
|
2016-11-21 15:14:40 +00:00
|
|
|
void underline_color(string color);
|
2016-11-24 18:24:47 +00:00
|
|
|
void underline_color_close();
|
2016-11-25 12:55:15 +00:00
|
|
|
void overline(const string& color = "");
|
2016-11-24 18:24:47 +00:00
|
|
|
void overline_close();
|
2016-11-25 12:55:15 +00:00
|
|
|
void underline(const string& color = "");
|
2016-11-24 18:24:47 +00:00
|
|
|
void underline_close();
|
2016-11-02 19:22:45 +00:00
|
|
|
void cmd(mousebtn index, string action, bool condition = true);
|
2017-01-13 10:22:23 +00:00
|
|
|
void cmd(mousebtn index, string action, const label_t& label);
|
2016-12-05 04:32:10 +00:00
|
|
|
void cmd_close(bool condition = true);
|
2016-06-15 03:32:35 +00:00
|
|
|
|
|
|
|
protected:
|
2016-11-24 18:24:47 +00:00
|
|
|
string background_hex();
|
|
|
|
string foreground_hex();
|
|
|
|
|
2018-04-28 21:18:02 +00:00
|
|
|
string get_label_text(const label_t& label);
|
|
|
|
|
2016-11-25 12:55:15 +00:00
|
|
|
void tag_open(syntaxtag tag, const string& value);
|
2016-11-24 18:24:47 +00:00
|
|
|
void tag_open(attribute attr);
|
|
|
|
void tag_close(syntaxtag tag);
|
|
|
|
void tag_close(attribute attr);
|
2016-06-15 03:32:35 +00:00
|
|
|
|
|
|
|
private:
|
2016-12-26 16:06:28 +00:00
|
|
|
const bar_settings m_bar;
|
2016-12-26 09:37:14 +00:00
|
|
|
string m_output;
|
|
|
|
|
2016-12-26 16:06:28 +00:00
|
|
|
map<syntaxtag, int> m_tags{};
|
|
|
|
map<syntaxtag, string> m_colors{};
|
2018-12-28 16:10:52 +00:00
|
|
|
map<attribute, bool> m_attrs{};
|
2016-12-26 09:37:14 +00:00
|
|
|
|
2017-01-19 10:11:28 +00:00
|
|
|
int m_fontindex{0};
|
2016-12-26 09:37:14 +00:00
|
|
|
|
2016-12-26 16:06:28 +00:00
|
|
|
string m_background{};
|
|
|
|
string m_foreground{};
|
2016-06-15 03:32:35 +00:00
|
|
|
};
|
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS_END
|