mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
20 lines
386 B
C++
20 lines
386 B
C++
|
#include "ALabel.hpp"
|
||
|
|
||
|
waybar::ALabel::ALabel(Json::Value config)
|
||
|
: config_(std::move(config))
|
||
|
{
|
||
|
if (config_["max-length"]) {
|
||
|
label_.set_max_width_chars(config_["max-length"].asUInt());
|
||
|
label_.set_ellipsize(Pango::EllipsizeMode::ELLIPSIZE_END);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
auto waybar::ALabel::update() -> void
|
||
|
{
|
||
|
// Nothing here
|
||
|
}
|
||
|
|
||
|
waybar::ALabel::operator Gtk::Widget &() {
|
||
|
return label_;
|
||
|
}
|