polybar/include/modules/xbacklight.hpp

63 lines
1.7 KiB
C++
Raw Normal View History

#pragma once
#include "components/config.hpp"
#include "config.hpp"
2016-11-20 22:04:31 +00:00
#include "modules/meta/static_module.hpp"
2016-11-25 07:42:31 +00:00
#include "x11/randr.hpp"
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-11-20 22:04:31 +00:00
class connection;
namespace modules {
/**
* Backlight module built using the RandR X extension.
*
* This is built as a replacement for the old backlight
* module that was set up using with inotify watches listening
* for changes to the raw file handle.
*
* This module is alot faster, it's more responsive and it will
* be dormant until new values are reported. Inotify watches
* are a bit random when it comes to proc-/sysfs.
*
* TODO: Implement backlight configuring using scroll events
*/
2016-11-25 07:42:31 +00:00
class xbacklight_module : public static_module<xbacklight_module>, public xpp::event::sink<evt::randr_notify> {
public:
2016-12-09 08:40:46 +00:00
explicit xbacklight_module(const bar_settings& bar, string name);
2016-11-20 22:04:31 +00:00
2016-11-02 19:22:45 +00:00
void setup();
void teardown();
2016-11-02 19:22:45 +00:00
void handle(const evt::randr_notify& evt);
void update();
string get_output();
2016-11-25 12:55:15 +00:00
bool build(builder* builder, const string& tag) const;
bool handle_event(string cmd);
bool receive_events() const {
return true;
}
private:
static constexpr const char* TAG_LABEL{"<label>"};
static constexpr const char* TAG_BAR{"<bar>"};
static constexpr const char* TAG_RAMP{"<ramp>"};
static constexpr const char* EVENT_SCROLLUP{"xbacklight+"};
static constexpr const char* EVENT_SCROLLDOWN{"xbacklight-"};
2016-11-20 22:04:31 +00:00
connection& m_connection;
monitor_t m_output;
2016-12-15 08:29:14 +00:00
xcb_window_t m_proxy{};
ramp_t m_ramp;
label_t m_label;
progressbar_t m_progressbar;
bool m_scroll{true};
int m_percentage{0};
};
}
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END