1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/modules/xbacklight.hpp

64 lines
1.7 KiB
C++
Raw Normal View History

#pragma once
#include "components/config.hpp"
2017-01-10 21:07:28 -05:00
#include "settings.hpp"
#include "modules/meta/event_handler.hpp"
#include "modules/meta/input_handler.hpp"
2016-11-20 17:04:31 -05:00
#include "modules/meta/static_module.hpp"
2016-12-21 08:55:19 -05:00
#include "x11/extensions/randr.hpp"
2016-11-19 00:22:44 -05:00
POLYBAR_NS
2016-11-20 17:04:31 -05: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
*/
class xbacklight_module : public static_module<xbacklight_module>,
public event_handler<evt::randr_notify>,
public input_handler {
public:
explicit xbacklight_module(const bar_settings& bar, string name_);
2016-11-20 17:04:31 -05:00
2016-11-02 15:22:45 -04:00
void update();
string get_output();
2016-11-25 07:55:15 -05:00
bool build(builder* builder, const string& tag) const;
protected:
void handle(const evt::randr_notify& evt);
2016-12-23 14:43:52 -05:00
bool input(string&& cmd);
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 17:04:31 -05:00
connection& m_connection;
monitor_t m_output;
2016-12-15 03:29:14 -05:00
xcb_window_t m_proxy{};
ramp_t m_ramp;
label_t m_label;
progressbar_t m_progressbar;
bool m_scroll{true};
std::atomic<int> m_percentage{0};
};
}
2016-11-19 00:22:44 -05:00
POLYBAR_NS_END