2016-11-25 07:55:15 -05:00
|
|
|
#include <utility>
|
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
#include "components/builder.hpp"
|
2016-11-19 09:49:03 -05:00
|
|
|
#include "drawtypes/label.hpp"
|
2016-12-26 11:06:28 -05:00
|
|
|
#include "utils/color.hpp"
|
2016-11-02 15:22:45 -04:00
|
|
|
#include "utils/math.hpp"
|
|
|
|
#include "utils/string.hpp"
|
2016-12-26 11:06:28 -05:00
|
|
|
#include "utils/time.hpp"
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-12-26 04:37:14 -05:00
|
|
|
#ifndef BUILDER_SPACE_TOKEN
|
|
|
|
#define BUILDER_SPACE_TOKEN "%__"
|
|
|
|
#endif
|
|
|
|
|
2016-12-30 22:32:11 -05:00
|
|
|
builder::builder(const bar_settings& bar) : m_bar(bar) {
|
2016-12-26 22:03:46 -05:00
|
|
|
m_tags[syntaxtag::A] = 0;
|
|
|
|
m_tags[syntaxtag::B] = 0;
|
|
|
|
m_tags[syntaxtag::F] = 0;
|
|
|
|
m_tags[syntaxtag::T] = 0;
|
|
|
|
m_tags[syntaxtag::o] = 0;
|
|
|
|
m_tags[syntaxtag::u] = 0;
|
2016-12-26 11:06:28 -05:00
|
|
|
|
|
|
|
m_colors[syntaxtag::B] = string();
|
|
|
|
m_colors[syntaxtag::F] = string();
|
|
|
|
m_colors[syntaxtag::o] = string();
|
|
|
|
m_colors[syntaxtag::u] = string();
|
2016-12-26 04:37:14 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Flush contents of the builder and return built string
|
|
|
|
*
|
|
|
|
* This will also close any unclosed tags
|
|
|
|
*/
|
2016-11-02 15:22:45 -04:00
|
|
|
string builder::flush() {
|
2016-11-25 07:55:15 -05:00
|
|
|
if (m_tags[syntaxtag::B]) {
|
2016-11-24 13:24:47 -05:00
|
|
|
background_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
|
|
|
if (m_tags[syntaxtag::F]) {
|
2016-11-24 13:24:47 -05:00
|
|
|
color_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
|
|
|
if (m_tags[syntaxtag::T]) {
|
2016-11-24 13:24:47 -05:00
|
|
|
font_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
|
|
|
if (m_tags[syntaxtag::o]) {
|
2016-11-24 13:24:47 -05:00
|
|
|
overline_color_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
|
|
|
if (m_tags[syntaxtag::u]) {
|
2016-11-24 13:24:47 -05:00
|
|
|
underline_color_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2017-01-24 00:59:58 -05:00
|
|
|
if ((m_attributes >> static_cast<int>(attribute::UNDERLINE)) & 1) {
|
2016-11-24 13:24:47 -05:00
|
|
|
underline_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2017-01-24 00:59:58 -05:00
|
|
|
if ((m_attributes >> static_cast<int>(attribute::OVERLINE)) & 1) {
|
2016-11-24 13:24:47 -05:00
|
|
|
overline_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-11-24 22:10:26 -05:00
|
|
|
while (m_tags[syntaxtag::A]) {
|
|
|
|
cmd_close();
|
|
|
|
}
|
|
|
|
|
2016-12-26 22:03:46 -05:00
|
|
|
string output{m_output};
|
2016-11-02 15:22:45 -04:00
|
|
|
|
|
|
|
// reset values
|
2016-11-24 22:10:26 -05:00
|
|
|
m_tags.clear();
|
|
|
|
m_colors.clear();
|
2016-11-24 13:24:47 -05:00
|
|
|
m_output.clear();
|
2016-11-02 15:22:45 -04:00
|
|
|
m_fontindex = 1;
|
|
|
|
|
2016-12-26 22:03:46 -05:00
|
|
|
return string_util::replace_all(output, BUILDER_SPACE_TOKEN, " ");
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert raw text string
|
|
|
|
*/
|
2016-12-26 11:06:28 -05:00
|
|
|
void builder::append(string text) {
|
|
|
|
m_output.reserve(text.size());
|
|
|
|
m_output += move(text);
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert text node
|
|
|
|
*
|
|
|
|
* This will also parse raw syntax tags
|
|
|
|
*/
|
2016-11-02 15:22:45 -04:00
|
|
|
void builder::node(string str, bool add_space) {
|
2017-01-13 05:22:23 -05:00
|
|
|
if (str.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
string::size_type n, m;
|
2016-11-25 07:55:15 -05:00
|
|
|
string s(move(str));
|
2016-11-02 15:22:45 -04:00
|
|
|
|
|
|
|
while (true) {
|
|
|
|
if (s.empty()) {
|
|
|
|
break;
|
|
|
|
|
|
|
|
} else if ((n = s.find("%{F-}")) == 0) {
|
2016-11-24 13:24:47 -05:00
|
|
|
color_close();
|
2016-11-02 15:22:45 -04:00
|
|
|
s.erase(0, 5);
|
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
} else if ((n = s.find("%{F#")) == 0 && (m = s.find('}')) != string::npos) {
|
|
|
|
if (m - n - 4 == 2) {
|
2016-11-02 15:22:45 -04:00
|
|
|
color_alpha(s.substr(n + 3, m - 3));
|
2016-11-25 07:55:15 -05:00
|
|
|
} else {
|
2016-11-02 15:22:45 -04:00
|
|
|
color(s.substr(n + 3, m - 3));
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
s.erase(n, m + 1);
|
|
|
|
|
|
|
|
} else if ((n = s.find("%{B-}")) == 0) {
|
2016-11-24 13:24:47 -05:00
|
|
|
background_close();
|
2016-11-02 15:22:45 -04:00
|
|
|
s.erase(0, 5);
|
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
} else if ((n = s.find("%{B#")) == 0 && (m = s.find('}')) != string::npos) {
|
2016-11-02 15:22:45 -04:00
|
|
|
background(s.substr(n + 3, m - 3));
|
|
|
|
s.erase(n, m + 1);
|
|
|
|
|
|
|
|
} else if ((n = s.find("%{T-}")) == 0) {
|
2016-11-24 13:24:47 -05:00
|
|
|
font_close();
|
2016-11-02 15:22:45 -04:00
|
|
|
s.erase(0, 5);
|
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
} else if ((n = s.find("%{T")) == 0 && (m = s.find('}')) != string::npos) {
|
2018-04-30 12:45:01 -04:00
|
|
|
font(strtol(s.substr(n + 3, m - 3).c_str(), nullptr, 10));
|
2016-11-02 15:22:45 -04:00
|
|
|
s.erase(n, m + 1);
|
|
|
|
|
|
|
|
} else if ((n = s.find("%{U-}")) == 0) {
|
2016-11-24 13:24:47 -05:00
|
|
|
line_color_close();
|
2016-11-02 15:22:45 -04:00
|
|
|
s.erase(0, 5);
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
} else if ((n = s.find("%{u-}")) == 0) {
|
|
|
|
underline_color_close();
|
|
|
|
s.erase(0, 5);
|
2016-11-21 10:14:40 -05:00
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
} else if ((n = s.find("%{o-}")) == 0) {
|
|
|
|
overline_color_close();
|
|
|
|
s.erase(0, 5);
|
2016-11-21 10:14:40 -05:00
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
} else if ((n = s.find("%{u#")) == 0 && (m = s.find('}')) != string::npos) {
|
2016-11-24 13:24:47 -05:00
|
|
|
underline_color(s.substr(n + 3, m - 3));
|
2016-11-21 10:14:40 -05:00
|
|
|
s.erase(n, m + 1);
|
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
} else if ((n = s.find("%{o#")) == 0 && (m = s.find('}')) != string::npos) {
|
2016-11-24 13:24:47 -05:00
|
|
|
overline_color(s.substr(n + 3, m - 3));
|
2016-11-21 10:14:40 -05:00
|
|
|
s.erase(n, m + 1);
|
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
} else if ((n = s.find("%{U#")) == 0 && (m = s.find('}')) != string::npos) {
|
2016-11-02 15:22:45 -04:00
|
|
|
line_color(s.substr(n + 3, m - 3));
|
|
|
|
s.erase(n, m + 1);
|
|
|
|
|
|
|
|
} else if ((n = s.find("%{+u}")) == 0) {
|
|
|
|
underline();
|
|
|
|
s.erase(0, 5);
|
|
|
|
|
|
|
|
} else if ((n = s.find("%{+o}")) == 0) {
|
|
|
|
overline();
|
|
|
|
s.erase(0, 5);
|
|
|
|
|
|
|
|
} else if ((n = s.find("%{-u}")) == 0) {
|
2016-11-24 13:24:47 -05:00
|
|
|
underline_close();
|
2016-11-02 15:22:45 -04:00
|
|
|
s.erase(0, 5);
|
|
|
|
|
|
|
|
} else if ((n = s.find("%{-o}")) == 0) {
|
2016-11-24 13:24:47 -05:00
|
|
|
overline_close();
|
2016-11-02 15:22:45 -04:00
|
|
|
s.erase(0, 5);
|
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
} else if ((n = s.find("%{")) == 0 && (m = s.find('}')) != string::npos) {
|
2016-11-02 15:22:45 -04:00
|
|
|
append(s.substr(n, m + 1));
|
|
|
|
s.erase(n, m + 1);
|
|
|
|
|
|
|
|
} else if ((n = s.find("%{")) > 0) {
|
|
|
|
append(s.substr(0, n));
|
|
|
|
s.erase(0, n);
|
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
} else {
|
2016-11-02 15:22:45 -04:00
|
|
|
break;
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
if (!s.empty()) {
|
2016-11-02 15:22:45 -04:00
|
|
|
append(s);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
|
|
|
if (add_space) {
|
2016-11-02 15:22:45 -04:00
|
|
|
space();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert text node with specific font index
|
|
|
|
*
|
2018-11-04 10:08:54 -05:00
|
|
|
* \see builder::node
|
2016-11-24 13:24:47 -05:00
|
|
|
*/
|
2016-11-02 15:22:45 -04:00
|
|
|
void builder::node(string str, int font_index, bool add_space) {
|
|
|
|
font(font_index);
|
2016-11-25 07:55:15 -05:00
|
|
|
node(move(str), add_space);
|
2016-11-02 15:22:45 -04:00
|
|
|
font_close();
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tags for given label
|
|
|
|
*/
|
2016-11-25 07:55:15 -05:00
|
|
|
void builder::node(const label_t& label, bool add_space) {
|
|
|
|
if (!label || !*label) {
|
2016-11-02 15:22:45 -04:00
|
|
|
return;
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2018-04-28 17:18:02 -04:00
|
|
|
auto text = get_label_text(label);
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
// if ((label->m_overline.empty() && m_tags[syntaxtag::o] > 0) || (m_tags[syntaxtag::o] > 0 && label->m_margin > 0))
|
|
|
|
// overline_close();
|
|
|
|
// if ((label->m_underline.empty() && m_tags[syntaxtag::u] > 0) || (m_tags[syntaxtag::u] > 0 && label->m_margin > 0))
|
|
|
|
// underline_close();
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-12-04 05:57:33 -05:00
|
|
|
if (label->m_margin.left > 0) {
|
|
|
|
space(label->m_margin.left);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
if (!label->m_overline.empty()) {
|
2016-11-02 15:22:45 -04:00
|
|
|
overline(label->m_overline);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
|
|
|
if (!label->m_underline.empty()) {
|
2016-11-02 15:22:45 -04:00
|
|
|
underline(label->m_underline);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
if (!label->m_background.empty()) {
|
2016-11-24 13:24:47 -05:00
|
|
|
background(label->m_background);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
|
|
|
if (!label->m_foreground.empty()) {
|
2016-11-24 13:24:47 -05:00
|
|
|
color(label->m_foreground);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-12-04 05:57:33 -05:00
|
|
|
if (label->m_padding.left > 0) {
|
|
|
|
space(label->m_padding.left);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
|
|
|
node(text, label->m_font, add_space);
|
|
|
|
|
2016-12-04 05:57:33 -05:00
|
|
|
if (label->m_padding.right > 0) {
|
|
|
|
space(label->m_padding.right);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
if (!label->m_background.empty()) {
|
2016-11-24 13:24:47 -05:00
|
|
|
background_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
|
|
|
if (!label->m_foreground.empty()) {
|
2016-11-24 13:24:47 -05:00
|
|
|
color_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-12-04 05:57:33 -05:00
|
|
|
if (!label->m_underline.empty() || (label->m_margin.right > 0 && m_tags[syntaxtag::u] > 0)) {
|
2016-11-24 13:24:47 -05:00
|
|
|
underline_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-12-04 05:57:33 -05:00
|
|
|
if (!label->m_overline.empty() || (label->m_margin.right > 0 && m_tags[syntaxtag::o] > 0)) {
|
2016-11-24 13:24:47 -05:00
|
|
|
overline_close();
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-12-04 05:57:33 -05:00
|
|
|
if (label->m_margin.right > 0) {
|
|
|
|
space(label->m_margin.right);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-30 16:17:52 -05:00
|
|
|
/**
|
|
|
|
* Repeat text string n times
|
|
|
|
*/
|
2016-12-03 22:11:47 -05:00
|
|
|
void builder::node_repeat(const string& str, size_t n, bool add_space) {
|
2016-11-30 16:17:52 -05:00
|
|
|
string text;
|
2016-12-26 11:06:28 -05:00
|
|
|
text.reserve(str.size() * n);
|
2016-11-30 16:17:52 -05:00
|
|
|
while (n--) {
|
|
|
|
text += str;
|
|
|
|
}
|
|
|
|
node(text, add_space);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Repeat label contents n times
|
|
|
|
*/
|
|
|
|
void builder::node_repeat(const label_t& label, size_t n, bool add_space) {
|
|
|
|
string text;
|
2016-12-26 11:06:28 -05:00
|
|
|
string label_text{label->get()};
|
|
|
|
text.reserve(label_text.size() * n);
|
2016-11-30 16:17:52 -05:00
|
|
|
while (n--) {
|
2016-12-26 11:06:28 -05:00
|
|
|
text += label_text;
|
2016-11-30 16:17:52 -05:00
|
|
|
}
|
|
|
|
label_t tmp{new label_t::element_type{text}};
|
|
|
|
tmp->replace_defined_values(label);
|
|
|
|
node(tmp, add_space);
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag that will offset the contents by given pixels
|
|
|
|
*/
|
2016-11-02 15:22:45 -04:00
|
|
|
void builder::offset(int pixels) {
|
2016-11-25 07:55:15 -05:00
|
|
|
if (pixels == 0) {
|
2016-11-24 13:24:47 -05:00
|
|
|
return;
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-24 13:24:47 -05:00
|
|
|
tag_open(syntaxtag::O, to_string(pixels));
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert spaces
|
|
|
|
*/
|
2016-12-26 11:06:28 -05:00
|
|
|
void builder::space(size_t width) {
|
2017-01-10 19:42:55 -05:00
|
|
|
if (width) {
|
|
|
|
m_output.append(width, ' ');
|
|
|
|
} else {
|
|
|
|
space();
|
|
|
|
}
|
2016-12-26 11:06:28 -05:00
|
|
|
}
|
|
|
|
void builder::space() {
|
|
|
|
m_output.append(m_bar.spacing, ' ');
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Remove trailing space
|
|
|
|
*/
|
2016-12-26 11:06:28 -05:00
|
|
|
void builder::remove_trailing_space(size_t len) {
|
2016-12-30 22:32:11 -05:00
|
|
|
if (len == 0_z || len > m_output.size()) {
|
2016-11-02 15:22:45 -04:00
|
|
|
return;
|
2016-12-30 14:34:13 -05:00
|
|
|
} else if (m_output.substr(m_output.size() - len) == string(len, ' ')) {
|
2016-12-26 11:06:28 -05:00
|
|
|
m_output.erase(m_output.size() - len);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
2016-12-26 11:06:28 -05:00
|
|
|
void builder::remove_trailing_space() {
|
|
|
|
remove_trailing_space(m_bar.spacing);
|
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to alter the current font index
|
|
|
|
*/
|
2016-11-02 15:22:45 -04:00
|
|
|
void builder::font(int index) {
|
2016-11-30 16:17:52 -05:00
|
|
|
if (index == 0) {
|
|
|
|
return;
|
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
m_fontindex = index;
|
2016-11-24 13:24:47 -05:00
|
|
|
tag_open(syntaxtag::T, to_string(index));
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to reset the font index
|
|
|
|
*/
|
|
|
|
void builder::font_close() {
|
2016-11-02 15:22:45 -04:00
|
|
|
m_fontindex = 1;
|
2016-11-24 13:24:47 -05:00
|
|
|
tag_close(syntaxtag::T);
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to alter the current background color
|
|
|
|
*/
|
2016-11-02 15:22:45 -04:00
|
|
|
void builder::background(string color) {
|
2016-11-25 07:55:15 -05:00
|
|
|
if (color.length() == 2 || (color.find('#') == 0 && color.length() == 3)) {
|
2016-11-24 13:24:47 -05:00
|
|
|
string bg{background_hex()};
|
2016-11-02 15:22:45 -04:00
|
|
|
color = "#" + color.substr(color.length() - 2);
|
|
|
|
color += bg.substr(bg.length() - (bg.length() < 6 ? 3 : 6));
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
color = color_util::simplify_hex(color);
|
2016-11-02 15:22:45 -04:00
|
|
|
m_colors[syntaxtag::B] = color;
|
2016-11-24 13:24:47 -05:00
|
|
|
tag_open(syntaxtag::B, color);
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to reset the background color
|
|
|
|
*/
|
|
|
|
void builder::background_close() {
|
2016-12-26 11:06:28 -05:00
|
|
|
m_colors[syntaxtag::B].clear();
|
2016-11-24 13:24:47 -05:00
|
|
|
tag_close(syntaxtag::B);
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to alter the current foreground color
|
|
|
|
*/
|
|
|
|
void builder::color(string color) {
|
2016-12-26 11:06:28 -05:00
|
|
|
if (color.length() == 2 || (color[0] == '#' && color.length() == 3)) {
|
2016-11-24 13:24:47 -05:00
|
|
|
string fg{foreground_hex()};
|
2016-12-26 11:06:28 -05:00
|
|
|
if (!fg.empty()) {
|
|
|
|
color = "#" + color.substr(color.length() - 2);
|
|
|
|
color += fg.substr(fg.length() - (fg.length() < 6 ? 3 : 6));
|
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
color = color_util::simplify_hex(color);
|
2016-11-02 15:22:45 -04:00
|
|
|
m_colors[syntaxtag::F] = color;
|
2016-11-24 13:24:47 -05:00
|
|
|
tag_open(syntaxtag::F, color);
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to alter the alpha value of the default foreground color
|
|
|
|
*/
|
|
|
|
void builder::color_alpha(string alpha) {
|
2016-11-30 16:17:52 -05:00
|
|
|
if (alpha.find('#') == string::npos) {
|
2016-11-02 15:22:45 -04:00
|
|
|
alpha = "#" + alpha;
|
|
|
|
}
|
|
|
|
if (alpha.size() == 4) {
|
|
|
|
color(alpha);
|
2016-12-26 11:06:28 -05:00
|
|
|
} else {
|
|
|
|
string val{foreground_hex()};
|
|
|
|
if (val.size() < 6 && val.size() > 2) {
|
|
|
|
val.append(val.substr(val.size() - 3));
|
|
|
|
}
|
|
|
|
color((alpha.substr(0, 3) + val.substr(val.size() - 6)).substr(0, 9));
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to reset the foreground color
|
|
|
|
*/
|
|
|
|
void builder::color_close() {
|
2016-12-26 11:06:28 -05:00
|
|
|
m_colors[syntaxtag::F].clear();
|
2016-11-24 13:24:47 -05:00
|
|
|
tag_close(syntaxtag::F);
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to alter the current overline/underline color
|
|
|
|
*/
|
2016-11-25 07:55:15 -05:00
|
|
|
void builder::line_color(const string& color) {
|
2016-11-24 13:24:47 -05:00
|
|
|
overline_color(color);
|
|
|
|
underline_color(color);
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Close overline/underline color tag
|
|
|
|
*/
|
|
|
|
void builder::line_color_close() {
|
|
|
|
overline_color_close();
|
|
|
|
underline_color_close();
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to alter the current overline color
|
|
|
|
*/
|
2016-11-21 10:14:40 -05:00
|
|
|
void builder::overline_color(string color) {
|
2016-11-24 13:24:47 -05:00
|
|
|
color = color_util::simplify_hex(color);
|
|
|
|
m_colors[syntaxtag::o] = color;
|
|
|
|
tag_open(syntaxtag::o, color);
|
|
|
|
tag_open(attribute::OVERLINE);
|
2016-11-21 10:14:40 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Close underline color tag
|
|
|
|
*/
|
|
|
|
void builder::overline_color_close() {
|
2016-12-26 11:06:28 -05:00
|
|
|
m_colors[syntaxtag::o].clear();
|
2016-11-24 13:24:47 -05:00
|
|
|
tag_close(syntaxtag::o);
|
2016-11-21 10:14:40 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to alter the current underline color
|
|
|
|
*/
|
2016-11-21 10:14:40 -05:00
|
|
|
void builder::underline_color(string color) {
|
2016-11-24 13:24:47 -05:00
|
|
|
color = color_util::simplify_hex(color);
|
|
|
|
m_colors[syntaxtag::u] = color;
|
|
|
|
tag_open(syntaxtag::u, color);
|
|
|
|
tag_open(attribute::UNDERLINE);
|
2016-11-21 10:14:40 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Close underline color tag
|
|
|
|
*/
|
|
|
|
void builder::underline_color_close() {
|
|
|
|
tag_close(syntaxtag::u);
|
2016-12-26 11:06:28 -05:00
|
|
|
m_colors[syntaxtag::u].clear();
|
2016-11-21 10:14:40 -05:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to enable the overline attribute
|
|
|
|
*/
|
2016-11-25 07:55:15 -05:00
|
|
|
void builder::overline(const string& color) {
|
|
|
|
if (!color.empty()) {
|
2016-11-21 10:14:40 -05:00
|
|
|
overline_color(color);
|
2016-11-25 07:55:15 -05:00
|
|
|
} else {
|
2016-11-24 13:24:47 -05:00
|
|
|
tag_open(attribute::OVERLINE);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Close overline attribute tag
|
|
|
|
*/
|
|
|
|
void builder::overline_close() {
|
|
|
|
tag_close(attribute::OVERLINE);
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert tag to enable the underline attribute
|
|
|
|
*/
|
2016-11-25 07:55:15 -05:00
|
|
|
void builder::underline(const string& color) {
|
|
|
|
if (!color.empty()) {
|
2016-11-21 10:14:40 -05:00
|
|
|
underline_color(color);
|
2016-11-25 07:55:15 -05:00
|
|
|
} else {
|
2016-11-24 13:24:47 -05:00
|
|
|
tag_open(attribute::UNDERLINE);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Close underline attribute tag
|
|
|
|
*/
|
|
|
|
void builder::underline_close() {
|
|
|
|
tag_close(attribute::UNDERLINE);
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Open command tag
|
|
|
|
*/
|
2016-11-02 15:22:45 -04:00
|
|
|
void builder::cmd(mousebtn index, string action, bool condition) {
|
2017-01-13 05:22:23 -05:00
|
|
|
if (condition && !action.empty()) {
|
2017-03-21 11:03:34 -04:00
|
|
|
size_t p{0};
|
|
|
|
while ((p = action.find(':', p)) != string::npos && action[p - 1] != '\\') {
|
|
|
|
action.insert(p, 1, '\\');
|
|
|
|
p++;
|
|
|
|
}
|
2017-01-13 05:22:23 -05:00
|
|
|
tag_open(syntaxtag::A, to_string(static_cast<int>(index)) + ":" + action + ":");
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2017-01-13 05:22:23 -05:00
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2017-01-13 05:22:23 -05:00
|
|
|
/**
|
|
|
|
* Wrap label in command block
|
|
|
|
*/
|
|
|
|
void builder::cmd(mousebtn index, string action, const label_t& label) {
|
2017-03-21 11:03:34 -04:00
|
|
|
if (label && *label) {
|
|
|
|
cmd(index, action, true);
|
2017-01-13 05:22:23 -05:00
|
|
|
node(label);
|
|
|
|
tag_close(syntaxtag::A);
|
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Close command tag
|
|
|
|
*/
|
2016-12-04 23:32:10 -05:00
|
|
|
void builder::cmd_close(bool condition) {
|
|
|
|
if (condition) {
|
|
|
|
tag_close(syntaxtag::A);
|
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Get default background hex string
|
|
|
|
*/
|
|
|
|
string builder::background_hex() {
|
2016-11-25 07:55:15 -05:00
|
|
|
if (m_background.empty()) {
|
2017-01-19 05:11:28 -05:00
|
|
|
m_background = color_util::hex<unsigned short int>(m_bar.background);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-24 13:24:47 -05:00
|
|
|
return m_background;
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Get default foreground hex string
|
|
|
|
*/
|
|
|
|
string builder::foreground_hex() {
|
2016-11-25 07:55:15 -05:00
|
|
|
if (m_foreground.empty()) {
|
2017-01-19 05:11:28 -05:00
|
|
|
m_foreground = color_util::hex<unsigned short int>(m_bar.foreground);
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-24 13:24:47 -05:00
|
|
|
return m_foreground;
|
|
|
|
}
|
|
|
|
|
2018-04-28 17:18:02 -04:00
|
|
|
string builder::get_label_text(const label_t& label) {
|
|
|
|
string text{label->get()};
|
|
|
|
|
2018-05-06 15:59:40 -04:00
|
|
|
size_t maxlen = label->m_maxlen;
|
|
|
|
|
2018-05-06 17:59:53 -04:00
|
|
|
if (maxlen > 0 && string_util::char_len(text) > maxlen) {
|
|
|
|
if (label->m_ellipsis) {
|
2018-05-06 15:59:40 -04:00
|
|
|
text = string_util::utf8_truncate(std::move(text), maxlen - 3) + "...";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
text = string_util::utf8_truncate(std::move(text), maxlen);
|
|
|
|
}
|
2018-04-28 17:18:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
2016-11-24 13:24:47 -05:00
|
|
|
/**
|
|
|
|
* Insert directive to change value of given tag
|
|
|
|
*/
|
2016-11-25 07:55:15 -05:00
|
|
|
void builder::tag_open(syntaxtag tag, const string& value) {
|
|
|
|
if (m_tags.find(tag) == m_tags.end()) {
|
2016-11-24 22:10:26 -05:00
|
|
|
m_tags[tag] = 0;
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-24 22:10:26 -05:00
|
|
|
|
|
|
|
m_tags[tag]++;
|
2016-11-24 13:24:47 -05:00
|
|
|
|
|
|
|
switch (tag) {
|
|
|
|
case syntaxtag::NONE:
|
|
|
|
break;
|
|
|
|
case syntaxtag::A:
|
|
|
|
append("%{A" + value + "}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::F:
|
|
|
|
append("%{F" + value + "}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::B:
|
|
|
|
append("%{B" + value + "}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::T:
|
|
|
|
append("%{T" + value + "}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::u:
|
|
|
|
append("%{u" + value + "}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::o:
|
|
|
|
append("%{o" + value + "}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::R:
|
|
|
|
append("%{R}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::O:
|
|
|
|
append("%{O" + value + "}");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert directive to use given attribute unless already set
|
|
|
|
*/
|
|
|
|
void builder::tag_open(attribute attr) {
|
2017-01-19 05:11:28 -05:00
|
|
|
if ((m_attributes >> static_cast<int>(attr)) & 1) {
|
2016-11-24 13:24:47 -05:00
|
|
|
return;
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-24 13:24:47 -05:00
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
m_attributes |= 1 << static_cast<int>(attr);
|
2016-11-24 13:24:47 -05:00
|
|
|
|
|
|
|
switch (attr) {
|
|
|
|
case attribute::NONE:
|
|
|
|
break;
|
|
|
|
case attribute::UNDERLINE:
|
|
|
|
append("%{+u}");
|
|
|
|
break;
|
|
|
|
case attribute::OVERLINE:
|
|
|
|
append("%{+o}");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert directive to reset given tag if it's open and closable
|
|
|
|
*/
|
|
|
|
void builder::tag_close(syntaxtag tag) {
|
2016-11-25 07:55:15 -05:00
|
|
|
if (m_tags.find(tag) == m_tags.end() || !m_tags[tag]) {
|
2016-11-24 13:24:47 -05:00
|
|
|
return;
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-24 13:24:47 -05:00
|
|
|
|
|
|
|
m_tags[tag]--;
|
|
|
|
|
|
|
|
switch (tag) {
|
|
|
|
case syntaxtag::NONE:
|
|
|
|
break;
|
|
|
|
case syntaxtag::A:
|
|
|
|
append("%{A}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::F:
|
|
|
|
append("%{F-}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::B:
|
|
|
|
append("%{B-}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::T:
|
|
|
|
append("%{T-}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::u:
|
|
|
|
append("%{u-}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::o:
|
|
|
|
append("%{o-}");
|
|
|
|
break;
|
|
|
|
case syntaxtag::R:
|
|
|
|
break;
|
|
|
|
case syntaxtag::O:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert directive to remove given attribute if set
|
|
|
|
*/
|
|
|
|
void builder::tag_close(attribute attr) {
|
2017-01-19 05:11:28 -05:00
|
|
|
if (!((m_attributes >> static_cast<int>(attr)) & 1)) {
|
2016-11-24 13:24:47 -05:00
|
|
|
return;
|
2016-11-25 07:55:15 -05:00
|
|
|
}
|
2016-11-24 13:24:47 -05:00
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
m_attributes &= ~(1 << static_cast<int>(attr));
|
2016-11-24 13:24:47 -05:00
|
|
|
|
|
|
|
switch (attr) {
|
|
|
|
case attribute::NONE:
|
|
|
|
break;
|
|
|
|
case attribute::UNDERLINE:
|
|
|
|
append("%{-u}");
|
|
|
|
break;
|
|
|
|
case attribute::OVERLINE:
|
|
|
|
append("%{-o}");
|
|
|
|
break;
|
|
|
|
}
|
2016-11-02 15:22:45 -04:00
|
|
|
}
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|