2019-02-17 14:27:54 +00:00
|
|
|
#include "modules/idle_inhibitor.hpp"
|
2019-03-03 21:02:34 +00:00
|
|
|
#include "util/command.hpp"
|
2019-02-17 14:27:54 +00:00
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
waybar::modules::IdleInhibitor::IdleInhibitor(const std::string& id, const Bar& bar,
|
|
|
|
const Json::Value& config)
|
2019-05-22 10:06:24 +00:00
|
|
|
: ALabel(config, "idle_inhibitor", id, "{status}"),
|
2019-04-23 13:56:38 +00:00
|
|
|
bar_(bar),
|
|
|
|
status_("deactivated"),
|
|
|
|
pid_(-1) {
|
2019-02-17 14:27:54 +00:00
|
|
|
event_box_.add_events(Gdk::BUTTON_PRESS_MASK);
|
|
|
|
event_box_.signal_button_press_event().connect(
|
2019-03-03 21:02:34 +00:00
|
|
|
sigc::mem_fun(*this, &IdleInhibitor::handleToggle));
|
2019-02-17 14:27:54 +00:00
|
|
|
dp.emit();
|
|
|
|
}
|
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
waybar::modules::IdleInhibitor::~IdleInhibitor() {
|
2020-10-31 16:31:27 +00:00
|
|
|
if (waybar::Client::inst()->idle_inhibitor != nullptr) {
|
|
|
|
zwp_idle_inhibitor_v1_destroy(waybar::Client::inst()->idle_inhibitor);
|
|
|
|
waybar::Client::inst()->idle_inhibitor = nullptr;
|
2019-02-17 14:27:54 +00:00
|
|
|
}
|
2019-04-23 13:56:38 +00:00
|
|
|
if (pid_ != -1) {
|
|
|
|
kill(-pid_, 9);
|
|
|
|
pid_ = -1;
|
|
|
|
}
|
2019-02-17 14:27:54 +00:00
|
|
|
}
|
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
auto waybar::modules::IdleInhibitor::update() -> void {
|
2020-10-31 16:31:27 +00:00
|
|
|
// Check status
|
|
|
|
if (waybar::Client::inst()->idle_inhibitor != nullptr) {
|
|
|
|
status_ = "activated";
|
|
|
|
} else {
|
|
|
|
status_ = "deactivated";
|
|
|
|
}
|
|
|
|
|
2019-02-17 14:27:54 +00:00
|
|
|
label_.set_markup(
|
2019-04-18 15:43:16 +00:00
|
|
|
fmt::format(format_, fmt::arg("status", status_), fmt::arg("icon", getIcon(0, status_))));
|
2019-03-10 09:29:06 +00:00
|
|
|
label_.get_style_context()->add_class(status_);
|
2019-04-18 15:43:16 +00:00
|
|
|
if (tooltipEnabled()) {
|
2019-02-22 15:58:36 +00:00
|
|
|
label_.set_tooltip_text(status_);
|
|
|
|
}
|
2020-04-12 16:30:21 +00:00
|
|
|
// Call parent update
|
|
|
|
ALabel::update();
|
2019-02-17 14:27:54 +00:00
|
|
|
}
|
|
|
|
|
2019-03-03 21:02:34 +00:00
|
|
|
bool waybar::modules::IdleInhibitor::handleToggle(GdkEventButton* const& e) {
|
|
|
|
if (e->button == 1) {
|
2019-03-10 09:29:06 +00:00
|
|
|
label_.get_style_context()->remove_class(status_);
|
2020-10-31 16:31:27 +00:00
|
|
|
if (waybar::Client::inst()->idle_inhibitor != nullptr) {
|
|
|
|
zwp_idle_inhibitor_v1_destroy(waybar::Client::inst()->idle_inhibitor);
|
|
|
|
waybar::Client::inst()->idle_inhibitor = nullptr;
|
2019-04-18 15:52:00 +00:00
|
|
|
status_ = "deactivated";
|
2019-02-17 14:27:54 +00:00
|
|
|
} else {
|
2020-10-31 16:31:27 +00:00
|
|
|
waybar::Client::inst()->idle_inhibitor = zwp_idle_inhibit_manager_v1_create_inhibitor(
|
|
|
|
waybar::Client::inst()->idle_inhibit_manager, bar_.surface);
|
2019-02-17 14:27:54 +00:00
|
|
|
status_ = "activated";
|
|
|
|
}
|
2019-05-02 14:56:45 +00:00
|
|
|
click_param = status_;
|
2019-02-17 14:27:54 +00:00
|
|
|
}
|
2020-10-31 16:31:27 +00:00
|
|
|
|
|
|
|
// Make all modules update
|
|
|
|
for (auto const& bar : waybar::Client::inst()->bars) {
|
|
|
|
bar->updateAll();
|
|
|
|
}
|
|
|
|
|
2019-05-02 15:51:01 +00:00
|
|
|
ALabel::handleToggle(e);
|
|
|
|
return true;
|
2019-02-17 14:27:54 +00:00
|
|
|
}
|