2018-08-29 20:36:39 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include <thread>
|
2018-11-22 16:20:49 +01:00
|
|
|
#include "bar.hpp"
|
2018-08-29 20:36:39 +02:00
|
|
|
#include "util/json.hpp"
|
|
|
|
#include "IModule.hpp"
|
2018-11-22 15:47:23 +01:00
|
|
|
#include "modules/sni/watcher.hpp"
|
|
|
|
#include "modules/sni/host.hpp"
|
2018-08-29 20:36:39 +02:00
|
|
|
|
|
|
|
namespace waybar::modules::SNI {
|
|
|
|
|
|
|
|
class Tray : public IModule {
|
|
|
|
public:
|
2018-11-22 16:20:49 +01:00
|
|
|
Tray(Bar& bar, const Json::Value&);
|
2018-08-29 20:36:39 +02:00
|
|
|
auto update() -> void;
|
|
|
|
operator Gtk::Widget &();
|
|
|
|
private:
|
2018-11-22 15:47:23 +01:00
|
|
|
void onAdd(std::unique_ptr<Item>& item);
|
|
|
|
void onRemove(std::unique_ptr<Item>& item);
|
|
|
|
|
2018-08-29 20:36:39 +02:00
|
|
|
std::thread thread_;
|
|
|
|
const Json::Value& config_;
|
|
|
|
Gtk::Box box_;
|
|
|
|
SNI::Watcher watcher_ ;
|
|
|
|
SNI::Host host_;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|