2022-07-01 12:46:28 +02:00
|
|
|
#include <fmt/format.h>
|
|
|
|
|
|
|
|
#include "ALabel.hpp"
|
|
|
|
#include "bar.hpp"
|
|
|
|
#include "modules/hyprland/backend.hpp"
|
|
|
|
#include "util/json.hpp"
|
|
|
|
|
|
|
|
namespace waybar::modules::hyprland {
|
|
|
|
|
2022-11-24 12:28:52 +01:00
|
|
|
class Window : public waybar::ALabel, public EventHandler {
|
2021-05-27 15:40:54 +02:00
|
|
|
public:
|
2022-07-01 12:46:28 +02:00
|
|
|
Window(const std::string&, const waybar::Bar&, const Json::Value&);
|
2023-03-02 14:57:07 +01:00
|
|
|
virtual ~Window();
|
2022-07-01 12:46:28 +02:00
|
|
|
|
2023-03-02 14:57:07 +01:00
|
|
|
auto update() -> void override;
|
2022-08-17 21:54:23 +02:00
|
|
|
|
2021-05-27 15:40:54 +02:00
|
|
|
private:
|
2023-06-19 22:08:03 +02:00
|
|
|
struct Workspace {
|
2023-06-19 23:42:19 +02:00
|
|
|
int id;
|
2023-06-19 22:08:03 +02:00
|
|
|
int windows;
|
|
|
|
std::string last_window;
|
|
|
|
std::string last_window_title;
|
|
|
|
|
|
|
|
static auto parse(const Json::Value&) -> Workspace;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto getActiveWorkspace(const std::string&) -> Workspace;
|
|
|
|
auto getActiveWorkspace() -> Workspace;
|
2023-03-02 14:57:07 +01:00
|
|
|
void onEvent(const std::string&) override;
|
2023-06-19 22:08:03 +02:00
|
|
|
void queryActiveWorkspace();
|
|
|
|
void setClass(const std::string&, bool enable);
|
2022-07-01 12:46:28 +02:00
|
|
|
|
2022-10-13 23:41:56 +02:00
|
|
|
bool separate_outputs;
|
2022-08-17 21:54:23 +02:00
|
|
|
std::mutex mutex_;
|
2022-07-01 12:46:28 +02:00
|
|
|
const Bar& bar_;
|
|
|
|
util::JsonParser parser_;
|
2023-06-19 22:08:03 +02:00
|
|
|
std::string last_title_;
|
|
|
|
Workspace workspace_;
|
|
|
|
std::string solo_class_;
|
|
|
|
std::string last_solo_class_;
|
2023-06-20 02:23:03 +02:00
|
|
|
bool solo_;
|
2023-06-19 23:42:19 +02:00
|
|
|
bool all_floating_;
|
2023-06-20 02:23:03 +02:00
|
|
|
bool fullscreen_;
|
2022-07-01 12:46:28 +02:00
|
|
|
};
|
|
|
|
|
2022-11-09 09:34:19 +01:00
|
|
|
} // namespace waybar::modules::hyprland
|