2018-08-15 18:17:17 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2018-09-18 19:16:35 +00:00
|
|
|
#include <tuple>
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "ALabel.hpp"
|
2018-08-15 18:17:17 +00:00
|
|
|
#include "bar.hpp"
|
|
|
|
#include "client.hpp"
|
2018-08-20 12:50:45 +00:00
|
|
|
#include "modules/sway/ipc/client.hpp"
|
2019-05-07 11:43:48 +00:00
|
|
|
#include "util/json.hpp"
|
2019-05-13 12:35:45 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-08-15 18:17:17 +00:00
|
|
|
|
|
|
|
namespace waybar::modules::sway {
|
|
|
|
|
2019-05-13 13:15:50 +00:00
|
|
|
class Window : public ALabel, public sigc::trackable {
|
2019-04-18 15:52:00 +00:00
|
|
|
public:
|
|
|
|
Window(const std::string&, const waybar::Bar&, const Json::Value&);
|
|
|
|
~Window() = default;
|
|
|
|
auto update() -> void;
|
|
|
|
|
|
|
|
private:
|
2019-04-25 14:47:51 +00:00
|
|
|
void onEvent(const struct Ipc::ipc_response&);
|
|
|
|
void onCmd(const struct Ipc::ipc_response&);
|
|
|
|
void worker();
|
2019-06-14 09:27:40 +00:00
|
|
|
std::tuple<std::size_t, int, std::string, std::string> getFocusedNode(const Json::Value& nodes,
|
|
|
|
std::string& output);
|
2019-04-25 14:47:51 +00:00
|
|
|
void getTree();
|
2018-08-16 12:29:41 +00:00
|
|
|
|
2019-05-29 15:53:22 +00:00
|
|
|
const Bar& bar_;
|
|
|
|
std::string window_;
|
|
|
|
int windowId_;
|
|
|
|
std::string app_id_;
|
2019-06-04 15:34:00 +00:00
|
|
|
std::string old_app_id_;
|
|
|
|
std::size_t app_nb_;
|
2019-05-29 15:53:22 +00:00
|
|
|
util::JsonParser parser_;
|
|
|
|
|
|
|
|
util::SleeperThread thread_;
|
|
|
|
Ipc ipc_;
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-15 18:17:17 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
} // namespace waybar::modules::sway
|