2023-04-12 01:33:00 -07:00
|
|
|
#include "Hy3Layout.hpp"
|
2023-06-07 03:22:17 -07:00
|
|
|
#include "globals.hpp"
|
2023-04-26 00:57:24 -07:00
|
|
|
#include "SelectionHook.hpp"
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-04-27 11:14:11 -07:00
|
|
|
#include <hyprland/src/Compositor.hpp>
|
2023-05-01 00:05:45 -07:00
|
|
|
#include <hyprland/src/plugins/PluginAPI.hpp>
|
|
|
|
|
2023-05-16 18:21:12 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
2023-05-01 00:05:45 -07:00
|
|
|
void errorNotif() {
|
2023-06-07 03:22:17 -07:00
|
|
|
HyprlandAPI::addNotificationV2(
|
|
|
|
PHANDLE,
|
|
|
|
{
|
|
|
|
{"text", "Something has gone very wrong. Check the log for details."},
|
|
|
|
{"time", (uint64_t) 10000},
|
|
|
|
{"color", CColor(1.0, 0.0, 0.0, 1.0)},
|
|
|
|
{"icon", ICON_ERROR},
|
|
|
|
}
|
|
|
|
);
|
2023-05-01 00:05:45 -07:00
|
|
|
}
|
2023-04-12 01:33:00 -07:00
|
|
|
|
|
|
|
Hy3GroupData::Hy3GroupData(Hy3GroupLayout layout): layout(layout) {}
|
|
|
|
|
2023-05-28 23:19:35 -07:00
|
|
|
Hy3GroupData::Hy3GroupData(Hy3GroupData&& from) {
|
|
|
|
this->layout = from.layout;
|
|
|
|
this->children = std::move(from.children);
|
|
|
|
this->group_focused = from.group_focused;
|
|
|
|
this->focused_child = from.focused_child;
|
|
|
|
from.focused_child = nullptr;
|
|
|
|
this->tab_bar = from.tab_bar;
|
|
|
|
from.tab_bar = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
Hy3GroupData::~Hy3GroupData() {
|
|
|
|
if (this->tab_bar != nullptr) this->tab_bar->bar.beginDestroy();
|
|
|
|
}
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
Hy3NodeData::Hy3NodeData(): Hy3NodeData((CWindow*) nullptr) {}
|
2023-04-12 01:33:00 -07:00
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
Hy3NodeData::Hy3NodeData(CWindow* window): type(Hy3NodeData::Window) { this->as_window = window; }
|
2023-04-12 01:33:00 -07:00
|
|
|
|
|
|
|
Hy3NodeData::Hy3NodeData(Hy3GroupData group): type(Hy3NodeData::Group) {
|
2023-06-07 03:22:17 -07:00
|
|
|
new (&this->as_group) Hy3GroupData(std::move(group));
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
2023-04-13 14:12:48 -07:00
|
|
|
Hy3NodeData::Hy3NodeData(Hy3GroupLayout layout): Hy3NodeData(Hy3GroupData(layout)) {}
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
Hy3NodeData::~Hy3NodeData() {
|
|
|
|
switch (this->type) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3NodeData::Window: break;
|
2023-04-12 01:33:00 -07:00
|
|
|
case Hy3NodeData::Group:
|
|
|
|
this->as_group.~Hy3GroupData();
|
|
|
|
|
|
|
|
// who ever thought calling the dtor after a move was a good idea?
|
|
|
|
this->type = Hy3NodeData::Window;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Hy3NodeData::Hy3NodeData(Hy3NodeData&& from): type(from.type) {
|
2023-06-07 03:22:17 -07:00
|
|
|
Debug::log(
|
|
|
|
LOG,
|
|
|
|
"Move CTor type matches? %d is group? %d",
|
|
|
|
this->type == from.type,
|
|
|
|
this->type == Hy3NodeData::Group
|
|
|
|
);
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
switch (from.type) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3NodeData::Window: this->as_window = from.as_window; break;
|
|
|
|
case Hy3NodeData::Group: new (&this->as_group) Hy3GroupData(std::move(from.as_group)); break;
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-16 03:02:26 -07:00
|
|
|
Hy3NodeData& Hy3NodeData::operator=(Hy3NodeData&& from) {
|
2023-06-07 03:22:17 -07:00
|
|
|
Debug::log(
|
|
|
|
LOG,
|
|
|
|
"operator= type matches? %d is group? %d",
|
|
|
|
this->type == from.type,
|
|
|
|
this->type == Hy3NodeData::Group
|
|
|
|
);
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
if (this->type == Hy3NodeData::Group) {
|
|
|
|
this->as_group.~Hy3GroupData();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->type = from.type;
|
|
|
|
|
|
|
|
switch (this->type) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3NodeData::Window: this->as_window = from.as_window; break;
|
|
|
|
case Hy3NodeData::Group: new (&this->as_group) Hy3GroupData(std::move(from.as_group)); break;
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2023-04-13 14:12:48 -07:00
|
|
|
Hy3NodeData& Hy3NodeData::operator=(CWindow* window) {
|
|
|
|
*this = Hy3NodeData(window);
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
Hy3NodeData& Hy3NodeData::operator=(Hy3GroupLayout layout) {
|
|
|
|
*this = Hy3NodeData(layout);
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
bool Hy3NodeData::operator==(const Hy3NodeData& rhs) const { return this == &rhs; }
|
2023-04-12 01:33:00 -07:00
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
bool Hy3Node::operator==(const Hy3Node& rhs) const { return this->data == rhs.data; }
|
2023-04-12 01:33:00 -07:00
|
|
|
|
|
|
|
void Hy3Node::recalcSizePosRecursive(bool force) {
|
2023-06-07 03:22:17 -07:00
|
|
|
// clang-format off
|
2023-05-25 02:38:11 -07:00
|
|
|
static const auto* gaps_in = &HyprlandAPI::getConfigValue(PHANDLE, "general:gaps_in")->intValue;
|
|
|
|
static const auto* gaps_out = &HyprlandAPI::getConfigValue(PHANDLE, "general:gaps_out")->intValue;
|
2023-06-04 22:05:21 -07:00
|
|
|
static const auto* group_inset = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hy3:group_inset")->intValue;
|
2023-06-07 03:22:17 -07:00
|
|
|
static const auto* tab_bar_height = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hy3:tabs:height")->intValue;
|
|
|
|
static const auto* tab_bar_padding = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hy3:tabs:padding")->intValue;
|
|
|
|
// clang-format on
|
2023-06-02 00:12:33 -07:00
|
|
|
|
|
|
|
int outer_gaps = 0;
|
2023-06-04 21:32:30 -07:00
|
|
|
Vector2D gap_pos_offset;
|
|
|
|
Vector2D gap_size_offset;
|
2023-06-02 00:12:33 -07:00
|
|
|
if (this->parent == nullptr) {
|
|
|
|
outer_gaps = *gaps_out - *gaps_in;
|
2023-06-04 21:32:30 -07:00
|
|
|
|
|
|
|
gap_pos_offset = Vector2D(outer_gaps, outer_gaps);
|
|
|
|
gap_size_offset = Vector2D(outer_gaps * 2, outer_gaps * 2);
|
|
|
|
} else {
|
|
|
|
gap_pos_offset = this->gap_pos_offset;
|
|
|
|
gap_size_offset = this->gap_size_offset;
|
2023-06-02 00:12:33 -07:00
|
|
|
}
|
|
|
|
|
2023-06-04 21:32:30 -07:00
|
|
|
auto tpos = this->position;
|
|
|
|
auto tsize = this->size;
|
2023-06-02 00:12:33 -07:00
|
|
|
|
2023-06-02 01:25:53 -07:00
|
|
|
double tab_height_offset = *tab_bar_height + *tab_bar_padding;
|
2023-05-25 02:38:11 -07:00
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
if (this->data.type != Hy3NodeData::Group) {
|
2023-06-01 21:58:18 -07:00
|
|
|
this->data.as_window->setHidden(this->hidden);
|
2023-04-12 01:33:00 -07:00
|
|
|
this->layout->applyNodeDataToWindow(this, force);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* group = &this->data.as_group;
|
2023-04-12 03:33:45 -07:00
|
|
|
|
|
|
|
if (group->children.size() == 1 && this->parent != nullptr) {
|
2023-04-16 21:56:19 -07:00
|
|
|
auto child = group->children.front();
|
|
|
|
|
|
|
|
if (child == this) {
|
|
|
|
Debug::log(ERR, "a group (%p) has become its own child", this);
|
2023-05-01 00:05:45 -07:00
|
|
|
errorNotif();
|
2023-04-16 21:56:19 -07:00
|
|
|
}
|
2023-04-12 03:33:45 -07:00
|
|
|
|
|
|
|
switch (group->layout) {
|
|
|
|
case Hy3GroupLayout::SplitH:
|
2023-06-04 22:05:21 -07:00
|
|
|
child->position.x = tpos.x;
|
|
|
|
child->size.x = tsize.x - *group_inset;
|
|
|
|
child->position.y = tpos.y;
|
|
|
|
child->size.y = tsize.y;
|
|
|
|
break;
|
2023-04-12 03:33:45 -07:00
|
|
|
case Hy3GroupLayout::SplitV:
|
2023-06-04 22:05:21 -07:00
|
|
|
child->position.y = tpos.y;
|
|
|
|
child->size.y = tsize.y - *group_inset;
|
|
|
|
child->position.x = tpos.x;
|
|
|
|
child->size.x = tsize.x;
|
2023-05-16 03:02:26 -07:00
|
|
|
break;
|
2023-04-12 03:33:45 -07:00
|
|
|
case Hy3GroupLayout::Tabbed:
|
2023-06-02 00:12:33 -07:00
|
|
|
child->position.y = tpos.y + tab_height_offset;
|
|
|
|
child->size.y = tsize.y - tab_height_offset;
|
|
|
|
child->position.x = tpos.x;
|
|
|
|
child->size.x = tsize.x;
|
2023-04-12 03:33:45 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2023-06-04 21:32:30 -07:00
|
|
|
child->gap_pos_offset = gap_pos_offset;
|
|
|
|
child->gap_size_offset = gap_size_offset;
|
2023-06-01 21:58:18 -07:00
|
|
|
|
2023-06-04 21:32:30 -07:00
|
|
|
child->setHidden(this->hidden);
|
2023-05-28 23:19:35 -07:00
|
|
|
|
2023-04-18 23:41:18 -07:00
|
|
|
child->recalcSizePosRecursive(force);
|
2023-06-04 21:32:30 -07:00
|
|
|
this->updateTabBar();
|
2023-04-12 03:33:45 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
int constraint;
|
|
|
|
switch (group->layout) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3GroupLayout::SplitH: constraint = tsize.x; break;
|
|
|
|
case Hy3GroupLayout::SplitV: constraint = tsize.y; break;
|
|
|
|
case Hy3GroupLayout::Tabbed: break;
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
double ratio_mul = group->layout != Hy3GroupLayout::Tabbed
|
|
|
|
? group->children.empty() ? 0 : constraint / group->children.size()
|
|
|
|
: 0;
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
double offset = 0;
|
|
|
|
|
2023-06-15 00:27:02 -07:00
|
|
|
if (group->layout == Hy3GroupLayout::Tabbed && group->focused_child != nullptr
|
|
|
|
&& !group->focused_child->hidden)
|
|
|
|
{
|
2023-05-31 01:31:22 -07:00
|
|
|
group->focused_child->setHidden(false);
|
2023-06-14 21:43:20 -07:00
|
|
|
|
2023-06-15 00:27:02 -07:00
|
|
|
auto box = wlr_box {tpos.x, tpos.y, tsize.x, tsize.y};
|
2023-06-14 21:43:20 -07:00
|
|
|
g_pHyprRenderer->damageBox(&box);
|
2023-05-31 01:31:22 -07:00
|
|
|
}
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
for (auto* child: group->children) {
|
2023-04-12 01:33:00 -07:00
|
|
|
switch (group->layout) {
|
|
|
|
case Hy3GroupLayout::SplitH:
|
2023-06-02 00:12:33 -07:00
|
|
|
child->position.x = tpos.x + offset;
|
2023-04-18 23:41:18 -07:00
|
|
|
child->size.x = child->size_ratio * ratio_mul;
|
2023-04-12 01:33:00 -07:00
|
|
|
offset += child->size.x;
|
2023-06-02 00:12:33 -07:00
|
|
|
child->position.y = tpos.y;
|
|
|
|
child->size.y = tsize.y;
|
2023-06-01 21:58:18 -07:00
|
|
|
child->setHidden(this->hidden);
|
2023-05-31 01:31:22 -07:00
|
|
|
child->recalcSizePosRecursive(force);
|
2023-04-12 01:33:00 -07:00
|
|
|
break;
|
|
|
|
case Hy3GroupLayout::SplitV:
|
2023-06-02 00:12:33 -07:00
|
|
|
child->position.y = tpos.y + offset;
|
2023-04-18 23:41:18 -07:00
|
|
|
child->size.y = child->size_ratio * ratio_mul;
|
2023-04-12 01:33:00 -07:00
|
|
|
offset += child->size.y;
|
2023-06-02 00:12:33 -07:00
|
|
|
child->position.x = tpos.x;
|
|
|
|
child->size.x = tsize.x;
|
2023-06-01 21:58:18 -07:00
|
|
|
child->setHidden(this->hidden);
|
2023-05-31 01:31:22 -07:00
|
|
|
child->recalcSizePosRecursive(force);
|
2023-04-12 01:33:00 -07:00
|
|
|
break;
|
|
|
|
case Hy3GroupLayout::Tabbed:
|
2023-06-02 00:12:33 -07:00
|
|
|
child->position.y = tpos.y + tab_height_offset;
|
|
|
|
child->size.y = tsize.y - tab_height_offset;
|
|
|
|
child->position.x = tpos.x;
|
|
|
|
child->size.x = tsize.x;
|
2023-06-01 21:58:18 -07:00
|
|
|
bool hidden = this->hidden || group->focused_child != child;
|
2023-05-31 01:31:22 -07:00
|
|
|
child->setHidden(hidden);
|
2023-06-01 21:58:18 -07:00
|
|
|
child->recalcSizePosRecursive(force);
|
2023-04-12 01:33:00 -07:00
|
|
|
break;
|
2023-06-07 03:22:17 -07:00
|
|
|
}
|
2023-06-04 21:32:30 -07:00
|
|
|
|
|
|
|
child->gap_pos_offset = gap_pos_offset;
|
|
|
|
child->gap_size_offset = gap_pos_offset;
|
2023-06-07 03:22:17 -07:00
|
|
|
}
|
2023-05-28 23:19:35 -07:00
|
|
|
|
|
|
|
this->updateTabBar();
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
2023-05-16 03:02:26 -07:00
|
|
|
void Hy3Node::setHidden(bool hidden) {
|
2023-06-01 21:58:18 -07:00
|
|
|
this->hidden = hidden;
|
|
|
|
|
|
|
|
if (this->data.type == Hy3NodeData::Group) {
|
2023-05-16 03:02:26 -07:00
|
|
|
for (auto* child: this->data.as_group.children) {
|
|
|
|
child->setHidden(hidden);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Hy3Node::isUrgent() {
|
|
|
|
switch (this->data.type) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3NodeData::Window: return this->data.as_window->m_bIsUrgent;
|
2023-05-16 03:02:26 -07:00
|
|
|
case Hy3NodeData::Group:
|
|
|
|
for (auto* child: this->data.as_group.children) {
|
|
|
|
if (child->isUrgent()) return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-28 23:19:35 -07:00
|
|
|
bool Hy3Node::isIndirectlyFocused() {
|
|
|
|
Hy3Node* node = this;
|
|
|
|
|
|
|
|
while (node->parent != nullptr) {
|
2023-06-11 22:19:43 -07:00
|
|
|
if (!node->parent->data.as_group.group_focused
|
|
|
|
&& node->parent->data.as_group.focused_child != node)
|
|
|
|
return false;
|
2023-05-28 23:19:35 -07:00
|
|
|
node = node->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-05-16 03:02:26 -07:00
|
|
|
std::string Hy3Node::getTitle() {
|
|
|
|
switch (this->data.type) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3NodeData::Window: return this->data.as_window->m_szTitle;
|
2023-05-16 03:02:26 -07:00
|
|
|
case Hy3NodeData::Group:
|
|
|
|
std::string title;
|
|
|
|
|
|
|
|
switch (this->data.as_group.layout) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3GroupLayout::SplitH: title = "[H] "; break;
|
|
|
|
case Hy3GroupLayout::SplitV: title = "[V] "; break;
|
|
|
|
case Hy3GroupLayout::Tabbed: title = "[T] "; break;
|
2023-05-16 03:02:26 -07:00
|
|
|
}
|
|
|
|
|
2023-05-26 23:55:02 -07:00
|
|
|
if (this->data.as_group.focused_child == nullptr) {
|
2023-05-16 03:02:26 -07:00
|
|
|
title += "Group";
|
|
|
|
} else {
|
2023-05-26 23:55:02 -07:00
|
|
|
title += this->data.as_group.focused_child->getTitle();
|
2023-05-16 03:02:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return title;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2023-06-11 22:19:43 -07:00
|
|
|
void markGroupFocusedRecursive(Hy3GroupData& group) {
|
|
|
|
group.group_focused = true;
|
|
|
|
for (auto& child: group.children) {
|
|
|
|
if (child->data.type == Hy3NodeData::Group) markGroupFocusedRecursive(child->data.as_group);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-26 00:57:24 -07:00
|
|
|
void Hy3Node::markFocused() {
|
|
|
|
Hy3Node* node = this;
|
|
|
|
|
|
|
|
// undo decos for root focus
|
|
|
|
auto* root = node;
|
|
|
|
while (root->parent != nullptr) root = root->parent;
|
|
|
|
|
|
|
|
// update focus
|
|
|
|
if (this->data.type == Hy3NodeData::Group) {
|
2023-06-11 22:19:43 -07:00
|
|
|
markGroupFocusedRecursive(this->data.as_group);
|
2023-04-26 00:57:24 -07:00
|
|
|
}
|
|
|
|
|
2023-05-28 23:19:35 -07:00
|
|
|
auto* node2 = node;
|
|
|
|
while (node2->parent != nullptr) {
|
|
|
|
node2->parent->data.as_group.focused_child = node2;
|
|
|
|
node2->parent->data.as_group.group_focused = false;
|
|
|
|
node2 = node2->parent;
|
|
|
|
}
|
|
|
|
|
2023-06-11 22:19:43 -07:00
|
|
|
root->updateDecos();
|
2023-04-26 00:57:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void Hy3Node::focus() {
|
|
|
|
this->markFocused();
|
|
|
|
|
|
|
|
switch (this->data.type) {
|
|
|
|
case Hy3NodeData::Window:
|
2023-05-31 01:31:22 -07:00
|
|
|
this->data.as_window->setHidden(false);
|
2023-04-26 00:57:24 -07:00
|
|
|
g_pCompositor->focusWindow(this->data.as_window);
|
|
|
|
break;
|
|
|
|
case Hy3NodeData::Group:
|
|
|
|
g_pCompositor->focusWindow(nullptr);
|
|
|
|
this->raiseToTop();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-31 01:31:22 -07:00
|
|
|
bool Hy3Node::focusWindow() {
|
|
|
|
switch (this->data.type) {
|
|
|
|
case Hy3NodeData::Window:
|
2023-06-07 03:22:17 -07:00
|
|
|
this->markFocused();
|
2023-05-31 01:31:22 -07:00
|
|
|
g_pCompositor->focusWindow(this->data.as_window);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
case Hy3NodeData::Group:
|
|
|
|
if (this->data.as_group.layout == Hy3GroupLayout::Tabbed) {
|
|
|
|
if (this->data.as_group.focused_child != nullptr) {
|
|
|
|
return this->data.as_group.focused_child->focusWindow();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (auto* node: this->data.as_group.children) {
|
|
|
|
if (node->focusWindow()) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-26 00:57:24 -07:00
|
|
|
void Hy3Node::raiseToTop() {
|
|
|
|
switch (this->data.type) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3NodeData::Window: g_pCompositor->moveWindowToTop(this->data.as_window); break;
|
2023-04-26 00:57:24 -07:00
|
|
|
case Hy3NodeData::Group:
|
|
|
|
for (auto* child: this->data.as_group.children) {
|
|
|
|
child->raiseToTop();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Hy3Node* Hy3Node::getFocusedNode() {
|
|
|
|
switch (this->data.type) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3NodeData::Window: return this;
|
2023-04-26 00:57:24 -07:00
|
|
|
case Hy3NodeData::Group:
|
2023-05-26 20:37:05 -07:00
|
|
|
if (this->data.as_group.focused_child == nullptr || this->data.as_group.group_focused) {
|
2023-04-26 00:57:24 -07:00
|
|
|
return this;
|
|
|
|
} else {
|
2023-05-26 20:37:05 -07:00
|
|
|
return this->data.as_group.focused_child->getFocusedNode();
|
2023-04-26 00:57:24 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-23 21:02:51 -07:00
|
|
|
bool Hy3Node::swallowGroups(Hy3Node* into) {
|
2023-06-07 03:22:17 -07:00
|
|
|
if (into == nullptr || into->data.type != Hy3NodeData::Group
|
|
|
|
|| into->data.as_group.children.size() != 1)
|
2023-04-19 19:53:50 -07:00
|
|
|
return false;
|
|
|
|
|
2023-04-19 02:07:47 -07:00
|
|
|
auto* child = into->data.as_group.children.front();
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
// a lot of segfaulting happens once the assumption that the root node is a
|
|
|
|
// group is wrong.
|
2023-04-24 02:58:53 -07:00
|
|
|
if (into->parent == nullptr && child->data.type != Hy3NodeData::Group) return false;
|
|
|
|
|
2023-04-19 02:07:47 -07:00
|
|
|
Debug::log(LOG, "Swallowing %p into %p", child, into);
|
2023-04-23 21:02:51 -07:00
|
|
|
Hy3Node::swapData(*into, *child);
|
2023-04-19 02:07:47 -07:00
|
|
|
into->layout->nodes.remove(*child);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-04-23 21:02:51 -07:00
|
|
|
Hy3Node* Hy3Node::removeFromParentRecursive() {
|
|
|
|
Hy3Node* parent = this;
|
2023-04-22 04:19:34 -07:00
|
|
|
|
2023-04-23 21:02:51 -07:00
|
|
|
Debug::log(LOG, "Recursively removing parent nodes of %p", parent);
|
2023-04-22 04:19:34 -07:00
|
|
|
|
2023-05-01 19:54:37 -07:00
|
|
|
while (parent != nullptr) {
|
|
|
|
if (parent->parent == nullptr) {
|
|
|
|
Debug::log(ERR, "* UAF DEBUGGING - %p's parent is null, its the root group", parent);
|
|
|
|
|
|
|
|
if (parent == this) {
|
|
|
|
Debug::log(ERR, "* UAF DEBUGGING - returning nullptr as this == root group");
|
|
|
|
} else {
|
|
|
|
Debug::log(ERR, "* UAF DEBUGGING - deallocing %p and returning nullptr", parent);
|
|
|
|
parent->layout->nodes.remove(*parent);
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-04-22 04:19:34 -07:00
|
|
|
auto* child = parent;
|
|
|
|
parent = parent->parent;
|
|
|
|
auto& group = parent->data.as_group;
|
|
|
|
|
|
|
|
if (group.children.size() > 2) {
|
|
|
|
auto iter = std::find(group.children.begin(), group.children.end(), child);
|
|
|
|
|
2023-05-26 20:37:05 -07:00
|
|
|
group.group_focused = false;
|
2023-04-22 04:19:34 -07:00
|
|
|
if (iter == group.children.begin()) {
|
2023-05-26 20:37:05 -07:00
|
|
|
group.focused_child = *std::next(iter);
|
2023-04-22 04:19:34 -07:00
|
|
|
} else {
|
2023-05-26 20:37:05 -07:00
|
|
|
group.focused_child = *std::prev(iter);
|
2023-04-22 04:19:34 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-01 00:05:45 -07:00
|
|
|
if (!group.children.remove(child)) {
|
2023-06-07 03:22:17 -07:00
|
|
|
Debug::log(
|
|
|
|
ERR,
|
|
|
|
"Was unable to remove child node %p from parent %p. Child likely has "
|
|
|
|
"a false parent pointer.",
|
|
|
|
child,
|
|
|
|
parent
|
|
|
|
);
|
|
|
|
|
2023-05-01 00:05:45 -07:00
|
|
|
errorNotif();
|
|
|
|
return nullptr;
|
|
|
|
}
|
2023-04-22 04:19:34 -07:00
|
|
|
|
2023-05-26 20:37:05 -07:00
|
|
|
group.group_focused = false;
|
2023-04-22 04:19:34 -07:00
|
|
|
if (group.children.size() == 1) {
|
2023-05-26 20:37:05 -07:00
|
|
|
group.focused_child = group.children.front();
|
2023-04-22 04:19:34 -07:00
|
|
|
}
|
|
|
|
|
2023-05-14 22:44:19 -07:00
|
|
|
auto child_size_ratio = child->size_ratio;
|
2023-04-23 21:02:51 -07:00
|
|
|
if (child != this) {
|
2023-04-22 04:19:34 -07:00
|
|
|
parent->layout->nodes.remove(*child);
|
2023-05-01 19:54:37 -07:00
|
|
|
} else {
|
|
|
|
child->parent = nullptr;
|
2023-04-22 04:19:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!group.children.empty()) {
|
2023-05-11 01:30:19 -07:00
|
|
|
auto child_count = group.children.size();
|
|
|
|
if (std::find(group.children.begin(), group.children.end(), this) != group.children.end()) {
|
|
|
|
child_count -= 1;
|
|
|
|
}
|
|
|
|
|
2023-05-14 22:44:19 -07:00
|
|
|
auto splitmod = -((1.0 - child_size_ratio) / child_count);
|
2023-04-22 04:19:34 -07:00
|
|
|
|
|
|
|
for (auto* child: group.children) {
|
|
|
|
child->size_ratio += splitmod;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
2023-05-04 03:10:06 -07:00
|
|
|
Hy3Node* Hy3Node::intoGroup(Hy3GroupLayout layout) {
|
|
|
|
this->layout->nodes.push_back({
|
2023-06-07 03:22:17 -07:00
|
|
|
.parent = this,
|
|
|
|
.data = layout,
|
|
|
|
.workspace_id = this->workspace_id,
|
|
|
|
.layout = this->layout,
|
2023-05-04 03:10:06 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
auto* node = &this->layout->nodes.back();
|
2023-05-04 11:27:10 -07:00
|
|
|
swapData(*this, *node);
|
2023-05-04 03:10:06 -07:00
|
|
|
|
|
|
|
this->data = layout;
|
|
|
|
this->data.as_group.children.push_back(node);
|
2023-05-26 20:37:05 -07:00
|
|
|
this->data.as_group.group_focused = false;
|
|
|
|
this->data.as_group.focused_child = node;
|
2023-05-04 03:10:06 -07:00
|
|
|
this->recalcSizePosRecursive();
|
2023-06-04 17:28:26 -07:00
|
|
|
this->updateTabBarRecursive();
|
2023-05-04 03:10:06 -07:00
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2023-04-13 14:12:48 -07:00
|
|
|
bool Hy3GroupData::hasChild(Hy3Node* node) {
|
|
|
|
Debug::log(LOG, "Searching for child %p of %p", this, node);
|
|
|
|
for (auto child: this->children) {
|
|
|
|
if (child == node) return true;
|
|
|
|
|
|
|
|
if (child->data.type == Hy3NodeData::Group) {
|
|
|
|
if (child->data.as_group.hasChild(node)) return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-04-23 21:02:51 -07:00
|
|
|
void Hy3Node::swapData(Hy3Node& a, Hy3Node& b) {
|
2023-04-13 14:12:48 -07:00
|
|
|
Hy3NodeData aData = std::move(a.data);
|
2023-05-16 03:02:26 -07:00
|
|
|
a.data = std::move(b.data);
|
|
|
|
b.data = std::move(aData);
|
2023-04-13 14:12:48 -07:00
|
|
|
|
|
|
|
if (a.data.type == Hy3NodeData::Group) {
|
|
|
|
for (auto child: a.data.as_group.children) {
|
|
|
|
child->parent = &a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (b.data.type == Hy3NodeData::Group) {
|
|
|
|
for (auto child: b.data.as_group.children) {
|
|
|
|
child->parent = &b;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-29 02:36:13 -07:00
|
|
|
struct FindTopWindowInNodeResult {
|
|
|
|
CWindow* window = nullptr;
|
|
|
|
size_t index = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
void findTopWindowInNode(Hy3Node& node, FindTopWindowInNodeResult& result) {
|
2023-06-07 03:22:17 -07:00
|
|
|
switch (node.data.type) {
|
2023-05-29 02:36:13 -07:00
|
|
|
case Hy3NodeData::Window: {
|
|
|
|
auto* window = node.data.as_window;
|
|
|
|
auto& windows = g_pCompositor->m_vWindows;
|
|
|
|
|
|
|
|
for (; result.index < windows.size(); result.index++) {
|
|
|
|
if (&*windows[result.index] == window) {
|
|
|
|
result.window = window;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
|
|
|
case Hy3NodeData::Group: {
|
|
|
|
auto& group = node.data.as_group;
|
|
|
|
|
|
|
|
if (group.layout == Hy3GroupLayout::Tabbed) {
|
|
|
|
if (group.focused_child != nullptr) findTopWindowInNode(*group.focused_child, result);
|
|
|
|
} else {
|
|
|
|
for (auto* child: group.children) {
|
|
|
|
findTopWindowInNode(*child, result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-28 23:19:35 -07:00
|
|
|
void Hy3Node::updateTabBar() {
|
|
|
|
if (this->data.type == Hy3NodeData::Group) {
|
|
|
|
auto& group = this->data.as_group;
|
|
|
|
|
|
|
|
if (group.layout == Hy3GroupLayout::Tabbed) {
|
|
|
|
if (group.tab_bar == nullptr) group.tab_bar = &this->layout->tab_groups.emplace_back(*this);
|
|
|
|
group.tab_bar->updateWithGroup(*this);
|
2023-05-29 02:36:13 -07:00
|
|
|
|
|
|
|
FindTopWindowInNodeResult result;
|
|
|
|
findTopWindowInNode(*this, result);
|
|
|
|
group.tab_bar->target_window = result.window;
|
2023-05-31 22:11:59 -07:00
|
|
|
if (result.window != nullptr) group.tab_bar->workspace_id = result.window->m_iWorkspaceID;
|
2023-05-28 23:19:35 -07:00
|
|
|
} else if (group.tab_bar != nullptr) {
|
|
|
|
group.tab_bar->bar.beginDestroy();
|
|
|
|
group.tab_bar = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-04 17:28:26 -07:00
|
|
|
void Hy3Node::updateTabBarRecursive() {
|
|
|
|
auto* node = this;
|
|
|
|
|
2023-06-06 22:40:13 -07:00
|
|
|
do {
|
2023-06-04 17:28:26 -07:00
|
|
|
node->updateTabBar();
|
|
|
|
node = node->parent;
|
2023-06-06 22:40:13 -07:00
|
|
|
} while (node != nullptr);
|
2023-06-04 17:28:26 -07:00
|
|
|
}
|
|
|
|
|
2023-04-26 00:57:24 -07:00
|
|
|
void Hy3Node::updateDecos() {
|
|
|
|
switch (this->data.type) {
|
|
|
|
case Hy3NodeData::Window:
|
2023-04-27 10:38:21 -07:00
|
|
|
if (this->data.as_window->m_bIsMapped)
|
|
|
|
g_pCompositor->updateWindowAnimatedDecorationValues(this->data.as_window);
|
2023-04-26 00:57:24 -07:00
|
|
|
break;
|
|
|
|
case Hy3NodeData::Group:
|
2023-06-07 03:22:17 -07:00
|
|
|
for (auto* child: this->data.as_group.children) {
|
2023-04-26 00:57:24 -07:00
|
|
|
child->updateDecos();
|
|
|
|
}
|
2023-06-11 22:19:43 -07:00
|
|
|
|
|
|
|
this->updateTabBar();
|
2023-04-26 00:57:24 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
int Hy3Layout::getWorkspaceNodeCount(const int& id) {
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
for (auto& node: this->nodes) {
|
|
|
|
if (node.workspace_id == id && node.valid) count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
Hy3Node* Hy3Layout::getNodeFromWindow(CWindow* window) {
|
|
|
|
for (auto& node: this->nodes) {
|
|
|
|
if (node.data.type == Hy3NodeData::Window && node.data.as_window == window) {
|
|
|
|
return &node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
Hy3Node* Hy3Layout::getWorkspaceRootGroup(const int& id) {
|
|
|
|
for (auto& node: this->nodes) {
|
2023-04-18 00:15:32 -07:00
|
|
|
if (node.workspace_id == id && node.parent == nullptr && node.data.type == Hy3NodeData::Group) {
|
2023-04-12 01:33:00 -07:00
|
|
|
return &node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-05-04 02:39:46 -07:00
|
|
|
Hy3Node* Hy3Layout::getWorkspaceFocusedNode(const int& id) {
|
|
|
|
auto* rootNode = this->getWorkspaceRootGroup(id);
|
|
|
|
if (rootNode == nullptr) return nullptr;
|
|
|
|
return rootNode->getFocusedNode();
|
|
|
|
}
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
void Hy3Layout::applyNodeDataToWindow(Hy3Node* node, bool force) {
|
|
|
|
if (node->data.type != Hy3NodeData::Window) return;
|
|
|
|
CWindow* window = node->data.as_window;
|
|
|
|
|
|
|
|
CMonitor* monitor = nullptr;
|
|
|
|
|
|
|
|
if (g_pCompositor->isWorkspaceSpecial(node->workspace_id)) {
|
|
|
|
for (auto& m: g_pCompositor->m_vMonitors) {
|
|
|
|
if (m->specialWorkspaceID == node->workspace_id) {
|
|
|
|
monitor = m.get();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2023-06-07 03:22:17 -07:00
|
|
|
monitor = g_pCompositor->getMonitorFromID(
|
|
|
|
g_pCompositor->getWorkspaceByID(node->workspace_id)->m_iMonitorID
|
|
|
|
);
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (monitor == nullptr) {
|
|
|
|
Debug::log(ERR, "Orphaned Node %x (workspace ID: %i)!!", node, node->workspace_id);
|
2023-05-01 00:05:45 -07:00
|
|
|
errorNotif();
|
2023-04-12 01:33:00 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
// clang-format off
|
|
|
|
static const auto* border_size = &HyprlandAPI::getConfigValue(PHANDLE, "general:border_size")->intValue;
|
|
|
|
static const auto* gaps_in = &HyprlandAPI::getConfigValue(PHANDLE, "general:gaps_in")->intValue;
|
2023-05-26 20:13:32 -07:00
|
|
|
static const auto* single_window_no_gaps = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hy3:no_gaps_when_only")->intValue;
|
2023-06-07 03:22:17 -07:00
|
|
|
// clang-format on
|
2023-04-12 01:33:00 -07:00
|
|
|
|
|
|
|
if (!g_pCompositor->windowExists(window) || !window->m_bIsMapped) {
|
|
|
|
Debug::log(ERR, "Node %p holding invalid window %p!!", node, window);
|
2023-05-01 00:05:45 -07:00
|
|
|
errorNotif();
|
2023-04-12 01:33:00 -07:00
|
|
|
this->onWindowRemovedTiling(window);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
window->m_vSize = node->size;
|
|
|
|
window->m_vPosition = node->position;
|
|
|
|
|
|
|
|
auto calcPos = window->m_vPosition + Vector2D(*border_size, *border_size);
|
|
|
|
auto calcSize = window->m_vSize - Vector2D(2 * *border_size, 2 * *border_size);
|
|
|
|
|
2023-05-26 20:13:32 -07:00
|
|
|
auto root_node = this->getWorkspaceRootGroup(window->m_iWorkspaceID);
|
|
|
|
auto only_node = root_node->data.as_group.children.size() == 1
|
2023-06-07 03:22:17 -07:00
|
|
|
&& root_node->data.as_group.children.front()->data.type == Hy3NodeData::Window;
|
2023-04-12 01:33:00 -07:00
|
|
|
|
2023-05-26 20:13:32 -07:00
|
|
|
if (!g_pCompositor->isWorkspaceSpecial(window->m_iWorkspaceID)
|
2023-06-07 03:22:17 -07:00
|
|
|
&& ((*single_window_no_gaps && only_node)
|
|
|
|
|| (window->m_bIsFullscreen
|
|
|
|
&& g_pCompositor->getWorkspaceByID(window->m_iWorkspaceID)->m_efFullscreenMode
|
|
|
|
== FULLSCREEN_FULL)))
|
|
|
|
{
|
2023-04-12 01:33:00 -07:00
|
|
|
window->m_vRealPosition = window->m_vPosition;
|
|
|
|
window->m_vRealSize = window->m_vSize;
|
|
|
|
|
|
|
|
window->updateWindowDecos();
|
|
|
|
|
|
|
|
window->m_sSpecialRenderData.rounding = false;
|
|
|
|
window->m_sSpecialRenderData.border = false;
|
|
|
|
window->m_sSpecialRenderData.decorate = false;
|
|
|
|
} else {
|
|
|
|
window->m_sSpecialRenderData.rounding = true;
|
|
|
|
window->m_sSpecialRenderData.border = true;
|
|
|
|
window->m_sSpecialRenderData.decorate = true;
|
|
|
|
|
2023-06-04 21:32:30 -07:00
|
|
|
auto gaps_offset_topleft = Vector2D(*gaps_in, *gaps_in) + node->gap_pos_offset;
|
|
|
|
auto gaps_offset_bottomright = Vector2D(*gaps_in * 2, *gaps_in * 2) + node->gap_size_offset;
|
2023-04-12 01:33:00 -07:00
|
|
|
|
2023-06-04 21:32:30 -07:00
|
|
|
calcPos = calcPos + gaps_offset_topleft;
|
|
|
|
calcSize = calcSize - gaps_offset_bottomright;
|
2023-04-12 01:33:00 -07:00
|
|
|
|
|
|
|
const auto reserved_area = window->getFullWindowReservedArea();
|
|
|
|
calcPos = calcPos + reserved_area.topLeft;
|
|
|
|
calcSize = calcSize - (reserved_area.topLeft - reserved_area.bottomRight);
|
|
|
|
|
|
|
|
window->m_vRealPosition = calcPos;
|
|
|
|
window->m_vRealSize = calcSize;
|
|
|
|
Debug::log(LOG, "Set size (%f %f)", calcSize.x, calcSize.y);
|
|
|
|
|
|
|
|
g_pXWaylandManager->setWindowSize(window, calcSize);
|
|
|
|
|
|
|
|
if (force) {
|
|
|
|
g_pHyprRenderer->damageWindow(window);
|
|
|
|
|
|
|
|
window->m_vRealPosition.warp();
|
2023-04-18 23:41:18 -07:00
|
|
|
window->m_vRealSize.warp();
|
2023-04-12 01:33:00 -07:00
|
|
|
|
|
|
|
g_pHyprRenderer->damageWindow(window);
|
|
|
|
}
|
|
|
|
|
|
|
|
window->updateWindowDecos();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Hy3Layout::onWindowCreatedTiling(CWindow* window) {
|
|
|
|
if (window->m_bIsFloating) return;
|
|
|
|
|
2023-04-18 00:15:32 -07:00
|
|
|
auto* existing = this->getNodeFromWindow(window);
|
|
|
|
if (existing != nullptr) {
|
2023-06-07 03:22:17 -07:00
|
|
|
Debug::log(
|
|
|
|
WARN,
|
|
|
|
"Attempted to add a window(%p) that is already tiled(as %p) to the "
|
|
|
|
"layout",
|
|
|
|
window,
|
|
|
|
existing
|
|
|
|
);
|
2023-04-18 00:15:32 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
auto* monitor = g_pCompositor->getMonitorFromID(window->m_iMonitorID);
|
|
|
|
|
|
|
|
Hy3Node* opening_into;
|
2023-06-25 14:37:23 -07:00
|
|
|
Hy3Node* opening_after = nullptr;
|
2023-04-12 01:33:00 -07:00
|
|
|
|
2023-06-25 14:37:23 -07:00
|
|
|
if (monitor->activeWorkspace != -1) {
|
|
|
|
auto* root = this->getWorkspaceRootGroup(monitor->activeWorkspace);
|
|
|
|
|
|
|
|
if (root != nullptr) {
|
|
|
|
opening_after = root->getFocusedNode();
|
|
|
|
|
|
|
|
// opening_after->parent cannot be nullptr
|
|
|
|
if (opening_after == root) {
|
|
|
|
opening_after = root->data.as_group.focused_child;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opening_after == nullptr) {
|
|
|
|
if (g_pCompositor->m_pLastWindow != nullptr && !g_pCompositor->m_pLastWindow->m_bIsFloating
|
|
|
|
&& g_pCompositor->m_pLastWindow != window
|
|
|
|
&& g_pCompositor->m_pLastWindow->m_iWorkspaceID == window->m_iWorkspaceID
|
|
|
|
&& g_pCompositor->m_pLastWindow->m_bIsMapped)
|
|
|
|
{
|
|
|
|
opening_after = this->getNodeFromWindow(g_pCompositor->m_pLastWindow);
|
|
|
|
} else {
|
|
|
|
opening_after = this->getNodeFromWindow(
|
|
|
|
g_pCompositor->vectorToWindowTiled(g_pInputManager->getMouseCoordsInternal())
|
|
|
|
);
|
|
|
|
}
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
2023-04-18 00:15:32 -07:00
|
|
|
if (opening_after != nullptr && opening_after->workspace_id != window->m_iWorkspaceID) {
|
|
|
|
opening_after = nullptr;
|
|
|
|
}
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
if (opening_after != nullptr) {
|
|
|
|
opening_into = opening_after->parent;
|
|
|
|
} else {
|
|
|
|
if ((opening_into = this->getWorkspaceRootGroup(window->m_iWorkspaceID)) == nullptr) {
|
|
|
|
this->nodes.push_back({
|
2023-06-07 03:22:17 -07:00
|
|
|
.data = Hy3GroupLayout::SplitH,
|
|
|
|
.position = monitor->vecPosition + monitor->vecReservedTopLeft,
|
|
|
|
.size = monitor->vecSize - monitor->vecReservedTopLeft - monitor->vecReservedBottomRight,
|
|
|
|
.workspace_id = window->m_iWorkspaceID,
|
|
|
|
.layout = this,
|
2023-04-12 01:33:00 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
opening_into = &this->nodes.back();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opening_into->data.type != Hy3NodeData::Group) {
|
|
|
|
Debug::log(ERR, "opening_into node %p was not of type Group", opening_into);
|
2023-05-01 00:05:45 -07:00
|
|
|
errorNotif();
|
2023-04-12 01:33:00 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-18 00:15:32 -07:00
|
|
|
if (opening_into->workspace_id != window->m_iWorkspaceID) {
|
2023-06-07 03:22:17 -07:00
|
|
|
Debug::log(
|
|
|
|
WARN,
|
|
|
|
"opening_into node %p has workspace %d which does not match the "
|
|
|
|
"opening window (workspace %d)",
|
|
|
|
opening_into,
|
|
|
|
opening_into->workspace_id,
|
|
|
|
window->m_iWorkspaceID
|
|
|
|
);
|
2023-04-18 00:15:32 -07:00
|
|
|
}
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
this->nodes.push_back({
|
2023-06-07 03:22:17 -07:00
|
|
|
.parent = opening_into,
|
|
|
|
.data = window,
|
|
|
|
.workspace_id = window->m_iWorkspaceID,
|
|
|
|
.layout = this,
|
2023-04-12 01:33:00 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
auto& node = this->nodes.back();
|
|
|
|
|
|
|
|
if (opening_after == nullptr) {
|
|
|
|
opening_into->data.as_group.children.push_back(&node);
|
|
|
|
} else {
|
|
|
|
auto& children = opening_into->data.as_group.children;
|
|
|
|
auto iter = std::find(children.begin(), children.end(), opening_after);
|
|
|
|
auto iter2 = std::next(iter);
|
|
|
|
children.insert(iter2, &node);
|
|
|
|
}
|
2023-06-07 03:22:17 -07:00
|
|
|
|
|
|
|
Debug::log(
|
|
|
|
LOG,
|
|
|
|
"opened new window %p(node: %p) on window %p in %p",
|
|
|
|
window,
|
|
|
|
&node,
|
|
|
|
opening_after,
|
|
|
|
opening_into
|
|
|
|
);
|
2023-04-12 01:33:00 -07:00
|
|
|
|
2023-04-26 00:57:24 -07:00
|
|
|
node.markFocused();
|
2023-04-12 01:33:00 -07:00
|
|
|
opening_into->recalcSizePosRecursive();
|
2023-06-07 03:22:17 -07:00
|
|
|
Debug::log(
|
|
|
|
LOG,
|
|
|
|
"opening_into (%p) contains new child (%p)? %d",
|
|
|
|
opening_into,
|
|
|
|
&node,
|
|
|
|
opening_into->data.as_group.hasChild(&node)
|
|
|
|
);
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void Hy3Layout::onWindowRemovedTiling(CWindow* window) {
|
|
|
|
auto* node = this->getNodeFromWindow(window);
|
|
|
|
Debug::log(LOG, "remove tiling %p (window %p)", node, window);
|
|
|
|
|
|
|
|
if (node == nullptr) {
|
|
|
|
Debug::log(ERR, "onWindowRemovedTiling node null?");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
window->m_sSpecialRenderData.rounding = true;
|
|
|
|
window->m_sSpecialRenderData.border = true;
|
|
|
|
window->m_sSpecialRenderData.decorate = true;
|
|
|
|
|
|
|
|
if (window->m_bIsFullscreen) {
|
|
|
|
g_pCompositor->setWindowFullscreen(window, false, FULLSCREEN_FULL);
|
|
|
|
}
|
|
|
|
|
2023-04-23 21:02:51 -07:00
|
|
|
auto* parent = node->removeFromParentRecursive();
|
2023-04-12 01:33:00 -07:00
|
|
|
this->nodes.remove(*node);
|
|
|
|
|
2023-04-16 21:56:19 -07:00
|
|
|
if (parent != nullptr) {
|
|
|
|
parent->recalcSizePosRecursive();
|
2023-04-19 18:22:11 -07:00
|
|
|
|
2023-04-19 21:11:36 -07:00
|
|
|
if (parent->data.as_group.children.size() == 1
|
2023-06-07 03:22:17 -07:00
|
|
|
&& parent->data.as_group.children.front()->data.type == Hy3NodeData::Group)
|
2023-04-19 21:11:36 -07:00
|
|
|
{
|
|
|
|
auto* target_parent = parent;
|
2023-04-23 21:02:51 -07:00
|
|
|
while (target_parent != nullptr && Hy3Node::swallowGroups(target_parent)) {
|
2023-04-19 21:11:36 -07:00
|
|
|
target_parent = target_parent->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target_parent != parent && target_parent != nullptr)
|
|
|
|
target_parent->recalcSizePosRecursive();
|
|
|
|
}
|
2023-04-19 18:22:11 -07:00
|
|
|
}
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
2023-04-16 23:53:22 -07:00
|
|
|
CWindow* Hy3Layout::getNextWindowCandidate(CWindow* window) {
|
2023-05-04 02:39:46 -07:00
|
|
|
auto* node = this->getWorkspaceFocusedNode(window->m_iWorkspaceID);
|
2023-05-04 03:10:06 -07:00
|
|
|
if (node == nullptr) return nullptr;
|
2023-04-26 00:57:24 -07:00
|
|
|
|
|
|
|
switch (node->data.type) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3NodeData::Window: return node->data.as_window;
|
|
|
|
case Hy3NodeData::Group: return nullptr;
|
2023-04-22 02:39:51 -07:00
|
|
|
}
|
2023-04-16 23:53:22 -07:00
|
|
|
}
|
|
|
|
|
2023-04-12 03:33:45 -07:00
|
|
|
void Hy3Layout::onWindowFocusChange(CWindow* window) {
|
2023-04-26 00:57:24 -07:00
|
|
|
Debug::log(LOG, "Switched windows to %p", window);
|
2023-04-23 14:12:34 -07:00
|
|
|
auto* node = this->getNodeFromWindow(window);
|
2023-04-19 21:17:48 -07:00
|
|
|
if (node == nullptr) return;
|
2023-04-12 03:33:45 -07:00
|
|
|
|
2023-04-26 00:57:24 -07:00
|
|
|
node->markFocused();
|
2023-05-31 22:43:30 -07:00
|
|
|
while (node->parent != nullptr) node = node->parent;
|
|
|
|
node->recalcSizePosRecursive();
|
2023-04-12 03:33:45 -07:00
|
|
|
}
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
bool Hy3Layout::isWindowTiled(CWindow* window) {
|
|
|
|
return this->getNodeFromWindow(window) != nullptr;
|
|
|
|
}
|
|
|
|
|
2023-04-17 00:53:02 -07:00
|
|
|
void Hy3Layout::recalculateMonitor(const int& monitor_id) {
|
2023-04-19 20:59:06 -07:00
|
|
|
Debug::log(LOG, "Recalculate monitor %d", monitor_id);
|
2023-04-17 00:53:02 -07:00
|
|
|
const auto monitor = g_pCompositor->getMonitorFromID(monitor_id);
|
|
|
|
if (monitor == nullptr) return;
|
|
|
|
|
2023-04-19 20:59:06 -07:00
|
|
|
g_pHyprRenderer->damageMonitor(monitor);
|
|
|
|
|
2023-04-17 00:53:02 -07:00
|
|
|
const auto workspace = g_pCompositor->getWorkspaceByID(monitor->activeWorkspace);
|
|
|
|
if (workspace == nullptr) return;
|
|
|
|
|
|
|
|
if (monitor->specialWorkspaceID) {
|
|
|
|
const auto top_node = this->getWorkspaceRootGroup(monitor->specialWorkspaceID);
|
|
|
|
|
|
|
|
if (top_node != nullptr) {
|
|
|
|
top_node->position = monitor->vecPosition + monitor->vecReservedTopLeft;
|
2023-06-07 03:22:17 -07:00
|
|
|
top_node->size
|
|
|
|
= monitor->vecSize - monitor->vecReservedTopLeft - monitor->vecReservedBottomRight;
|
2023-04-17 00:53:02 -07:00
|
|
|
top_node->recalcSizePosRecursive();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (workspace->m_bHasFullscreenWindow) {
|
|
|
|
const auto window = g_pCompositor->getFullscreenWindowOnWorkspace(workspace->m_iID);
|
|
|
|
|
|
|
|
if (workspace->m_efFullscreenMode == FULLSCREEN_FULL) {
|
|
|
|
window->m_vRealPosition = monitor->vecPosition;
|
|
|
|
window->m_vRealSize = monitor->vecSize;
|
|
|
|
} else {
|
|
|
|
// Vaxry's hack from below, but again
|
|
|
|
|
|
|
|
Hy3Node fakeNode = {
|
2023-06-07 03:22:17 -07:00
|
|
|
.data = window,
|
|
|
|
.position = monitor->vecPosition + monitor->vecReservedTopLeft,
|
|
|
|
.size = monitor->vecSize - monitor->vecReservedTopLeft - monitor->vecReservedBottomRight,
|
|
|
|
.workspace_id = window->m_iWorkspaceID,
|
2023-04-17 00:53:02 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
this->applyNodeDataToWindow(&fakeNode);
|
|
|
|
}
|
|
|
|
} else {
|
2023-04-19 20:59:06 -07:00
|
|
|
const auto top_node = this->getWorkspaceRootGroup(monitor->activeWorkspace);
|
2023-04-17 00:53:02 -07:00
|
|
|
|
2023-04-19 20:59:06 -07:00
|
|
|
if (top_node != nullptr) {
|
2023-04-17 00:53:02 -07:00
|
|
|
top_node->position = monitor->vecPosition + monitor->vecReservedTopLeft;
|
2023-06-07 03:22:17 -07:00
|
|
|
top_node->size
|
|
|
|
= monitor->vecSize - monitor->vecReservedTopLeft - monitor->vecReservedBottomRight;
|
2023-04-17 00:53:02 -07:00
|
|
|
top_node->recalcSizePosRecursive();
|
|
|
|
}
|
|
|
|
}
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
2023-04-19 20:59:06 -07:00
|
|
|
void Hy3Layout::recalculateWindow(CWindow* window) {
|
|
|
|
auto* node = this->getNodeFromWindow(window);
|
|
|
|
if (node == nullptr) return;
|
|
|
|
node->recalcSizePosRecursive();
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
2023-04-18 23:41:18 -07:00
|
|
|
void Hy3Layout::onBeginDragWindow() {
|
|
|
|
this->drag_flags.started = false;
|
|
|
|
IHyprLayout::onBeginDragWindow();
|
|
|
|
}
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
void Hy3Layout::resizeActiveWindow(const Vector2D& delta, CWindow* pWindow) {
|
2023-04-18 23:41:18 -07:00
|
|
|
auto window = pWindow ? pWindow : g_pCompositor->m_pLastWindow;
|
|
|
|
if (!g_pCompositor->windowValidMapped(window)) return;
|
|
|
|
|
|
|
|
auto* node = this->getNodeFromWindow(window);
|
|
|
|
if (node == nullptr) return;
|
|
|
|
|
|
|
|
if (!this->drag_flags.started) {
|
2023-05-14 16:14:58 -07:00
|
|
|
if (g_pInputManager->currentlyDraggedWindow == window) {
|
|
|
|
auto mouse = g_pInputManager->getMouseCoordsInternal();
|
|
|
|
auto mouse_offset = mouse - window->m_vPosition;
|
|
|
|
|
|
|
|
this->drag_flags = {
|
2023-06-07 03:22:17 -07:00
|
|
|
.started = true,
|
|
|
|
.xExtent = mouse_offset.x > window->m_vSize.x / 2,
|
|
|
|
.yExtent = mouse_offset.y > window->m_vSize.y / 2,
|
2023-05-14 16:14:58 -07:00
|
|
|
};
|
2023-04-18 23:41:18 -07:00
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
Debug::log(
|
|
|
|
LOG,
|
|
|
|
"Positive offsets - x: %d, y: %d",
|
|
|
|
this->drag_flags.xExtent,
|
|
|
|
this->drag_flags.yExtent
|
|
|
|
);
|
2023-05-14 16:14:58 -07:00
|
|
|
} else {
|
|
|
|
this->drag_flags = {
|
2023-06-07 03:22:17 -07:00
|
|
|
.started = false,
|
|
|
|
.xExtent = delta.x > 0,
|
|
|
|
.yExtent = delta.y > 0,
|
2023-05-14 16:14:58 -07:00
|
|
|
};
|
|
|
|
}
|
2023-04-18 23:41:18 -07:00
|
|
|
}
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
const auto animate
|
|
|
|
= &g_pConfigManager->getConfigValuePtr("misc:animate_manual_resizes")->intValue;
|
2023-04-18 23:41:18 -07:00
|
|
|
|
|
|
|
auto monitor = g_pCompositor->getMonitorFromID(window->m_iMonitorID);
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
const bool display_left
|
|
|
|
= STICKS(node->position.x, monitor->vecPosition.x + monitor->vecReservedTopLeft.x);
|
|
|
|
const bool display_right = STICKS(
|
|
|
|
node->position.x + node->size.x,
|
|
|
|
monitor->vecPosition.x + monitor->vecSize.x - monitor->vecReservedBottomRight.x
|
|
|
|
);
|
|
|
|
const bool display_top
|
|
|
|
= STICKS(node->position.y, monitor->vecPosition.y + monitor->vecReservedTopLeft.y);
|
|
|
|
const bool display_bottom = STICKS(
|
|
|
|
node->position.y + node->size.y,
|
|
|
|
monitor->vecPosition.y + monitor->vecSize.y - monitor->vecReservedBottomRight.y
|
|
|
|
);
|
2023-04-18 23:41:18 -07:00
|
|
|
|
|
|
|
Vector2D allowed_movement = delta;
|
|
|
|
if (display_left && display_right) allowed_movement.x = 0;
|
|
|
|
if (display_top && display_bottom) allowed_movement.y = 0;
|
|
|
|
|
|
|
|
auto* inner_node = node;
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
// break into parent groups when encountering a corner we're dragging in or a
|
|
|
|
// tab group
|
2023-04-18 23:41:18 -07:00
|
|
|
while (inner_node->parent != nullptr) {
|
|
|
|
auto& group = inner_node->parent->data.as_group;
|
|
|
|
|
|
|
|
switch (group.layout) {
|
|
|
|
case Hy3GroupLayout::Tabbed:
|
|
|
|
// treat tabbed layouts as if they dont exist during resizing
|
|
|
|
goto cont;
|
|
|
|
case Hy3GroupLayout::SplitH:
|
|
|
|
if ((this->drag_flags.xExtent && group.children.back() == inner_node)
|
2023-06-07 03:22:17 -07:00
|
|
|
|| (!this->drag_flags.xExtent && group.children.front() == inner_node))
|
|
|
|
{
|
2023-04-18 23:41:18 -07:00
|
|
|
goto cont;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Hy3GroupLayout::SplitV:
|
|
|
|
if ((this->drag_flags.yExtent && group.children.back() == inner_node)
|
2023-06-07 03:22:17 -07:00
|
|
|
|| (!this->drag_flags.yExtent && group.children.front() == inner_node))
|
|
|
|
{
|
2023-04-18 23:41:18 -07:00
|
|
|
goto cont;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
cont:
|
|
|
|
inner_node = inner_node->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* inner_parent = inner_node->parent;
|
|
|
|
if (inner_parent == nullptr) return;
|
|
|
|
|
|
|
|
auto* outer_node = inner_node;
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
// break into parent groups when encountering a corner we're dragging in, a
|
|
|
|
// tab group, or a layout matching the inner_parent.
|
2023-04-18 23:41:18 -07:00
|
|
|
while (outer_node->parent != nullptr) {
|
|
|
|
auto& group = outer_node->parent->data.as_group;
|
|
|
|
|
|
|
|
// break out of all layouts that match the orientation of the inner_parent
|
|
|
|
if (group.layout == inner_parent->data.as_group.layout) goto cont2;
|
|
|
|
|
|
|
|
switch (group.layout) {
|
|
|
|
case Hy3GroupLayout::Tabbed:
|
|
|
|
// treat tabbed layouts as if they dont exist during resizing
|
|
|
|
goto cont2;
|
|
|
|
case Hy3GroupLayout::SplitH:
|
|
|
|
if ((this->drag_flags.xExtent && group.children.back() == outer_node)
|
2023-06-07 03:22:17 -07:00
|
|
|
|| (!this->drag_flags.xExtent && group.children.front() == outer_node))
|
|
|
|
{
|
2023-04-18 23:41:18 -07:00
|
|
|
goto cont2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Hy3GroupLayout::SplitV:
|
|
|
|
if ((this->drag_flags.yExtent && group.children.back() == outer_node)
|
2023-06-07 03:22:17 -07:00
|
|
|
|| (!this->drag_flags.yExtent && group.children.front() == outer_node))
|
|
|
|
{
|
2023-04-18 23:41:18 -07:00
|
|
|
goto cont2;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
cont2:
|
|
|
|
outer_node = outer_node->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug::log(LOG, "resizeActive - inner_node: %p, outer_node: %p", inner_node, outer_node);
|
|
|
|
|
|
|
|
auto& inner_group = inner_parent->data.as_group;
|
|
|
|
// adjust the inner node
|
|
|
|
switch (inner_group.layout) {
|
|
|
|
case Hy3GroupLayout::SplitH: {
|
2023-06-07 03:22:17 -07:00
|
|
|
auto ratio_mod
|
|
|
|
= allowed_movement.x * (float) inner_group.children.size() / inner_parent->size.x;
|
2023-04-18 23:41:18 -07:00
|
|
|
|
|
|
|
auto iter = std::find(inner_group.children.begin(), inner_group.children.end(), inner_node);
|
|
|
|
|
|
|
|
if (this->drag_flags.xExtent) {
|
|
|
|
if (inner_node == inner_group.children.back()) break;
|
|
|
|
iter = std::next(iter);
|
|
|
|
} else {
|
|
|
|
if (inner_node == inner_group.children.front()) break;
|
|
|
|
iter = std::prev(iter);
|
|
|
|
ratio_mod = -ratio_mod;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* neighbor = *iter;
|
|
|
|
|
|
|
|
inner_node->size_ratio += ratio_mod;
|
|
|
|
neighbor->size_ratio -= ratio_mod;
|
|
|
|
} break;
|
|
|
|
case Hy3GroupLayout::SplitV: {
|
2023-06-07 03:22:17 -07:00
|
|
|
auto ratio_mod = allowed_movement.y * (float) inner_parent->data.as_group.children.size()
|
|
|
|
/ inner_parent->size.y;
|
2023-04-18 23:41:18 -07:00
|
|
|
|
|
|
|
auto iter = std::find(inner_group.children.begin(), inner_group.children.end(), inner_node);
|
|
|
|
|
|
|
|
if (this->drag_flags.yExtent) {
|
|
|
|
if (inner_node == inner_group.children.back()) break;
|
|
|
|
iter = std::next(iter);
|
|
|
|
} else {
|
|
|
|
if (inner_node == inner_group.children.front()) break;
|
|
|
|
iter = std::prev(iter);
|
|
|
|
ratio_mod = -ratio_mod;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* neighbor = *iter;
|
|
|
|
|
|
|
|
inner_node->size_ratio += ratio_mod;
|
|
|
|
neighbor->size_ratio -= ratio_mod;
|
|
|
|
} break;
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3GroupLayout::Tabbed: break;
|
2023-04-18 23:41:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
inner_parent->recalcSizePosRecursive(*animate == 0);
|
|
|
|
|
|
|
|
if (outer_node != nullptr && outer_node->parent != nullptr) {
|
|
|
|
auto* outer_parent = outer_node->parent;
|
|
|
|
auto& outer_group = outer_parent->data.as_group;
|
|
|
|
// adjust the outer node
|
|
|
|
switch (outer_group.layout) {
|
|
|
|
case Hy3GroupLayout::SplitH: {
|
2023-06-07 03:22:17 -07:00
|
|
|
auto ratio_mod
|
|
|
|
= allowed_movement.x * (float) outer_group.children.size() / outer_parent->size.x;
|
2023-04-18 23:41:18 -07:00
|
|
|
|
|
|
|
auto iter = std::find(outer_group.children.begin(), outer_group.children.end(), outer_node);
|
|
|
|
|
|
|
|
if (this->drag_flags.xExtent) {
|
|
|
|
if (outer_node == inner_group.children.back()) break;
|
|
|
|
iter = std::next(iter);
|
|
|
|
} else {
|
|
|
|
if (outer_node == inner_group.children.front()) break;
|
|
|
|
iter = std::prev(iter);
|
|
|
|
ratio_mod = -ratio_mod;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* neighbor = *iter;
|
|
|
|
|
|
|
|
outer_node->size_ratio += ratio_mod;
|
|
|
|
neighbor->size_ratio -= ratio_mod;
|
|
|
|
} break;
|
|
|
|
case Hy3GroupLayout::SplitV: {
|
2023-06-07 03:22:17 -07:00
|
|
|
auto ratio_mod = allowed_movement.y * (float) outer_parent->data.as_group.children.size()
|
|
|
|
/ outer_parent->size.y;
|
2023-04-18 23:41:18 -07:00
|
|
|
|
|
|
|
auto iter = std::find(outer_group.children.begin(), outer_group.children.end(), outer_node);
|
|
|
|
|
|
|
|
if (this->drag_flags.yExtent) {
|
|
|
|
if (outer_node == outer_group.children.back()) break;
|
|
|
|
iter = std::next(iter);
|
|
|
|
} else {
|
|
|
|
if (outer_node == outer_group.children.front()) break;
|
|
|
|
iter = std::prev(iter);
|
|
|
|
ratio_mod = -ratio_mod;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* neighbor = *iter;
|
|
|
|
|
|
|
|
outer_node->size_ratio += ratio_mod;
|
|
|
|
neighbor->size_ratio -= ratio_mod;
|
|
|
|
} break;
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3GroupLayout::Tabbed: break;
|
2023-04-18 23:41:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
outer_parent->recalcSizePosRecursive(*animate == 0);
|
|
|
|
}
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
void Hy3Layout::fullscreenRequestForWindow(
|
|
|
|
CWindow* window,
|
|
|
|
eFullscreenMode fullscreen_mode,
|
|
|
|
bool on
|
|
|
|
) {
|
2023-04-17 00:53:02 -07:00
|
|
|
if (!g_pCompositor->windowValidMapped(window)) return;
|
2023-06-07 03:22:17 -07:00
|
|
|
if (on == window->m_bIsFullscreen || g_pCompositor->isWorkspaceSpecial(window->m_iWorkspaceID))
|
|
|
|
return;
|
2023-04-17 00:53:02 -07:00
|
|
|
|
|
|
|
const auto monitor = g_pCompositor->getMonitorFromID(window->m_iMonitorID);
|
|
|
|
const auto workspace = g_pCompositor->getWorkspaceByID(window->m_iWorkspaceID);
|
|
|
|
if (workspace->m_bHasFullscreenWindow && on) return;
|
|
|
|
|
|
|
|
window->m_bIsFullscreen = on;
|
|
|
|
workspace->m_bHasFullscreenWindow = !workspace->m_bHasFullscreenWindow;
|
|
|
|
|
|
|
|
if (!window->m_bIsFullscreen) {
|
|
|
|
auto* node = this->getNodeFromWindow(window);
|
|
|
|
|
|
|
|
if (node) {
|
|
|
|
// restore node positioning if tiled
|
|
|
|
this->applyNodeDataToWindow(node);
|
|
|
|
} else {
|
|
|
|
// restore floating position if not
|
|
|
|
window->m_vRealPosition = window->m_vLastFloatingPosition;
|
|
|
|
window->m_vRealSize = window->m_vLastFloatingSize;
|
|
|
|
|
|
|
|
window->m_sSpecialRenderData.rounding = true;
|
|
|
|
window->m_sSpecialRenderData.border = true;
|
|
|
|
window->m_sSpecialRenderData.decorate = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
workspace->m_efFullscreenMode = fullscreen_mode;
|
|
|
|
|
|
|
|
// save position and size if floating
|
|
|
|
if (window->m_bIsFloating) {
|
|
|
|
window->m_vLastFloatingPosition = window->m_vRealPosition.goalv();
|
|
|
|
window->m_vPosition = window->m_vRealPosition.goalv();
|
|
|
|
window->m_vLastFloatingSize = window->m_vRealSize.goalv();
|
|
|
|
window->m_vSize = window->m_vRealSize.goalv();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fullscreen_mode == FULLSCREEN_FULL) {
|
|
|
|
Debug::log(LOG, "fullscreen");
|
|
|
|
window->m_vRealPosition = monitor->vecPosition;
|
|
|
|
window->m_vRealSize = monitor->vecSize;
|
|
|
|
} else {
|
|
|
|
Debug::log(LOG, "vaxry hack");
|
|
|
|
// Copy of vaxry's massive hack
|
|
|
|
|
|
|
|
Hy3Node fakeNode = {
|
2023-06-07 03:22:17 -07:00
|
|
|
.data = window,
|
|
|
|
.position = monitor->vecPosition + monitor->vecReservedTopLeft,
|
|
|
|
.size = monitor->vecSize - monitor->vecReservedTopLeft - monitor->vecReservedBottomRight,
|
|
|
|
.workspace_id = window->m_iWorkspaceID,
|
2023-04-17 00:53:02 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
this->applyNodeDataToWindow(&fakeNode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_pCompositor->updateWindowAnimatedDecorationValues(window);
|
|
|
|
g_pXWaylandManager->setWindowSize(window, window->m_vRealSize.goalv());
|
|
|
|
g_pCompositor->moveWindowToTop(window);
|
|
|
|
this->recalculateMonitor(monitor->ID);
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
std::any Hy3Layout::layoutMessage(SLayoutMessageHeader header, std::string content) {
|
2023-04-27 23:21:23 -07:00
|
|
|
if (content == "togglesplit") {
|
|
|
|
auto* node = this->getNodeFromWindow(header.pWindow);
|
|
|
|
if (node != nullptr && node->parent != nullptr) {
|
|
|
|
auto& layout = node->parent->data.as_group.layout;
|
|
|
|
|
|
|
|
switch (layout) {
|
|
|
|
case Hy3GroupLayout::SplitH:
|
2023-06-07 03:22:17 -07:00
|
|
|
layout = Hy3GroupLayout::SplitV;
|
2023-04-27 23:21:23 -07:00
|
|
|
node->parent->recalcSizePosRecursive();
|
|
|
|
break;
|
|
|
|
case Hy3GroupLayout::SplitV:
|
|
|
|
layout = Hy3GroupLayout::SplitH;
|
|
|
|
node->parent->recalcSizePosRecursive();
|
|
|
|
break;
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3GroupLayout::Tabbed: break;
|
2023-04-27 23:21:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
SWindowRenderLayoutHints Hy3Layout::requestRenderHints(CWindow* window) { return {}; }
|
2023-04-12 01:33:00 -07:00
|
|
|
|
|
|
|
void Hy3Layout::switchWindows(CWindow* pWindowA, CWindow* pWindowB) {
|
2023-04-19 20:59:06 -07:00
|
|
|
// todo
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void Hy3Layout::alterSplitRatio(CWindow* pWindow, float delta, bool exact) {
|
2023-04-19 20:59:06 -07:00
|
|
|
// todo
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
std::string Hy3Layout::getLayoutName() { return "hy3"; }
|
2023-04-12 01:33:00 -07:00
|
|
|
|
|
|
|
void Hy3Layout::replaceWindowDataWith(CWindow* from, CWindow* to) {
|
2023-04-19 20:59:06 -07:00
|
|
|
auto* node = this->getNodeFromWindow(from);
|
|
|
|
if (node == nullptr) return;
|
|
|
|
|
|
|
|
node->data.as_window = to;
|
|
|
|
this->applyNodeDataToWindow(node);
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
std::unique_ptr<HOOK_CALLBACK_FN> renderHookPtr
|
|
|
|
= std::make_unique<HOOK_CALLBACK_FN>(Hy3Layout::renderHook);
|
|
|
|
std::unique_ptr<HOOK_CALLBACK_FN> windowTitleHookPtr
|
2023-06-09 01:19:13 -07:00
|
|
|
= std::make_unique<HOOK_CALLBACK_FN>(Hy3Layout::windowGroupUpdateRecursiveHook);
|
|
|
|
std::unique_ptr<HOOK_CALLBACK_FN> urgentHookPtr
|
|
|
|
= std::make_unique<HOOK_CALLBACK_FN>(Hy3Layout::windowGroupUrgentHook);
|
2023-06-07 03:22:17 -07:00
|
|
|
std::unique_ptr<HOOK_CALLBACK_FN> tickHookPtr
|
|
|
|
= std::make_unique<HOOK_CALLBACK_FN>(Hy3Layout::tickHook);
|
2023-05-16 03:02:26 -07:00
|
|
|
|
2023-04-12 01:33:00 -07:00
|
|
|
void Hy3Layout::onEnable() {
|
2023-06-07 03:22:17 -07:00
|
|
|
for (auto& window: g_pCompositor->m_vWindows) {
|
|
|
|
if (window->isHidden() || !window->m_bIsMapped || window->m_bFadingOut || window->m_bIsFloating)
|
2023-04-19 20:28:05 -07:00
|
|
|
continue;
|
2023-04-12 01:33:00 -07:00
|
|
|
|
2023-04-19 20:28:05 -07:00
|
|
|
this->onWindowCreatedTiling(window.get());
|
|
|
|
}
|
2023-04-26 00:57:24 -07:00
|
|
|
|
2023-05-16 03:02:26 -07:00
|
|
|
HyprlandAPI::registerCallbackStatic(PHANDLE, "render", renderHookPtr.get());
|
2023-06-04 17:28:26 -07:00
|
|
|
HyprlandAPI::registerCallbackStatic(PHANDLE, "windowTitle", windowTitleHookPtr.get());
|
2023-06-09 01:19:13 -07:00
|
|
|
HyprlandAPI::registerCallbackStatic(PHANDLE, "urgent", urgentHookPtr.get());
|
2023-05-30 23:23:46 -07:00
|
|
|
HyprlandAPI::registerCallbackStatic(PHANDLE, "tick", tickHookPtr.get());
|
2023-04-30 00:47:01 -07:00
|
|
|
selection_hook::enable();
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void Hy3Layout::onDisable() {
|
2023-05-16 03:02:26 -07:00
|
|
|
HyprlandAPI::unregisterCallback(PHANDLE, renderHookPtr.get());
|
2023-06-04 17:28:26 -07:00
|
|
|
HyprlandAPI::unregisterCallback(PHANDLE, windowTitleHookPtr.get());
|
2023-06-09 01:19:13 -07:00
|
|
|
HyprlandAPI::unregisterCallback(PHANDLE, urgentHookPtr.get());
|
2023-05-30 23:23:46 -07:00
|
|
|
HyprlandAPI::unregisterCallback(PHANDLE, tickHookPtr.get());
|
2023-04-30 00:47:01 -07:00
|
|
|
selection_hook::disable();
|
2023-06-12 00:27:44 -07:00
|
|
|
|
|
|
|
for (auto& node: this->nodes) {
|
|
|
|
if (node.data.type == Hy3NodeData::Window) {
|
|
|
|
node.data.as_window->setHidden(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-19 20:28:05 -07:00
|
|
|
this->nodes.clear();
|
2023-04-12 01:33:00 -07:00
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-05-04 03:10:06 -07:00
|
|
|
void Hy3Layout::makeGroupOnWorkspace(int workspace, Hy3GroupLayout layout) {
|
|
|
|
auto* node = this->getWorkspaceFocusedNode(workspace);
|
|
|
|
this->makeGroupOn(node, layout);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Hy3Layout::makeOppositeGroupOnWorkspace(int workspace) {
|
2023-05-04 02:39:46 -07:00
|
|
|
auto* node = this->getWorkspaceFocusedNode(workspace);
|
2023-05-04 03:10:06 -07:00
|
|
|
this->makeOppositeGroupOn(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Hy3Layout::makeGroupOn(Hy3Node* node, Hy3GroupLayout layout) {
|
2023-04-13 14:12:48 -07:00
|
|
|
if (node == nullptr) return;
|
|
|
|
|
2023-05-04 03:10:06 -07:00
|
|
|
if (node->parent != nullptr) {
|
|
|
|
auto& group = node->parent->data.as_group;
|
2023-06-04 18:29:29 -07:00
|
|
|
if (group.children.size() == 1) {
|
2023-05-04 03:14:47 -07:00
|
|
|
group.layout = layout;
|
|
|
|
node->parent->recalcSizePosRecursive();
|
|
|
|
return;
|
2023-05-04 03:10:06 -07:00
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
}
|
|
|
|
|
2023-05-04 03:10:06 -07:00
|
|
|
node->intoGroup(layout);
|
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-05-04 03:10:06 -07:00
|
|
|
void Hy3Layout::makeOppositeGroupOn(Hy3Node* node) {
|
|
|
|
if (node == nullptr) return;
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-05-04 03:10:06 -07:00
|
|
|
if (node->parent == nullptr) {
|
|
|
|
node->intoGroup(Hy3GroupLayout::SplitH);
|
|
|
|
} else {
|
|
|
|
auto& group = node->parent->data.as_group;
|
2023-06-07 03:22:17 -07:00
|
|
|
auto layout
|
|
|
|
= group.layout == Hy3GroupLayout::SplitH ? Hy3GroupLayout::SplitV : Hy3GroupLayout::SplitH;
|
2023-05-04 03:10:06 -07:00
|
|
|
|
|
|
|
if (group.children.size() == 1) {
|
|
|
|
group.layout = layout;
|
|
|
|
node->parent->recalcSizePosRecursive();
|
|
|
|
} else {
|
|
|
|
node->intoGroup(layout);
|
|
|
|
}
|
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
}
|
|
|
|
|
2023-06-11 23:00:24 -07:00
|
|
|
void Hy3Layout::shiftFocus(int workspace, ShiftDirection direction, bool visible) {
|
2023-05-04 02:39:46 -07:00
|
|
|
auto* node = this->getWorkspaceFocusedNode(workspace);
|
2023-04-26 00:57:24 -07:00
|
|
|
Debug::log(LOG, "ShiftFocus %p %d", node, direction);
|
2023-04-13 14:12:48 -07:00
|
|
|
if (node == nullptr) return;
|
|
|
|
|
2023-04-16 16:27:18 -07:00
|
|
|
Hy3Node* target;
|
2023-06-11 23:00:24 -07:00
|
|
|
if ((target = this->shiftOrGetFocus(*node, direction, false, false, visible))) {
|
2023-05-31 01:31:22 -07:00
|
|
|
target->focus();
|
2023-05-31 22:43:30 -07:00
|
|
|
while (target->parent != nullptr) target = target->parent;
|
|
|
|
target->recalcSizePosRecursive();
|
2023-04-16 16:27:18 -07:00
|
|
|
}
|
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-05-10 00:42:53 -07:00
|
|
|
void Hy3Layout::shiftWindow(int workspace, ShiftDirection direction, bool once) {
|
2023-05-04 02:39:46 -07:00
|
|
|
auto* node = this->getWorkspaceFocusedNode(workspace);
|
2023-04-26 00:57:24 -07:00
|
|
|
Debug::log(LOG, "ShiftWindow %p %d", node, direction);
|
2023-04-16 16:27:18 -07:00
|
|
|
if (node == nullptr) return;
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-06-21 21:18:44 -07:00
|
|
|
if (once && node->parent != nullptr && node->parent->data.as_group.children.size() == 1) {
|
|
|
|
auto* node2 = node->parent;
|
|
|
|
Hy3Node::swapData(*node, *node2);
|
|
|
|
node2->layout->nodes.remove(*node);
|
|
|
|
node2->recalcSizePosRecursive();
|
|
|
|
} else {
|
|
|
|
this->shiftOrGetFocus(*node, direction, true, once, false);
|
|
|
|
}
|
2023-04-16 16:27:18 -07:00
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-04-16 16:27:18 -07:00
|
|
|
bool shiftIsForward(ShiftDirection direction) {
|
|
|
|
return direction == ShiftDirection::Right || direction == ShiftDirection::Down;
|
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-04-24 01:49:43 -07:00
|
|
|
bool shiftIsVertical(ShiftDirection direction) {
|
|
|
|
return direction == ShiftDirection::Up || direction == ShiftDirection::Down;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool shiftMatchesLayout(Hy3GroupLayout layout, ShiftDirection direction) {
|
|
|
|
return (layout == Hy3GroupLayout::SplitV && shiftIsVertical(direction))
|
2023-06-07 03:22:17 -07:00
|
|
|
|| (layout != Hy3GroupLayout::SplitV && !shiftIsVertical(direction));
|
2023-04-24 01:49:43 -07:00
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-06-11 23:00:24 -07:00
|
|
|
Hy3Node* Hy3Layout::shiftOrGetFocus(
|
|
|
|
Hy3Node& node,
|
|
|
|
ShiftDirection direction,
|
|
|
|
bool shift,
|
|
|
|
bool once,
|
|
|
|
bool visible
|
|
|
|
) {
|
2023-04-16 16:27:18 -07:00
|
|
|
auto* break_origin = &node;
|
|
|
|
auto* break_parent = break_origin->parent;
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-05-10 00:42:53 -07:00
|
|
|
auto has_broken_once = false;
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
// break parents until we hit a container oriented the same way as the shift
|
|
|
|
// direction
|
2023-04-16 16:27:18 -07:00
|
|
|
while (true) {
|
|
|
|
if (break_parent == nullptr) return nullptr;
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-04-16 16:27:18 -07:00
|
|
|
auto& group = break_parent->data.as_group; // must be a group in order to be a parent
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-06-11 23:00:24 -07:00
|
|
|
if (shiftMatchesLayout(group.layout, direction)
|
|
|
|
&& (!visible || group.layout != Hy3GroupLayout::Tabbed))
|
|
|
|
{
|
2023-04-16 16:27:18 -07:00
|
|
|
// group has the correct orientation
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-05-14 15:05:30 -07:00
|
|
|
if (once && shift && has_broken_once) break;
|
|
|
|
if (break_origin != &node) has_broken_once = true;
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
// if this movement would break out of the group, continue the break loop
|
|
|
|
// (do not enter this if) otherwise break.
|
2023-05-14 15:05:30 -07:00
|
|
|
if ((has_broken_once && once && shift)
|
2023-06-07 03:22:17 -07:00
|
|
|
|| !(
|
|
|
|
(!shiftIsForward(direction) && group.children.front() == break_origin)
|
|
|
|
|| (shiftIsForward(direction) && group.children.back() == break_origin)
|
|
|
|
))
|
2023-04-16 16:27:18 -07:00
|
|
|
break;
|
2023-04-13 14:12:48 -07:00
|
|
|
}
|
|
|
|
|
2023-04-16 16:27:18 -07:00
|
|
|
if (break_parent->parent == nullptr) {
|
2023-04-24 02:58:53 -07:00
|
|
|
if (!shift) return nullptr;
|
|
|
|
|
|
|
|
// if we haven't gone up any levels and the group is in the same direction
|
|
|
|
// there's no reason to wrap the root group.
|
2023-06-07 03:22:17 -07:00
|
|
|
if (group.layout != Hy3GroupLayout::Tabbed && shiftMatchesLayout(group.layout, direction))
|
|
|
|
break;
|
2023-04-24 02:58:53 -07:00
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
if (group.layout != Hy3GroupLayout::Tabbed && group.children.size() == 2
|
|
|
|
&& std::find(group.children.begin(), group.children.end(), &node) != group.children.end())
|
|
|
|
{
|
2023-04-27 10:37:35 -07:00
|
|
|
group.layout = shiftIsVertical(direction) ? Hy3GroupLayout::SplitV : Hy3GroupLayout::SplitH;
|
|
|
|
} else {
|
|
|
|
// wrap the root group in another group
|
|
|
|
this->nodes.push_back({
|
2023-06-07 03:22:17 -07:00
|
|
|
.parent = break_parent,
|
|
|
|
.data = shiftIsVertical(direction) ? Hy3GroupLayout::SplitV : Hy3GroupLayout::SplitH,
|
|
|
|
.position = break_parent->position,
|
|
|
|
.size = break_parent->size,
|
|
|
|
.workspace_id = break_parent->workspace_id,
|
|
|
|
.layout = this,
|
2023-04-27 10:37:35 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
auto* newChild = &this->nodes.back();
|
|
|
|
Hy3Node::swapData(*break_parent, *newChild);
|
|
|
|
break_parent->data.as_group.children.push_back(newChild);
|
2023-05-26 20:37:05 -07:00
|
|
|
break_parent->data.as_group.group_focused = false;
|
|
|
|
break_parent->data.as_group.focused_child = newChild;
|
2023-04-27 10:37:35 -07:00
|
|
|
break_origin = newChild;
|
|
|
|
}
|
2023-04-24 02:58:53 -07:00
|
|
|
|
|
|
|
break;
|
2023-04-16 16:27:18 -07:00
|
|
|
} else {
|
|
|
|
break_origin = break_parent;
|
|
|
|
break_parent = break_origin->parent;
|
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
}
|
|
|
|
|
2023-04-16 16:27:18 -07:00
|
|
|
auto& parent_group = break_parent->data.as_group;
|
|
|
|
Hy3Node* target_group = break_parent;
|
|
|
|
std::list<Hy3Node*>::iterator insert;
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-04-16 16:27:18 -07:00
|
|
|
if (break_origin == parent_group.children.front() && !shiftIsForward(direction)) {
|
|
|
|
if (!shift) return nullptr;
|
|
|
|
insert = parent_group.children.begin();
|
|
|
|
} else if (break_origin == parent_group.children.back() && shiftIsForward(direction)) {
|
|
|
|
if (!shift) return nullptr;
|
|
|
|
insert = parent_group.children.end();
|
|
|
|
} else {
|
|
|
|
auto& group_data = target_group->data.as_group;
|
|
|
|
|
|
|
|
auto iter = std::find(group_data.children.begin(), group_data.children.end(), break_origin);
|
|
|
|
if (shiftIsForward(direction)) iter = std::next(iter);
|
|
|
|
else iter = std::prev(iter);
|
|
|
|
|
2023-05-10 00:42:53 -07:00
|
|
|
if ((*iter)->data.type == Hy3NodeData::Window || (shift && once && has_broken_once)) {
|
2023-04-16 16:27:18 -07:00
|
|
|
if (shift) {
|
|
|
|
if (target_group == node.parent) {
|
|
|
|
if (shiftIsForward(direction)) insert = std::next(iter);
|
|
|
|
else insert = iter;
|
|
|
|
} else {
|
|
|
|
if (shiftIsForward(direction)) insert = iter;
|
|
|
|
else insert = std::next(iter);
|
|
|
|
}
|
|
|
|
} else return *iter;
|
|
|
|
} else {
|
|
|
|
// break into neighboring groups until we hit a window
|
|
|
|
while (true) {
|
|
|
|
target_group = *iter;
|
|
|
|
auto& group_data = target_group->data.as_group;
|
|
|
|
|
|
|
|
if (group_data.children.empty()) return nullptr; // in theory this would never happen
|
|
|
|
|
2023-04-16 21:56:19 -07:00
|
|
|
bool shift_after = false;
|
|
|
|
|
2023-06-07 03:22:17 -07:00
|
|
|
if (!shift && group_data.layout == Hy3GroupLayout::Tabbed
|
|
|
|
&& group_data.focused_child != nullptr)
|
|
|
|
{
|
|
|
|
iter = std::find(
|
|
|
|
group_data.children.begin(),
|
|
|
|
group_data.children.end(),
|
|
|
|
group_data.focused_child
|
|
|
|
);
|
2023-05-31 22:54:27 -07:00
|
|
|
} else if (shiftMatchesLayout(group_data.layout, direction)) {
|
2023-06-07 03:22:17 -07:00
|
|
|
// if the group has the same orientation as movement pick the
|
|
|
|
// last/first child based on movement direction
|
2023-04-16 16:27:18 -07:00
|
|
|
if (shiftIsForward(direction)) iter = group_data.children.begin();
|
2023-04-16 21:56:19 -07:00
|
|
|
else {
|
|
|
|
iter = std::prev(group_data.children.end());
|
|
|
|
shift_after = true;
|
|
|
|
}
|
2023-04-16 16:27:18 -07:00
|
|
|
} else {
|
2023-05-26 20:37:05 -07:00
|
|
|
if (group_data.focused_child != nullptr) {
|
2023-06-07 03:22:17 -07:00
|
|
|
iter = std::find(
|
|
|
|
group_data.children.begin(),
|
|
|
|
group_data.children.end(),
|
|
|
|
group_data.focused_child
|
|
|
|
);
|
2023-04-16 21:56:19 -07:00
|
|
|
shift_after = true;
|
|
|
|
} else {
|
|
|
|
iter = group_data.children.begin();
|
|
|
|
}
|
2023-04-16 16:27:18 -07:00
|
|
|
}
|
|
|
|
|
2023-05-10 00:42:53 -07:00
|
|
|
if (shift && once) {
|
|
|
|
if (shift_after) insert = std::next(iter);
|
|
|
|
else insert = iter;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2023-04-16 16:27:18 -07:00
|
|
|
if ((*iter)->data.type == Hy3NodeData::Window) {
|
|
|
|
if (shift) {
|
2023-04-16 21:56:19 -07:00
|
|
|
if (shift_after) insert = std::next(iter);
|
2023-04-16 16:27:18 -07:00
|
|
|
else insert = iter;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
return *iter;
|
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-04-16 16:27:18 -07:00
|
|
|
}
|
2023-04-13 14:12:48 -07:00
|
|
|
|
2023-04-16 16:27:18 -07:00
|
|
|
auto& group_data = target_group->data.as_group;
|
|
|
|
|
|
|
|
if (target_group == node.parent) {
|
2023-06-07 03:22:17 -07:00
|
|
|
// nullptr is used as a signal value instead of removing it first to avoid
|
|
|
|
// iterator invalidation.
|
2023-04-16 16:27:18 -07:00
|
|
|
auto iter = std::find(group_data.children.begin(), group_data.children.end(), &node);
|
|
|
|
*iter = nullptr;
|
|
|
|
target_group->data.as_group.children.insert(insert, &node);
|
|
|
|
target_group->data.as_group.children.remove(nullptr);
|
|
|
|
target_group->recalcSizePosRecursive();
|
|
|
|
} else {
|
|
|
|
target_group->data.as_group.children.insert(insert, &node);
|
2023-04-16 21:56:19 -07:00
|
|
|
|
|
|
|
// must happen AFTER `insert` is used
|
2023-04-23 21:02:51 -07:00
|
|
|
auto* old_parent = node.removeFromParentRecursive();
|
2023-04-22 04:19:34 -07:00
|
|
|
node.parent = target_group;
|
2023-04-18 23:41:18 -07:00
|
|
|
node.size_ratio = 1.0;
|
|
|
|
|
2023-05-01 19:54:37 -07:00
|
|
|
if (old_parent != nullptr) old_parent->recalcSizePosRecursive();
|
2023-04-16 21:56:19 -07:00
|
|
|
target_group->recalcSizePosRecursive();
|
2023-04-19 02:07:47 -07:00
|
|
|
|
|
|
|
auto* target_parent = target_group->parent;
|
2023-04-23 21:02:51 -07:00
|
|
|
while (target_parent != nullptr && Hy3Node::swallowGroups(target_parent)) {
|
2023-04-19 02:07:47 -07:00
|
|
|
target_parent = target_parent->parent;
|
|
|
|
}
|
|
|
|
|
2023-05-31 01:31:22 -07:00
|
|
|
node.focus();
|
2023-04-22 04:14:36 -07:00
|
|
|
|
2023-04-19 02:07:47 -07:00
|
|
|
if (target_parent != target_group && target_parent != nullptr)
|
|
|
|
target_parent->recalcSizePosRecursive();
|
2023-04-13 14:12:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
2023-04-19 01:58:22 -07:00
|
|
|
|
2023-06-11 22:19:43 -07:00
|
|
|
void Hy3Layout::changeFocus(int workspace, FocusShift shift) {
|
2023-05-04 02:39:46 -07:00
|
|
|
auto* node = this->getWorkspaceFocusedNode(workspace);
|
|
|
|
if (node == nullptr) return;
|
2023-04-26 00:57:24 -07:00
|
|
|
|
2023-06-11 22:19:43 -07:00
|
|
|
switch (shift) {
|
|
|
|
case FocusShift::Bottom: goto bottom;
|
|
|
|
case FocusShift::Top:
|
|
|
|
while (node->parent != nullptr) {
|
|
|
|
node = node->parent;
|
2023-06-11 17:00:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
node->focus();
|
2023-06-11 22:19:43 -07:00
|
|
|
return;
|
|
|
|
case FocusShift::Raise:
|
|
|
|
if (node->parent == nullptr) goto bottom;
|
|
|
|
else {
|
|
|
|
node->parent->focus();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
case FocusShift::Lower:
|
|
|
|
if (node->data.type == Hy3NodeData::Group && node->data.as_group.focused_child != nullptr)
|
|
|
|
node->data.as_group.focused_child->focus();
|
|
|
|
return;
|
|
|
|
case FocusShift::Tab:
|
|
|
|
// make sure we go up at least one level
|
|
|
|
if (node->parent != nullptr) node = node->parent;
|
|
|
|
while (node->parent != nullptr) {
|
|
|
|
if (node->data.as_group.layout == Hy3GroupLayout::Tabbed) {
|
|
|
|
node->focus();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
node = node->parent;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
case FocusShift::TabNode:
|
|
|
|
// make sure we go up at least one level
|
|
|
|
if (node->parent != nullptr) node = node->parent;
|
|
|
|
while (node->parent != nullptr) {
|
|
|
|
if (node->parent->data.as_group.layout == Hy3GroupLayout::Tabbed) {
|
|
|
|
node->focus();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
node = node->parent;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bottom:
|
|
|
|
while (node->data.type == Hy3NodeData::Group && node->data.as_group.focused_child != nullptr) {
|
|
|
|
node = node->data.as_group.focused_child;
|
2023-04-26 00:57:24 -07:00
|
|
|
}
|
2023-06-11 22:19:43 -07:00
|
|
|
|
|
|
|
node->focus();
|
|
|
|
return;
|
2023-04-26 00:57:24 -07:00
|
|
|
}
|
|
|
|
|
2023-06-04 20:26:22 -07:00
|
|
|
Hy3Node* Hy3Node::findNodeForTabGroup(Hy3TabGroup& tab_group) {
|
|
|
|
if (this->data.type == Hy3NodeData::Group) {
|
2023-06-15 00:27:02 -07:00
|
|
|
if (this->hidden) return nullptr;
|
|
|
|
|
2023-06-04 20:26:22 -07:00
|
|
|
auto& group = this->data.as_group;
|
|
|
|
|
|
|
|
if (group.layout == Hy3GroupLayout::Tabbed && group.tab_bar == &tab_group) {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto& node: group.children) {
|
|
|
|
auto* r = node->findNodeForTabGroup(tab_group);
|
|
|
|
if (r != nullptr) return r;
|
|
|
|
}
|
|
|
|
} else return nullptr;
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-06-24 01:14:41 -07:00
|
|
|
Hy3Node* findTabBarAt(Hy3Node& node, Vector2D pos, Hy3Node** focused_node) {
|
|
|
|
// clang-format off
|
|
|
|
static const auto* gaps_in = &HyprlandAPI::getConfigValue(PHANDLE, "general:gaps_in")->intValue;
|
|
|
|
static const auto* gaps_out = &HyprlandAPI::getConfigValue(PHANDLE, "general:gaps_out")->intValue;
|
|
|
|
static const auto* tab_bar_height = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hy3:tabs:height")->intValue;
|
|
|
|
static const auto* tab_bar_padding = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hy3:tabs:padding")->intValue;
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
auto inset = *tab_bar_height + *tab_bar_padding;
|
|
|
|
|
|
|
|
if (node.parent == nullptr) {
|
|
|
|
inset += *gaps_out;
|
|
|
|
} else {
|
|
|
|
inset += *gaps_in;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (node.data.type == Hy3NodeData::Group) {
|
|
|
|
if (node.hidden) return nullptr;
|
|
|
|
// note: tab bar clicks ignore animations
|
|
|
|
if (node.position.x > pos.x || node.position.y > pos.y || node.position.x + node.size.x < pos.x
|
|
|
|
|| node.position.y + node.size.y < pos.y)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
if (node.data.as_group.layout == Hy3GroupLayout::Tabbed
|
|
|
|
&& node.data.as_group.tab_bar != nullptr)
|
|
|
|
{
|
|
|
|
if (pos.y < node.position.y + inset) {
|
|
|
|
auto& children = node.data.as_group.children;
|
|
|
|
auto& tab_bar = *node.data.as_group.tab_bar;
|
|
|
|
|
|
|
|
auto size = tab_bar.size.vec();
|
|
|
|
auto x = pos.x - tab_bar.pos.vec().x;
|
|
|
|
auto child_iter = children.begin();
|
|
|
|
|
|
|
|
for (auto& tab: tab_bar.bar.entries) {
|
|
|
|
if (child_iter == children.end()) break;
|
|
|
|
|
|
|
|
if (x > tab.offset.fl() * size.x && x < (tab.offset.fl() + tab.width.fl()) * size.x) {
|
|
|
|
*focused_node = *child_iter;
|
|
|
|
return &node;
|
|
|
|
}
|
|
|
|
|
|
|
|
child_iter = std::next(child_iter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (node.data.as_group.focused_child != nullptr) {
|
|
|
|
return findTabBarAt(*node.data.as_group.focused_child, pos, focused_node);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (auto child: node.data.as_group.children) {
|
|
|
|
if (findTabBarAt(*child, pos, focused_node)) return child;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-06-15 00:27:02 -07:00
|
|
|
void Hy3Layout::focusTab(
|
|
|
|
int workspace,
|
|
|
|
TabFocus target,
|
|
|
|
TabFocusMousePriority mouse,
|
|
|
|
bool wrap_scroll
|
|
|
|
) {
|
2023-06-04 20:26:22 -07:00
|
|
|
auto* node = this->getWorkspaceRootGroup(workspace);
|
|
|
|
if (node == nullptr) return;
|
|
|
|
|
2023-06-15 00:27:02 -07:00
|
|
|
Hy3Node* tab_node = nullptr;
|
|
|
|
Hy3Node* tab_focused_node;
|
2023-06-04 20:26:22 -07:00
|
|
|
|
2023-06-15 00:27:02 -07:00
|
|
|
if (target == TabFocus::MouseLocation || mouse != TabFocusMousePriority::Ignore) {
|
2023-06-24 01:14:41 -07:00
|
|
|
if (g_pCompositor->windowFloatingFromCursor() == nullptr) {
|
|
|
|
auto mouse_pos = g_pInputManager->getMouseCoordsInternal();
|
|
|
|
tab_node = findTabBarAt(*node, mouse_pos, &tab_focused_node);
|
|
|
|
if (tab_node != nullptr) goto hastab;
|
2023-06-15 00:27:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (target == TabFocus::MouseLocation || mouse == TabFocusMousePriority::Require) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tab_node == nullptr) {
|
|
|
|
tab_node = this->getWorkspaceFocusedNode(workspace);
|
|
|
|
if (tab_node == nullptr) return;
|
|
|
|
|
|
|
|
while (tab_node != nullptr && tab_node->data.as_group.layout != Hy3GroupLayout::Tabbed
|
|
|
|
&& tab_node->parent != nullptr)
|
|
|
|
tab_node = tab_node->parent;
|
|
|
|
|
|
|
|
if (tab_node == nullptr || tab_node->data.type != Hy3NodeData::Group
|
|
|
|
|| tab_node->data.as_group.layout != Hy3GroupLayout::Tabbed)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hastab:
|
|
|
|
if (target != TabFocus::MouseLocation) {
|
|
|
|
if (tab_node->data.as_group.focused_child == nullptr
|
|
|
|
|| tab_node->data.as_group.children.size() < 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto& children = tab_node->data.as_group.children;
|
|
|
|
auto node_iter
|
|
|
|
= std::find(children.begin(), children.end(), tab_node->data.as_group.focused_child);
|
|
|
|
if (node_iter == children.end()) return;
|
|
|
|
if (target == TabFocus::Left) {
|
|
|
|
if (node_iter == children.begin()) {
|
|
|
|
if (wrap_scroll) node_iter = std::prev(children.end());
|
|
|
|
else return;
|
|
|
|
} else node_iter = std::prev(node_iter);
|
|
|
|
|
|
|
|
tab_focused_node = *node_iter;
|
|
|
|
} else {
|
|
|
|
if (node_iter == std::prev(children.end())) {
|
|
|
|
if (wrap_scroll) node_iter = children.begin();
|
|
|
|
else return;
|
|
|
|
} else node_iter = std::next(node_iter);
|
|
|
|
|
|
|
|
tab_focused_node = *node_iter;
|
2023-06-04 20:26:22 -07:00
|
|
|
}
|
|
|
|
}
|
2023-06-15 00:27:02 -07:00
|
|
|
|
|
|
|
auto* focus = tab_focused_node;
|
|
|
|
while (focus->data.type == Hy3NodeData::Group && !focus->data.as_group.group_focused
|
|
|
|
&& focus->data.as_group.focused_child != nullptr)
|
|
|
|
focus = focus->data.as_group.focused_child;
|
|
|
|
|
|
|
|
focus->focus();
|
|
|
|
tab_node->recalcSizePosRecursive();
|
2023-06-04 20:26:22 -07:00
|
|
|
}
|
|
|
|
|
2023-04-26 00:57:24 -07:00
|
|
|
bool Hy3Layout::shouldRenderSelected(CWindow* window) {
|
|
|
|
if (window == nullptr) return false;
|
|
|
|
auto* root = this->getWorkspaceRootGroup(window->m_iWorkspaceID);
|
2023-05-26 20:37:05 -07:00
|
|
|
if (root == nullptr || root->data.as_group.focused_child == nullptr) return false;
|
2023-04-26 00:57:24 -07:00
|
|
|
auto* focused = root->getFocusedNode();
|
2023-06-21 21:39:41 -07:00
|
|
|
if (focused == nullptr
|
|
|
|
|| (focused->data.type == Hy3NodeData::Window
|
|
|
|
&& focused->data.as_window != g_pCompositor->m_pLastWindow))
|
|
|
|
return false;
|
2023-04-26 00:57:24 -07:00
|
|
|
|
|
|
|
switch (focused->data.type) {
|
2023-06-11 17:00:39 -07:00
|
|
|
case Hy3NodeData::Window: return focused->data.as_window == window;
|
2023-04-26 00:57:24 -07:00
|
|
|
case Hy3NodeData::Group:
|
|
|
|
auto* node = this->getNodeFromWindow(window);
|
|
|
|
if (node == nullptr) return false;
|
|
|
|
return focused->data.as_group.hasChild(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-30 23:23:46 -07:00
|
|
|
void Hy3Layout::renderHook(void*, std::any data) {
|
|
|
|
static bool rendering_normally = false;
|
|
|
|
static std::vector<Hy3TabGroup*> rendered_groups;
|
|
|
|
|
|
|
|
auto render_stage = std::any_cast<eRenderStage>(data);
|
|
|
|
|
|
|
|
switch (render_stage) {
|
|
|
|
case RENDER_PRE_WINDOWS:
|
|
|
|
rendering_normally = true;
|
|
|
|
rendered_groups.clear();
|
|
|
|
break;
|
|
|
|
case RENDER_POST_WINDOW:
|
|
|
|
if (!rendering_normally) break;
|
|
|
|
|
|
|
|
for (auto& entry: g_Hy3Layout->tab_groups) {
|
2023-06-07 03:22:17 -07:00
|
|
|
if (!entry.hidden && entry.target_window == g_pHyprOpenGL->m_pCurrentWindow
|
|
|
|
&& std::find(rendered_groups.begin(), rendered_groups.end(), &entry)
|
|
|
|
== rendered_groups.end())
|
|
|
|
{
|
2023-05-30 23:23:46 -07:00
|
|
|
entry.renderTabBar();
|
|
|
|
rendered_groups.push_back(&entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case RENDER_POST_WINDOWS:
|
|
|
|
rendering_normally = false;
|
|
|
|
|
|
|
|
for (auto& entry: g_Hy3Layout->tab_groups) {
|
2023-06-01 21:58:18 -07:00
|
|
|
if (!entry.hidden
|
2023-06-07 03:22:17 -07:00
|
|
|
&& entry.target_window->m_iMonitorID == g_pHyprOpenGL->m_RenderData.pMonitor->ID
|
|
|
|
&& std::find(rendered_groups.begin(), rendered_groups.end(), &entry)
|
|
|
|
== rendered_groups.end())
|
|
|
|
{
|
2023-05-30 23:23:46 -07:00
|
|
|
entry.renderTabBar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2023-06-07 03:22:17 -07:00
|
|
|
default: break;
|
2023-05-30 23:23:46 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-09 01:19:13 -07:00
|
|
|
void Hy3Layout::windowGroupUrgentHook(void* p, std::any data) {
|
|
|
|
CWindow* window = std::any_cast<CWindow*>(data);
|
|
|
|
if (window == nullptr) return;
|
|
|
|
window->m_bIsUrgent = true;
|
|
|
|
Hy3Layout::windowGroupUpdateRecursiveHook(p, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Hy3Layout::windowGroupUpdateRecursiveHook(void*, std::any data) {
|
2023-06-04 17:28:26 -07:00
|
|
|
CWindow* window = std::any_cast<CWindow*>(data);
|
|
|
|
if (window == nullptr) return;
|
|
|
|
auto* node = g_Hy3Layout->getNodeFromWindow(window);
|
|
|
|
|
2023-06-06 22:40:13 -07:00
|
|
|
// it is UB for `this` to be null
|
|
|
|
if (node == nullptr) return;
|
2023-06-04 17:28:26 -07:00
|
|
|
node->updateTabBarRecursive();
|
|
|
|
}
|
|
|
|
|
2023-05-30 23:23:46 -07:00
|
|
|
void Hy3Layout::tickHook(void*, std::any) {
|
|
|
|
auto& tab_groups = g_Hy3Layout->tab_groups;
|
|
|
|
auto entry = tab_groups.begin();
|
|
|
|
while (entry != tab_groups.end()) {
|
2023-05-31 23:40:54 -07:00
|
|
|
entry->tick();
|
2023-05-30 23:23:46 -07:00
|
|
|
if (entry->bar.destroy) tab_groups.erase(entry++);
|
|
|
|
else entry = std::next(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-19 01:58:22 -07:00
|
|
|
std::string Hy3Node::debugNode() {
|
|
|
|
std::stringstream buf;
|
2023-06-07 03:22:17 -07:00
|
|
|
std::string addr = "0x" + std::to_string((size_t) this);
|
2023-04-19 01:58:22 -07:00
|
|
|
switch (this->data.type) {
|
|
|
|
case Hy3NodeData::Window:
|
|
|
|
buf << "window(";
|
|
|
|
buf << std::hex << this;
|
|
|
|
buf << ") [hypr ";
|
|
|
|
buf << this->data.as_window;
|
2023-05-11 01:30:19 -07:00
|
|
|
buf << "] size ratio: ";
|
|
|
|
buf << this->size_ratio;
|
2023-04-19 01:58:22 -07:00
|
|
|
break;
|
|
|
|
case Hy3NodeData::Group:
|
|
|
|
buf << "group(";
|
|
|
|
buf << std::hex << this;
|
|
|
|
buf << ") [";
|
|
|
|
|
|
|
|
switch (this->data.as_group.layout) {
|
2023-06-07 03:22:17 -07:00
|
|
|
case Hy3GroupLayout::SplitH: buf << "splith"; break;
|
|
|
|
case Hy3GroupLayout::SplitV: buf << "splitv"; break;
|
|
|
|
case Hy3GroupLayout::Tabbed: buf << "tabs"; break;
|
2023-04-19 01:58:22 -07:00
|
|
|
}
|
|
|
|
|
2023-05-11 01:30:19 -07:00
|
|
|
buf << "] size ratio: ";
|
|
|
|
buf << this->size_ratio;
|
2023-04-19 01:58:22 -07:00
|
|
|
for (auto* child: this->data.as_group.children) {
|
|
|
|
buf << "\n|-";
|
2023-05-11 01:30:19 -07:00
|
|
|
if (child == nullptr) {
|
|
|
|
buf << "nullptr";
|
|
|
|
} else {
|
|
|
|
// this is terrible
|
|
|
|
for (char c: child->debugNode()) {
|
|
|
|
buf << c;
|
|
|
|
if (c == '\n') buf << " ";
|
|
|
|
}
|
2023-04-19 01:58:22 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.str();
|
|
|
|
}
|