2016-06-14 23:32:35 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.hpp"
|
2016-11-25 07:55:15 -05:00
|
|
|
#include "errors.hpp"
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-12-05 14:41:00 -05:00
|
|
|
class signal_emitter;
|
2016-11-21 09:07:00 -05:00
|
|
|
struct bar_settings;
|
|
|
|
enum class attribute : uint8_t;
|
|
|
|
enum class mousebtn : uint8_t;
|
|
|
|
|
2016-11-24 22:10:26 -05:00
|
|
|
DEFINE_ERROR(parser_error);
|
|
|
|
DEFINE_CHILD_ERROR(unrecognized_token, parser_error);
|
|
|
|
DEFINE_CHILD_ERROR(unrecognized_attribute, parser_error);
|
|
|
|
DEFINE_CHILD_ERROR(unclosed_actionblocks, parser_error);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
class parser {
|
|
|
|
public:
|
2016-12-13 23:17:18 -05:00
|
|
|
explicit parser(signal_emitter& emitter, const bar_settings& bar);
|
2016-11-02 15:22:45 -04:00
|
|
|
void operator()(string data);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
protected:
|
2016-12-13 23:17:18 -05:00
|
|
|
void codeblock(string&& data);
|
|
|
|
size_t text(string&& data);
|
|
|
|
|
|
|
|
uint32_t parse_color(const string& s, uint32_t fallback = 0);
|
|
|
|
int8_t parse_fontindex(const string& s);
|
2016-11-25 07:55:15 -05:00
|
|
|
attribute parse_attr(const char attr);
|
2016-12-13 23:17:18 -05:00
|
|
|
mousebtn parse_action_btn(const string& data);
|
|
|
|
string parse_action_cmd(string&& data);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
private:
|
2016-12-05 14:41:00 -05:00
|
|
|
signal_emitter& m_sig;
|
2016-06-14 23:32:35 -04:00
|
|
|
const bar_settings& m_bar;
|
|
|
|
vector<int> m_actions;
|
|
|
|
};
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|