mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Merge branch 'master' into remove-input-fix
This commit is contained in:
		
						commit
						3d2595b102
					
				
					 7 changed files with 32 additions and 15 deletions
				
			
		| 
						 | 
					@ -50,6 +50,7 @@ struct sway_mode {
 | 
				
			||||||
	char *name;
 | 
						char *name;
 | 
				
			||||||
	list_t *keysym_bindings;
 | 
						list_t *keysym_bindings;
 | 
				
			||||||
	list_t *keycode_bindings;
 | 
						list_t *keycode_bindings;
 | 
				
			||||||
 | 
						bool pango;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct input_config_mapped_from_region {
 | 
					struct input_config_mapped_from_region {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -15,6 +15,6 @@ void ipc_event_workspace(struct sway_container *old,
 | 
				
			||||||
		struct sway_container *new, const char *change);
 | 
							struct sway_container *new, const char *change);
 | 
				
			||||||
void ipc_event_window(struct sway_container *window, const char *change);
 | 
					void ipc_event_window(struct sway_container *window, const char *change);
 | 
				
			||||||
void ipc_event_barconfig_update(struct bar_config *bar);
 | 
					void ipc_event_barconfig_update(struct bar_config *bar);
 | 
				
			||||||
void ipc_event_mode(const char *mode);
 | 
					void ipc_event_mode(const char *mode, bool pango);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -26,7 +26,17 @@ struct cmd_results *cmd_mode(int argc, char **argv) {
 | 
				
			||||||
				"mode", "Can only be used in config file.");
 | 
									"mode", "Can only be used in config file.");
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	const char *mode_name = argv[0];
 | 
						bool pango = strcmp(*argv, "--pango_markup") == 0;
 | 
				
			||||||
 | 
						if (pango) {
 | 
				
			||||||
 | 
							argc--; argv++;
 | 
				
			||||||
 | 
							if (argc == 0) {
 | 
				
			||||||
 | 
								return cmd_results_new(CMD_FAILURE, "mode",
 | 
				
			||||||
 | 
										"Mode name is missing");
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						char *mode_name = *argv;
 | 
				
			||||||
 | 
						strip_quotes(mode_name);
 | 
				
			||||||
	struct sway_mode *mode = NULL;
 | 
						struct sway_mode *mode = NULL;
 | 
				
			||||||
	// Find mode
 | 
						// Find mode
 | 
				
			||||||
	for (int i = 0; i < config->modes->length; ++i) {
 | 
						for (int i = 0; i < config->modes->length; ++i) {
 | 
				
			||||||
| 
						 | 
					@ -46,6 +56,7 @@ struct cmd_results *cmd_mode(int argc, char **argv) {
 | 
				
			||||||
		mode->name = strdup(mode_name);
 | 
							mode->name = strdup(mode_name);
 | 
				
			||||||
		mode->keysym_bindings = create_list();
 | 
							mode->keysym_bindings = create_list();
 | 
				
			||||||
		mode->keycode_bindings = create_list();
 | 
							mode->keycode_bindings = create_list();
 | 
				
			||||||
 | 
							mode->pango = pango;
 | 
				
			||||||
		list_add(config->modes, mode);
 | 
							list_add(config->modes, mode);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if (!mode) {
 | 
						if (!mode) {
 | 
				
			||||||
| 
						 | 
					@ -54,13 +65,15 @@ struct cmd_results *cmd_mode(int argc, char **argv) {
 | 
				
			||||||
		return error;
 | 
							return error;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	if ((config->reading && argc > 1) || (!config->reading && argc == 1)) {
 | 
						if ((config->reading && argc > 1) || (!config->reading && argc == 1)) {
 | 
				
			||||||
		wlr_log(L_DEBUG, "Switching to mode `%s'",mode->name);
 | 
							wlr_log(L_DEBUG, "Switching to mode `%s' (pango=%d)",
 | 
				
			||||||
 | 
									mode->name, mode->pango);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	// Set current mode
 | 
						// Set current mode
 | 
				
			||||||
	config->current_mode = mode;
 | 
						config->current_mode = mode;
 | 
				
			||||||
	if (argc == 1) {
 | 
						if (argc == 1) {
 | 
				
			||||||
		// trigger IPC mode event
 | 
							// trigger IPC mode event
 | 
				
			||||||
		ipc_event_mode(config->current_mode->name);
 | 
							ipc_event_mode(config->current_mode->name,
 | 
				
			||||||
 | 
									config->current_mode->pango);
 | 
				
			||||||
		return cmd_results_new(CMD_SUCCESS, NULL, NULL);
 | 
							return cmd_results_new(CMD_SUCCESS, NULL, NULL);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -255,14 +255,12 @@ void dispatch_cursor_button(struct sway_cursor *cursor,
 | 
				
			||||||
			wlr_layer_surface_from_wlr_surface(surface);
 | 
								wlr_layer_surface_from_wlr_surface(surface);
 | 
				
			||||||
		if (layer->current.keyboard_interactive) {
 | 
							if (layer->current.keyboard_interactive) {
 | 
				
			||||||
			seat_set_focus_layer(cursor->seat, layer);
 | 
								seat_set_focus_layer(cursor->seat, layer);
 | 
				
			||||||
			return;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
						} else if (surface && cont && cont->type != C_VIEW) {
 | 
				
			||||||
		// Avoid moving keyboard focus from a surface that accepts it to one
 | 
							// Avoid moving keyboard focus from a surface that accepts it to one
 | 
				
			||||||
		// that does not unless the change would move us to a new workspace.
 | 
							// that does not unless the change would move us to a new workspace.
 | 
				
			||||||
		//
 | 
							//
 | 
				
			||||||
		// This prevents, for example, losing focus when clicking on swaybar.
 | 
							// This prevents, for example, losing focus when clicking on swaybar.
 | 
				
			||||||
	if (surface && cont && cont->type != C_VIEW) {
 | 
					 | 
				
			||||||
		struct sway_container *new_ws = cont;
 | 
							struct sway_container *new_ws = cont;
 | 
				
			||||||
		if (new_ws && new_ws->type != C_WORKSPACE) {
 | 
							if (new_ws && new_ws->type != C_WORKSPACE) {
 | 
				
			||||||
			new_ws = container_parent(new_ws, C_WORKSPACE);
 | 
								new_ws = container_parent(new_ws, C_WORKSPACE);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -332,13 +332,15 @@ void ipc_event_barconfig_update(struct bar_config *bar) {
 | 
				
			||||||
	json_object_put(json);
 | 
						json_object_put(json);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void ipc_event_mode(const char *mode) {
 | 
					void ipc_event_mode(const char *mode, bool pango) {
 | 
				
			||||||
	if (!ipc_has_event_listeners(IPC_EVENT_MODE)) {
 | 
						if (!ipc_has_event_listeners(IPC_EVENT_MODE)) {
 | 
				
			||||||
		return;
 | 
							return;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	wlr_log(L_DEBUG, "Sending mode::%s event", mode);
 | 
						wlr_log(L_DEBUG, "Sending mode::%s event", mode);
 | 
				
			||||||
	json_object *obj = json_object_new_object();
 | 
						json_object *obj = json_object_new_object();
 | 
				
			||||||
	json_object_object_add(obj, "change", json_object_new_string(mode));
 | 
						json_object_object_add(obj, "change", json_object_new_string(mode));
 | 
				
			||||||
 | 
						json_object_object_add(obj, "pango_markup",
 | 
				
			||||||
 | 
								json_object_new_boolean(pango));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	const char *json_string = json_object_to_json_string(obj);
 | 
						const char *json_string = json_object_to_json_string(obj);
 | 
				
			||||||
	ipc_send_event(json_string, IPC_EVENT_MODE);
 | 
						ipc_send_event(json_string, IPC_EVENT_MODE);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -413,10 +413,12 @@ The default colors are:
 | 
				
			||||||
*mode* <mode>
 | 
					*mode* <mode>
 | 
				
			||||||
	Switches to the specified mode. The default mode _default_.
 | 
						Switches to the specified mode. The default mode _default_.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
*mode* <mode> *{* <commands...> *}*
 | 
					*mode* [--pango\_markup] <mode> *{* <commands...> *}*
 | 
				
			||||||
	_commands..._ after *{* will be added to the specified mode. A newline is
 | 
						_commands..._ after *{* will be added to the specified mode. A newline is
 | 
				
			||||||
	required between *{* and the first command, and *}* must be alone on a
 | 
						required between *{* and the first command, and *}* must be alone on a
 | 
				
			||||||
	line. Only *bindsym* and *bindcode* commands are permitted in mode blocks.
 | 
						line. Only *bindsym* and *bindcode* commands are permitted in mode blocks.
 | 
				
			||||||
 | 
						If _--pango\_markup_ is given, then _mode_ will be interpreted as pango
 | 
				
			||||||
 | 
						markup.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
*mouse\_warping* output|none
 | 
					*mouse\_warping* output|none
 | 
				
			||||||
	If _output_ is specified, the mouse will be moved to new outputs as you
 | 
						If _output_ is specified, the mouse will be moved to new outputs as you
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -298,7 +298,8 @@ static uint32_t render_binding_mode_indicator(cairo_t *cairo,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	int text_width, text_height;
 | 
						int text_width, text_height;
 | 
				
			||||||
	get_text_size(cairo, config->font, &text_width, &text_height,
 | 
						get_text_size(cairo, config->font, &text_width, &text_height,
 | 
				
			||||||
			output->scale, config->pango_markup, "%s", mode);
 | 
								output->scale, config->mode_pango_markup,
 | 
				
			||||||
 | 
								"%s", mode);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	int ws_vertical_padding = WS_VERTICAL_PADDING * output->scale;
 | 
						int ws_vertical_padding = WS_VERTICAL_PADDING * output->scale;
 | 
				
			||||||
	int ws_horizontal_padding = WS_HORIZONTAL_PADDING * output->scale;
 | 
						int ws_horizontal_padding = WS_HORIZONTAL_PADDING * output->scale;
 | 
				
			||||||
| 
						 | 
					@ -329,7 +330,7 @@ static uint32_t render_binding_mode_indicator(cairo_t *cairo,
 | 
				
			||||||
	double text_y = height / 2.0 - text_height / 2.0;
 | 
						double text_y = height / 2.0 - text_height / 2.0;
 | 
				
			||||||
	cairo_set_source_u32(cairo, config->colors.binding_mode.text);
 | 
						cairo_set_source_u32(cairo, config->colors.binding_mode.text);
 | 
				
			||||||
	cairo_move_to(cairo, x + width / 2 - text_width / 2, (int)floor(text_y));
 | 
						cairo_move_to(cairo, x + width / 2 - text_width / 2, (int)floor(text_y));
 | 
				
			||||||
	pango_printf(cairo, config->font, output->scale, config->pango_markup,
 | 
						pango_printf(cairo, config->font, output->scale, config->mode_pango_markup,
 | 
				
			||||||
			"%s", mode);
 | 
								"%s", mode);
 | 
				
			||||||
	return surface_height;
 | 
						return surface_height;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue