|  |  | @ -1,10 +1,118 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  | #define _XOPEN_SOURCE 700 |  |  |  | #define _XOPEN_SOURCE 700 | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <stdlib.h> |  |  |  | #include <stdlib.h> | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | #include <unistd.h> | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <string.h> |  |  |  | #include <string.h> | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <gtk-primary-selection-protocol.h> |  |  |  | #include <gtk-primary-selection-protocol.h> | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <wlr/types/wlr_primary_selection.h> |  |  |  | #include <wlr/types/wlr_primary_selection.h> | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | #include <wlr/types/wlr_seat.h> | 
			
		
	
		
		
			
				
					
					|  |  |  | #include <wlr/util/log.h> |  |  |  | #include <wlr/util/log.h> | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void client_source_accept(struct wlr_primary_selection_source *source, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		uint32_t serial, const char *mime_type) {} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void client_source_send(struct wlr_primary_selection_source *source, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		const char *mime_type, int32_t fd) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	gtk_primary_selection_source_send_send(source->resource, mime_type, fd); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	close(fd); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void client_source_cancel( | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_primary_selection_source *source) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	gtk_primary_selection_source_send_cancelled(source->resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void offer_handle_receive(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wl_resource *resource, const char *mime_type, int32_t fd) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	// TODO
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void offer_handle_destroy(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wl_resource *resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_resource_destroy(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static const struct gtk_primary_selection_offer_interface offer_impl = { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	.receive = offer_handle_receive, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	.destroy = offer_handle_destroy, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | }; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void offer_resource_handle_destroy(struct wl_resource *resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_primary_selection_offer *offer = | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (!offer->source) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		goto out; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_remove(&offer->source_destroy.link); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (offer->source->offer != offer) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		goto out; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (offer->source->resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_data_source_send_cancelled(offer->source->resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	offer->source->offer = NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | out: | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	free(offer); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void offer_handle_source_destroy(struct wl_listener *listener, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		void *data) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_primary_selection_offer *offer = | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_container_of(listener, offer, source_destroy); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	offer->source = NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static struct wlr_primary_selection_offer *source_send_offer( | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_primary_selection_source *source, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_seat_client *target) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (wl_list_empty(&target->data_devices)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		return NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_primary_selection_offer *offer = | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		calloc(1, sizeof(struct wlr_primary_selection_offer)); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (offer == NULL) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		return NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	uint32_t version = wl_resource_get_version( | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_resource_from_link(target->data_devices.next)); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	offer->resource = wl_resource_create(target->client, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		&wl_data_offer_interface, version, 0); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (offer->resource == NULL) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		free(offer); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		return NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_resource_set_implementation(offer->resource, &offer_impl, offer, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		offer_resource_handle_destroy); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	offer->source_destroy.notify = offer_handle_source_destroy; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_signal_add(&source->events.destroy, &offer->source_destroy); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wl_resource *target_resource; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_resource_for_each(target_resource, &target->data_devices) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_data_device_send_data_offer(target_resource, offer->resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	char **p; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_array_for_each(p, &source->mime_types) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_data_offer_send_offer(offer->resource, *p); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	offer->source = source; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	source->offer = offer; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	source->accepted = false; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	return offer; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void source_handle_offer(struct wl_client *client, |  |  |  | static void source_handle_offer(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *resource, const char *mime_type) { |  |  |  | 		struct wl_resource *resource, const char *mime_type) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_primary_selection_source *source = |  |  |  | 	struct wlr_primary_selection_source *source = | 
			
		
	
	
		
		
			
				
					|  |  | @ -36,11 +144,114 @@ static void source_resource_handle_destroy( struct wl_resource *resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	free(source); |  |  |  | 	free(source); | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | void wlr_seat_client_send_primary_selection( | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_seat_client *seat_client) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (wl_list_empty(&seat_client->primary_selection_devices)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (seat_client->seat->primary_selection_source) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_primary_selection_offer *offer = source_send_offer( | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			seat_client->seat->primary_selection_source, seat_client); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if (offer == NULL) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			return; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wl_resource *resource; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_resource_for_each(resource, &seat_client->primary_selection_devices) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wl_data_device_send_selection(resource, offer->resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} else { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wl_resource *resource; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_resource_for_each(resource, &seat_client->primary_selection_devices) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wl_data_device_send_selection(resource, NULL); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void seat_client_primary_selection_source_destroy( | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wl_listener *listener, void *data) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_seat *seat = | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_container_of(listener, seat, primary_selection_source_destroy); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_seat_client *seat_client = seat->keyboard_state.focused_client; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (seat_client && seat->keyboard_state.focused_surface) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wl_resource *resource; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_resource_for_each(resource, &seat_client->primary_selection_devices) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			wl_data_device_send_selection(resource, NULL); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	seat->primary_selection_source = NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_signal_emit(&seat->events.primary_selection, seat); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | void wlr_seat_set_primary_selection(struct wlr_seat *seat, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wlr_primary_selection_source *source, uint32_t serial) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (seat->primary_selection_source && | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			seat->primary_selection_serial - serial < UINT32_MAX / 2) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (seat->primary_selection_source) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		seat->primary_selection_source->cancel(seat->primary_selection_source); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		seat->primary_selection_source = NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_list_remove(&seat->primary_selection_source_destroy.link); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	seat->primary_selection_source = source; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	seat->primary_selection_serial = serial; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_seat_client *focused_client = | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		seat->keyboard_state.focused_client; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (focused_client) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wlr_seat_client_send_primary_selection(focused_client); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_signal_emit(&seat->events.primary_selection, seat); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (source) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		seat->primary_selection_source_destroy.notify = | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			seat_client_primary_selection_source_destroy; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_signal_add(&source->events.destroy, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			&seat->primary_selection_source_destroy); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void device_handle_set_selection(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wl_resource *resource, struct wl_resource *source_resource, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		uint32_t serial) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_primary_selection_source *source = NULL; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (source_resource != NULL) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		source = wl_resource_get_user_data(source_resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_seat_client *seat_client = | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_resource_get_user_data(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	// TODO: store serial and check against incoming serial here
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wlr_seat_set_primary_selection(seat_client->seat, source, serial); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void device_handle_destroy(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wl_resource *resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_resource_destroy(resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static const struct gtk_primary_selection_device_interface device_impl = { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	.set_selection = device_handle_set_selection, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	.destroy = device_handle_destroy, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | }; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | static void device_resource_handle_destroy(struct wl_resource *resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_remove(wl_resource_get_link(resource)); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void device_manager_handle_create_source(struct wl_client *client, |  |  |  | static void device_manager_handle_create_source(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		struct wl_resource *manager_resource, uint32_t id) { |  |  |  | 		struct wl_resource *manager_resource, uint32_t id) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	//struct wlr_primary_selection_device_manager *manager =
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	//	wl_resource_get_user_data(manager_resource);
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_primary_selection_source *source = |  |  |  | 	struct wlr_primary_selection_source *source = | 
			
		
	
		
		
			
				
					
					|  |  |  | 		calloc(1, sizeof(struct wlr_primary_selection_source)); |  |  |  | 		calloc(1, sizeof(struct wlr_primary_selection_source)); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	if (source == NULL) { |  |  |  | 	if (source == NULL) { | 
			
		
	
	
		
		
			
				
					|  |  | @ -59,11 +270,31 @@ static void device_manager_handle_create_source(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_resource_set_implementation(source->resource, &source_impl, source, |  |  |  | 	wl_resource_set_implementation(source->resource, &source_impl, source, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		source_resource_handle_destroy); |  |  |  | 		source_resource_handle_destroy); | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_signal_init(&source->events.destroy); |  |  |  | 	source->accept = client_source_accept; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	source->send = client_source_send; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	source->cancel = client_source_cancel; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wl_array_init(&source->mime_types); |  |  |  | 	wl_array_init(&source->mime_types); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_signal_init(&source->events.destroy); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	wlr_log(L_DEBUG, "new gtk_primary_selection_source %p (res %p)", source, |  |  |  | void device_manager_handle_get_device(struct wl_client *client, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		source->resource); |  |  |  | 		struct wl_resource *manager_resource, uint32_t id, | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		struct wl_resource *seat_resource) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wlr_seat_client *seat_client = | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_resource_get_user_data(seat_resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	uint32_t version = wl_resource_get_version(manager_resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	struct wl_resource *resource = wl_resource_create(client, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		>k_primary_selection_device_interface, version, id); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	if (resource == NULL) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_resource_post_no_memory(manager_resource); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		return; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_resource_set_implementation(resource, &device_impl, seat_client, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		&device_resource_handle_destroy); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	wl_list_insert(&seat_client->primary_selection_devices, | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		wl_resource_get_link(resource)); | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void device_manager_handle_destroy(struct wl_client *client, |  |  |  | static void device_manager_handle_destroy(struct wl_client *client, | 
			
		
	
	
		
		
			
				
					|  |  | @ -74,10 +305,11 @@ static void device_manager_handle_destroy(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | static const struct gtk_primary_selection_device_manager_interface |  |  |  | static const struct gtk_primary_selection_device_manager_interface | 
			
		
	
		
		
			
				
					
					|  |  |  | device_manager_impl = { |  |  |  | device_manager_impl = { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	.create_source = device_manager_handle_create_source, |  |  |  | 	.create_source = device_manager_handle_create_source, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	//.get_device = device_manager_handle_get_device,
 |  |  |  | 	.get_device = device_manager_handle_get_device, | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	.destroy = device_manager_handle_destroy, |  |  |  | 	.destroy = device_manager_handle_destroy, | 
			
		
	
		
		
			
				
					
					|  |  |  | }; |  |  |  | }; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | static void primary_selection_device_manager_bind(struct wl_client *client, |  |  |  | static void primary_selection_device_manager_bind(struct wl_client *client, | 
			
		
	
		
		
			
				
					
					|  |  |  | 		void *data, uint32_t version, uint32_t id) { |  |  |  | 		void *data, uint32_t version, uint32_t id) { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	struct wlr_primary_selection_device_manager *manager = data; |  |  |  | 	struct wlr_primary_selection_device_manager *manager = data; | 
			
		
	
	
		
		
			
				
					|  |  | 
 |