38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <fmt/format.h>
|
|
#include <tuple>
|
|
#include "ALabel.hpp"
|
|
#include "bar.hpp"
|
|
#include "client.hpp"
|
|
#include "modules/sway/ipc/client.hpp"
|
|
#include "util/json.hpp"
|
|
#include "util/sleeper_thread.hpp"
|
|
|
|
namespace waybar::modules::sway {
|
|
|
|
class Window : public ALabel, public sigc::trackable {
|
|
public:
|
|
Window(const std::string&, const waybar::Bar&, const Json::Value&);
|
|
~Window() = default;
|
|
auto update() -> void;
|
|
|
|
private:
|
|
void onEvent(const struct Ipc::ipc_response&);
|
|
void onCmd(const struct Ipc::ipc_response&);
|
|
void worker();
|
|
std::tuple<std::size_t, int, std::string, std::string> getFocusedNode(const Json::Value& nodes);
|
|
void getTree();
|
|
|
|
const Bar& bar_;
|
|
waybar::util::SleeperThread thread_;
|
|
Ipc ipc_;
|
|
std::mutex mutex_;
|
|
std::string window_;
|
|
int windowId_;
|
|
std::string app_id_;
|
|
util::JsonParser parser_;
|
|
};
|
|
|
|
} // namespace waybar::modules::sway
|