waybar/include/modules/sndio.hpp

33 lines
759 B
C++
Raw Normal View History

#pragma once
#include <sndio.h>
2022-04-06 08:37:19 +02:00
#include <vector>
2022-04-06 08:37:19 +02:00
2022-11-24 12:28:52 +01:00
#include "ALabel.hpp"
#include "util/sleeper_thread.hpp"
namespace waybar::modules {
2022-11-24 12:28:52 +01:00
class Sndio : public ALabel {
public:
2022-04-06 08:37:19 +02:00
Sndio(const std::string &, const Json::Value &);
2023-03-02 14:57:07 +01:00
virtual ~Sndio();
auto update() -> void override;
auto set_desc(struct sioctl_desc *, unsigned int) -> void;
auto put_val(unsigned int, unsigned int) -> void;
2023-03-02 14:57:07 +01:00
bool handleScroll(GdkEventScroll *) override;
bool handleToggle(GdkEventButton *const &) override;
private:
2020-10-04 07:53:21 +02:00
auto connect_to_sndio() -> void;
util::SleeperThread thread_;
struct sioctl_hdl *hdl_;
std::vector<struct pollfd> pfds_;
unsigned int addr_;
unsigned int volume_, old_volume_, maxval_;
bool muted_;
};
} // namespace waybar::modules