2023-06-27 23:52:01 +00:00
|
|
|
#include <gtkmm/button.h>
|
|
|
|
#include <gtkmm/label.h>
|
2023-07-03 22:24:34 +00:00
|
|
|
|
2023-07-03 22:17:26 +00:00
|
|
|
#include <memory>
|
2023-06-27 23:52:01 +00:00
|
|
|
|
|
|
|
#include "AModule.hpp"
|
|
|
|
#include "bar.hpp"
|
|
|
|
#include "modules/hyprland/backend.hpp"
|
|
|
|
|
|
|
|
namespace waybar::modules::hyprland {
|
|
|
|
|
|
|
|
class Workspace {
|
|
|
|
public:
|
2023-07-16 12:47:14 +00:00
|
|
|
Workspace(const Json::Value& workspace_data);
|
2023-06-30 21:18:57 +00:00
|
|
|
std::string& select_icon(std::map<std::string, std::string>& icons_map);
|
2023-06-27 23:52:01 +00:00
|
|
|
Gtk::Button& button() { return button_; };
|
|
|
|
|
2023-07-15 17:44:57 +00:00
|
|
|
int id() const { return id_; };
|
|
|
|
std::string name() const { return name_; };
|
2023-07-16 01:20:30 +00:00
|
|
|
std::string output() const { return output_; };
|
2023-07-23 16:53:32 +00:00
|
|
|
bool active() const { return active_; };
|
2023-07-15 17:44:57 +00:00
|
|
|
bool is_special() const { return is_special_; };
|
2023-07-23 16:53:32 +00:00
|
|
|
bool is_persistent() const { return is_persistent_; };
|
|
|
|
bool is_empty() const { return windows_ == 0; };
|
2023-07-15 17:44:57 +00:00
|
|
|
|
|
|
|
auto handle_clicked(GdkEventButton* bt) -> bool;
|
2023-07-16 01:20:30 +00:00
|
|
|
void set_active(bool value = true) { active_ = value; };
|
2023-07-23 16:53:32 +00:00
|
|
|
void set_persistent(bool value = true) { is_persistent_ = value; };
|
|
|
|
void set_windows(uint value) { windows_ = value; };
|
2023-07-15 17:44:57 +00:00
|
|
|
|
2023-06-30 21:18:57 +00:00
|
|
|
void update(const std::string& format, const std::string& icon);
|
2023-06-27 23:52:01 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int id_;
|
2023-07-15 17:44:57 +00:00
|
|
|
std::string name_;
|
2023-07-16 01:20:30 +00:00
|
|
|
std::string output_;
|
2023-07-23 16:53:32 +00:00
|
|
|
uint windows_;
|
|
|
|
bool active_ = false;
|
|
|
|
bool is_special_ = false;
|
|
|
|
bool is_persistent_ = false;
|
2023-06-27 23:52:01 +00:00
|
|
|
|
|
|
|
Gtk::Button button_;
|
|
|
|
Gtk::Box content_;
|
|
|
|
Gtk::Label label_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Workspaces : public AModule, public EventHandler {
|
|
|
|
public:
|
|
|
|
Workspaces(const std::string&, const waybar::Bar&, const Json::Value&);
|
2023-07-16 12:47:14 +00:00
|
|
|
~Workspaces() override;
|
2023-06-27 23:52:01 +00:00
|
|
|
void update() override;
|
|
|
|
void init();
|
|
|
|
|
2023-07-15 17:44:57 +00:00
|
|
|
auto all_outputs() const -> bool { return all_outputs_; }
|
|
|
|
auto show_special() const -> bool { return show_special_; }
|
|
|
|
|
|
|
|
auto get_bar_output() const -> std::string { return bar_.output->name; }
|
|
|
|
|
2023-06-27 23:52:01 +00:00
|
|
|
private:
|
|
|
|
void onEvent(const std::string&) override;
|
2023-07-23 16:53:32 +00:00
|
|
|
void update_window_count();
|
2023-06-30 21:18:57 +00:00
|
|
|
void sort_workspaces();
|
2023-07-16 01:43:54 +00:00
|
|
|
void create_workspace(Json::Value& value);
|
2023-07-15 17:44:57 +00:00
|
|
|
void remove_workspace(std::string name);
|
|
|
|
|
|
|
|
bool all_outputs_ = false;
|
|
|
|
bool show_special_ = false;
|
2023-06-27 23:52:01 +00:00
|
|
|
|
2023-07-23 16:53:32 +00:00
|
|
|
void fill_persistent_workspaces();
|
|
|
|
void create_persistent_workspaces();
|
|
|
|
std::vector<std::string> persistent_workspaces_to_create_;
|
|
|
|
bool persistent_created_ = false;
|
|
|
|
|
2023-06-30 21:18:57 +00:00
|
|
|
std::string format_;
|
|
|
|
std::map<std::string, std::string> icons_map_;
|
|
|
|
bool with_icon_;
|
2023-07-23 16:53:32 +00:00
|
|
|
uint64_t monitor_id_;
|
|
|
|
std::string active_workspace_name_;
|
2023-07-03 22:17:26 +00:00
|
|
|
std::vector<std::unique_ptr<Workspace>> workspaces_;
|
2023-07-16 01:43:54 +00:00
|
|
|
std::vector<Json::Value> workspaces_to_create_;
|
2023-07-15 17:44:57 +00:00
|
|
|
std::vector<std::string> workspaces_to_remove_;
|
2023-06-27 23:52:01 +00:00
|
|
|
std::mutex mutex_;
|
|
|
|
const Bar& bar_;
|
|
|
|
Gtk::Box box_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace waybar::modules::hyprland
|