Waybar/include/modules/pulseaudio.hpp

40 lines
1.0 KiB
C++
Raw Normal View History

2018-08-09 21:55:38 +00:00
#pragma once
#include <fmt/format.h>
#include <pulse/pulseaudio.h>
#include <pulse/volume.h>
2018-08-13 20:33:07 +00:00
#include <algorithm>
#include "ALabel.hpp"
2018-08-09 21:55:38 +00:00
namespace waybar::modules {
class Pulseaudio : public ALabel {
2018-08-16 12:29:41 +00:00
public:
2018-12-18 16:30:54 +00:00
Pulseaudio(const std::string&, const Json::Value&);
2018-08-19 11:39:57 +00:00
~Pulseaudio();
2018-08-16 12:29:41 +00:00
auto update() -> void;
private:
static void subscribeCb(pa_context*, pa_subscription_event_type_t,
uint32_t, void*);
static void contextStateCb(pa_context*, void*);
static void sinkInfoCb(pa_context*, const pa_sink_info*, int, void*);
static void serverInfoCb(pa_context*, const pa_server_info*, void*);
static void volumeModifyCb(pa_context*, int, void*);
bool handleScroll(GdkEventScroll* e);
2018-08-16 12:29:41 +00:00
2018-08-29 21:50:41 +00:00
const std::string getPortIcon() const;
2018-08-16 12:29:41 +00:00
pa_threaded_mainloop* mainloop_;
pa_mainloop_api* mainloop_api_;
pa_context* context_;
uint32_t sink_idx_{0};
uint16_t volume_;
pa_cvolume pa_volume_;
2018-08-16 12:29:41 +00:00
bool muted_;
2018-08-29 21:50:41 +00:00
std::string port_name_;
2018-08-16 12:29:41 +00:00
std::string desc_;
bool scrolling_;
2018-08-16 12:29:41 +00:00
};
2018-08-09 21:55:38 +00:00
} // namespace waybar::modules