2022-07-01 10:46:28 +00:00
|
|
|
#include <fmt/format.h>
|
|
|
|
|
|
|
|
#include <tuple>
|
|
|
|
|
|
|
|
#include "ALabel.hpp"
|
|
|
|
#include "bar.hpp"
|
|
|
|
#include "modules/hyprland/backend.hpp"
|
|
|
|
#include "util/json.hpp"
|
|
|
|
|
|
|
|
namespace waybar::modules::hyprland {
|
|
|
|
|
|
|
|
class Window : public waybar::ALabel {
|
|
|
|
public:
|
|
|
|
Window(const std::string&, const waybar::Bar&, const Json::Value&);
|
|
|
|
~Window() = default;
|
|
|
|
|
2022-08-17 19:54:23 +00:00
|
|
|
auto update() -> void;
|
|
|
|
|
2022-07-01 10:46:28 +00:00
|
|
|
private:
|
|
|
|
void onEvent(const std::string&);
|
|
|
|
|
2022-08-17 19:54:23 +00:00
|
|
|
std::mutex mutex_;
|
2022-07-01 10:46:28 +00:00
|
|
|
const Bar& bar_;
|
|
|
|
util::JsonParser parser_;
|
|
|
|
std::string lastView;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|