30 lines
610 B
C++
30 lines
610 B
C++
#pragma once
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include "AModule.hpp"
|
|
#include "bar.hpp"
|
|
#include "modules/sni/host.hpp"
|
|
#include "modules/sni/watcher.hpp"
|
|
#include "util/json.hpp"
|
|
|
|
namespace waybar::modules::SNI {
|
|
|
|
class Tray : public AModule {
|
|
public:
|
|
Tray(const std::string&, const Bar&, const Json::Value&);
|
|
~Tray() = default;
|
|
auto update() -> void;
|
|
|
|
private:
|
|
void onAdd(std::unique_ptr<Item>& item);
|
|
void onRemove(std::unique_ptr<Item>& item);
|
|
|
|
static inline std::size_t nb_hosts_ = 0;
|
|
Gtk::Box box_;
|
|
SNI::Watcher::singleton watcher_;
|
|
SNI::Host host_;
|
|
};
|
|
|
|
} // namespace waybar::modules::SNI
|