polybar/include/drawtypes/label.hpp

83 lines
2.3 KiB
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
#include "common.hpp"
#include "components/config.hpp"
#include "components/types.hpp"
2016-06-15 03:32:35 +00:00
#include "utils/mixins.hpp"
2016-05-19 14:41:06 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-05-19 14:41:06 +00:00
2016-11-02 19:22:45 +00:00
/**
* TODO: Remove icon_t
*/
2016-06-15 03:32:35 +00:00
namespace drawtypes {
struct token {
string token;
2016-12-31 03:32:11 +00:00
size_t min{0_z};
size_t max{0_z};
string suffix{""s};
};
2016-06-15 03:32:35 +00:00
class label;
using label_t = shared_ptr<label>;
2016-11-02 19:22:45 +00:00
/**
* @decprecated: use label
*/
using icon = label;
2016-06-15 03:32:35 +00:00
using icon_t = label_t;
class label : public non_copyable_mixin<label> {
public:
2016-12-15 02:30:41 +00:00
string m_foreground{};
string m_background{};
string m_underline{};
string m_overline{};
int m_font{0};
2016-12-31 03:32:11 +00:00
side_values m_padding{0U,0U};
side_values m_margin{0U,0U};
size_t m_maxlen{0_z};
2016-12-15 02:30:41 +00:00
bool m_ellipsis{true};
explicit label(string text, int font) : m_font(font), m_text(text), m_tokenized(m_text) {}
2016-12-31 03:32:11 +00:00
explicit label(string text, string foreground = ""s, string background = ""s, string underline = ""s,
string overline = ""s, int font = 0, struct side_values padding = {0U,0U}, struct side_values margin = {0U,0U},
size_t maxlen = 0_z, bool ellipsis = true, vector<token>&& tokens = {})
: m_foreground(foreground)
2016-06-15 03:32:35 +00:00
, m_background(background)
, m_underline(underline)
, m_overline(overline)
, m_font(font)
, m_padding(padding)
, m_margin(margin)
, m_maxlen(maxlen)
, m_ellipsis(ellipsis)
, m_text(text)
, m_tokenized(m_text)
, m_tokens(forward<vector<token>>(tokens)) {}
2016-11-02 19:22:45 +00:00
string get() const;
operator bool();
label_t clone();
void reset_tokens();
2016-11-25 12:55:15 +00:00
bool has_token(const string& token);
void replace_token(const string& token, string replacement);
2016-11-02 19:22:45 +00:00
void replace_defined_values(const label_t& label);
void copy_undefined(const label_t& label);
2016-10-25 05:10:03 +00:00
private:
2016-12-15 02:30:41 +00:00
string m_text{};
string m_tokenized{};
const vector<token> m_tokens{};
2016-05-19 14:41:06 +00:00
};
2016-12-31 03:32:11 +00:00
label_t load_label(const config& conf, const string& section, string name, bool required = true, string def = ""s);
label_t load_optional_label(const config& conf, string section, string name, string def = ""s);
2016-06-15 03:32:35 +00:00
2016-12-31 03:32:11 +00:00
icon_t load_icon(const config& conf, string section, string name, bool required = true, string def = ""s);
icon_t load_optional_icon(const config& conf, string section, string name, string def = ""s);
2016-05-19 14:41:06 +00:00
}
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END