aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/arrange.c107
-rw-r--r--sway/tree/layout.c4
-rw-r--r--sway/tree/view.c90
-rw-r--r--sway/tree/workspace.c6
4 files changed, 92 insertions, 115 deletions
diff --git a/sway/tree/arrange.c b/sway/tree/arrange.c
index d8b3aec1..cf7ce61c 100644
--- a/sway/tree/arrange.c
+++ b/sway/tree/arrange.c
@@ -22,48 +22,46 @@ static void apply_horiz_layout(struct sway_container *parent) {
return;
}
size_t parent_offset = 0;
- if (parent->parent->pending.layout == L_TABBED) {
+ if (parent->parent->layout == L_TABBED) {
parent_offset = container_titlebar_height();
- } else if (parent->parent->pending.layout == L_STACKED) {
+ } else if (parent->parent->layout == L_STACKED) {
parent_offset = container_titlebar_height() *
parent->parent->children->length;
}
- size_t parent_height = parent->pending.swayc_height - parent_offset;
+ size_t parent_height = parent->height - parent_offset;
// Calculate total width of children
double total_width = 0;
for (size_t i = 0; i < num_children; ++i) {
struct sway_container *child = parent->children->items[i];
- if (child->pending.swayc_width <= 0) {
+ if (child->width <= 0) {
if (num_children > 1) {
- child->pending.swayc_width =
- parent->pending.swayc_width / (num_children - 1);
+ child->width = parent->width / (num_children - 1);
} else {
- child->pending.swayc_width = parent->pending.swayc_width;
+ child->width = parent->width;
}
}
- total_width += child->pending.swayc_width;
+ total_width += child->width;
}
- double scale = parent->pending.swayc_width / total_width;
+ double scale = parent->width / total_width;
// Resize windows
wlr_log(L_DEBUG, "Arranging %p horizontally", parent);
- double child_x = parent->pending.swayc_x;
+ double child_x = parent->x;
for (size_t i = 0; i < num_children; ++i) {
struct sway_container *child = parent->children->items[i];
wlr_log(L_DEBUG,
"Calculating arrangement for %p:%d (will scale %f by %f)",
- child, child->type, child->pending.swayc_width, scale);
- child->pending.swayc_x = child_x;
- child->pending.swayc_y = parent->pending.swayc_y + parent_offset;
- child->pending.swayc_width = floor(child->pending.swayc_width * scale);
- child->pending.swayc_height = parent_height;
- child_x += child->pending.swayc_width;
+ child, child->type, child->width, scale);
+ child->x = child_x;
+ child->y = parent->y + parent_offset;
+ child->width = floor(child->width * scale);
+ child->height = parent_height;
+ child_x += child->width;
// Make last child use remaining width of parent
if (i == num_children - 1) {
- child->pending.swayc_width = parent->pending.swayc_x +
- parent->pending.swayc_width - child->pending.swayc_x;
+ child->width = parent->x + parent->width - child->x;
}
}
}
@@ -74,49 +72,47 @@ static void apply_vert_layout(struct sway_container *parent) {
return;
}
size_t parent_offset = 0;
- if (parent->parent->pending.layout == L_TABBED) {
+ if (parent->parent->layout == L_TABBED) {
parent_offset = container_titlebar_height();
- } else if (parent->parent->pending.layout == L_STACKED) {
+ } else if (parent->parent->layout == L_STACKED) {
parent_offset =
container_titlebar_height() * parent->parent->children->length;
}
- size_t parent_height = parent->pending.swayc_height - parent_offset;
+ size_t parent_height = parent->height - parent_offset;
// Calculate total height of children
double total_height = 0;
for (size_t i = 0; i < num_children; ++i) {
struct sway_container *child = parent->children->items[i];
- if (child->pending.swayc_height <= 0) {
+ if (child->height <= 0) {
if (num_children > 1) {
- child->pending.swayc_height =
- parent_height / (num_children - 1);
+ child->height = parent_height / (num_children - 1);
} else {
- child->pending.swayc_height = parent_height;
+ child->height = parent_height;
}
}
- total_height += child->pending.swayc_height;
+ total_height += child->height;
}
double scale = parent_height / total_height;
// Resize
wlr_log(L_DEBUG, "Arranging %p vertically", parent);
- double child_y = parent->pending.swayc_y + parent_offset;
+ double child_y = parent->y + parent_offset;
for (size_t i = 0; i < num_children; ++i) {
struct sway_container *child = parent->children->items[i];
wlr_log(L_DEBUG,
"Calculating arrangement for %p:%d (will scale %f by %f)",
- child, child->type, child->pending.swayc_height, scale);
- child->pending.swayc_x = parent->pending.swayc_x;
- child->pending.swayc_y = child_y;
- child->pending.swayc_width = parent->pending.swayc_width;
- child->pending.swayc_height =
- floor(child->pending.swayc_height * scale);
- child_y += child->pending.swayc_height;
+ child, child->type, child->height, scale);
+ child->x = parent->x;
+ child->y = child_y;
+ child->width = parent->width;
+ child->height = floor(child->height * scale);
+ child_y += child->height;
// Make last child use remaining height of parent
if (i == num_children - 1) {
- child->pending.swayc_height = parent->pending.swayc_y +
- parent_offset + parent_height - child->pending.swayc_y;
+ child->height =
+ parent->y + parent_offset + parent_height - child->y;
}
}
}
@@ -126,19 +122,19 @@ static void apply_tabbed_or_stacked_layout(struct sway_container *parent) {
return;
}
size_t parent_offset = 0;
- if (parent->parent->pending.layout == L_TABBED) {
+ if (parent->parent->layout == L_TABBED) {
parent_offset = container_titlebar_height();
- } else if (parent->parent->pending.layout == L_STACKED) {
+ } else if (parent->parent->layout == L_STACKED) {
parent_offset =
container_titlebar_height() * parent->parent->children->length;
}
- size_t parent_height = parent->pending.swayc_height - parent_offset;
+ size_t parent_height = parent->height - parent_offset;
for (int i = 0; i < parent->children->length; ++i) {
struct sway_container *child = parent->children->items[i];
- child->pending.swayc_x = parent->pending.swayc_x;
- child->pending.swayc_y = parent->pending.swayc_y + parent_offset;
- child->pending.swayc_width = parent->pending.swayc_width;
- child->pending.swayc_height = parent_height;
+ child->x = parent->x;
+ child->y = parent->y + parent_offset;
+ child->width = parent->width;
+ child->height = parent_height;
}
}
@@ -148,11 +144,10 @@ static void _arrange_children_of(struct sway_container *parent,
return;
}
wlr_log(L_DEBUG, "Arranging layout for %p %s %fx%f+%f,%f", parent,
- parent->name, parent->pending.swayc_width, parent->pending.swayc_height,
- parent->pending.swayc_x, parent->pending.swayc_y);
+ parent->name, parent->width, parent->height, parent->x, parent->y);
// Calculate x, y, width and height of children
- switch (parent->pending.layout) {
+ switch (parent->layout) {
case L_HORIZ:
apply_horiz_layout(parent);
break;
@@ -191,13 +186,13 @@ static void _arrange_workspace(struct sway_container *workspace,
struct wlr_box *area = &output->sway_output->usable_area;
wlr_log(L_DEBUG, "Usable area for ws: %dx%d@%d,%d",
area->width, area->height, area->x, area->y);
- workspace->pending.swayc_width = area->width;
- workspace->pending.swayc_height = area->height;
- workspace->pending.swayc_x = output->x + area->x;
- workspace->pending.swayc_y = output->y + area->y;
+ workspace->width = area->width;
+ workspace->height = area->height;
+ workspace->x = output->x + area->x;
+ workspace->y = output->y + area->y;
transaction_add_container(transaction, workspace);
wlr_log(L_DEBUG, "Arranging workspace '%s' at %f, %f", workspace->name,
- workspace->pending.swayc_x, workspace->pending.swayc_y);
+ workspace->x, workspace->y);
_arrange_children_of(workspace, transaction);
}
@@ -213,13 +208,9 @@ static void _arrange_output(struct sway_container *output,
output->y = output_box->y;
output->width = output_box->width;
output->height = output_box->height;
- output->pending.swayc_x = output_box->x;
- output->pending.swayc_y = output_box->y;
- output->pending.swayc_width = output_box->width;
- output->pending.swayc_height = output_box->height;
transaction_add_container(transaction, output);
wlr_log(L_DEBUG, "Arranging output '%s' at %f,%f",
- output->name, output->pending.swayc_x, output->pending.swayc_y);
+ output->name, output->x, output->y);
for (int i = 0; i < output->children->length; ++i) {
struct sway_container *workspace = output->children->items[i];
_arrange_workspace(workspace, transaction);
@@ -238,10 +229,6 @@ static void _arrange_root(struct sway_transaction *transaction) {
root_container.y = layout_box->y;
root_container.width = layout_box->width;
root_container.height = layout_box->height;
- root_container.pending.swayc_x = layout_box->x;
- root_container.pending.swayc_y = layout_box->y;
- root_container.pending.swayc_width = layout_box->width;
- root_container.pending.swayc_height = layout_box->height;
transaction_add_container(transaction, &root_container);
for (int i = 0; i < root_container.children->length; ++i) {
struct sway_container *output = root_container.children->items[i];
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
index 3bba049a..6d4cd088 100644
--- a/sway/tree/layout.c
+++ b/sway/tree/layout.c
@@ -915,10 +915,10 @@ void container_recursive_resize(struct sway_container *container,
bool layout_match = true;
wlr_log(L_DEBUG, "Resizing %p with amount: %f", container, amount);
if (edge == RESIZE_EDGE_LEFT || edge == RESIZE_EDGE_RIGHT) {
- container->pending.swayc_width += amount;
+ container->width += amount;
layout_match = container->layout == L_HORIZ;
} else if (edge == RESIZE_EDGE_TOP || edge == RESIZE_EDGE_BOTTOM) {
- container->pending.swayc_height += amount;
+ container->height += amount;
layout_match = container->layout == L_VERT;
}
if (container->children) {
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 40fe2740..dbf803c6 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -187,23 +187,23 @@ void view_autoconfigure(struct sway_view *view) {
}
}
- struct sway_container_state *state = &view->swayc->pending;
+ struct sway_container *con = view->swayc;
- state->border_top = state->border_bottom = true;
- state->border_left = state->border_right = true;
+ view->border_top = view->border_bottom = true;
+ view->border_left = view->border_right = true;
if (config->hide_edge_borders == E_BOTH
|| config->hide_edge_borders == E_VERTICAL
|| (config->hide_edge_borders == E_SMART && !other_views)) {
- state->border_left = state->swayc_x != ws->x;
- int right_x = state->swayc_x + state->swayc_width;
- state->border_right = right_x != ws->x + ws->width;
+ view->border_left = con->x != ws->x;
+ int right_x = con->x + con->width;
+ view->border_right = right_x != ws->x + ws->width;
}
if (config->hide_edge_borders == E_BOTH
|| config->hide_edge_borders == E_HORIZONTAL
|| (config->hide_edge_borders == E_SMART && !other_views)) {
- state->border_top = state->swayc_y != ws->y;
- int bottom_y = state->swayc_y + state->swayc_height;
- state->border_bottom = bottom_y != ws->y + ws->height;
+ view->border_top = con->y != ws->y;
+ int bottom_y = con->y + con->height;
+ view->border_bottom = bottom_y != ws->y + ws->height;
}
double x, y, width, height;
@@ -213,54 +213,53 @@ void view_autoconfigure(struct sway_view *view) {
// In a tabbed or stacked container, the swayc's y is the top of the title
// area. We have to offset the surface y by the height of the title bar, and
// disable any top border because we'll always have the title bar.
- if (view->swayc->parent->pending.layout == L_TABBED) {
+ if (con->parent->layout == L_TABBED) {
y_offset = container_titlebar_height();
- state->border_top = false;
- } else if (view->swayc->parent->pending.layout == L_STACKED) {
- y_offset = container_titlebar_height()
- * view->swayc->parent->children->length;
+ view->border_top = false;
+ } else if (con->parent->layout == L_STACKED) {
+ y_offset = container_titlebar_height() * con->parent->children->length;
view->border_top = false;
}
- switch (state->border) {
+ switch (view->border) {
case B_NONE:
- x = state->swayc_x;
- y = state->swayc_y + y_offset;
- width = state->swayc_width;
- height = state->swayc_height - y_offset;
+ x = con->x;
+ y = con->y + y_offset;
+ width = con->width;
+ height = con->height - y_offset;
break;
case B_PIXEL:
- x = state->swayc_x + state->border_thickness * state->border_left;
- y = state->swayc_y + state->border_thickness * state->border_top + y_offset;
- width = state->swayc_width
- - state->border_thickness * state->border_left
- - state->border_thickness * state->border_right;
- height = state->swayc_height - y_offset
- - state->border_thickness * state->border_top
- - state->border_thickness * state->border_bottom;
+ x = con->x + view->border_thickness * view->border_left;
+ y = con->y + view->border_thickness * view->border_top + y_offset;
+ width = con->width
+ - view->border_thickness * view->border_left
+ - view->border_thickness * view->border_right;
+ height = con->height - y_offset
+ - view->border_thickness * view->border_top
+ - view->border_thickness * view->border_bottom;
break;
case B_NORMAL:
// Height is: 1px border + 3px pad + title height + 3px pad + 1px border
- x = state->swayc_x + state->border_thickness * state->border_left;
- width = state->swayc_width
- - state->border_thickness * state->border_left
- - state->border_thickness * state->border_right;
+ x = con->x + view->border_thickness * view->border_left;
+ width = con->width
+ - view->border_thickness * view->border_left
+ - view->border_thickness * view->border_right;
if (y_offset) {
- y = state->swayc_y + y_offset;
- height = state->swayc_height - y_offset
- - state->border_thickness * state->border_bottom;
+ y = con->y + y_offset;
+ height = con->height - y_offset
+ - view->border_thickness * view->border_bottom;
} else {
- y = state->swayc_y + container_titlebar_height();
- height = state->swayc_height - container_titlebar_height()
- - state->border_thickness * state->border_bottom;
+ y = con->y + container_titlebar_height();
+ height = con->height - container_titlebar_height()
+ - view->border_thickness * view->border_bottom;
}
break;
}
- state->view_x = x;
- state->view_y = y;
- state->view_width = width;
- state->view_height = height;
+ view->x = x;
+ view->y = y;
+ view->width = width;
+ view->height = height;
}
void view_set_activated(struct sway_view *view, bool activated) {
@@ -319,9 +318,8 @@ void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen) {
view_configure(view, view->saved_x, view->saved_y,
view->saved_width, view->saved_height);
} else {
- view->swayc->width = view->swayc->saved_width;
- view->swayc->height = view->swayc->saved_height;
- view_autoconfigure(view);
+ view->swayc->width = view->swayc->saved_width;
+ view->swayc->height = view->swayc->saved_height;
}
}
}
@@ -508,8 +506,6 @@ void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) {
view->swayc = cont;
view->border = config->border;
view->border_thickness = config->border_thickness;
- view->swayc->pending.border = config->border;
- view->swayc->pending.border_thickness = config->border_thickness;
view_init_subsurfaces(view, wlr_surface);
wl_signal_add(&wlr_surface->events.new_subsurface,
@@ -977,7 +973,7 @@ bool view_is_visible(struct sway_view *view) {
}
// Check the workspace is visible
if (!is_sticky) {
- return workspace_is_visible(workspace);
+ return workspace_is_visible(workspace);
}
return true;
}
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index ad581a96..9ba210fd 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -60,12 +60,6 @@ struct sway_container *workspace_create(struct sway_container *output,
workspace->prev_layout = L_NONE;
workspace->layout = container_get_default_layout(output);
- workspace->pending.swayc_x = workspace->x;
- workspace->pending.swayc_y = workspace->y;
- workspace->pending.swayc_width = workspace->width;
- workspace->pending.swayc_height = workspace->height;
- workspace->pending.layout = workspace->layout;
-
struct sway_workspace *swayws = calloc(1, sizeof(struct sway_workspace));
if (!swayws) {
return NULL;