waybar/include/modules/sway/window.hpp

47 lines
1.1 KiB
C++
Raw Normal View History

2018-08-15 20:17:17 +02:00
#pragma once
#include <fmt/format.h>
2022-04-06 08:37:19 +02:00
2018-09-18 21:16:35 +02:00
#include <tuple>
#include "AIconLabel.hpp"
2018-08-15 20:17:17 +02:00
#include "bar.hpp"
#include "client.hpp"
2018-08-20 14:50:45 +02:00
#include "modules/sway/ipc/client.hpp"
2019-05-07 13:43:48 +02:00
#include "util/json.hpp"
2018-08-15 20:17:17 +02:00
namespace waybar::modules::sway {
class Window : public AIconLabel, public sigc::trackable {
2019-04-18 17:52:00 +02:00
public:
Window(const std::string&, const waybar::Bar&, const Json::Value&);
~Window() = default;
auto update() -> void;
private:
2022-04-06 08:37:19 +02:00
void onEvent(const struct Ipc::ipc_response&);
void onCmd(const struct Ipc::ipc_response&);
std::tuple<std::size_t, int, std::string, std::string, std::string, std::string> getFocusedNode(
const Json::Value& nodes, std::string& output);
2022-04-06 08:37:19 +02:00
void getTree();
void updateAppIconName();
2022-04-06 08:37:19 +02:00
void updateAppIcon();
const Bar& bar_;
std::string window_;
int windowId_;
std::string app_id_;
std::string app_class_;
2022-04-06 08:37:19 +02:00
std::string old_app_id_;
std::size_t app_nb_;
std::string shell_;
unsigned app_icon_size_{24};
bool update_app_icon_{true};
std::string app_icon_name_;
2019-05-29 17:53:22 +02:00
util::JsonParser parser_;
2022-04-06 08:37:19 +02:00
std::mutex mutex_;
Ipc ipc_;
2018-08-16 14:29:41 +02:00
};
2018-08-15 20:17:17 +02:00
2019-04-18 17:52:00 +02:00
} // namespace waybar::modules::sway