2018-08-15 20:17:17 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2018-09-18 21:16:35 +02:00
|
|
|
#include <tuple>
|
2018-08-15 20:17:17 +02:00
|
|
|
#include "bar.hpp"
|
|
|
|
#include "client.hpp"
|
|
|
|
#include "util/chrono.hpp"
|
|
|
|
#include "util/json.hpp"
|
2018-08-18 11:43:48 +02:00
|
|
|
#include "ALabel.hpp"
|
2018-08-20 14:50:45 +02:00
|
|
|
#include "modules/sway/ipc/client.hpp"
|
2018-08-15 20:17:17 +02:00
|
|
|
|
|
|
|
namespace waybar::modules::sway {
|
|
|
|
|
2018-08-18 11:43:48 +02:00
|
|
|
class Window : public ALabel {
|
2018-08-16 14:29:41 +02:00
|
|
|
public:
|
2018-12-18 17:30:54 +01:00
|
|
|
Window(const std::string&, const waybar::Bar&, const Json::Value&);
|
2018-08-16 14:29:41 +02:00
|
|
|
auto update() -> void;
|
|
|
|
private:
|
2018-08-20 14:50:45 +02:00
|
|
|
void worker();
|
2018-09-18 21:16:35 +02:00
|
|
|
std::tuple<int, std::string> getFocusedNode(Json::Value nodes);
|
2018-08-16 14:29:41 +02:00
|
|
|
void getFocusedWindow();
|
|
|
|
|
2018-12-01 00:10:41 +01:00
|
|
|
const Bar& bar_;
|
2018-08-16 14:29:41 +02:00
|
|
|
waybar::util::SleeperThread thread_;
|
|
|
|
util::JsonParser parser_;
|
2018-08-20 14:50:45 +02:00
|
|
|
Ipc ipc_;
|
2018-08-16 14:29:41 +02:00
|
|
|
std::string window_;
|
2018-09-18 21:16:35 +02:00
|
|
|
int windowId_;
|
2018-08-16 14:29:41 +02:00
|
|
|
};
|
2018-08-15 20:17:17 +02:00
|
|
|
|
|
|
|
}
|