2018-10-30 12:39:30 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include "bar.hpp"
|
|
|
|
#include "client.hpp"
|
2018-12-26 10:13:36 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-10-30 12:39:30 +00:00
|
|
|
#include "util/json.hpp"
|
|
|
|
#include "ALabel.hpp"
|
|
|
|
#include "modules/sway/ipc/client.hpp"
|
|
|
|
|
|
|
|
namespace waybar::modules::sway {
|
|
|
|
|
|
|
|
class Mode : public ALabel {
|
|
|
|
public:
|
2018-12-18 16:30:54 +00:00
|
|
|
Mode(const std::string&, const waybar::Bar&, const Json::Value&);
|
2018-12-26 10:13:36 +00:00
|
|
|
~Mode() = default;
|
2018-10-30 12:39:30 +00:00
|
|
|
auto update() -> void;
|
|
|
|
private:
|
|
|
|
void worker();
|
|
|
|
|
2018-11-30 23:10:41 +00:00
|
|
|
const Bar& bar_;
|
2018-10-30 12:39:30 +00:00
|
|
|
waybar::util::SleeperThread thread_;
|
|
|
|
util::JsonParser parser_;
|
|
|
|
Ipc ipc_;
|
|
|
|
std::string mode_;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|