2018-10-30 13:39:30 +01:00
|
|
|
#include "modules/sway/mode.hpp"
|
2019-05-19 01:44:45 +02:00
|
|
|
#include <spdlog/spdlog.h>
|
2018-10-30 13:39:30 +01:00
|
|
|
|
2019-04-19 11:09:06 +02:00
|
|
|
namespace waybar::modules::sway {
|
|
|
|
|
2019-05-22 12:06:24 +02:00
|
|
|
Mode::Mode(const std::string& id, const Json::Value& config) : ALabel(config, "mode", id, "{}") {
|
2019-04-24 12:37:24 +02:00
|
|
|
ipc_.subscribe(R"(["mode"])");
|
2019-04-19 11:09:06 +02:00
|
|
|
ipc_.signal_event.connect(sigc::mem_fun(*this, &Mode::onEvent));
|
2018-10-30 13:39:30 +01:00
|
|
|
// Launch worker
|
|
|
|
worker();
|
2018-12-18 17:30:54 +01:00
|
|
|
dp.emit();
|
2018-10-30 13:39:30 +01:00
|
|
|
}
|
|
|
|
|
2019-05-07 13:43:48 +02:00
|
|
|
void Mode::onEvent(const struct Ipc::ipc_response& res) {
|
2019-05-09 10:30:54 +02:00
|
|
|
try {
|
|
|
|
auto payload = parser_.parse(res.payload);
|
|
|
|
if (payload["change"] != "default") {
|
2019-05-20 20:51:19 +02:00
|
|
|
mode_ = Glib::Markup::escape_text(payload["change"].asString());
|
2019-05-09 10:30:54 +02:00
|
|
|
} else {
|
|
|
|
mode_.clear();
|
|
|
|
}
|
|
|
|
dp.emit();
|
|
|
|
} catch (const std::exception& e) {
|
2019-05-19 01:44:45 +02:00
|
|
|
spdlog::error("Mode: {}", e.what());
|
2019-04-19 11:09:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mode::worker() {
|
2018-10-30 13:39:30 +01:00
|
|
|
thread_ = [this] {
|
|
|
|
try {
|
2019-04-19 11:09:06 +02:00
|
|
|
ipc_.handleEvent();
|
2018-10-30 13:39:30 +01:00
|
|
|
} catch (const std::exception& e) {
|
2019-05-19 01:44:45 +02:00
|
|
|
spdlog::error("Mode: {}", e.what());
|
2018-10-30 13:39:30 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-04-19 11:09:06 +02:00
|
|
|
auto Mode::update() -> void {
|
2018-10-30 13:39:30 +01:00
|
|
|
if (mode_.empty()) {
|
2018-12-18 17:30:54 +01:00
|
|
|
event_box_.hide();
|
2018-10-30 13:39:30 +01:00
|
|
|
} else {
|
2018-11-21 20:49:09 +01:00
|
|
|
label_.set_markup(fmt::format(format_, mode_));
|
2019-02-22 11:35:26 +01:00
|
|
|
if (tooltipEnabled()) {
|
|
|
|
label_.set_tooltip_text(mode_);
|
|
|
|
}
|
2018-12-18 17:30:54 +01:00
|
|
|
event_box_.show();
|
2018-10-30 13:39:30 +01:00
|
|
|
}
|
2019-04-19 11:09:06 +02:00
|
|
|
}
|
|
|
|
|
2019-05-19 01:44:45 +02:00
|
|
|
} // namespace waybar::modules::sway
|