1
1
#include " modules/pulseaudio.hpp"
2
2
3
- waybar::modules::Pulseaudio::Pulseaudio (const std::string &id, const Json::Value &config)
4
- : ALabel(config, " pulseaudio" , id, " {volume}%" ) {
5
- event_box_.add_events (Gdk::SCROLL_MASK | Gdk::SMOOTH_SCROLL_MASK);
6
- event_box_.signal_scroll_event ().connect (sigc::mem_fun (*this , &Pulseaudio::handleScroll));
3
+ #include < fmt/format.h>
7
4
5
+ namespace waybar ::modules {
6
+
7
+ Pulseaudio::Pulseaudio (const std::string &id, const Json::Value &config)
8
+ : ALabel(config, " pulseaudio" , id, " {volume}%" , 60 , false , false , true ) {
8
9
backend = util::AudioBackend::getInstance ([this ] { this ->dp .emit (); });
9
10
backend->setIgnoredSinks (config_[" ignored-sinks" ]);
10
11
}
11
12
12
- bool waybar::modules:: Pulseaudio::handleScroll (GdkEventScroll *e ) {
13
+ bool Pulseaudio::handleScroll (double dx, double dy ) {
13
14
// change the pulse volume only when no user provided
14
15
// events are configured
15
16
if (config_[" on-scroll-up" ].isString () || config_[" on-scroll-down" ].isString ()) {
16
- return AModule::handleScroll (e );
17
+ return AModule::handleScroll (dx, dy );
17
18
}
18
- auto dir = AModule::getScrollDir (e) ;
19
+ auto dir{ AModule::getScrollDir (controllScroll_-> get_current_event ())} ;
19
20
if (dir == SCROLL_DIR::NONE) {
20
21
return true ;
21
22
}
22
- int max_volume = 100 ;
23
- double step = 1 ;
23
+ int max_volume{ 100 } ;
24
+ double step{ 1 } ;
24
25
// isDouble returns true for integers as well, just in case
25
26
if (config_[" scroll-step" ].isDouble ()) {
26
27
step = config_[" scroll-step" ].asDouble ();
@@ -29,21 +30,21 @@ bool waybar::modules::Pulseaudio::handleScroll(GdkEventScroll *e) {
29
30
max_volume = config_[" max-volume" ].asInt ();
30
31
}
31
32
32
- auto change_type = (dir == SCROLL_DIR::UP || dir == SCROLL_DIR::RIGHT)
33
+ auto change_type{ (dir == SCROLL_DIR::UP || dir == SCROLL_DIR::RIGHT)
33
34
? util::ChangeType::Increase
34
- : util::ChangeType::Decrease;
35
+ : util::ChangeType::Decrease} ;
35
36
36
37
backend->changeVolume (change_type, step, max_volume);
37
38
return true ;
38
39
}
39
40
40
- static const std::array<std::string, 9 > ports = {
41
+ static const std::array<std::string, 9 > ports{
41
42
" headphone" , " speaker" , " hdmi" , " headset" , " hands-free" , " portable" , " car" , " hifi" , " phone" ,
42
43
};
43
44
44
45
const std::vector<std::string> waybar::modules::Pulseaudio::getPulseIcon () const {
45
- std::vector<std::string> res = {backend->getCurrentSinkName (), backend->getDefaultSourceName ()};
46
- std::string nameLC = backend->getSinkPortName () + backend->getFormFactor ();
46
+ std::vector<std::string> res{backend->getCurrentSinkName (), backend->getDefaultSourceName ()};
47
+ std::string nameLC{ backend->getSinkPortName () + backend->getFormFactor ()} ;
47
48
std::transform (nameLC.begin (), nameLC.end (), nameLC.begin (), ::tolower);
48
49
for (auto const &port : ports) {
49
50
if (nameLC.find (port) != std::string::npos) {
@@ -54,12 +55,12 @@ const std::vector<std::string> waybar::modules::Pulseaudio::getPulseIcon() const
54
55
return res;
55
56
}
56
57
57
- auto waybar::modules:: Pulseaudio::update () -> void {
58
- auto format = format_;
58
+ auto Pulseaudio::update () -> void {
59
+ auto format{ format_} ;
59
60
std::string tooltip_format;
60
- auto sink_volume = backend->getSinkVolume ();
61
+ auto sink_volume{ backend->getSinkVolume ()} ;
61
62
if (!alt_) {
62
- std::string format_name = " format" ;
63
+ std::string format_name{ " format" } ;
63
64
if (backend->isBluetooth ()) {
64
65
format_name = format_name + " -bluetooth" ;
65
66
label_.get_style_context ()->add_class (" bluetooth" );
@@ -78,15 +79,15 @@ auto waybar::modules::Pulseaudio::update() -> void {
78
79
label_.get_style_context ()->remove_class (" muted" );
79
80
label_.get_style_context ()->remove_class (" sink-muted" );
80
81
}
81
- auto state = getState (sink_volume, true );
82
+ auto state{ getState (sink_volume, true )} ;
82
83
if (!state.empty () && config_[format_name + " -" + state].isString ()) {
83
84
format = config_[format_name + " -" + state].asString ();
84
85
} else if (config_[format_name].isString ()) {
85
86
format = config_[format_name].asString ();
86
87
}
87
88
}
88
89
// TODO: find a better way to split source/sink
89
- std::string format_source = " {volume}%" ;
90
+ std::string format_source{ " {volume}%" } ;
90
91
if (backend->getSourceMuted ()) {
91
92
label_.get_style_context ()->add_class (" source-muted" );
92
93
if (config_[" format-source-muted" ].isString ()) {
@@ -99,15 +100,15 @@ auto waybar::modules::Pulseaudio::update() -> void {
99
100
}
100
101
}
101
102
102
- auto source_volume = backend->getSourceVolume ();
103
- auto sink_desc = backend->getSinkDesc ();
104
- auto source_desc = backend->getSourceDesc ();
103
+ auto source_volume{ backend->getSourceVolume ()} ;
104
+ auto sink_desc{ backend->getSinkDesc ()} ;
105
+ auto source_desc{ backend->getSourceDesc ()} ;
105
106
106
107
format_source = fmt::format (fmt::runtime (format_source), fmt::arg (" volume" , source_volume));
107
- auto text = fmt::format (
108
+ auto text{ fmt::format (
108
109
fmt::runtime (format), fmt::arg (" desc" , sink_desc), fmt::arg (" volume" , sink_volume),
109
110
fmt::arg (" format_source" , format_source), fmt::arg (" source_volume" , source_volume),
110
- fmt::arg (" source_desc" , source_desc), fmt::arg (" icon" , getIcon (sink_volume, getPulseIcon ())));
111
+ fmt::arg (" source_desc" , source_desc), fmt::arg (" icon" , getIcon (sink_volume, getPulseIcon ())))} ;
111
112
if (text.empty ()) {
112
113
label_.hide ();
113
114
} else {
@@ -133,3 +134,5 @@ auto waybar::modules::Pulseaudio::update() -> void {
133
134
// Call parent update
134
135
ALabel::update ();
135
136
}
137
+
138
+ } // namespace waybar::modules
0 commit comments