| 
									
										
										
										
											2018-11-25 12:12:48 +01:00
										 |  |  | #define _POSIX_C_SOURCE 200809L
 | 
					
						
							| 
									
										
										
										
											2018-08-03 01:23:39 +10:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | #include <assert.h>
 | 
					
						
							|  |  |  | #include <sys/stat.h>
 | 
					
						
							|  |  |  | #include <sys/wait.h>
 | 
					
						
							| 
									
										
										
										
											2018-08-05 00:24:42 -07:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | #include <wayland-client.h>
 | 
					
						
							|  |  |  | #include <wayland-cursor.h>
 | 
					
						
							|  |  |  | #include "log.h"
 | 
					
						
							|  |  |  | #include "list.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-27 11:19:42 -04:00
										 |  |  | #include "swaynag/render.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | #include "swaynag/swaynag.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-28 09:34:25 -04:00
										 |  |  | #include "swaynag/types.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | #include "wlr-layer-shell-unstable-v1-client-protocol.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void nop() { | 
					
						
							|  |  |  | 	// Intentionally left blank
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static bool terminal_execute(char *terminal, char *command) { | 
					
						
							| 
									
										
										
										
											2018-07-27 11:19:42 -04:00
										 |  |  | 	char fname[] = "/tmp/swaynagXXXXXX"; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	FILE *tmp= fdopen(mkstemp(fname), "w"); | 
					
						
							|  |  |  | 	if (!tmp) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 		sway_log(SWAY_ERROR, "Failed to create temp script"); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 	sway_log(SWAY_DEBUG, "Created temp script: %s", fname); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	fprintf(tmp, "#!/bin/sh\nrm %s\n%s", fname, command); | 
					
						
							|  |  |  | 	fclose(tmp); | 
					
						
							|  |  |  | 	chmod(fname, S_IRUSR | S_IWUSR | S_IXUSR); | 
					
						
							| 
									
										
										
										
											2022-02-08 09:52:24 +01:00
										 |  |  | 	size_t cmd_size = strlen(terminal) + strlen(" -e ") + strlen(fname) + 1; | 
					
						
							|  |  |  | 	char *cmd = malloc(cmd_size); | 
					
						
							| 
									
										
										
										
											2022-02-25 11:40:04 -06:00
										 |  |  | 	if (!cmd) { | 
					
						
							|  |  |  | 		perror("malloc"); | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-02-08 09:52:24 +01:00
										 |  |  | 	snprintf(cmd, cmd_size, "%s -e %s", terminal, fname); | 
					
						
							| 
									
										
										
										
											2021-04-16 10:31:30 +02:00
										 |  |  | 	execlp("sh", "sh", "-c", cmd, NULL); | 
					
						
							|  |  |  | 	sway_log_errno(SWAY_ERROR, "Failed to run command, execlp() returned."); | 
					
						
							| 
									
										
										
										
											2019-01-16 01:57:53 +00:00
										 |  |  | 	free(cmd); | 
					
						
							| 
									
										
										
										
											2019-01-16 10:18:46 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | static void swaynag_button_execute(struct swaynag *swaynag, | 
					
						
							|  |  |  | 		struct swaynag_button *button) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 	sway_log(SWAY_DEBUG, "Executing [%s]: %s", button->text, button->action); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (button->type == SWAYNAG_ACTION_DISMISS) { | 
					
						
							|  |  |  | 		swaynag->run_display = false; | 
					
						
							|  |  |  | 	} else if (button->type == SWAYNAG_ACTION_EXPAND) { | 
					
						
							|  |  |  | 		swaynag->details.visible = !swaynag->details.visible; | 
					
						
							|  |  |  | 		render_frame(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 		pid_t pid = fork(); | 
					
						
							|  |  |  | 		if (pid < 0) { | 
					
						
							|  |  |  | 			sway_log_errno(SWAY_DEBUG, "Failed to fork"); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} else if (pid == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 			// Child process. Will be used to prevent zombie processes
 | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 			pid = fork(); | 
					
						
							|  |  |  | 			if (pid < 0) { | 
					
						
							|  |  |  | 				sway_log_errno(SWAY_DEBUG, "Failed to fork"); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} else if (pid == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 				// Child of the child. Will be reparented to the init process
 | 
					
						
							|  |  |  | 				char *terminal = getenv("TERMINAL"); | 
					
						
							| 
									
										
										
										
											2022-03-01 12:42:55 -06:00
										 |  |  | 				if (button->terminal && terminal && *terminal) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 					sway_log(SWAY_DEBUG, "Found $TERMINAL: %s", terminal); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 					if (!terminal_execute(terminal, button->action)) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 						swaynag_destroy(swaynag); | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 						_exit(EXIT_FAILURE); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2018-11-27 23:27:44 -05:00
										 |  |  | 					if (button->terminal) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 						sway_log(SWAY_DEBUG, | 
					
						
							| 
									
										
										
										
											2018-11-27 23:27:44 -05:00
										 |  |  | 								"$TERMINAL not found. Running directly"); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2021-04-16 10:31:30 +02:00
										 |  |  | 					execlp("sh", "sh", "-c", button->action, NULL); | 
					
						
							|  |  |  | 					sway_log_errno(SWAY_DEBUG, "execlp failed"); | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 					_exit(EXIT_FAILURE); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 			_exit(EXIT_SUCCESS); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-06-07 10:47:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (button->dismiss) { | 
					
						
							|  |  |  | 			swaynag->run_display = false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 		if (waitpid(pid, NULL, 0) < 0) { | 
					
						
							|  |  |  | 			sway_log_errno(SWAY_DEBUG, "waitpid failed"); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void layer_surface_configure(void *data, | 
					
						
							|  |  |  | 		struct zwlr_layer_surface_v1 *surface, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t width, uint32_t height) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							|  |  |  | 	swaynag->width = width; | 
					
						
							|  |  |  | 	swaynag->height = height; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	zwlr_layer_surface_v1_ack_configure(surface, serial); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	render_frame(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void layer_surface_closed(void *data, | 
					
						
							|  |  |  | 		struct zwlr_layer_surface_v1 *surface) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							|  |  |  | 	swaynag_destroy(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-03 21:45:51 -05:00
										 |  |  | static const struct zwlr_layer_surface_v1_listener layer_surface_listener = { | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	.configure = layer_surface_configure, | 
					
						
							|  |  |  | 	.closed = layer_surface_closed, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | static void surface_enter(void *data, struct wl_surface *surface, | 
					
						
							|  |  |  | 		struct wl_output *output) { | 
					
						
							|  |  |  | 	struct swaynag *swaynag = data; | 
					
						
							|  |  |  | 	struct swaynag_output *swaynag_output; | 
					
						
							|  |  |  | 	wl_list_for_each(swaynag_output, &swaynag->outputs, link) { | 
					
						
							|  |  |  | 		if (swaynag_output->wl_output == output) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 			sway_log(SWAY_DEBUG, "Surface enter on output %s", | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 					swaynag_output->name); | 
					
						
							|  |  |  | 			swaynag->output = swaynag_output; | 
					
						
							|  |  |  | 			swaynag->scale = swaynag->output->scale; | 
					
						
							|  |  |  | 			render_frame(swaynag); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-03 21:45:51 -05:00
										 |  |  | static const struct wl_surface_listener surface_listener = { | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	.enter = surface_enter, | 
					
						
							|  |  |  | 	.leave = nop, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | static void update_cursor(struct swaynag_seat *seat) { | 
					
						
							|  |  |  | 	struct swaynag_pointer *pointer = &seat->pointer; | 
					
						
							|  |  |  | 	struct swaynag *swaynag = seat->swaynag; | 
					
						
							|  |  |  | 	if (pointer->cursor_theme) { | 
					
						
							|  |  |  | 		wl_cursor_theme_destroy(pointer->cursor_theme); | 
					
						
							| 
									
										
										
										
											2018-08-10 18:34:23 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-06-05 17:34:28 +02:00
										 |  |  | 	const char *cursor_theme = getenv("XCURSOR_THEME"); | 
					
						
							|  |  |  | 	unsigned cursor_size = 24; | 
					
						
							|  |  |  | 	const char *env_cursor_size = getenv("XCURSOR_SIZE"); | 
					
						
							| 
									
										
										
										
											2022-03-01 12:42:55 -06:00
										 |  |  | 	if (env_cursor_size && *env_cursor_size) { | 
					
						
							| 
									
										
										
										
											2019-06-05 18:26:12 +02:00
										 |  |  | 		errno = 0; | 
					
						
							| 
									
										
										
										
											2019-06-05 17:34:28 +02:00
										 |  |  | 		char *end; | 
					
						
							|  |  |  | 		unsigned size = strtoul(env_cursor_size, &end, 10); | 
					
						
							| 
									
										
										
										
											2019-06-05 18:26:12 +02:00
										 |  |  | 		if (!*end && errno == 0) { | 
					
						
							| 
									
										
										
										
											2019-06-05 17:34:28 +02:00
										 |  |  | 			cursor_size = size; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pointer->cursor_theme = wl_cursor_theme_load( | 
					
						
							|  |  |  | 		cursor_theme, cursor_size * swaynag->scale, swaynag->shm); | 
					
						
							| 
									
										
										
										
											2023-07-13 09:50:59 +02:00
										 |  |  | 	if (!pointer->cursor_theme) { | 
					
						
							|  |  |  | 		sway_log(SWAY_ERROR, "Failed to load cursor theme"); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-07-29 16:17:48 -04:00
										 |  |  | 	struct wl_cursor *cursor = wl_cursor_theme_get_cursor(pointer->cursor_theme, "default"); | 
					
						
							| 
									
										
										
										
											2023-07-13 09:50:59 +02:00
										 |  |  | 	if (!cursor) { | 
					
						
							|  |  |  | 		sway_log(SWAY_ERROR, "Failed to get default cursor from theme"); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | 	pointer->cursor_image = cursor->images[0]; | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	wl_surface_set_buffer_scale(pointer->cursor_surface, | 
					
						
							|  |  |  | 			swaynag->scale); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	wl_surface_attach(pointer->cursor_surface, | 
					
						
							|  |  |  | 			wl_cursor_image_get_buffer(pointer->cursor_image), 0, 0); | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | 	wl_pointer_set_cursor(pointer->pointer, pointer->serial, | 
					
						
							|  |  |  | 			pointer->cursor_surface, | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 			pointer->cursor_image->hotspot_x / swaynag->scale, | 
					
						
							|  |  |  | 			pointer->cursor_image->hotspot_y / swaynag->scale); | 
					
						
							| 
									
										
										
										
											2018-12-15 03:31:15 -05:00
										 |  |  | 	wl_surface_damage_buffer(pointer->cursor_surface, 0, 0, | 
					
						
							|  |  |  | 			INT32_MAX, INT32_MAX); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	wl_surface_commit(pointer->cursor_surface); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | void update_all_cursors(struct swaynag *swaynag) { | 
					
						
							|  |  |  | 	struct swaynag_seat *seat; | 
					
						
							|  |  |  | 	wl_list_for_each(seat, &swaynag->seats, link) { | 
					
						
							|  |  |  | 		if (seat->pointer.pointer) { | 
					
						
							|  |  |  | 			update_cursor(seat); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | static void wl_pointer_enter(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t serial, struct wl_surface *surface, | 
					
						
							|  |  |  | 		wl_fixed_t surface_x, wl_fixed_t surface_y) { | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 	struct swaynag_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2023-07-29 16:17:48 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 	struct swaynag_pointer *pointer = &seat->pointer; | 
					
						
							| 
									
										
										
										
											2021-02-07 14:17:56 +01:00
										 |  |  | 	pointer->x = wl_fixed_to_int(surface_x); | 
					
						
							|  |  |  | 	pointer->y = wl_fixed_to_int(surface_y); | 
					
						
							| 
									
										
										
										
											2023-07-29 16:17:48 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (seat->swaynag->cursor_shape_manager) { | 
					
						
							|  |  |  | 		struct wp_cursor_shape_device_v1 *device = | 
					
						
							|  |  |  | 			wp_cursor_shape_manager_v1_get_pointer( | 
					
						
							|  |  |  | 				seat->swaynag->cursor_shape_manager, wl_pointer); | 
					
						
							|  |  |  | 		wp_cursor_shape_device_v1_set_shape(device, serial, | 
					
						
							|  |  |  | 			WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_DEFAULT); | 
					
						
							|  |  |  | 		wp_cursor_shape_device_v1_destroy(device); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		pointer->serial = serial; | 
					
						
							|  |  |  | 		update_cursor(seat); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | static void wl_pointer_motion(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t time, wl_fixed_t surface_x, wl_fixed_t surface_y) { | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 	struct swaynag_seat *seat = data; | 
					
						
							|  |  |  | 	seat->pointer.x = wl_fixed_to_int(surface_x); | 
					
						
							|  |  |  | 	seat->pointer.y = wl_fixed_to_int(surface_y); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void wl_pointer_button(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, uint32_t button, uint32_t state) { | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 	struct swaynag_seat *seat = data; | 
					
						
							|  |  |  | 	struct swaynag *swaynag = seat->swaynag; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (state != WL_POINTER_BUTTON_STATE_PRESSED) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 20:32:30 +08:00
										 |  |  | 	double x = seat->pointer.x; | 
					
						
							|  |  |  | 	double y = seat->pointer.y; | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	for (int i = 0; i < swaynag->buttons->length; i++) { | 
					
						
							|  |  |  | 		struct swaynag_button *nagbutton = swaynag->buttons->items[i]; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		if (x >= nagbutton->x | 
					
						
							|  |  |  | 				&& y >= nagbutton->y | 
					
						
							|  |  |  | 				&& x < nagbutton->x + nagbutton->width | 
					
						
							|  |  |  | 				&& y < nagbutton->y + nagbutton->height) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 			swaynag_button_execute(swaynag, nagbutton); | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->details.visible && | 
					
						
							|  |  |  | 			swaynag->details.total_lines != swaynag->details.visible_lines) { | 
					
						
							|  |  |  | 		struct swaynag_button button_up = swaynag->details.button_up; | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 		if (x >= button_up.x | 
					
						
							|  |  |  | 				&& y >= button_up.y | 
					
						
							|  |  |  | 				&& x < button_up.x + button_up.width | 
					
						
							|  |  |  | 				&& y < button_up.y + button_up.height | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 				&& swaynag->details.offset > 0) { | 
					
						
							|  |  |  | 			swaynag->details.offset--; | 
					
						
							|  |  |  | 			render_frame(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		struct swaynag_button button_down = swaynag->details.button_down; | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 		int bot = swaynag->details.total_lines; | 
					
						
							|  |  |  | 		bot -= swaynag->details.visible_lines; | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 		if (x >= button_down.x | 
					
						
							|  |  |  | 				&& y >= button_down.y | 
					
						
							|  |  |  | 				&& x < button_down.x + button_down.width | 
					
						
							|  |  |  | 				&& y < button_down.y + button_down.height | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 				&& swaynag->details.offset < bot) { | 
					
						
							|  |  |  | 			swaynag->details.offset++; | 
					
						
							|  |  |  | 			render_frame(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void wl_pointer_axis(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t time, uint32_t axis, wl_fixed_t value) { | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 	struct swaynag_seat *seat = data; | 
					
						
							|  |  |  | 	struct swaynag *swaynag = seat->swaynag; | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (!swaynag->details.visible | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 			|| seat->pointer.x < swaynag->details.x | 
					
						
							|  |  |  | 			|| seat->pointer.y < swaynag->details.y | 
					
						
							|  |  |  | 			|| seat->pointer.x >= swaynag->details.x + swaynag->details.width | 
					
						
							|  |  |  | 			|| seat->pointer.y >= swaynag->details.y + swaynag->details.height | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 			|| swaynag->details.total_lines == swaynag->details.visible_lines) { | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int direction = wl_fixed_to_int(value); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	int bot = swaynag->details.total_lines - swaynag->details.visible_lines; | 
					
						
							|  |  |  | 	if (direction < 0 && swaynag->details.offset > 0) { | 
					
						
							|  |  |  | 		swaynag->details.offset--; | 
					
						
							|  |  |  | 	} else if (direction > 0 && swaynag->details.offset < bot) { | 
					
						
							|  |  |  | 		swaynag->details.offset++; | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	render_frame(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-03 21:45:51 -05:00
										 |  |  | static const struct wl_pointer_listener pointer_listener = { | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	.enter = wl_pointer_enter, | 
					
						
							|  |  |  | 	.leave = nop, | 
					
						
							|  |  |  | 	.motion = wl_pointer_motion, | 
					
						
							|  |  |  | 	.button = wl_pointer_button, | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 	.axis = wl_pointer_axis, | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	.frame = nop, | 
					
						
							|  |  |  | 	.axis_source = nop, | 
					
						
							|  |  |  | 	.axis_stop = nop, | 
					
						
							|  |  |  | 	.axis_discrete = nop, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat, | 
					
						
							|  |  |  | 		enum wl_seat_capability caps) { | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 	struct swaynag_seat *seat = data; | 
					
						
							| 
									
										
										
										
											2019-04-14 01:06:09 -04:00
										 |  |  | 	bool cap_pointer = caps & WL_SEAT_CAPABILITY_POINTER; | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 	if (cap_pointer && !seat->pointer.pointer) { | 
					
						
							|  |  |  | 		seat->pointer.pointer = wl_seat_get_pointer(wl_seat); | 
					
						
							|  |  |  | 		wl_pointer_add_listener(seat->pointer.pointer, | 
					
						
							|  |  |  | 				&pointer_listener, seat); | 
					
						
							|  |  |  | 	} else if (!cap_pointer && seat->pointer.pointer) { | 
					
						
							|  |  |  | 		wl_pointer_destroy(seat->pointer.pointer); | 
					
						
							|  |  |  | 		seat->pointer.pointer = NULL; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-03 21:45:51 -05:00
										 |  |  | static const struct wl_seat_listener seat_listener = { | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	.capabilities = seat_handle_capabilities, | 
					
						
							|  |  |  | 	.name = nop, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void output_scale(void *data, struct wl_output *output, | 
					
						
							|  |  |  | 		int32_t factor) { | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	struct swaynag_output *swaynag_output = data; | 
					
						
							|  |  |  | 	swaynag_output->scale = factor; | 
					
						
							|  |  |  | 	if (swaynag_output->swaynag->output == swaynag_output) { | 
					
						
							|  |  |  | 		swaynag_output->swaynag->scale = swaynag_output->scale; | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 		update_all_cursors(swaynag_output->swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 		render_frame(swaynag_output->swaynag); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-13 18:33:32 +01:00
										 |  |  | static void output_name(void *data, struct wl_output *output, | 
					
						
							|  |  |  | 		const char *name) { | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	struct swaynag_output *swaynag_output = data; | 
					
						
							| 
									
										
										
										
											2021-12-13 18:33:32 +01:00
										 |  |  | 	swaynag_output->name = strdup(name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const char *outname = swaynag_output->swaynag->type->output; | 
					
						
							|  |  |  | 	if (!swaynag_output->swaynag->output && outname && | 
					
						
							|  |  |  | 			strcmp(outname, name) == 0) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 		sway_log(SWAY_DEBUG, "Using output %s", name); | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 		swaynag_output->swaynag->output = swaynag_output; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-13 18:33:32 +01:00
										 |  |  | static const struct wl_output_listener output_listener = { | 
					
						
							|  |  |  | 	.geometry = nop, | 
					
						
							|  |  |  | 	.mode = nop, | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	.done = nop, | 
					
						
							| 
									
										
										
										
											2021-12-13 18:33:32 +01:00
										 |  |  | 	.scale = output_scale, | 
					
						
							|  |  |  | 	.name = output_name, | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	.description = nop, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void handle_global(void *data, struct wl_registry *registry, | 
					
						
							|  |  |  | 		uint32_t name, const char *interface, uint32_t version) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	if (strcmp(interface, wl_compositor_interface.name) == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->compositor = wl_registry_bind(registry, name, | 
					
						
							| 
									
										
										
										
											2018-12-15 03:31:15 -05:00
										 |  |  | 				&wl_compositor_interface, 4); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} else if (strcmp(interface, wl_seat_interface.name) == 0) { | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 		struct swaynag_seat *seat = | 
					
						
							|  |  |  | 			calloc(1, sizeof(struct swaynag_seat)); | 
					
						
							|  |  |  | 		if (!seat) { | 
					
						
							| 
									
										
										
										
											2022-02-25 11:40:04 -06:00
										 |  |  | 			perror("calloc"); | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		seat->swaynag = swaynag; | 
					
						
							|  |  |  | 		seat->wl_name = name; | 
					
						
							|  |  |  | 		seat->wl_seat = | 
					
						
							|  |  |  | 			wl_registry_bind(registry, name, &wl_seat_interface, 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		wl_seat_add_listener(seat->wl_seat, &seat_listener, seat); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		wl_list_insert(&swaynag->seats, &seat->link); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} else if (strcmp(interface, wl_shm_interface.name) == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->shm = wl_registry_bind(registry, name, &wl_shm_interface, 1); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} else if (strcmp(interface, wl_output_interface.name) == 0) { | 
					
						
							| 
									
										
										
										
											2021-12-13 18:33:32 +01:00
										 |  |  | 		if (!swaynag->output) { | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 			struct swaynag_output *output = | 
					
						
							|  |  |  | 				calloc(1, sizeof(struct swaynag_output)); | 
					
						
							| 
									
										
										
										
											2022-02-25 11:40:04 -06:00
										 |  |  | 			if (!output) { | 
					
						
							|  |  |  | 				perror("calloc"); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 			output->wl_output = wl_registry_bind(registry, name, | 
					
						
							| 
									
										
										
										
											2021-12-13 18:33:32 +01:00
										 |  |  | 					&wl_output_interface, 4); | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 			output->wl_name = name; | 
					
						
							|  |  |  | 			output->scale = 1; | 
					
						
							|  |  |  | 			output->swaynag = swaynag; | 
					
						
							|  |  |  | 			wl_list_insert(&swaynag->outputs, &output->link); | 
					
						
							|  |  |  | 			wl_output_add_listener(output->wl_output, | 
					
						
							|  |  |  | 					&output_listener, output); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} else if (strcmp(interface, zwlr_layer_shell_v1_interface.name) == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->layer_shell = wl_registry_bind( | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 				registry, name, &zwlr_layer_shell_v1_interface, 1); | 
					
						
							| 
									
										
										
										
											2023-07-29 16:17:48 -04:00
										 |  |  | 	} else if (strcmp(interface, wp_cursor_shape_manager_v1_interface.name) == 0) { | 
					
						
							|  |  |  | 		swaynag->cursor_shape_manager = wl_registry_bind( | 
					
						
							|  |  |  | 				registry, name, &wp_cursor_shape_manager_v1_interface, 1); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | void swaynag_seat_destroy(struct swaynag_seat *seat) { | 
					
						
							|  |  |  | 	if (seat->pointer.cursor_theme) { | 
					
						
							|  |  |  | 		wl_cursor_theme_destroy(seat->pointer.cursor_theme); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (seat->pointer.pointer) { | 
					
						
							|  |  |  | 		wl_pointer_destroy(seat->pointer.pointer); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	wl_seat_destroy(seat->wl_seat); | 
					
						
							|  |  |  | 	wl_list_remove(&seat->link); | 
					
						
							|  |  |  | 	free(seat); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | static void handle_global_remove(void *data, struct wl_registry *registry, | 
					
						
							|  |  |  | 		uint32_t name) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	if (swaynag->output->wl_name == name) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->run_display = false; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct swaynag_seat *seat, *tmpseat; | 
					
						
							|  |  |  | 	wl_list_for_each_safe(seat, tmpseat, &swaynag->seats, link) { | 
					
						
							|  |  |  | 		if (seat->wl_name == name) { | 
					
						
							|  |  |  | 			swaynag_seat_destroy(seat); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct wl_registry_listener registry_listener = { | 
					
						
							|  |  |  | 	.global = handle_global, | 
					
						
							|  |  |  | 	.global_remove = handle_global_remove, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | void swaynag_setup_cursors(struct swaynag *swaynag) { | 
					
						
							|  |  |  | 	struct swaynag_seat *seat; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	wl_list_for_each(seat, &swaynag->seats, link) { | 
					
						
							|  |  |  | 		struct swaynag_pointer *p = &seat->pointer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		p->cursor_surface = | 
					
						
							|  |  |  | 			wl_compositor_create_surface(swaynag->compositor); | 
					
						
							|  |  |  | 		assert(p->cursor_surface); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | void swaynag_setup(struct swaynag *swaynag) { | 
					
						
							|  |  |  | 	swaynag->display = wl_display_connect(NULL); | 
					
						
							| 
									
										
										
										
											2018-10-15 21:57:59 +10:00
										 |  |  | 	if (!swaynag->display) { | 
					
						
							|  |  |  | 		sway_abort("Unable to connect to the compositor. " | 
					
						
							|  |  |  | 				"If your compositor is running, check or set the " | 
					
						
							|  |  |  | 				"WAYLAND_DISPLAY environment variable."); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	swaynag->scale = 1; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct wl_registry *registry = wl_display_get_registry(swaynag->display); | 
					
						
							|  |  |  | 	wl_registry_add_listener(registry, ®istry_listener, swaynag); | 
					
						
							| 
									
										
										
										
											2020-06-10 01:13:21 +01:00
										 |  |  | 	if (wl_display_roundtrip(swaynag->display) < 0) { | 
					
						
							|  |  |  | 		sway_abort("failed to register with the wayland display"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	assert(swaynag->compositor && swaynag->layer_shell && swaynag->shm); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-13 18:33:32 +01:00
										 |  |  | 	// Second roundtrip to get wl_output properties
 | 
					
						
							|  |  |  | 	if (wl_display_roundtrip(swaynag->display) < 0) { | 
					
						
							|  |  |  | 		sway_log(SWAY_ERROR, "Error during outputs init."); | 
					
						
							|  |  |  | 		swaynag_destroy(swaynag); | 
					
						
							|  |  |  | 		exit(EXIT_FAILURE); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	if (!swaynag->output && swaynag->type->output) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 		sway_log(SWAY_ERROR, "Output '%s' not found", swaynag->type->output); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag_destroy(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		exit(EXIT_FAILURE); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-29 16:17:48 -04:00
										 |  |  | 	if (!swaynag->cursor_shape_manager) { | 
					
						
							|  |  |  | 		swaynag_setup_cursors(swaynag); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	swaynag->surface = wl_compositor_create_surface(swaynag->compositor); | 
					
						
							|  |  |  | 	assert(swaynag->surface); | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	wl_surface_add_listener(swaynag->surface, &surface_listener, swaynag); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	swaynag->layer_surface = zwlr_layer_shell_v1_get_layer_surface( | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 			swaynag->layer_shell, swaynag->surface, | 
					
						
							|  |  |  | 			swaynag->output ? swaynag->output->wl_output : NULL, | 
					
						
							| 
									
										
										
										
											2021-03-17 15:55:21 +00:00
										 |  |  | 			swaynag->type->layer, | 
					
						
							|  |  |  | 			"swaynag"); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	assert(swaynag->layer_surface); | 
					
						
							|  |  |  | 	zwlr_layer_surface_v1_add_listener(swaynag->layer_surface, | 
					
						
							|  |  |  | 			&layer_surface_listener, swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-29 22:42:03 -04:00
										 |  |  | 	zwlr_layer_surface_v1_set_anchor(swaynag->layer_surface, | 
					
						
							|  |  |  | 			swaynag->type->anchors); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wl_registry_destroy(registry); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | void swaynag_run(struct swaynag *swaynag) { | 
					
						
							|  |  |  | 	swaynag->run_display = true; | 
					
						
							|  |  |  | 	render_frame(swaynag); | 
					
						
							|  |  |  | 	while (swaynag->run_display | 
					
						
							|  |  |  | 			&& wl_display_dispatch(swaynag->display) != -1) { | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		// This is intentionally left blank
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | void swaynag_destroy(struct swaynag *swaynag) { | 
					
						
							|  |  |  | 	swaynag->run_display = false; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	free(swaynag->message); | 
					
						
							| 
									
										
										
										
											2018-12-08 23:55:14 +00:00
										 |  |  | 	for (int i = 0; i < swaynag->buttons->length; ++i) { | 
					
						
							|  |  |  | 		struct swaynag_button *button = swaynag->buttons->items[i]; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		free(button->text); | 
					
						
							|  |  |  | 		free(button->action); | 
					
						
							|  |  |  | 		free(button); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	list_free(swaynag->buttons); | 
					
						
							|  |  |  | 	free(swaynag->details.message); | 
					
						
							| 
									
										
										
										
											2023-01-08 09:21:30 -05:00
										 |  |  | 	free(swaynag->details.details_text); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	free(swaynag->details.button_up.text); | 
					
						
							|  |  |  | 	free(swaynag->details.button_down.text); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->type) { | 
					
						
							|  |  |  | 		swaynag_type_free(swaynag->type); | 
					
						
							| 
									
										
										
										
											2018-07-28 09:34:25 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->layer_surface) { | 
					
						
							|  |  |  | 		zwlr_layer_surface_v1_destroy(swaynag->layer_surface); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->surface) { | 
					
						
							|  |  |  | 		wl_surface_destroy(swaynag->surface); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-03 14:37:30 +00:00
										 |  |  | 	struct swaynag_seat *seat, *tmpseat; | 
					
						
							|  |  |  | 	wl_list_for_each_safe(seat, tmpseat, &swaynag->seats, link) { | 
					
						
							|  |  |  | 		swaynag_seat_destroy(seat); | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-23 18:16:44 +03:00
										 |  |  | 	destroy_buffer(&swaynag->buffers[0]); | 
					
						
							|  |  |  | 	destroy_buffer(&swaynag->buffers[1]); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | 	if (swaynag->outputs.prev || swaynag->outputs.next) { | 
					
						
							|  |  |  | 		struct swaynag_output *output, *temp; | 
					
						
							|  |  |  | 		wl_list_for_each_safe(output, temp, &swaynag->outputs, link) { | 
					
						
							|  |  |  | 			wl_output_destroy(output->wl_output); | 
					
						
							|  |  |  | 			free(output->name); | 
					
						
							|  |  |  | 			wl_list_remove(&output->link); | 
					
						
							|  |  |  | 			free(output); | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->compositor) { | 
					
						
							|  |  |  | 		wl_compositor_destroy(swaynag->compositor); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->shm) { | 
					
						
							|  |  |  | 		wl_shm_destroy(swaynag->shm); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-01-08 09:21:30 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (swaynag->display) { | 
					
						
							|  |  |  | 		wl_display_disconnect(swaynag->display); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } |