2016-10-19 08:46:43 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "components/config.hpp"
|
2016-12-22 23:08:19 -05:00
|
|
|
#include "modules/meta/event_handler.hpp"
|
2016-11-20 17:04:31 -05:00
|
|
|
#include "modules/meta/static_module.hpp"
|
2020-05-15 13:59:08 -04:00
|
|
|
#include "settings.hpp"
|
2016-12-21 08:55:19 -05:00
|
|
|
#include "x11/extensions/randr.hpp"
|
2016-10-19 08:46:43 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-10-19 08:46:43 -04:00
|
|
|
|
2016-11-20 17:04:31 -05:00
|
|
|
class connection;
|
|
|
|
|
2016-10-19 08:46:43 -04:00
|
|
|
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.
|
|
|
|
*
|
2019-01-29 11:54:38 -05:00
|
|
|
* This module is a lot faster, it's more responsive and it will
|
2016-10-19 08:46:43 -04:00
|
|
|
* be dormant until new values are reported. Inotify watches
|
|
|
|
* are a bit random when it comes to proc-/sysfs.
|
|
|
|
*/
|
2020-05-15 13:59:08 -04:00
|
|
|
class xbacklight_module : public static_module<xbacklight_module>, public event_handler<evt::randr_notify> {
|
2016-10-19 08:46:43 -04:00
|
|
|
public:
|
2016-12-21 02:00:09 -05:00
|
|
|
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();
|
2016-11-12 03:40:14 -05:00
|
|
|
string get_output();
|
2016-11-25 07:55:15 -05:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-12-21 02:38:44 -05:00
|
|
|
|
2020-05-15 13:59:08 -04:00
|
|
|
static constexpr auto TYPE = "internal/xbacklight";
|
|
|
|
|
2020-05-24 12:35:12 -04:00
|
|
|
static constexpr const char* EVENT_INC = "inc";
|
|
|
|
static constexpr const char* EVENT_DEC = "dec";
|
|
|
|
|
2016-12-21 02:38:44 -05:00
|
|
|
protected:
|
2021-01-04 04:38:43 -05:00
|
|
|
void handle(const evt::randr_notify& evt) override;
|
2021-01-04 04:25:52 -05:00
|
|
|
|
|
|
|
void action_inc();
|
|
|
|
void action_dec();
|
|
|
|
|
|
|
|
void change_value(int value_mod);
|
2016-10-19 08:46:43 -04:00
|
|
|
|
|
|
|
private:
|
2016-12-05 14:41:00 -05:00
|
|
|
static constexpr const char* TAG_LABEL{"<label>"};
|
|
|
|
static constexpr const char* TAG_BAR{"<bar>"};
|
|
|
|
static constexpr const char* TAG_RAMP{"<ramp>"};
|
2016-10-19 08:46:43 -04:00
|
|
|
|
2016-11-20 17:04:31 -05:00
|
|
|
connection& m_connection;
|
2016-10-19 08:46:43 -04:00
|
|
|
monitor_t m_output;
|
2016-12-15 03:29:14 -05:00
|
|
|
xcb_window_t m_proxy{};
|
2016-10-19 08:46:43 -04:00
|
|
|
|
|
|
|
ramp_t m_ramp;
|
|
|
|
label_t m_label;
|
|
|
|
progressbar_t m_progressbar;
|
|
|
|
|
2016-12-05 14:41:00 -05:00
|
|
|
bool m_scroll{true};
|
2021-09-30 09:27:39 -04:00
|
|
|
int m_percentage{0};
|
2016-10-19 08:46:43 -04:00
|
|
|
};
|
2020-05-15 13:59:08 -04:00
|
|
|
} // namespace modules
|
2016-10-19 08:46:43 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|