polybar/include/components/builder.hpp

78 lines
1.9 KiB
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#pragma once
#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
using std::map;
// fwd decl
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
void reset();
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);
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);
void font_close();
2016-11-02 19:22:45 +00:00
void background(string color);
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);
void line_color_close();
void overline_color(string color);
void overline_color_close();
void underline_color(string color);
void underline_color_close();
2016-11-25 12:55:15 +00:00
void overline(const string& color = "");
void overline_close();
2016-11-25 12:55:15 +00:00
void underline(const string& color = "");
void underline_close();
void control(controltag tag);
2016-11-02 19:22:45 +00:00
void cmd(mousebtn index, string action, bool condition = true);
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:
string background_hex();
string foreground_hex();
2016-11-25 12:55:15 +00:00
void tag_open(syntaxtag tag, const string& value);
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{};
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