Waybar/src/modules/idle_inhibitor.cpp

86 lines
2.5 KiB
C++
Raw Normal View History

2019-02-17 14:27:54 +00:00
#include "modules/idle_inhibitor.hpp"
#include "idle-inhibit-unstable-v1-client-protocol.h"
#include "util/command.hpp"
2019-02-17 14:27:54 +00:00
std::list<waybar::AModule*> waybar::modules::IdleInhibitor::modules;
2022-04-06 06:37:19 +00:00
bool waybar::modules::IdleInhibitor::status = false;
waybar::modules::IdleInhibitor::IdleInhibitor(const std::string& id, const Bar& bar,
const Json::Value& config)
: ALabel(config, "idle_inhibitor", id, "{status}"),
bar_(bar),
idle_inhibitor_(nullptr),
pid_(-1) {
if (waybar::Client::inst()->idle_inhibit_manager == nullptr) {
throw std::runtime_error("idle-inhibit not available");
}
2019-02-17 14:27:54 +00:00
event_box_.add_events(Gdk::BUTTON_PRESS_MASK);
event_box_.signal_button_press_event().connect(
sigc::mem_fun(*this, &IdleInhibitor::handleToggle));
// Add this to the modules list
waybar::modules::IdleInhibitor::modules.push_back(this);
2019-02-17 14:27:54 +00:00
dp.emit();
}
waybar::modules::IdleInhibitor::~IdleInhibitor() {
if (idle_inhibitor_ != nullptr) {
zwp_idle_inhibitor_v1_destroy(idle_inhibitor_);
idle_inhibitor_ = nullptr;
2019-02-17 14:27:54 +00:00
}
// Remove this from the modules list
waybar::modules::IdleInhibitor::modules.remove(this);
if (pid_ != -1) {
kill(-pid_, 9);
pid_ = -1;
}
2019-02-17 14:27:54 +00:00
}
auto waybar::modules::IdleInhibitor::update() -> void {
// Check status
2020-11-01 18:25:41 +00:00
if (status) {
label_.get_style_context()->remove_class("deactivated");
if (idle_inhibitor_ == nullptr) {
idle_inhibitor_ = zwp_idle_inhibit_manager_v1_create_inhibitor(
2022-04-06 06:37:19 +00:00
waybar::Client::inst()->idle_inhibit_manager, bar_.surface);
}
} else {
label_.get_style_context()->remove_class("activated");
if (idle_inhibitor_ != nullptr) {
zwp_idle_inhibitor_v1_destroy(idle_inhibitor_);
idle_inhibitor_ = nullptr;
}
}
2020-11-01 18:25:41 +00:00
std::string status_text = status ? "activated" : "deactivated";
2022-04-06 06:37:19 +00:00
label_.set_markup(fmt::format(format_, fmt::arg("status", status_text),
fmt::arg("icon", getIcon(0, status_text))));
2020-11-01 18:25:41 +00:00
label_.get_style_context()->add_class(status_text);
if (tooltipEnabled()) {
2020-11-01 18:25:41 +00:00
label_.set_tooltip_text(status_text);
}
2020-04-12 16:30:21 +00:00
// Call parent update
ALabel::update();
2019-02-17 14:27:54 +00:00
}
bool waybar::modules::IdleInhibitor::handleToggle(GdkEventButton* const& e) {
if (e->button == 1) {
2020-11-01 18:25:41 +00:00
status = !status;
2020-11-01 18:25:41 +00:00
// Make all other idle inhibitor modules update
for (auto const& module : waybar::modules::IdleInhibitor::modules) {
if (module != this) {
module->update();
}
}
}
2019-05-02 15:51:01 +00:00
ALabel::handleToggle(e);
return true;
2019-02-17 14:27:54 +00:00
}