The AButton class is designed as full a substitute to ALabel. The GtkButton attribute 'button_' is initialized with a label. This label can the be referenced by the subsequent inheritors of AButton instead of the GtkLabel attribute 'label_' of ALabel. For convenience a GtkLabel* 'label_' attribute is added to AButton. If the button cannot be clicked it is disabled, effectively acting like its label predecessor. GtkButton seems to catch one-click mouse events regardless of the flags set on it. Therefore, 'signal_pressed' is connected to a function creating a fake GdkEventButton* and calling 'handleToggle' (for details on this possible bug in GTK see: https://stackoverflow.com/questions/45334911 ) In accordance with other GtkButtons (i.e. the sway/workspace ones) set_relief(Gtk::RELIEF_NONE) is called on the 'button_' instance.
56 lines
1.3 KiB
C++
56 lines
1.3 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)
|
|
: AButton(config, "mode", id, "{}", 0, true) {
|
|
ipc_.subscribe(R"(["mode"])");
|
|
ipc_.signal_event.connect(sigc::mem_fun(*this, &Mode::onEvent));
|
|
// Launch worker
|
|
ipc_.setWorker([this] {
|
|
try {
|
|
ipc_.handleEvent();
|
|
} catch (const std::exception& e) {
|
|
spdlog::error("Mode: {}", e.what());
|
|
}
|
|
});
|
|
dp.emit();
|
|
}
|
|
|
|
void Mode::onEvent(const struct Ipc::ipc_response& res) {
|
|
try {
|
|
std::lock_guard<std::mutex> lock(mutex_);
|
|
auto payload = parser_.parse(res.payload);
|
|
if (payload["change"] != "default") {
|
|
if (payload["pango_markup"].asBool()) {
|
|
mode_ = payload["change"].asString();
|
|
} else {
|
|
mode_ = Glib::Markup::escape_text(payload["change"].asString());
|
|
}
|
|
} else {
|
|
mode_.clear();
|
|
}
|
|
dp.emit();
|
|
} 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();
|
|
}
|
|
// Call parent update
|
|
AButton::update();
|
|
}
|
|
|
|
} // namespace waybar::modules::sway
|