46 lines
1.0 KiB
C++
46 lines
1.0 KiB
C++
#include <fmt/format.h>
|
|
|
|
#include "ALabel.hpp"
|
|
#include "bar.hpp"
|
|
#include "modules/hyprland/backend.hpp"
|
|
#include "util/json.hpp"
|
|
|
|
namespace waybar::modules::hyprland {
|
|
|
|
class Window : public waybar::ALabel, public EventHandler {
|
|
public:
|
|
Window(const std::string&, const waybar::Bar&, const Json::Value&);
|
|
virtual ~Window();
|
|
|
|
auto update() -> void override;
|
|
|
|
private:
|
|
struct Workspace {
|
|
int id;
|
|
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;
|
|
void onEvent(const std::string&) override;
|
|
void queryActiveWorkspace();
|
|
void setClass(const std::string&, bool enable);
|
|
|
|
bool separate_outputs;
|
|
std::mutex mutex_;
|
|
const Bar& bar_;
|
|
util::JsonParser parser_;
|
|
std::string last_title_;
|
|
Workspace workspace_;
|
|
std::string solo_class_;
|
|
std::string last_solo_class_;
|
|
bool fullscreen_;
|
|
bool all_floating_;
|
|
};
|
|
|
|
} // namespace waybar::modules::hyprland
|