feat(backlight): Add enable-scroll ()

* backlight: enable changing via scroll

* squash! feedback

* Update src/modules/backlight.cpp

Co-Authored-By: Jérôme BOULMIER <jerome.boulmier@outlook.fr>

Co-authored-by: Jérôme BOULMIER <jerome.boulmier@outlook.fr>
This commit is contained in:
Gus Caplan 2020-01-15 07:32:17 -08:00 committed by Patrick Ziegler
parent 0dbcb28a2c
commit 068bf5a311
4 changed files with 89 additions and 14 deletions
include/modules

View file

@ -1,13 +1,14 @@
#pragma once
#include "components/config.hpp"
#include "settings.hpp"
#include "modules/meta/inotify_module.hpp"
#include "modules/meta/input_handler.hpp"
#include "settings.hpp"
POLYBAR_NS
namespace modules {
class backlight_module : public inotify_module<backlight_module> {
class backlight_module : public inotify_module<backlight_module>, public input_handler {
public:
struct brightness_handle {
void filepath(const string& path);
@ -17,6 +18,8 @@ namespace modules {
string m_path;
};
string get_output();
public:
explicit backlight_module(const bar_settings&, string);
@ -24,20 +27,29 @@ namespace modules {
bool on_event(inotify_event* event);
bool build(builder* builder, const string& tag) const;
protected:
bool input(string&& cmd);
private:
static constexpr auto TAG_LABEL = "<label>";
static constexpr auto TAG_BAR = "<bar>";
static constexpr auto TAG_RAMP = "<ramp>";
static constexpr const char* EVENT_SCROLLUP{"backlight+"};
static constexpr const char* EVENT_SCROLLDOWN{"backlight-"};
ramp_t m_ramp;
label_t m_label;
progressbar_t m_progressbar;
string m_path_backlight;
float m_max_brightness;
bool m_scroll{false};
brightness_handle m_val;
brightness_handle m_max;
int m_percentage = 0;
};
}
} // namespace modules
POLYBAR_NS_END