Waybar/include/modules/hyprland/window.hpp

46 lines
1.0 KiB
C++
Raw Normal View History

2022-07-01 10:46:28 +00: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 11:28:52 +00:00
class Window : public waybar::ALabel, public EventHandler {
public:
2022-07-01 10:46:28 +00:00
Window(const std::string&, const waybar::Bar&, const Json::Value&);
2023-03-02 13:57:07 +00:00
virtual ~Window();
2022-07-01 10:46:28 +00:00
2023-03-02 13:57:07 +00:00
auto update() -> void override;
2022-08-17 19:54:23 +00:00
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;
2023-03-02 13:57:07 +00:00
void onEvent(const std::string&) override;
void queryActiveWorkspace();
void setClass(const std::string&, bool enable);
2022-07-01 10:46:28 +00:00
bool separate_outputs;
2022-08-17 19:54:23 +00:00
std::mutex mutex_;
2022-07-01 10:46:28 +00:00
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_;
2022-07-01 10:46:28 +00:00
};
2022-11-09 08:34:19 +00:00
} // namespace waybar::modules::hyprland