mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
26be83f893
* module: Implement proof of concept action router Action implementation inside module becomes much cleaner because each module just registers action names together with a callback (pointer to member function) and the action router does the rest. * Make input function final This forces all modules to use the action router * modules: Catch exceptions in action handlers * Use action router for all modules * Use action_ prefix for function names The mpd module's 'stop' action overwrote the base module's stop function which caused difficult to debug behavior. To prevent this in the future we now prefix each function that is responsible for an action with 'action_' * Cleanup * actions: Throw exception when re-registering action Action names are unique inside modules. Unfortunately there is no way to ensure this statically, the next best thing is to crash the module and let the user know that this is a bug. * Formatting * actions: Ignore data for actions without data This is the same behavior as before. * action_router: Write tests
76 lines
1.9 KiB
C++
76 lines
1.9 KiB
C++
#pragma once
|
|
|
|
#include "modules/meta/event_module.hpp"
|
|
#include "settings.hpp"
|
|
|
|
POLYBAR_NS
|
|
|
|
// fwd
|
|
namespace alsa {
|
|
class mixer;
|
|
class control;
|
|
} // namespace alsa
|
|
|
|
namespace modules {
|
|
enum class mixer { NONE = 0, MASTER, SPEAKER, HEADPHONE };
|
|
enum class control { NONE = 0, HEADPHONE };
|
|
|
|
using mixer_t = shared_ptr<alsa::mixer>;
|
|
using control_t = shared_ptr<alsa::control>;
|
|
|
|
class alsa_module : public event_module<alsa_module> {
|
|
public:
|
|
explicit alsa_module(const bar_settings&, string);
|
|
|
|
void teardown();
|
|
bool has_event();
|
|
bool update();
|
|
string get_format() const;
|
|
string get_output();
|
|
bool build(builder* builder, const string& tag) const;
|
|
|
|
static constexpr auto TYPE = "internal/alsa";
|
|
|
|
static constexpr auto EVENT_INC = "inc";
|
|
static constexpr auto EVENT_DEC = "dec";
|
|
static constexpr auto EVENT_TOGGLE = "toggle";
|
|
|
|
protected:
|
|
void action_inc();
|
|
void action_dec();
|
|
void action_toggle();
|
|
|
|
void change_volume(int interval);
|
|
|
|
void action_epilogue(const vector<mixer_t>& mixers);
|
|
|
|
vector<mixer_t> get_mixers();
|
|
|
|
private:
|
|
static constexpr auto FORMAT_VOLUME = "format-volume";
|
|
static constexpr auto FORMAT_MUTED = "format-muted";
|
|
|
|
static constexpr auto TAG_RAMP_VOLUME = "<ramp-volume>";
|
|
static constexpr auto TAG_RAMP_HEADPHONES = "<ramp-headphones>";
|
|
static constexpr auto TAG_BAR_VOLUME = "<bar-volume>";
|
|
static constexpr auto TAG_LABEL_VOLUME = "<label-volume>";
|
|
static constexpr auto TAG_LABEL_MUTED = "<label-muted>";
|
|
|
|
progressbar_t m_bar_volume;
|
|
ramp_t m_ramp_volume;
|
|
ramp_t m_ramp_headphones;
|
|
label_t m_label_volume;
|
|
label_t m_label_muted;
|
|
|
|
map<mixer, mixer_t> m_mixer;
|
|
map<control, control_t> m_ctrl;
|
|
int m_headphoneid{0};
|
|
bool m_mapped{false};
|
|
int m_interval{5};
|
|
atomic<bool> m_muted{false};
|
|
atomic<bool> m_headphones{false};
|
|
atomic<int> m_volume{0};
|
|
};
|
|
} // namespace modules
|
|
|
|
POLYBAR_NS_END
|