aboutsummaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-15 21:06:24 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-15 21:06:24 +1000
commit26278b694c5eeff38512cfe8156567718db73c65 (patch)
tree7c7a5226543817d6c723a9b698458934ee905735 /sway
parentMerge pull request #2831 from swaywm/move-output-docs (diff)
downloadsway-26278b694c5eeff38512cfe8156567718db73c65.tar.gz
sway-26278b694c5eeff38512cfe8156567718db73c65.tar.zst
sway-26278b694c5eeff38512cfe8156567718db73c65.zip
Introduce seat_set_raw_focus and remove notify argument from seat_set_focus_warp
This introduces seat_set_raw_focus: a function that manipulates the focus stack without doing any other behaviour whatsoever. There are a few places where this is useful, such as where we set focus_inactive followed by another call to set the real focus again. With this change, the notify argument to seat_set_focus_warp is also removed as these cases now use the raw function instead. A bonus of this is we are no longer emitting window::focus IPC events when setting focus_inactive, nor are we sending focus/unfocus events to the surface. This also fixes the following: * When running `move workspace to output <name>` and moving the last workspace from the source output, the workspace::focus IPC event is no longer emitted for the newly created workspace. * When splitting the currently focused container, unfocus/focus events will not be sent to the surface when giving focus_inactive to the newly created parent, and window::focus events will not be emitted.
Diffstat (limited to 'sway')
-rw-r--r--sway/commands/move.c6
-rw-r--r--sway/commands/swap.c4
-rw-r--r--sway/input/cursor.c6
-rw-r--r--sway/input/seat.c40
-rw-r--r--sway/tree/container.c4
5 files changed, 28 insertions, 32 deletions
diff --git a/sway/commands/move.c b/sway/commands/move.c
index fc2f1cc1..215ffe27 100644
--- a/sway/commands/move.c
+++ b/sway/commands/move.c
@@ -543,7 +543,7 @@ static struct cmd_results *cmd_move_container(int argc, char **argv) {
543 if (new_output_last_ws && new_output_last_ws != new_workspace) { 543 if (new_output_last_ws && new_output_last_ws != new_workspace) {
544 struct sway_node *new_output_last_focus = 544 struct sway_node *new_output_last_focus =
545 seat_get_focus_inactive(seat, &new_output_last_ws->node); 545 seat_get_focus_inactive(seat, &new_output_last_ws->node);
546 seat_set_focus_warp(seat, new_output_last_focus, false, false); 546 seat_set_raw_focus(seat, new_output_last_focus);
547 } 547 }
548 548
549 // restore focus 549 // restore focus
@@ -556,7 +556,7 @@ static struct cmd_results *cmd_move_container(int argc, char **argv) {
556 focus = seat_get_focus_inactive(seat, &old_ws->node); 556 focus = seat_get_focus_inactive(seat, &old_ws->node);
557 } 557 }
558 } 558 }
559 seat_set_focus_warp(seat, focus, true, false); 559 seat_set_focus(seat, focus);
560 560
561 // clean-up, destroying parents if the container was the last child 561 // clean-up, destroying parents if the container was the last child
562 if (old_parent) { 562 if (old_parent) {
@@ -593,7 +593,7 @@ static void workspace_move_to_output(struct sway_workspace *workspace,
593 char *ws_name = workspace_next_name(old_output->wlr_output->name); 593 char *ws_name = workspace_next_name(old_output->wlr_output->name);
594 struct sway_workspace *ws = workspace_create(old_output, ws_name); 594 struct sway_workspace *ws = workspace_create(old_output, ws_name);
595 free(ws_name); 595 free(ws_name);
596 seat_set_focus_workspace(seat, ws); 596 seat_set_raw_focus(seat, &ws->node);
597 } 597 }
598 598
599 workspace_consider_destroy(new_output_old_ws); 599 workspace_consider_destroy(new_output_old_ws);
diff --git a/sway/commands/swap.c b/sway/commands/swap.c
index e7f9cbea..22e3927d 100644
--- a/sway/commands/swap.c
+++ b/sway/commands/swap.c
@@ -50,13 +50,13 @@ static void swap_focus(struct sway_container *con1,
50 enum sway_container_layout layout2 = container_parent_layout(con2); 50 enum sway_container_layout layout2 = container_parent_layout(con2);
51 if (focus == con1 && (layout2 == L_TABBED || layout2 == L_STACKED)) { 51 if (focus == con1 && (layout2 == L_TABBED || layout2 == L_STACKED)) {
52 if (workspace_is_visible(ws2)) { 52 if (workspace_is_visible(ws2)) {
53 seat_set_focus_warp(seat, &con2->node, false, true); 53 seat_set_focus_warp(seat, &con2->node, false);
54 } 54 }
55 seat_set_focus_container(seat, ws1 != ws2 ? con2 : con1); 55 seat_set_focus_container(seat, ws1 != ws2 ? con2 : con1);
56 } else if (focus == con2 && (layout1 == L_TABBED 56 } else if (focus == con2 && (layout1 == L_TABBED
57 || layout1 == L_STACKED)) { 57 || layout1 == L_STACKED)) {
58 if (workspace_is_visible(ws1)) { 58 if (workspace_is_visible(ws1)) {
59 seat_set_focus_warp(seat, &con1->node, false, true); 59 seat_set_focus_warp(seat, &con1->node, false);
60 } 60 }
61 seat_set_focus_container(seat, ws1 != ws2 ? con1 : con2); 61 seat_set_focus_container(seat, ws1 != ws2 ? con1 : con2);
62 } else if (ws1 != ws2) { 62 } else if (ws1 != ws2) {
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 5c446299..bbe6b890 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -596,7 +596,7 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,
596 struct sway_output *focused_output = node_get_output(focus); 596 struct sway_output *focused_output = node_get_output(focus);
597 struct sway_output *output = node_get_output(node); 597 struct sway_output *output = node_get_output(node);
598 if (output != focused_output) { 598 if (output != focused_output) {
599 seat_set_focus_warp(seat, node, false, true); 599 seat_set_focus_warp(seat, node, false);
600 } 600 }
601 } else if (node->type == N_CONTAINER && node->sway_container->view) { 601 } else if (node->type == N_CONTAINER && node->sway_container->view) {
602 // Focus node if the following are true: 602 // Focus node if the following are true:
@@ -606,14 +606,14 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,
606 if (!wlr_seat_keyboard_has_grab(cursor->seat->wlr_seat) && 606 if (!wlr_seat_keyboard_has_grab(cursor->seat->wlr_seat) &&
607 node != prev_node && 607 node != prev_node &&
608 view_is_visible(node->sway_container->view)) { 608 view_is_visible(node->sway_container->view)) {
609 seat_set_focus_warp(seat, node, false, true); 609 seat_set_focus_warp(seat, node, false);
610 } else { 610 } else {
611 struct sway_node *next_focus = 611 struct sway_node *next_focus =
612 seat_get_focus_inactive(seat, &root->node); 612 seat_get_focus_inactive(seat, &root->node);
613 if (next_focus && next_focus->type == N_CONTAINER && 613 if (next_focus && next_focus->type == N_CONTAINER &&
614 next_focus->sway_container->view && 614 next_focus->sway_container->view &&
615 view_is_visible(next_focus->sway_container->view)) { 615 view_is_visible(next_focus->sway_container->view)) {
616 seat_set_focus_warp(seat, next_focus, false, true); 616 seat_set_focus_warp(seat, next_focus, false);
617 } 617 }
618 } 618 }
619 } 619 }
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 03ed638e..6dbd1900 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -184,8 +184,8 @@ static void handle_seat_node_destroy(struct wl_listener *listener, void *data) {
184 seat_set_focus(seat, next_focus); 184 seat_set_focus(seat, next_focus);
185 } else { 185 } else {
186 // Setting focus_inactive 186 // Setting focus_inactive
187 seat_set_focus_warp(seat, next_focus, false, false); 187 seat_set_raw_focus(seat, next_focus);
188 seat_set_focus_warp(seat, focus, false, false); 188 seat_set_raw_focus(seat, focus);
189 } 189 }
190} 190}
191 191
@@ -623,8 +623,16 @@ static void container_raise_floating(struct sway_container *con) {
623 } 623 }
624} 624}
625 625
626void seat_set_raw_focus(struct sway_seat *seat, struct sway_node *node) {
627 struct sway_seat_node *seat_node = seat_node_from_node(seat, node);
628 wl_list_remove(&seat_node->link);
629 wl_list_insert(&seat->focus_stack, &seat_node->link);
630 node_set_dirty(node);
631 node_set_dirty(node_get_parent(node));
632}
633
626void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node, 634void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
627 bool warp, bool notify) { 635 bool warp) {
628 if (seat->focused_layer) { 636 if (seat->focused_layer) {
629 return; 637 return;
630 } 638 }
@@ -688,32 +696,20 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
688 if (container) { 696 if (container) {
689 struct sway_container *parent = container->parent; 697 struct sway_container *parent = container->parent;
690 while (parent) { 698 while (parent) {
691 struct sway_seat_node *seat_node = 699 seat_set_raw_focus(seat, &parent->node);
692 seat_node_from_node(seat, &parent->node);
693 wl_list_remove(&seat_node->link);
694 wl_list_insert(&seat->focus_stack, &seat_node->link);
695 node_set_dirty(&parent->node);
696 parent = parent->parent; 700 parent = parent->parent;
697 } 701 }
698 } 702 }
699 if (new_workspace) { 703 if (new_workspace) {
700 struct sway_seat_node *seat_node = 704 seat_set_raw_focus(seat, &new_workspace->node);
701 seat_node_from_node(seat, &new_workspace->node);
702 wl_list_remove(&seat_node->link);
703 wl_list_insert(&seat->focus_stack, &seat_node->link);
704 node_set_dirty(&new_workspace->node);
705 } 705 }
706 if (container) { 706 if (container) {
707 struct sway_seat_node *seat_node = 707 seat_set_raw_focus(seat, &container->node);
708 seat_node_from_node(seat, &container->node);
709 wl_list_remove(&seat_node->link);
710 wl_list_insert(&seat->focus_stack, &seat_node->link);
711 node_set_dirty(&container->node);
712 seat_send_focus(&container->node, seat); 708 seat_send_focus(&container->node, seat);
713 } 709 }
714 710
715 // emit ipc events 711 // emit ipc events
716 if (notify && new_workspace && last_workspace != new_workspace) { 712 if (new_workspace && last_workspace != new_workspace) {
717 ipc_event_workspace(last_workspace, new_workspace, "focus"); 713 ipc_event_workspace(last_workspace, new_workspace, "focus");
718 } 714 }
719 if (container && container->view) { 715 if (container && container->view) {
@@ -807,17 +803,17 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
807} 803}
808 804
809void seat_set_focus(struct sway_seat *seat, struct sway_node *node) { 805void seat_set_focus(struct sway_seat *seat, struct sway_node *node) {
810 seat_set_focus_warp(seat, node, true, true); 806 seat_set_focus_warp(seat, node, true);
811} 807}
812 808
813void seat_set_focus_container(struct sway_seat *seat, 809void seat_set_focus_container(struct sway_seat *seat,
814 struct sway_container *con) { 810 struct sway_container *con) {
815 seat_set_focus_warp(seat, con ? &con->node : NULL, true, true); 811 seat_set_focus_warp(seat, con ? &con->node : NULL, true);
816} 812}
817 813
818void seat_set_focus_workspace(struct sway_seat *seat, 814void seat_set_focus_workspace(struct sway_seat *seat,
819 struct sway_workspace *ws) { 815 struct sway_workspace *ws) {
820 seat_set_focus_warp(seat, ws ? &ws->node : NULL, true, true); 816 seat_set_focus_warp(seat, ws ? &ws->node : NULL, true);
821} 817}
822 818
823void seat_set_focus_surface(struct sway_seat *seat, 819void seat_set_focus_surface(struct sway_seat *seat,
diff --git a/sway/tree/container.c b/sway/tree/container.c
index f36fe4b0..edab7a17 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -1202,8 +1202,8 @@ struct sway_container *container_split(struct sway_container *child,
1202 container_add_child(cont, child); 1202 container_add_child(cont, child);
1203 1203
1204 if (set_focus) { 1204 if (set_focus) {
1205 seat_set_focus_container(seat, cont); 1205 seat_set_raw_focus(seat, &cont->node);
1206 seat_set_focus_container(seat, child); 1206 seat_set_raw_focus(seat, &child->node);
1207 } 1207 }
1208 1208
1209 return cont; 1209 return cont;