2013-04-18 23:07:39 +04:00
|
|
|
/*
|
|
|
|
* Copyright © 2011 Kristian Høgsberg
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
|
|
* that the name of the copyright holders not be used in advertising or
|
|
|
|
* publicity pertaining to distribution of the software without specific,
|
|
|
|
* written prior permission. The copyright holders make no representations
|
|
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
* OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "compositor.h"
|
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
struct weston_drag {
|
|
|
|
struct wl_client *client;
|
|
|
|
struct wl_data_source *data_source;
|
|
|
|
struct wl_listener data_source_listener;
|
|
|
|
struct weston_surface *focus;
|
|
|
|
struct wl_resource *focus_resource;
|
|
|
|
struct wl_listener focus_listener;
|
|
|
|
struct weston_pointer_grab grab;
|
2013-05-08 23:30:42 +04:00
|
|
|
struct weston_surface *icon;
|
|
|
|
struct wl_listener icon_destroy_listener;
|
2013-05-08 23:27:47 +04:00
|
|
|
int32_t dx, dy;
|
|
|
|
};
|
|
|
|
|
2013-05-07 19:18:46 +04:00
|
|
|
static void
|
|
|
|
empty_region(pixman_region32_t *region)
|
|
|
|
{
|
|
|
|
pixman_region32_fini(region);
|
|
|
|
pixman_region32_init(region);
|
|
|
|
}
|
|
|
|
|
2013-04-18 23:07:39 +04:00
|
|
|
static void
|
|
|
|
data_offer_accept(struct wl_client *client, struct wl_resource *resource,
|
|
|
|
uint32_t serial, const char *mime_type)
|
|
|
|
{
|
|
|
|
struct wl_data_offer *offer = resource->data;
|
|
|
|
|
|
|
|
/* FIXME: Check that client is currently focused by the input
|
|
|
|
* device that is currently dragging this data source. Should
|
|
|
|
* this be a wl_data_device request? */
|
|
|
|
|
|
|
|
if (offer->source)
|
|
|
|
offer->source->accept(offer->source, serial, mime_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
data_offer_receive(struct wl_client *client, struct wl_resource *resource,
|
|
|
|
const char *mime_type, int32_t fd)
|
|
|
|
{
|
|
|
|
struct wl_data_offer *offer = resource->data;
|
|
|
|
|
|
|
|
if (offer->source)
|
|
|
|
offer->source->send(offer->source, mime_type, fd);
|
|
|
|
else
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
data_offer_destroy(struct wl_client *client, struct wl_resource *resource)
|
|
|
|
{
|
|
|
|
wl_resource_destroy(resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_data_offer_interface data_offer_interface = {
|
|
|
|
data_offer_accept,
|
|
|
|
data_offer_receive,
|
|
|
|
data_offer_destroy,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
destroy_data_offer(struct wl_resource *resource)
|
|
|
|
{
|
|
|
|
struct wl_data_offer *offer = resource->data;
|
|
|
|
|
|
|
|
if (offer->source)
|
|
|
|
wl_list_remove(&offer->source_destroy_listener.link);
|
|
|
|
free(offer);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
destroy_offer_data_source(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
struct wl_data_offer *offer;
|
|
|
|
|
|
|
|
offer = container_of(listener, struct wl_data_offer,
|
|
|
|
source_destroy_listener);
|
|
|
|
|
|
|
|
offer->source = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct wl_resource *
|
|
|
|
wl_data_source_send_offer(struct wl_data_source *source,
|
|
|
|
struct wl_resource *target)
|
|
|
|
{
|
|
|
|
struct wl_data_offer *offer;
|
|
|
|
char **p;
|
|
|
|
|
|
|
|
offer = malloc(sizeof *offer);
|
|
|
|
if (offer == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
wl_resource_init(&offer->resource, &wl_data_offer_interface,
|
|
|
|
&data_offer_interface, 0, offer);
|
|
|
|
offer->resource.destroy = destroy_data_offer;
|
|
|
|
|
|
|
|
offer->source = source;
|
|
|
|
offer->source_destroy_listener.notify = destroy_offer_data_source;
|
|
|
|
wl_signal_add(&source->resource.destroy_signal,
|
|
|
|
&offer->source_destroy_listener);
|
|
|
|
|
|
|
|
wl_client_add_resource(target->client, &offer->resource);
|
|
|
|
|
|
|
|
wl_data_device_send_data_offer(target, &offer->resource);
|
|
|
|
|
|
|
|
wl_array_for_each(p, &source->mime_types)
|
|
|
|
wl_data_offer_send_offer(&offer->resource, *p);
|
|
|
|
|
|
|
|
return &offer->resource;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
data_source_offer(struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
const char *type)
|
|
|
|
{
|
|
|
|
struct wl_data_source *source = resource->data;
|
|
|
|
char **p;
|
|
|
|
|
|
|
|
p = wl_array_add(&source->mime_types, sizeof *p);
|
|
|
|
if (p)
|
|
|
|
*p = strdup(type);
|
|
|
|
if (!p || !*p)
|
|
|
|
wl_resource_post_no_memory(resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
data_source_destroy(struct wl_client *client, struct wl_resource *resource)
|
|
|
|
{
|
|
|
|
wl_resource_destroy(resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct wl_data_source_interface data_source_interface = {
|
|
|
|
data_source_offer,
|
|
|
|
data_source_destroy
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct wl_resource *
|
|
|
|
find_resource(struct wl_list *list, struct wl_client *client)
|
|
|
|
{
|
|
|
|
struct wl_resource *r;
|
|
|
|
|
|
|
|
wl_list_for_each(r, list, link) {
|
|
|
|
if (r->client == client)
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-05-07 19:18:46 +04:00
|
|
|
static void
|
|
|
|
drag_surface_configure(struct weston_surface *es, int32_t sx, int32_t sy, int32_t width, int32_t height)
|
|
|
|
{
|
2013-05-08 23:27:47 +04:00
|
|
|
struct weston_drag *drag = es->configure_private;
|
|
|
|
struct weston_pointer *pointer = drag->grab.pointer;
|
2013-05-08 06:42:28 +04:00
|
|
|
struct wl_list *list;
|
2013-05-08 06:53:43 +04:00
|
|
|
float fx, fy;
|
2013-05-08 06:42:28 +04:00
|
|
|
|
|
|
|
if (!weston_surface_is_mapped(es) && es->buffer_ref.buffer) {
|
2013-05-08 23:02:05 +04:00
|
|
|
if (pointer->sprite && weston_surface_is_mapped(pointer->sprite))
|
|
|
|
list = &pointer->sprite->layer_link;
|
2013-05-08 06:42:28 +04:00
|
|
|
else
|
2013-05-08 23:27:47 +04:00
|
|
|
list = &es->compositor->cursor_layer.surface_list;
|
2013-05-08 06:42:28 +04:00
|
|
|
|
|
|
|
wl_list_insert(list, &es->layer_link);
|
|
|
|
weston_surface_update_transform(es);
|
|
|
|
empty_region(&es->pending.input);
|
|
|
|
}
|
2013-05-07 19:18:46 +04:00
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
drag->dx += sx;
|
|
|
|
drag->dy += sy;
|
2013-05-08 06:53:43 +04:00
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
fx = wl_fixed_to_double(pointer->x) + drag->dx;
|
|
|
|
fy = wl_fixed_to_double(pointer->y) + drag->dy;
|
2013-05-08 06:53:43 +04:00
|
|
|
weston_surface_configure(es, fx, fy, width, height);
|
2013-05-07 19:18:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-05-08 23:27:47 +04:00
|
|
|
device_setup_new_drag_surface(struct weston_drag *drag,
|
2013-05-08 23:30:42 +04:00
|
|
|
struct weston_surface *icon)
|
2013-05-07 19:18:46 +04:00
|
|
|
{
|
2013-05-08 23:30:42 +04:00
|
|
|
if (icon->configure) {
|
|
|
|
wl_resource_post_error(&icon->resource,
|
2013-05-07 19:18:46 +04:00
|
|
|
WL_DISPLAY_ERROR_INVALID_OBJECT,
|
|
|
|
"surface->configure already set");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-05-08 23:30:42 +04:00
|
|
|
drag->icon = icon;
|
2013-05-08 23:27:47 +04:00
|
|
|
drag->dx = 0;
|
|
|
|
drag->dy = 0;
|
2013-05-07 19:18:46 +04:00
|
|
|
|
2013-05-08 23:30:42 +04:00
|
|
|
icon->configure = drag_surface_configure;
|
|
|
|
icon->configure_private = drag;
|
2013-05-07 19:18:46 +04:00
|
|
|
|
2013-05-08 23:30:42 +04:00
|
|
|
wl_signal_add(&icon->resource.destroy_signal,
|
|
|
|
&drag->icon_destroy_listener);
|
2013-05-07 19:18:46 +04:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-05-08 23:27:47 +04:00
|
|
|
device_release_drag_surface(struct weston_drag *drag)
|
2013-05-07 19:18:46 +04:00
|
|
|
{
|
2013-05-08 23:30:42 +04:00
|
|
|
if (weston_surface_is_mapped(drag->icon))
|
|
|
|
weston_surface_unmap(drag->icon);
|
2013-05-07 19:18:46 +04:00
|
|
|
|
2013-05-08 23:30:42 +04:00
|
|
|
drag->icon->configure = NULL;
|
|
|
|
empty_region(&drag->icon->pending.input);
|
|
|
|
wl_list_remove(&drag->icon_destroy_listener.link);
|
|
|
|
drag->icon = NULL;
|
2013-05-07 19:18:46 +04:00
|
|
|
}
|
|
|
|
|
2013-04-18 23:07:39 +04:00
|
|
|
static void
|
|
|
|
destroy_drag_focus(struct wl_listener *listener, void *data)
|
|
|
|
{
|
2013-05-08 23:27:47 +04:00
|
|
|
struct weston_drag *drag =
|
|
|
|
container_of(listener, struct weston_drag, focus_listener);
|
2013-04-18 23:07:39 +04:00
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
drag->focus_resource = NULL;
|
2013-04-18 23:07:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-05-07 06:15:05 +04:00
|
|
|
drag_grab_focus(struct weston_pointer_grab *grab,
|
2013-05-08 17:54:37 +04:00
|
|
|
struct weston_surface *surface, wl_fixed_t x, wl_fixed_t y)
|
2013-04-18 23:07:39 +04:00
|
|
|
{
|
2013-05-08 23:27:47 +04:00
|
|
|
struct weston_drag *drag =
|
|
|
|
container_of(grab, struct weston_drag, grab);
|
2013-04-18 23:07:39 +04:00
|
|
|
struct wl_resource *resource, *offer = NULL;
|
|
|
|
struct wl_display *display;
|
|
|
|
uint32_t serial;
|
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
if (drag->focus_resource) {
|
|
|
|
wl_data_device_send_leave(drag->focus_resource);
|
|
|
|
wl_list_remove(&drag->focus_listener.link);
|
|
|
|
drag->focus_resource = NULL;
|
|
|
|
drag->focus = NULL;
|
2013-04-18 23:07:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!surface)
|
|
|
|
return;
|
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
if (!drag->data_source && surface->resource.client != drag->client)
|
2013-04-18 23:07:39 +04:00
|
|
|
return;
|
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
resource = find_resource(&drag->grab.pointer->seat->drag_resource_list,
|
2013-04-18 23:07:39 +04:00
|
|
|
surface->resource.client);
|
|
|
|
if (!resource)
|
|
|
|
return;
|
|
|
|
|
|
|
|
display = wl_client_get_display(resource->client);
|
|
|
|
serial = wl_display_next_serial(display);
|
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
if (drag->data_source)
|
|
|
|
offer = wl_data_source_send_offer(drag->data_source, resource);
|
2013-04-18 23:07:39 +04:00
|
|
|
|
|
|
|
wl_data_device_send_enter(resource, serial, &surface->resource,
|
|
|
|
x, y, offer);
|
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
drag->focus = surface;
|
|
|
|
drag->focus_listener.notify = destroy_drag_focus;
|
|
|
|
wl_signal_add(&resource->destroy_signal, &drag->focus_listener);
|
|
|
|
drag->focus_resource = resource;
|
2013-04-18 23:07:39 +04:00
|
|
|
grab->focus = surface;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-05-07 06:15:05 +04:00
|
|
|
drag_grab_motion(struct weston_pointer_grab *grab,
|
2013-04-18 23:07:39 +04:00
|
|
|
uint32_t time, wl_fixed_t x, wl_fixed_t y)
|
|
|
|
{
|
2013-05-08 23:27:47 +04:00
|
|
|
struct weston_drag *drag =
|
|
|
|
container_of(grab, struct weston_drag, grab);
|
|
|
|
struct weston_pointer *pointer = drag->grab.pointer;
|
2013-05-08 06:53:43 +04:00
|
|
|
float fx, fy;
|
|
|
|
|
2013-05-08 23:30:42 +04:00
|
|
|
if (drag->icon) {
|
2013-05-08 23:27:47 +04:00
|
|
|
fx = wl_fixed_to_double(pointer->x) + drag->dx;
|
|
|
|
fy = wl_fixed_to_double(pointer->y) + drag->dy;
|
2013-05-08 23:30:42 +04:00
|
|
|
weston_surface_set_position(drag->icon, fx, fy);
|
|
|
|
weston_surface_schedule_repaint(drag->icon);
|
2013-05-08 06:53:43 +04:00
|
|
|
}
|
2013-04-18 23:07:39 +04:00
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
if (drag->focus_resource)
|
|
|
|
wl_data_device_send_motion(drag->focus_resource, time, x, y);
|
2013-04-18 23:07:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-05-08 23:27:47 +04:00
|
|
|
data_device_end_drag_grab(struct weston_drag *drag)
|
2013-04-18 23:07:39 +04:00
|
|
|
{
|
2013-05-08 23:30:42 +04:00
|
|
|
if (drag->icon)
|
2013-05-08 23:27:47 +04:00
|
|
|
device_release_drag_surface(drag);
|
2013-04-18 23:07:39 +04:00
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
drag_grab_focus(&drag->grab, NULL,
|
2013-04-18 23:07:39 +04:00
|
|
|
wl_fixed_from_int(0), wl_fixed_from_int(0));
|
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
weston_pointer_end_grab(drag->grab.pointer);
|
2013-04-18 23:07:39 +04:00
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
free(drag);
|
2013-04-18 23:07:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-05-07 06:15:05 +04:00
|
|
|
drag_grab_button(struct weston_pointer_grab *grab,
|
2013-04-18 23:07:39 +04:00
|
|
|
uint32_t time, uint32_t button, uint32_t state_w)
|
|
|
|
{
|
2013-05-08 23:27:47 +04:00
|
|
|
struct weston_drag *drag =
|
|
|
|
container_of(grab, struct weston_drag, grab);
|
|
|
|
struct weston_pointer *pointer = drag->grab.pointer;
|
2013-04-18 23:07:39 +04:00
|
|
|
enum wl_pointer_button_state state = state_w;
|
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
if (drag->focus_resource &&
|
|
|
|
pointer->grab_button == button &&
|
2013-04-18 23:07:39 +04:00
|
|
|
state == WL_POINTER_BUTTON_STATE_RELEASED)
|
2013-05-08 23:27:47 +04:00
|
|
|
wl_data_device_send_drop(drag->focus_resource);
|
2013-04-18 23:07:39 +04:00
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
if (pointer->button_count == 0 &&
|
2013-04-18 23:07:39 +04:00
|
|
|
state == WL_POINTER_BUTTON_STATE_RELEASED) {
|
2013-05-08 23:27:47 +04:00
|
|
|
if (drag->data_source)
|
|
|
|
wl_list_remove(&drag->data_source_listener.link);
|
|
|
|
data_device_end_drag_grab(drag);
|
2013-04-18 23:07:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-07 06:15:05 +04:00
|
|
|
static const struct weston_pointer_grab_interface drag_grab_interface = {
|
2013-04-18 23:07:39 +04:00
|
|
|
drag_grab_focus,
|
|
|
|
drag_grab_motion,
|
|
|
|
drag_grab_button,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
destroy_data_device_source(struct wl_listener *listener, void *data)
|
|
|
|
{
|
2013-05-08 23:27:47 +04:00
|
|
|
struct weston_drag *drag = container_of(listener, struct weston_drag,
|
|
|
|
data_source_listener);
|
2013-04-18 23:07:39 +04:00
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
data_device_end_drag_grab(drag);
|
2013-04-18 23:07:39 +04:00
|
|
|
}
|
|
|
|
|
2013-05-07 19:18:46 +04:00
|
|
|
static void
|
2013-05-08 23:30:42 +04:00
|
|
|
handle_drag_icon_destroy(struct wl_listener *listener, void *data)
|
2013-05-07 19:18:46 +04:00
|
|
|
{
|
2013-05-08 23:27:47 +04:00
|
|
|
struct weston_drag *drag = container_of(listener, struct weston_drag,
|
2013-05-08 23:30:42 +04:00
|
|
|
icon_destroy_listener);
|
2013-05-07 19:18:46 +04:00
|
|
|
|
2013-05-08 23:30:42 +04:00
|
|
|
drag->icon = NULL;
|
2013-05-07 19:18:46 +04:00
|
|
|
}
|
|
|
|
|
2013-04-18 23:07:39 +04:00
|
|
|
static void
|
|
|
|
data_device_start_drag(struct wl_client *client, struct wl_resource *resource,
|
|
|
|
struct wl_resource *source_resource,
|
|
|
|
struct wl_resource *origin_resource,
|
|
|
|
struct wl_resource *icon_resource, uint32_t serial)
|
|
|
|
{
|
2013-05-07 07:19:49 +04:00
|
|
|
struct weston_seat *seat = resource->data;
|
2013-05-08 23:27:47 +04:00
|
|
|
struct weston_drag *drag = resource->data;
|
2013-04-18 23:07:39 +04:00
|
|
|
|
|
|
|
/* FIXME: Check that client has implicit grab on the origin
|
|
|
|
* surface that matches the given time. */
|
|
|
|
|
|
|
|
/* FIXME: Check that the data source type array isn't empty. */
|
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
drag = malloc(sizeof *drag);
|
|
|
|
if (drag == NULL) {
|
|
|
|
wl_resource_post_no_memory(resource);
|
|
|
|
return;
|
|
|
|
}
|
2013-04-18 23:07:39 +04:00
|
|
|
|
2013-05-08 23:27:47 +04:00
|
|
|
memset(drag, 0, sizeof *drag);
|
|
|
|
drag->grab.interface = &drag_grab_interface;
|
|
|
|
drag->client = client;
|
2013-05-08 23:30:42 +04:00
|
|
|
drag->icon_destroy_listener.notify = handle_drag_icon_destroy;
|
2013-04-18 23:07:39 +04:00
|
|
|
|
|
|
|
if (source_resource) {
|
2013-05-08 23:27:47 +04:00
|
|
|
drag->data_source = source_resource->data;
|
|
|
|
drag->data_source_listener.notify = destroy_data_device_source;
|
2013-04-18 23:07:39 +04:00
|
|
|
wl_signal_add(&source_resource->destroy_signal,
|
2013-05-08 23:27:47 +04:00
|
|
|
&drag->data_source_listener);
|
2013-04-18 23:07:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (icon_resource) {
|
2013-05-08 23:27:47 +04:00
|
|
|
if (!device_setup_new_drag_surface(drag, icon_resource->data))
|
2013-05-08 05:06:38 +04:00
|
|
|
return;
|
2013-04-18 23:07:39 +04:00
|
|
|
}
|
|
|
|
|
2013-05-07 06:15:05 +04:00
|
|
|
weston_pointer_set_focus(seat->pointer, NULL,
|
|
|
|
wl_fixed_from_int(0), wl_fixed_from_int(0));
|
2013-05-08 23:27:47 +04:00
|
|
|
weston_pointer_start_grab(seat->pointer, &drag->grab);
|
2013-04-18 23:07:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
destroy_selection_data_source(struct wl_listener *listener, void *data)
|
|
|
|
{
|
2013-05-07 07:19:49 +04:00
|
|
|
struct weston_seat *seat = container_of(listener, struct weston_seat,
|
|
|
|
selection_data_source_listener);
|
2013-04-18 23:07:39 +04:00
|
|
|
struct wl_resource *data_device;
|
|
|
|
struct wl_resource *focus = NULL;
|
|
|
|
|
|
|
|
seat->selection_data_source = NULL;
|
|
|
|
|
|
|
|
if (seat->keyboard)
|
|
|
|
focus = seat->keyboard->focus_resource;
|
|
|
|
if (focus) {
|
|
|
|
data_device = find_resource(&seat->drag_resource_list,
|
|
|
|
focus->client);
|
|
|
|
if (data_device)
|
|
|
|
wl_data_device_send_selection(data_device, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
wl_signal_emit(&seat->selection_signal, seat);
|
|
|
|
}
|
|
|
|
|
|
|
|
WL_EXPORT void
|
2013-05-07 07:19:49 +04:00
|
|
|
weston_seat_set_selection(struct weston_seat *seat,
|
|
|
|
struct wl_data_source *source, uint32_t serial)
|
2013-04-18 23:07:39 +04:00
|
|
|
{
|
|
|
|
struct wl_resource *data_device, *offer;
|
|
|
|
struct wl_resource *focus = NULL;
|
|
|
|
|
|
|
|
if (seat->selection_data_source &&
|
|
|
|
seat->selection_serial - serial < UINT32_MAX / 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (seat->selection_data_source) {
|
|
|
|
seat->selection_data_source->cancel(seat->selection_data_source);
|
|
|
|
wl_list_remove(&seat->selection_data_source_listener.link);
|
|
|
|
seat->selection_data_source = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
seat->selection_data_source = source;
|
|
|
|
seat->selection_serial = serial;
|
|
|
|
|
|
|
|
if (seat->keyboard)
|
|
|
|
focus = seat->keyboard->focus_resource;
|
|
|
|
if (focus) {
|
|
|
|
data_device = find_resource(&seat->drag_resource_list,
|
|
|
|
focus->client);
|
|
|
|
if (data_device && source) {
|
|
|
|
offer = wl_data_source_send_offer(seat->selection_data_source,
|
|
|
|
data_device);
|
|
|
|
wl_data_device_send_selection(data_device, offer);
|
|
|
|
} else if (data_device) {
|
|
|
|
wl_data_device_send_selection(data_device, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wl_signal_emit(&seat->selection_signal, seat);
|
|
|
|
|
|
|
|
if (source) {
|
|
|
|
seat->selection_data_source_listener.notify =
|
|
|
|
destroy_selection_data_source;
|
|
|
|
wl_signal_add(&source->resource.destroy_signal,
|
|
|
|
&seat->selection_data_source_listener);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
data_device_set_selection(struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
struct wl_resource *source_resource, uint32_t serial)
|
|
|
|
{
|
|
|
|
if (!source_resource)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* FIXME: Store serial and check against incoming serial here. */
|
2013-05-07 07:19:49 +04:00
|
|
|
weston_seat_set_selection(resource->data, source_resource->data,
|
|
|
|
serial);
|
2013-04-18 23:07:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_data_device_interface data_device_interface = {
|
|
|
|
data_device_start_drag,
|
|
|
|
data_device_set_selection,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
destroy_data_source(struct wl_resource *resource)
|
|
|
|
{
|
|
|
|
struct wl_data_source *source =
|
|
|
|
container_of(resource, struct wl_data_source, resource);
|
|
|
|
char **p;
|
|
|
|
|
|
|
|
wl_array_for_each(p, &source->mime_types)
|
|
|
|
free(*p);
|
|
|
|
|
|
|
|
wl_array_release(&source->mime_types);
|
|
|
|
|
|
|
|
source->resource.object.id = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
client_source_accept(struct wl_data_source *source,
|
|
|
|
uint32_t time, const char *mime_type)
|
|
|
|
{
|
|
|
|
wl_data_source_send_target(&source->resource, mime_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
client_source_send(struct wl_data_source *source,
|
|
|
|
const char *mime_type, int32_t fd)
|
|
|
|
{
|
|
|
|
wl_data_source_send_send(&source->resource, mime_type, fd);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
client_source_cancel(struct wl_data_source *source)
|
|
|
|
{
|
|
|
|
wl_data_source_send_cancelled(&source->resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
create_data_source(struct wl_client *client,
|
|
|
|
struct wl_resource *resource, uint32_t id)
|
|
|
|
{
|
|
|
|
struct wl_data_source *source;
|
|
|
|
|
|
|
|
source = malloc(sizeof *source);
|
|
|
|
if (source == NULL) {
|
|
|
|
wl_resource_post_no_memory(resource);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wl_resource_init(&source->resource, &wl_data_source_interface,
|
|
|
|
&data_source_interface, id, source);
|
|
|
|
source->resource.destroy = destroy_data_source;
|
|
|
|
|
|
|
|
source->accept = client_source_accept;
|
|
|
|
source->send = client_source_send;
|
|
|
|
source->cancel = client_source_cancel;
|
|
|
|
|
|
|
|
wl_array_init(&source->mime_types);
|
|
|
|
wl_client_add_resource(client, &source->resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void unbind_data_device(struct wl_resource *resource)
|
|
|
|
{
|
|
|
|
wl_list_remove(&resource->link);
|
|
|
|
free(resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
get_data_device(struct wl_client *client,
|
|
|
|
struct wl_resource *manager_resource,
|
|
|
|
uint32_t id, struct wl_resource *seat_resource)
|
|
|
|
{
|
2013-05-07 07:19:49 +04:00
|
|
|
struct weston_seat *seat = seat_resource->data;
|
2013-04-18 23:07:39 +04:00
|
|
|
struct wl_resource *resource;
|
|
|
|
|
|
|
|
resource = wl_client_add_object(client, &wl_data_device_interface,
|
|
|
|
&data_device_interface, id,
|
|
|
|
seat);
|
|
|
|
|
|
|
|
wl_list_insert(&seat->drag_resource_list, &resource->link);
|
|
|
|
resource->destroy = unbind_data_device;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_data_device_manager_interface manager_interface = {
|
|
|
|
create_data_source,
|
|
|
|
get_data_device
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
bind_manager(struct wl_client *client,
|
|
|
|
void *data, uint32_t version, uint32_t id)
|
|
|
|
{
|
|
|
|
wl_client_add_object(client, &wl_data_device_manager_interface,
|
|
|
|
&manager_interface, id, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
WL_EXPORT void
|
2013-05-07 07:19:49 +04:00
|
|
|
wl_data_device_set_keyboard_focus(struct weston_seat *seat)
|
2013-04-18 23:07:39 +04:00
|
|
|
{
|
|
|
|
struct wl_resource *data_device, *focus, *offer;
|
|
|
|
struct wl_data_source *source;
|
|
|
|
|
|
|
|
if (!seat->keyboard)
|
|
|
|
return;
|
|
|
|
|
|
|
|
focus = seat->keyboard->focus_resource;
|
|
|
|
if (!focus)
|
|
|
|
return;
|
|
|
|
|
|
|
|
data_device = find_resource(&seat->drag_resource_list,
|
|
|
|
focus->client);
|
|
|
|
if (!data_device)
|
|
|
|
return;
|
|
|
|
|
|
|
|
source = seat->selection_data_source;
|
|
|
|
if (source) {
|
|
|
|
offer = wl_data_source_send_offer(source, data_device);
|
|
|
|
wl_data_device_send_selection(data_device, offer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WL_EXPORT int
|
|
|
|
wl_data_device_manager_init(struct wl_display *display)
|
|
|
|
{
|
|
|
|
if (wl_display_add_global(display,
|
|
|
|
&wl_data_device_manager_interface,
|
|
|
|
NULL, bind_manager) == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|