polybar/include/modules/backlight.hpp

62 lines
1.3 KiB
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
#include "components/config.hpp"
2016-11-20 22:04:31 +00:00
#include "modules/meta/inotify_module.hpp"
#include "settings.hpp"
2016-05-19 14:41:06 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
namespace modules {
class backlight_module : public inotify_module<backlight_module> {
public:
struct brightness_handle {
void filepath(const string& path);
float read() const;
private:
string m_path;
};
string get_output();
2016-06-15 03:32:35 +00:00
public:
explicit backlight_module(const bar_settings&, string);
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
void idle();
2022-03-06 16:44:48 +00:00
bool on_event(const inotify_event& event);
2016-11-25 12:55:15 +00:00
bool build(builder* builder, const string& tag) const;
2016-06-15 03:32:35 +00:00
static constexpr auto TYPE = "internal/backlight";
static constexpr const char* EVENT_INC = "inc";
static constexpr const char* EVENT_DEC = "dec";
protected:
void action_inc();
void action_dec();
void change_value(int value_mod);
2016-06-15 03:32:35 +00: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;
string m_path_backlight;
float m_max_brightness;
bool m_scroll{false};
int m_scroll_interval{5};
bool m_use_actual_brightness{true};
2016-06-15 03:32:35 +00:00
brightness_handle m_val;
brightness_handle m_max;
2016-06-15 03:32:35 +00:00
int m_percentage = 0;
2016-05-19 14:41:06 +00:00
};
2022-03-06 16:44:48 +00:00
} // namespace modules
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END