2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-11-20 17:04:31 -05:00
|
|
|
#include "modules/meta/event_module.hpp"
|
2020-05-15 13:59:08 -04: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
|
|
|
|
2016-12-13 08:26:09 -05:00
|
|
|
// fwd
|
|
|
|
namespace alsa {
|
|
|
|
class mixer;
|
|
|
|
class control;
|
2020-05-15 13:59:08 -04:00
|
|
|
} // namespace alsa
|
2016-12-13 08:26:09 -05:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
namespace modules {
|
2016-10-15 20:21:12 -04:00
|
|
|
enum class mixer { NONE = 0, MASTER, SPEAKER, HEADPHONE };
|
|
|
|
enum class control { NONE = 0, HEADPHONE };
|
|
|
|
|
2016-12-13 08:26:09 -05:00
|
|
|
using mixer_t = shared_ptr<alsa::mixer>;
|
|
|
|
using control_t = shared_ptr<alsa::control>;
|
2016-10-15 20:21:12 -04:00
|
|
|
|
2019-12-02 13:14:26 -05:00
|
|
|
class alsa_module : public event_module<alsa_module> {
|
2016-06-14 23:32:35 -04:00
|
|
|
public:
|
2018-01-20 15:50:48 -05:00
|
|
|
explicit alsa_module(const bar_settings&, string);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
void teardown();
|
|
|
|
bool has_event();
|
|
|
|
bool update();
|
|
|
|
string get_format() const;
|
|
|
|
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/alsa";
|
|
|
|
|
2020-05-24 12:35:12 -04:00
|
|
|
static constexpr auto EVENT_INC = "inc";
|
|
|
|
static constexpr auto EVENT_DEC = "dec";
|
|
|
|
static constexpr auto EVENT_TOGGLE = "toggle";
|
|
|
|
|
2016-12-21 02:38:44 -05:00
|
|
|
protected:
|
2021-01-04 04:25:52 -05:00
|
|
|
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();
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
private:
|
2016-05-25 20:14:56 -04:00
|
|
|
static constexpr auto FORMAT_VOLUME = "format-volume";
|
|
|
|
static constexpr auto FORMAT_MUTED = "format-muted";
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-05-25 20:14:56 -04:00
|
|
|
static constexpr auto TAG_RAMP_VOLUME = "<ramp-volume>";
|
2016-06-14 23:32:35 -04:00
|
|
|
static constexpr auto TAG_RAMP_HEADPHONES = "<ramp-headphones>";
|
2016-05-25 20:14:56 -04:00
|
|
|
static constexpr auto TAG_BAR_VOLUME = "<bar-volume>";
|
|
|
|
static constexpr auto TAG_LABEL_VOLUME = "<label-volume>";
|
|
|
|
static constexpr auto TAG_LABEL_MUTED = "<label-muted>";
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
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;
|
2016-06-09 19:09:54 -04:00
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
map<mixer, mixer_t> m_mixer;
|
|
|
|
map<control, control_t> m_ctrl;
|
2017-09-15 23:51:22 -04:00
|
|
|
int m_headphoneid{0};
|
|
|
|
bool m_mapped{false};
|
2018-08-06 16:45:03 -04:00
|
|
|
int m_interval{5};
|
2016-12-22 23:18:58 -05:00
|
|
|
atomic<bool> m_muted{false};
|
|
|
|
atomic<bool> m_headphones{false};
|
|
|
|
atomic<int> m_volume{0};
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
2020-05-15 13:59:08 -04:00
|
|
|
} // namespace modules
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|