Waybar/include/modules/sway/mode.hpp

28 lines
630 B
C++
Raw Normal View History

2018-10-30 12:39:30 +00:00
#pragma once
#include <fmt/format.h>
2019-04-18 15:52:00 +00:00
#include "ALabel.hpp"
2018-10-30 12:39:30 +00:00
#include "bar.hpp"
#include "client.hpp"
#include "modules/sway/ipc/client.hpp"
2019-04-18 15:52:00 +00:00
#include "util/sleeper_thread.hpp"
2018-10-30 12:39:30 +00:00
namespace waybar::modules::sway {
class Mode : public ALabel {
2019-04-18 15:52:00 +00:00
public:
Mode(const std::string&, const waybar::Bar&, const Json::Value&);
~Mode() = default;
auto update() -> void;
private:
2019-04-24 10:37:24 +00:00
void onEvent(const struct Ipc::ipc_response&);
2019-04-18 15:52:00 +00:00
void worker();
const Bar& bar_;
waybar::util::SleeperThread thread_;
Ipc ipc_;
std::string mode_;
2018-10-30 12:39:30 +00:00
};
2019-04-18 15:52:00 +00:00
} // namespace waybar::modules::sway