summaryrefslogtreecommitdiffstats
path: root/sway/input
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2019-01-27 18:06:50 -0500
committerLibravatar GitHub <noreply@github.com>2019-01-27 18:06:50 -0500
commit783fadab284c79c8e13625e5e2a2eefae02c75d3 (patch)
tree795c5c69a7fcfc9336115ac157a41b943190f206 /sway/input
parentMerge pull request #3519 from emersion/pointer-frame (diff)
parentImplement fullscreen global (diff)
downloadsway-783fadab284c79c8e13625e5e2a2eefae02c75d3.tar.gz
sway-783fadab284c79c8e13625e5e2a2eefae02c75d3.tar.zst
sway-783fadab284c79c8e13625e5e2a2eefae02c75d3.zip
Merge pull request #3423 from RyanDwyer/fullscreen-global
Implement fullscreen global
Diffstat (limited to 'sway/input')
-rw-r--r--sway/input/cursor.c12
-rw-r--r--sway/input/seat.c12
2 files changed, 23 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index af2799ce..c84d6c40 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -90,6 +90,16 @@ struct sway_node *node_at_coords(
90 double ox = lx, oy = ly; 90 double ox = lx, oy = ly;
91 wlr_output_layout_output_coords(root->output_layout, wlr_output, &ox, &oy); 91 wlr_output_layout_output_coords(root->output_layout, wlr_output, &ox, &oy);
92 92
93 if (root->fullscreen_global) {
94 // Try fullscreen container
95 struct sway_container *con = tiling_container_at(
96 &root->fullscreen_global->node, lx, ly, surface, sx, sy);
97 if (con) {
98 return &con->node;
99 }
100 return NULL;
101 }
102
93 // find the focused workspace on the output for this seat 103 // find the focused workspace on the output for this seat
94 struct sway_workspace *ws = output_get_active_workspace(output); 104 struct sway_workspace *ws = output_get_active_workspace(output);
95 105
@@ -659,7 +669,7 @@ void dispatch_cursor_button(struct sway_cursor *cursor,
659 // Handle moving a tiling container 669 // Handle moving a tiling container
660 if (config->tiling_drag && (mod_pressed || on_titlebar) && 670 if (config->tiling_drag && (mod_pressed || on_titlebar) &&
661 state == WLR_BUTTON_PRESSED && !is_floating_or_child && 671 state == WLR_BUTTON_PRESSED && !is_floating_or_child &&
662 cont && !cont->is_fullscreen) { 672 cont && cont->fullscreen_mode == FULLSCREEN_NONE) {
663 struct sway_container *focus = seat_get_focused_container(seat); 673 struct sway_container *focus = seat_get_focused_container(seat);
664 bool focused = focus == cont || container_has_ancestor(focus, cont); 674 bool focused = focus == cont || container_has_ancestor(focus, cont);
665 if (on_titlebar && !focused) { 675 if (on_titlebar && !focused) {
diff --git a/sway/input/seat.c b/sway/input/seat.c
index b6ccd830..8cb1d8e9 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -752,6 +752,18 @@ void seat_set_focus(struct sway_seat *seat, struct sway_node *node) {
752 return; 752 return;
753 } 753 }
754 } 754 }
755 // Deny setting focus to a workspace node when using fullscreen global
756 if (root->fullscreen_global && !container && new_workspace) {
757 return;
758 }
759 // Deny setting focus to a view which is hidden by a fullscreen global
760 if (root->fullscreen_global && container != root->fullscreen_global &&
761 !container_has_ancestor(container, root->fullscreen_global)) {
762 // Unless it's a transient container
763 if (!container_is_transient_for(container, root->fullscreen_global)) {
764 return;
765 }
766 }
755 767
756 struct sway_output *new_output = new_workspace->output; 768 struct sway_output *new_output = new_workspace->output;
757 769