28 lines
		
	
	
		
			575 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			575 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <gio/gio.h>
 | |
| 
 | |
| #include <memory>
 | |
| 
 | |
| #include "ALabel.hpp"
 | |
| #include "bar.hpp"
 | |
| 
 | |
| namespace waybar::modules {
 | |
| 
 | |
| class Inhibitor : public ALabel {
 | |
|  public:
 | |
|   Inhibitor(const std::string&, const waybar::Bar&, const Json::Value&);
 | |
|   virtual ~Inhibitor();
 | |
|   auto update() -> void override;
 | |
|   auto activated() -> bool;
 | |
| 
 | |
|  private:
 | |
|   auto handleToggle(::GdkEventButton* const& e) -> bool override;
 | |
| 
 | |
|   const std::unique_ptr<::GDBusConnection, void (*)(::GDBusConnection*)> dbus_;
 | |
|   const std::string inhibitors_;
 | |
|   int handle_ = -1;
 | |
| };
 | |
| 
 | |
| }  // namespace waybar::modules
 |