Waybar/include/modules/sway/mode.hpp

29 lines
560 B
C++
Raw Permalink Normal View History

2018-10-30 12:39:30 +00:00
#pragma once
#include <fmt/format.h>
2022-04-06 06:37:19 +00:00
2022-11-24 11:28:52 +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-05-07 11:43:48 +00:00
#include "util/json.hpp"
2018-10-30 12:39:30 +00:00
namespace waybar::modules::sway {
2022-11-24 11:28:52 +00:00
class Mode : public ALabel, public sigc::trackable {
2019-04-18 15:52:00 +00:00
public:
2019-05-07 11:21:18 +00:00
Mode(const std::string&, const Json::Value&);
2023-03-02 13:57:07 +00:00
virtual ~Mode() = default;
auto update() -> void override;
2019-04-18 15:52:00 +00:00
private:
2019-04-24 10:37:24 +00:00
void onEvent(const struct Ipc::ipc_response&);
2019-04-18 15:52:00 +00:00
2022-04-06 06:37:19 +00:00
std::string mode_;
2019-05-07 11:43:48 +00:00
util::JsonParser parser_;
2022-04-06 06:37:19 +00:00
std::mutex mutex_;
Ipc ipc_;
2018-10-30 12:39:30 +00:00
};
2019-05-25 15:50:45 +00:00
} // namespace waybar::modules::sway