aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c51
1 files changed, 27 insertions, 24 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 23f582ca..d8d2f3a4 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,25 @@ static void container_raise_floating(struct sway_container *con) {
623 } 623 }
624} 624}
625 625
626static void set_workspace(struct sway_seat *seat,
627 struct sway_workspace *new_ws) {
628 if (seat->workspace == new_ws) {
629 return;
630 }
631 ipc_event_workspace(seat->workspace, new_ws, "focus");
632 seat->workspace = new_ws;
633}
634
635void seat_set_raw_focus(struct sway_seat *seat, struct sway_node *node) {
636 struct sway_seat_node *seat_node = seat_node_from_node(seat, node);
637 wl_list_remove(&seat_node->link);
638 wl_list_insert(&seat->focus_stack, &seat_node->link);
639 node_set_dirty(node);
640 node_set_dirty(node_get_parent(node));
641}
642
626void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node, 643void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
627 bool warp, bool notify) { 644 bool warp) {
628 if (seat->focused_layer) { 645 if (seat->focused_layer) {
629 return; 646 return;
630 } 647 }
@@ -688,34 +705,20 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
688 if (container) { 705 if (container) {
689 struct sway_container *parent = container->parent; 706 struct sway_container *parent = container->parent;
690 while (parent) { 707 while (parent) {
691 struct sway_seat_node *seat_node = 708 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; 709 parent = parent->parent;
697 } 710 }
698 } 711 }
699 if (new_workspace) { 712 if (new_workspace) {
700 struct sway_seat_node *seat_node = 713 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 } 714 }
706 if (container) { 715 if (container) {
707 struct sway_seat_node *seat_node = 716 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); 717 seat_send_focus(&container->node, seat);
713 } 718 }
714 719
715 // emit ipc events 720 // emit ipc events
716 if (notify && new_workspace && last_workspace != new_workspace) { 721 set_workspace(seat, new_workspace);
717 ipc_event_workspace(last_workspace, new_workspace, "focus");
718 }
719 if (container && container->view) { 722 if (container && container->view) {
720 ipc_event_window(container, "focus"); 723 ipc_event_window(container, "focus");
721 } 724 }
@@ -798,17 +801,17 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
798} 801}
799 802
800void seat_set_focus(struct sway_seat *seat, struct sway_node *node) { 803void seat_set_focus(struct sway_seat *seat, struct sway_node *node) {
801 seat_set_focus_warp(seat, node, true, true); 804 seat_set_focus_warp(seat, node, true);
802} 805}
803 806
804void seat_set_focus_container(struct sway_seat *seat, 807void seat_set_focus_container(struct sway_seat *seat,
805 struct sway_container *con) { 808 struct sway_container *con) {
806 seat_set_focus_warp(seat, con ? &con->node : NULL, true, true); 809 seat_set_focus_warp(seat, con ? &con->node : NULL, true);
807} 810}
808 811
809void seat_set_focus_workspace(struct sway_seat *seat, 812void seat_set_focus_workspace(struct sway_seat *seat,
810 struct sway_workspace *ws) { 813 struct sway_workspace *ws) {
811 seat_set_focus_warp(seat, ws ? &ws->node : NULL, true, true); 814 seat_set_focus_warp(seat, ws ? &ws->node : NULL, true);
812} 815}
813 816
814void seat_set_focus_surface(struct sway_seat *seat, 817void seat_set_focus_surface(struct sway_seat *seat,