aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/container.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-11 21:34:21 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-09-11 21:34:21 +1000
commit8bb40c24c7b045df0d43e9f22c096d1473f6f9f6 (patch)
tree0c4dbac1173f92337e2cff63d45c7d8fe7a3557f /sway/tree/container.c
parentIntroduce tiling_drag directive (diff)
downloadsway-8bb40c24c7b045df0d43e9f22c096d1473f6f9f6.tar.gz
sway-8bb40c24c7b045df0d43e9f22c096d1473f6f9f6.tar.zst
sway-8bb40c24c7b045df0d43e9f22c096d1473f6f9f6.zip
Implement tiling drag
Hold floating_modifier and drag a tiling view to a new location.
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r--sway/tree/container.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 0a69f8d5..ff10c1ab 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -835,8 +835,14 @@ void container_end_mouse_operation(struct sway_container *container) {
835 struct sway_seat *seat; 835 struct sway_seat *seat;
836 wl_list_for_each(seat, &input_manager->seats, link) { 836 wl_list_for_each(seat, &input_manager->seats, link) {
837 if (seat->op_container == container) { 837 if (seat->op_container == container) {
838 seat->op_target_node = NULL; // ensure tiling move doesn't apply
838 seat_end_mouse_operation(seat); 839 seat_end_mouse_operation(seat);
839 } 840 }
841 // If the user is doing a tiling drag over this container,
842 // keep the operation active but unset the target container.
843 if (seat->op_target_node == &container->node) {
844 seat->op_target_node = NULL;
845 }
840 } 846 }
841} 847}
842 848
@@ -1086,13 +1092,13 @@ void container_insert_child(struct sway_container *parent,
1086} 1092}
1087 1093
1088void container_add_sibling(struct sway_container *fixed, 1094void container_add_sibling(struct sway_container *fixed,
1089 struct sway_container *active) { 1095 struct sway_container *active, int side) {
1090 if (active->workspace) { 1096 if (active->workspace) {
1091 container_detach(active); 1097 container_detach(active);
1092 } 1098 }
1093 list_t *siblings = container_get_siblings(fixed); 1099 list_t *siblings = container_get_siblings(fixed);
1094 int index = list_find(siblings, fixed); 1100 int index = list_find(siblings, fixed);
1095 list_insert(siblings, index + 1, active); 1101 list_insert(siblings, index + side, active);
1096 active->parent = fixed->parent; 1102 active->parent = fixed->parent;
1097 active->workspace = fixed->workspace; 1103 active->workspace = fixed->workspace;
1098 container_for_each_child(active, set_workspace, NULL); 1104 container_for_each_child(active, set_workspace, NULL);
@@ -1145,7 +1151,7 @@ void container_detach(struct sway_container *child) {
1145 1151
1146void container_replace(struct sway_container *container, 1152void container_replace(struct sway_container *container,
1147 struct sway_container *replacement) { 1153 struct sway_container *replacement) {
1148 container_add_sibling(container, replacement); 1154 container_add_sibling(container, replacement, 1);
1149 container_detach(container); 1155 container_detach(container);
1150} 1156}
1151 1157