2023-09-02 20:22:26 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-12-21 00:45:57 +00:00
|
|
|
#include <fmt/format.h>
|
2023-01-04 15:26:50 +00:00
|
|
|
|
2023-09-02 20:22:26 +00:00
|
|
|
#include <string>
|
|
|
|
|
2022-12-21 00:45:57 +00:00
|
|
|
#include "ALabel.hpp"
|
|
|
|
#include "bar.hpp"
|
|
|
|
#include "modules/hyprland/backend.hpp"
|
|
|
|
#include "util/json.hpp"
|
|
|
|
|
|
|
|
namespace waybar::modules::hyprland {
|
|
|
|
|
|
|
|
class Submap : public waybar::ALabel, public EventHandler {
|
|
|
|
public:
|
|
|
|
Submap(const std::string&, const waybar::Bar&, const Json::Value&);
|
2023-03-02 13:57:07 +00:00
|
|
|
virtual ~Submap();
|
2022-12-21 00:45:57 +00:00
|
|
|
|
2023-03-02 13:57:07 +00:00
|
|
|
auto update() -> void override;
|
2022-12-21 00:45:57 +00:00
|
|
|
|
|
|
|
private:
|
2023-03-02 13:57:07 +00:00
|
|
|
void onEvent(const std::string&) override;
|
2022-12-21 00:45:57 +00:00
|
|
|
|
|
|
|
std::mutex mutex_;
|
|
|
|
const Bar& bar_;
|
|
|
|
util::JsonParser parser_;
|
|
|
|
std::string submap_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace waybar::modules::hyprland
|