waybar/include/modules/sway/mode.hpp

28 lines
564 B
C++
Raw Normal View History

2018-10-30 13:39:30 +01:00
#pragma once
#include <fmt/format.h>
#include "bar.hpp"
#include "client.hpp"
2018-12-26 11:13:36 +01:00
#include "util/sleeper_thread.hpp"
2018-10-30 13:39:30 +01: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 17:30:54 +01:00
Mode(const std::string&, const waybar::Bar&, const Json::Value&);
2018-12-26 11:13:36 +01:00
~Mode() = default;
2018-10-30 13:39:30 +01:00
auto update() -> void;
private:
void worker();
2018-12-01 00:10:41 +01:00
const Bar& bar_;
2018-10-30 13:39:30 +01:00
waybar::util::SleeperThread thread_;
util::JsonParser parser_;
Ipc ipc_;
std::string mode_;
};
}