Waybar/src/modules/sni/tray.cpp

42 lines
1003 B
C++
Raw Normal View History

#include "modules/sni/tray.hpp"
2019-04-24 10:37:24 +00:00
namespace waybar::modules::SNI {
Tray::Tray(const std::string& id, const Bar& bar, const Json::Value& config)
: config_(config),
box_(bar.vertical ? Gtk::ORIENTATION_VERTICAL : Gtk::ORIENTATION_HORIZONTAL, 0),
host_(nb_hosts_, config, std::bind(&Tray::onAdd, this, std::placeholders::_1),
std::bind(&Tray::onRemove, this, std::placeholders::_1)) {
2019-04-24 10:37:24 +00:00
box_.set_name("tray");
if (!id.empty()) {
box_.get_style_context()->add_class(id);
}
2018-10-26 10:08:50 +00:00
if (config_["spacing"].isUInt()) {
box_.set_spacing(config_["spacing"].asUInt());
}
2018-11-30 23:10:41 +00:00
nb_hosts_ += 1;
2019-04-24 10:37:24 +00:00
dp.emit();
2018-10-26 10:08:50 +00:00
}
2019-04-24 10:37:24 +00:00
void Tray::onAdd(std::unique_ptr<Item>& item) {
2018-11-22 14:47:23 +00:00
box_.pack_start(item->event_box);
dp.emit();
}
2019-04-24 10:37:24 +00:00
void Tray::onRemove(std::unique_ptr<Item>& item) {
2018-11-22 14:47:23 +00:00
box_.remove(item->event_box);
dp.emit();
}
2019-04-24 10:37:24 +00:00
auto Tray::update() -> void {
if (box_.get_children().empty()) {
box_.hide();
} else {
2019-04-24 10:37:24 +00:00
box_.show_all();
}
}
2019-04-24 10:37:24 +00:00
Tray::operator Gtk::Widget&() { return box_; }
2019-05-18 23:44:45 +00:00
}