diff options
Diffstat (limited to 'sway/input')
| -rw-r--r-- | sway/input/cursor.c | 6 | ||||
| -rw-r--r-- | sway/input/keyboard.c | 28 | ||||
| -rw-r--r-- | sway/input/seat.c | 51 | 
3 files changed, 52 insertions, 33 deletions
| diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 21e104ec..925190d6 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -597,7 +597,7 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,  			struct sway_output *focused_output = node_get_output(focus);  			struct sway_output *output = node_get_output(node);  			if (output != focused_output) { -				seat_set_focus_warp(seat, node, false, true); +				seat_set_focus_warp(seat, node, false);  			}  		} else if (node->type == N_CONTAINER && node->sway_container->view) {  			// Focus node if the following are true: @@ -607,14 +607,14 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,  			if (!wlr_seat_keyboard_has_grab(cursor->seat->wlr_seat) &&  					node != prev_node &&  					view_is_visible(node->sway_container->view)) { -				seat_set_focus_warp(seat, node, false, true); +				seat_set_focus_warp(seat, node, false);  			} else {  				struct sway_node *next_focus =  					seat_get_focus_inactive(seat, &root->node);  				if (next_focus && next_focus->type == N_CONTAINER &&  						next_focus->sway_container->view &&  						view_is_visible(next_focus->sway_container->view)) { -					seat_set_focus_warp(seat, next_focus, false, true); +					seat_set_focus_warp(seat, next_focus, false);  				}  			}  		} diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c index fb1fe7b5..2c8b41cd 100644 --- a/sway/input/keyboard.c +++ b/sway/input/keyboard.c @@ -9,6 +9,7 @@  #include "sway/input/input-manager.h"  #include "sway/input/keyboard.h"  #include "sway/input/seat.h" +#include "sway/ipc-server.h"  #include "log.h"  /** @@ -66,10 +67,10 @@ static void update_shortcut_state(struct sway_shortcut_state *state,  	bool last_key_was_a_modifier = raw_modifiers != state->last_raw_modifiers;  	state->last_raw_modifiers = raw_modifiers; -    if (last_key_was_a_modifier && state->last_keycode) { -        // Last pressed key before this one was a modifier -        state_erase_key(state, state->last_keycode); -    } +	if (last_key_was_a_modifier && state->last_keycode) { +		// Last pressed key before this one was a modifier +		state_erase_key(state, state->last_keycode); +	}  	if (event->state == WLR_KEY_PRESSED) {  		// Add current key to set; there may be duplicates @@ -235,7 +236,6 @@ static void handle_keyboard_key(struct wl_listener *listener, void *data) {  				code_modifiers);  	} -  	bool handled = false;  	// Identify active release binding @@ -337,6 +337,19 @@ static int handle_keyboard_repeat(void *data) {  	return 0;  } +static void determine_bar_visibility(uint32_t modifiers) { +	for (int i = 0; i < config->bars->length; ++i) { +		struct bar_config *bar = config->bars->items[i]; +		if (strcmp(bar->mode, bar->hidden_state) == 0) { // both are "hide" +			bool should_be_visible = (~modifiers & bar->modifier) == 0; +			if (bar->visible_by_modifier != should_be_visible) { +				bar->visible_by_modifier = should_be_visible; +				ipc_event_bar_state_update(bar); +			} +		} +	} +} +  static void handle_keyboard_modifiers(struct wl_listener *listener,  		void *data) {  	struct sway_keyboard *keyboard = @@ -346,6 +359,9 @@ static void handle_keyboard_modifiers(struct wl_listener *listener,  		keyboard->seat_device->input_device->wlr_device;  	wlr_seat_set_keyboard(wlr_seat, wlr_device);  	wlr_seat_keyboard_notify_modifiers(wlr_seat, &wlr_device->keyboard->modifiers); + +	uint32_t modifiers = wlr_keyboard_get_modifiers(wlr_device->keyboard); +	determine_bar_visibility(modifiers);  }  struct sway_keyboard *sway_keyboard_create(struct sway_seat *seat, @@ -464,7 +480,7 @@ void sway_keyboard_configure(struct sway_keyboard *keyboard) {  	keyboard->keyboard_key.notify = handle_keyboard_key;  	wl_list_remove(&keyboard->keyboard_modifiers.link); -	wl_signal_add( &wlr_device->keyboard->events.modifiers, +	wl_signal_add(&wlr_device->keyboard->events.modifiers,  		&keyboard->keyboard_modifiers);  	keyboard->keyboard_modifiers.notify = handle_keyboard_modifiers;  } 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) {  		seat_set_focus(seat, next_focus);  	} else {  		// Setting focus_inactive -		seat_set_focus_warp(seat, next_focus, false, false); -		seat_set_focus_warp(seat, focus, false, false); +		seat_set_raw_focus(seat, next_focus); +		seat_set_raw_focus(seat, focus);  	}  } @@ -623,8 +623,25 @@ static void container_raise_floating(struct sway_container *con) {  	}  } +static void set_workspace(struct sway_seat *seat, +		struct sway_workspace *new_ws) { +	if (seat->workspace == new_ws) { +		return; +	} +	ipc_event_workspace(seat->workspace, new_ws, "focus"); +	seat->workspace = new_ws; +} + +void seat_set_raw_focus(struct sway_seat *seat, struct sway_node *node) { +	struct sway_seat_node *seat_node = seat_node_from_node(seat, node); +	wl_list_remove(&seat_node->link); +	wl_list_insert(&seat->focus_stack, &seat_node->link); +	node_set_dirty(node); +	node_set_dirty(node_get_parent(node)); +} +  void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node, -		bool warp, bool notify) { +		bool warp) {  	if (seat->focused_layer) {  		return;  	} @@ -688,34 +705,20 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,  	if (container) {  		struct sway_container *parent = container->parent;  		while (parent) { -			struct sway_seat_node *seat_node = -				seat_node_from_node(seat, &parent->node); -			wl_list_remove(&seat_node->link); -			wl_list_insert(&seat->focus_stack, &seat_node->link); -			node_set_dirty(&parent->node); +			seat_set_raw_focus(seat, &parent->node);  			parent = parent->parent;  		}  	}  	if (new_workspace) { -		struct sway_seat_node *seat_node = -			seat_node_from_node(seat, &new_workspace->node); -		wl_list_remove(&seat_node->link); -		wl_list_insert(&seat->focus_stack, &seat_node->link); -		node_set_dirty(&new_workspace->node); +		seat_set_raw_focus(seat, &new_workspace->node);  	}  	if (container) { -		struct sway_seat_node *seat_node = -			seat_node_from_node(seat, &container->node); -		wl_list_remove(&seat_node->link); -		wl_list_insert(&seat->focus_stack, &seat_node->link); -		node_set_dirty(&container->node); +		seat_set_raw_focus(seat, &container->node);  		seat_send_focus(&container->node, seat);  	}  	// emit ipc events -	if (notify && new_workspace && last_workspace != new_workspace) { -		 ipc_event_workspace(last_workspace, new_workspace, "focus"); -	} +	set_workspace(seat, new_workspace);  	if (container && container->view) {  		ipc_event_window(container, "focus");  	} @@ -798,17 +801,17 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,  }  void seat_set_focus(struct sway_seat *seat, struct sway_node *node) { -	seat_set_focus_warp(seat, node, true, true); +	seat_set_focus_warp(seat, node, true);  }  void seat_set_focus_container(struct sway_seat *seat,  		struct sway_container *con) { -	seat_set_focus_warp(seat, con ? &con->node : NULL, true, true); +	seat_set_focus_warp(seat, con ? &con->node : NULL, true);  }  void seat_set_focus_workspace(struct sway_seat *seat,  		struct sway_workspace *ws) { -	seat_set_focus_warp(seat, ws ? &ws->node : NULL, true, true); +	seat_set_focus_warp(seat, ws ? &ws->node : NULL, true);  }  void seat_set_focus_surface(struct sway_seat *seat, | 
