mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Implement no_focus command
This commit is contained in:
		
							parent
							
								
									a588b326c2
								
							
						
					
					
						commit
						fc2484095a
					
				
					 5 changed files with 56 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -6,9 +6,10 @@
 | 
			
		|||
#include "tree/view.h"
 | 
			
		||||
 | 
			
		||||
enum criteria_type {
 | 
			
		||||
	CT_COMMAND = 1 << 0,
 | 
			
		||||
	CT_ASSIGN_OUTPUT = 1 << 1,
 | 
			
		||||
	CT_COMMAND          = 1 << 0,
 | 
			
		||||
	CT_ASSIGN_OUTPUT    = 1 << 1,
 | 
			
		||||
	CT_ASSIGN_WORKSPACE = 1 << 2,
 | 
			
		||||
	CT_NO_FOCUS         = 1 << 3,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
struct criteria {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -114,6 +114,7 @@ static struct cmd_handler handlers[] = {
 | 
			
		|||
	{ "input", cmd_input },
 | 
			
		||||
	{ "mode", cmd_mode },
 | 
			
		||||
	{ "mouse_warping", cmd_mouse_warping },
 | 
			
		||||
	{ "no_focus", cmd_no_focus },
 | 
			
		||||
	{ "output", cmd_output },
 | 
			
		||||
	{ "seat", cmd_seat },
 | 
			
		||||
	{ "set", cmd_set },
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										26
									
								
								sway/commands/no_focus.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								sway/commands/no_focus.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,26 @@
 | 
			
		|||
#define _XOPEN_SOURCE 500
 | 
			
		||||
#include <string.h>
 | 
			
		||||
#include "sway/commands.h"
 | 
			
		||||
#include "sway/criteria.h"
 | 
			
		||||
#include "list.h"
 | 
			
		||||
#include "log.h"
 | 
			
		||||
 | 
			
		||||
struct cmd_results *cmd_no_focus(int argc, char **argv) {
 | 
			
		||||
	struct cmd_results *error = NULL;
 | 
			
		||||
	if ((error = checkarg(argc, "no_focus", EXPECTED_AT_LEAST, 1))) {
 | 
			
		||||
		return error;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	char *err_str = NULL;
 | 
			
		||||
	struct criteria *criteria = criteria_parse(argv[0], &err_str);
 | 
			
		||||
	if (!criteria) {
 | 
			
		||||
		error = cmd_results_new(CMD_INVALID, "no_focus", err_str);
 | 
			
		||||
		free(err_str);
 | 
			
		||||
		return error;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	criteria->type = CT_NO_FOCUS;
 | 
			
		||||
	list_add(config->criteria, criteria);
 | 
			
		||||
 | 
			
		||||
	return cmd_results_new(CMD_SUCCESS, NULL, NULL);
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -59,6 +59,7 @@ sway_sources = files(
 | 
			
		|||
	'commands/mode.c',
 | 
			
		||||
	'commands/mouse_warping.c',
 | 
			
		||||
	'commands/move.c',
 | 
			
		||||
	'commands/no_focus.c',
 | 
			
		||||
	'commands/output.c',
 | 
			
		||||
	'commands/reload.c',
 | 
			
		||||
	'commands/rename.c',
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -518,6 +518,26 @@ void view_execute_criteria(struct sway_view *view) {
 | 
			
		|||
	seat_set_focus(seat, prior_focus);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static bool should_focus(struct sway_view *view) {
 | 
			
		||||
	// If the view is the only one in the focused workspace, it'll get focus
 | 
			
		||||
	// regardless of any no_focus criteria.
 | 
			
		||||
	struct sway_container *parent = view->swayc->parent;
 | 
			
		||||
	struct sway_seat *seat = input_manager_current_seat(input_manager);
 | 
			
		||||
	if (parent->type == C_WORKSPACE && seat_get_focus(seat) == parent) {
 | 
			
		||||
		size_t num_children = parent->children->length +
 | 
			
		||||
			parent->sway_workspace->floating->children->length;
 | 
			
		||||
		if (num_children == 1) {
 | 
			
		||||
			return true;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Check no_focus criteria
 | 
			
		||||
	list_t *criterias = criteria_for_view(view, CT_NO_FOCUS);
 | 
			
		||||
	size_t len = criterias->length;
 | 
			
		||||
	list_free(criterias);
 | 
			
		||||
	return len == 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) {
 | 
			
		||||
	if (!sway_assert(view->surface == NULL, "cannot map mapped view")) {
 | 
			
		||||
		return;
 | 
			
		||||
| 
						 | 
				
			
			@ -571,9 +591,11 @@ void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) {
 | 
			
		|||
		view_set_tiled(view, true);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	input_manager_set_focus(input_manager, cont);
 | 
			
		||||
	if (workspace) {
 | 
			
		||||
		workspace_switch(workspace);
 | 
			
		||||
	if (should_focus(view)) {
 | 
			
		||||
		input_manager_set_focus(input_manager, cont);
 | 
			
		||||
		if (workspace) {
 | 
			
		||||
			workspace_switch(workspace);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	view_update_title(view, false);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue