2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-10-19 08:46:43 -04:00
|
|
|
#include "components/config.hpp"
|
2016-11-20 17:04:31 -05:00
|
|
|
#include "modules/meta/inotify_module.hpp"
|
2020-01-15 10:32:17 -05:00
|
|
|
#include "settings.hpp"
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
namespace modules {
|
2020-05-15 13:59:08 -04:00
|
|
|
class backlight_module : public inotify_module<backlight_module> {
|
2016-12-21 02:38:44 -05:00
|
|
|
public:
|
|
|
|
struct brightness_handle {
|
|
|
|
void filepath(const string& path);
|
|
|
|
float read() const;
|
2016-10-19 08:46:43 -04:00
|
|
|
|
2016-12-21 02:38:44 -05:00
|
|
|
private:
|
|
|
|
string m_path;
|
|
|
|
};
|
2016-10-19 08:46:43 -04:00
|
|
|
|
2020-01-15 10:32:17 -05:00
|
|
|
string get_output();
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
public:
|
2016-12-21 02:00:09 -05:00
|
|
|
explicit backlight_module(const bar_settings&, string);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
void idle();
|
2022-03-06 11:44:48 -05:00
|
|
|
bool on_event(const inotify_event& event);
|
2016-11-25 07:55:15 -05:00
|
|
|
bool build(builder* builder, const string& tag) const;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2020-05-15 13:59:08 -04:00
|
|
|
static constexpr auto TYPE = "internal/backlight";
|
|
|
|
|
2020-05-24 12:35:12 -04:00
|
|
|
static constexpr const char* EVENT_INC = "inc";
|
|
|
|
static constexpr const char* EVENT_DEC = "dec";
|
|
|
|
|
2020-01-15 10:32:17 -05:00
|
|
|
protected:
|
2021-01-04 04:25:52 -05:00
|
|
|
void action_inc();
|
|
|
|
void action_dec();
|
|
|
|
|
|
|
|
void change_value(int value_mod);
|
2020-01-15 10:32:17 -05:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
private:
|
|
|
|
static constexpr auto TAG_LABEL = "<label>";
|
|
|
|
static constexpr auto TAG_BAR = "<bar>";
|
|
|
|
static constexpr auto TAG_RAMP = "<ramp>";
|
|
|
|
|
|
|
|
ramp_t m_ramp;
|
|
|
|
label_t m_label;
|
|
|
|
progressbar_t m_progressbar;
|
2020-01-15 10:32:17 -05:00
|
|
|
string m_path_backlight;
|
|
|
|
float m_max_brightness;
|
|
|
|
bool m_scroll{false};
|
2022-04-27 13:53:06 -04:00
|
|
|
int m_scroll_interval{5};
|
2021-02-16 04:02:33 -05:00
|
|
|
bool m_use_actual_brightness{true};
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-10-19 08:46:43 -04:00
|
|
|
brightness_handle m_val;
|
|
|
|
brightness_handle m_max;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-10-19 08:46:43 -04:00
|
|
|
int m_percentage = 0;
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
2022-03-06 11:44:48 -05:00
|
|
|
} // namespace modules
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|