aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands
diff options
context:
space:
mode:
authorLibravatar Pedro CĂ´rte-Real <pedro@pedrocr.net>2019-06-28 22:21:20 +0100
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-07-14 11:13:55 -0400
commite3a3917d3afb66fc8ba3eebb7aed603d3b7ce844 (patch)
tree6af979d7b1c1aeed9d88f168a9a0d1e1f7e663c0 /sway/commands
parentLayout correctly with several new windows (diff)
downloadsway-e3a3917d3afb66fc8ba3eebb7aed603d3b7ce844.tar.gz
sway-e3a3917d3afb66fc8ba3eebb7aed603d3b7ce844.tar.zst
sway-e3a3917d3afb66fc8ba3eebb7aed603d3b7ce844.zip
Layout tiled using a width/height fraction
Instead of using container->width/height as both the input and output of the layout calculation have container->width_fraction/height_fraction as the share of the parent this container occupies and calculate the layout based on that. That way the container arrangement can always be recalculated even if width/height have been altered by things like fullscreen. To do this several parts are reworked: - The vertical and horizontal arrangement code is ajusted to work with fractions instead of directly with width/height - The resize code is then changed to manipulate the fractions when working on tiled containers. - Finally the places that manipulated width/height are adjusted to match. The adjusted parts are container split, swap, and the input seat code. It's possible that some parts of the code are now adjusting width and height only for those to be immediately recalculated. That's harmless and since non-tiled containers are still sized with width/height directly it may avoid breaking other corner cases. Fixes #3547 Fixes #4297
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/move.c7
-rw-r--r--sway/commands/resize.c27
-rw-r--r--sway/commands/swap.c6
3 files changed, 29 insertions, 11 deletions
diff --git a/sway/commands/move.c b/sway/commands/move.c
index 6fd66f28..2a1993ae 100644
--- a/sway/commands/move.c
+++ b/sway/commands/move.c
@@ -131,6 +131,7 @@ static void container_move_to_container_from_direction(
131 container, index); 131 container, index);
132 } 132 }
133 container->width = container->height = 0; 133 container->width = container->height = 0;
134 container->width_fraction = container->height_fraction = 0;
134 } 135 }
135 return; 136 return;
136 } 137 }
@@ -142,6 +143,7 @@ static void container_move_to_container_from_direction(
142 0 : destination->children->length; 143 0 : destination->children->length;
143 container_insert_child(destination, container, index); 144 container_insert_child(destination, container, index);
144 container->width = container->height = 0; 145 container->width = container->height = 0;
146 container->width_fraction = container->height_fraction = 0;
145 return; 147 return;
146 } 148 }
147 149
@@ -163,6 +165,7 @@ static void container_move_to_workspace_from_direction(
163 struct sway_container *container, struct sway_workspace *workspace, 165 struct sway_container *container, struct sway_workspace *workspace,
164 enum wlr_direction move_dir) { 166 enum wlr_direction move_dir) {
165 container->width = container->height = 0; 167 container->width = container->height = 0;
168 container->width_fraction = container->height_fraction = 0;
166 169
167 if (is_parallel(workspace->layout, move_dir)) { 170 if (is_parallel(workspace->layout, move_dir)) {
168 sway_log(SWAY_DEBUG, "Reparenting container (parallel)"); 171 sway_log(SWAY_DEBUG, "Reparenting container (parallel)");
@@ -206,7 +209,7 @@ static void container_move_to_workspace(struct sway_container *container,
206 } else { 209 } else {
207 container_detach(container); 210 container_detach(container);
208 container->width = container->height = 0; 211 container->width = container->height = 0;
209 container->saved_width = container->saved_height = 0; 212 container->width_fraction = container->height_fraction = 0;
210 workspace_add_tiling(workspace, container); 213 workspace_add_tiling(workspace, container);
211 container_update_representation(container); 214 container_update_representation(container);
212 } 215 }
@@ -234,7 +237,7 @@ static void container_move_to_container(struct sway_container *container,
234 container_detach(container); 237 container_detach(container);
235 container_remove_gaps(container); 238 container_remove_gaps(container);
236 container->width = container->height = 0; 239 container->width = container->height = 0;
237 container->saved_width = container->saved_height = 0; 240 container->width_fraction = container->height_fraction = 0;
238 241
239 if (destination->view) { 242 if (destination->view) {
240 container_add_sibling(destination, container, 1); 243 container_add_sibling(destination, container, 1);
diff --git a/sway/commands/resize.c b/sway/commands/resize.c
index 440937f0..28f2552e 100644
--- a/sway/commands/resize.c
+++ b/sway/commands/resize.c
@@ -174,10 +174,14 @@ void container_resize_tiled(struct sway_container *con,
174 if (prev && prev->width - sibling_amount < MIN_SANE_W) { 174 if (prev && prev->width - sibling_amount < MIN_SANE_W) {
175 return; 175 return;
176 } 176 }
177 con->width += amount; 177
178 next->width -= sibling_amount; 178 con->width_fraction +=
179 ((double)amount / con->width) * con->width_fraction;
180 next->width_fraction -=
181 ((double)sibling_amount / con->width) * con->width_fraction;
179 if (prev) { 182 if (prev) {
180 prev->width -= sibling_amount; 183 prev->width_fraction -=
184 ((double)sibling_amount / con->width) * con->width_fraction;
181 } 185 }
182 } else { 186 } else {
183 if (con->height + amount < MIN_SANE_H) { 187 if (con->height + amount < MIN_SANE_H) {
@@ -189,10 +193,14 @@ void container_resize_tiled(struct sway_container *con,
189 if (prev && prev->height - sibling_amount < MIN_SANE_H) { 193 if (prev && prev->height - sibling_amount < MIN_SANE_H) {
190 return; 194 return;
191 } 195 }
192 con->height += amount; 196
193 next->height -= sibling_amount; 197 con->height_fraction +=
198 ((double)amount / con->height) * con->height_fraction;
199 next->height_fraction -=
200 ((double)sibling_amount / con->height) * con->height_fraction;
194 if (prev) { 201 if (prev) {
195 prev->height -= sibling_amount; 202 prev->height_fraction -=
203 ((double)sibling_amount / con->height) * con->height_fraction;
196 } 204 }
197 } 205 }
198 206
@@ -280,10 +288,11 @@ static struct cmd_results *resize_adjust_tiled(uint32_t axis,
280 } 288 }
281 } 289 }
282 290
283 double old_width = current->width; 291 double old_width = current->width_fraction;
284 double old_height = current->height; 292 double old_height = current->height_fraction;
285 container_resize_tiled(current, axis, amount->amount); 293 container_resize_tiled(current, axis, amount->amount);
286 if (current->width == old_width && current->height == old_height) { 294 if (current->width_fraction == old_width &&
295 current->height_fraction == old_height) {
287 return cmd_results_new(CMD_INVALID, "Cannot resize any further"); 296 return cmd_results_new(CMD_INVALID, "Cannot resize any further");
288 } 297 }
289 return cmd_results_new(CMD_SUCCESS, NULL); 298 return cmd_results_new(CMD_SUCCESS, NULL);
diff --git a/sway/commands/swap.c b/sway/commands/swap.c
index f27aa7ed..a4a4108d 100644
--- a/sway/commands/swap.c
+++ b/sway/commands/swap.c
@@ -20,6 +20,8 @@ static void swap_places(struct sway_container *con1,
20 temp->y = con1->y; 20 temp->y = con1->y;
21 temp->width = con1->width; 21 temp->width = con1->width;
22 temp->height = con1->height; 22 temp->height = con1->height;
23 temp->width_fraction = con1->width_fraction;
24 temp->height_fraction = con1->height_fraction;
23 temp->parent = con1->parent; 25 temp->parent = con1->parent;
24 temp->workspace = con1->workspace; 26 temp->workspace = con1->workspace;
25 27
@@ -27,11 +29,15 @@ static void swap_places(struct sway_container *con1,
27 con1->y = con2->y; 29 con1->y = con2->y;
28 con1->width = con2->width; 30 con1->width = con2->width;
29 con1->height = con2->height; 31 con1->height = con2->height;
32 con1->width_fraction = con2->width_fraction;
33 con1->height_fraction = con2->height_fraction;
30 34
31 con2->x = temp->x; 35 con2->x = temp->x;
32 con2->y = temp->y; 36 con2->y = temp->y;
33 con2->width = temp->width; 37 con2->width = temp->width;
34 con2->height = temp->height; 38 con2->height = temp->height;
39 con2->width_fraction = temp->width_fraction;
40 con2->height_fraction = temp->height_fraction;
35 41
36 int temp_index = container_sibling_index(con1); 42 int temp_index = container_sibling_index(con1);
37 if (con2->parent) { 43 if (con2->parent) {