mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
55 lines
1.2 KiB
C++
55 lines
1.2 KiB
C++
#include "modules/sway/mode.hpp"
|
|
#include <spdlog/spdlog.h>
|
|
|
|
namespace waybar::modules::sway {
|
|
|
|
Mode::Mode(const std::string& id, const Json::Value& config) : ALabel(config, "{}") {
|
|
label_.set_name("mode");
|
|
if (!id.empty()) {
|
|
label_.get_style_context()->add_class(id);
|
|
}
|
|
ipc_.subscribe(R"(["mode"])");
|
|
ipc_.signal_event.connect(sigc::mem_fun(*this, &Mode::onEvent));
|
|
// Launch worker
|
|
worker();
|
|
dp.emit();
|
|
}
|
|
|
|
void Mode::onEvent(const struct Ipc::ipc_response& res) {
|
|
try {
|
|
auto payload = parser_.parse(res.payload);
|
|
if (payload["change"] != "default") {
|
|
mode_ = payload["change"].asString();
|
|
} else {
|
|
mode_.clear();
|
|
}
|
|
dp.emit();
|
|
} catch (const std::exception& e) {
|
|
spdlog::error("Mode: {}", e.what());
|
|
}
|
|
}
|
|
|
|
void Mode::worker() {
|
|
thread_ = [this] {
|
|
try {
|
|
ipc_.handleEvent();
|
|
} catch (const std::exception& e) {
|
|
spdlog::error("Mode: {}", e.what());
|
|
}
|
|
};
|
|
}
|
|
|
|
auto Mode::update() -> void {
|
|
if (mode_.empty()) {
|
|
event_box_.hide();
|
|
} else {
|
|
label_.set_markup(fmt::format(format_, mode_));
|
|
if (tooltipEnabled()) {
|
|
label_.set_tooltip_text(mode_);
|
|
}
|
|
event_box_.show();
|
|
}
|
|
}
|
|
|
|
} // namespace waybar::modules::sway
|