2018-08-18 11:43:48 +02:00
|
|
|
#include "ALabel.hpp"
|
|
|
|
|
2018-08-27 01:36:25 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
waybar::ALabel::ALabel(const Json::Value& config, const std::string format)
|
|
|
|
: config_(config),
|
|
|
|
format_(config_["format"] ? config_["format"].asString() : format),
|
|
|
|
default_format_(format_)
|
2018-08-18 11:43:48 +02:00
|
|
|
{
|
2018-08-27 01:36:25 +02:00
|
|
|
event_box_.add(label_);
|
2018-08-18 11:43:48 +02:00
|
|
|
if (config_["max-length"]) {
|
|
|
|
label_.set_max_width_chars(config_["max-length"].asUInt());
|
|
|
|
label_.set_ellipsize(Pango::EllipsizeMode::ELLIPSIZE_END);
|
|
|
|
}
|
2018-08-27 01:36:25 +02:00
|
|
|
if (config_["format-alt"]) {
|
|
|
|
event_box_.add_events(Gdk::BUTTON_PRESS_MASK);
|
|
|
|
event_box_.signal_button_press_event()
|
|
|
|
.connect(sigc::mem_fun(*this, &ALabel::handleToggle));
|
|
|
|
}
|
2018-08-18 11:43:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
auto waybar::ALabel::update() -> void
|
|
|
|
{
|
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
|
2018-08-27 01:36:25 +02:00
|
|
|
bool waybar::ALabel::handleToggle(GdkEventButton* const& ev)
|
|
|
|
{
|
|
|
|
alt = !alt;
|
|
|
|
if (alt) {
|
|
|
|
format_ = config_["format-alt"].asString();
|
|
|
|
} else {
|
|
|
|
format_ = default_format_;
|
|
|
|
}
|
|
|
|
dp.emit();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string waybar::ALabel::getIcon(uint16_t percentage)
|
|
|
|
{
|
|
|
|
if (!config_["format-icons"] || !config_["format-icons"].isArray()) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
auto size = config_["format-icons"].size();
|
|
|
|
auto idx = std::clamp(percentage / (100 / size), 0U, size - 1);
|
|
|
|
return config_["format-icons"][idx].asString();
|
|
|
|
}
|
|
|
|
|
2018-08-18 11:43:48 +02:00
|
|
|
waybar::ALabel::operator Gtk::Widget &() {
|
2018-08-27 01:36:25 +02:00
|
|
|
return event_box_;
|
2018-08-18 11:43:48 +02:00
|
|
|
}
|