sway/sway/input
Ryan Dwyer 2024f1da72 Resize only current and immediate siblings rather than all siblings
For example, create layout V[view view view] and resize the leftmost
view using mod+rightclick. Previously, the edge between view 2 and 3
would be adjusted as well. Now this edge will remain constant, which
matches the behaviour of i3.

To do this operation correctly, the resize tiling seatop now keeps track
of two containers, as the container that resizes horizontally will be a
different container to the one which resizes vertically (one will be an
ancestor). The tiling resize seatop now figures out these containers
during the start of the operation and keeps references to them in the
event. A new function container_find_resize_parent has been introduced
to do this. This function is also used by the resize command.

During cursor motion, the seatop logic is similar to before, but now has
to choose the correct container to resize.

In resize.c, container_resize_tiled and resize_tiled have been merged
into one. One of them originally did nothing except pass the values
through to the other.

container_resize_tiled now takes a simplified approach where it just
finds the immediate siblings on either side and resizes them without
worrying about the others. The parellel_coord and parallel_size
functions are no longer needed and have been removed.
2019-01-15 08:01:21 +10:00
..
cursor.c Merge pull request #3343 from RedSoxFan/seat-cursor-buttons-improved 2019-01-13 20:40:42 -05:00
input-manager.c reload: reset input configs 2019-01-09 11:24:15 -05:00
keyboard.c Disarm key repeat on reload 2019-01-14 20:15:23 +01:00
seat.c Disarm key repeat on reload 2019-01-14 20:15:23 +01:00
seatop_down.c Refactor seat operations to use an interface 2019-01-10 22:04:42 +10:00
seatop_move_floating.c Refactor seat operations to use an interface 2019-01-10 22:04:42 +10:00
seatop_move_tiling.c Refactor seat operations to use an interface 2019-01-10 22:04:42 +10:00
seatop_resize_floating.c Refactor seat operations to use an interface 2019-01-10 22:04:42 +10:00
seatop_resize_tiling.c Resize only current and immediate siblings rather than all siblings 2019-01-15 08:01:21 +10:00