blob: 44c15412e15200971adf37120e021f6417fec514 [file] [log] [blame]
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -04001/*
2 * Copyright © 2010 Kristian Høgsberg
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
Philipp Brüschweilerf22d0ec2012-08-13 20:04:54 +020023#include <assert.h>
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040024#include <stdint.h>
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <fcntl.h>
29#include <unistd.h>
30#include <math.h>
31#include <sys/time.h>
32#include <cairo.h>
Kristian Høgsberg3a696272011-09-14 17:33:48 -040033#include <sys/epoll.h>
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040034
Pekka Paalanen50719bc2011-11-22 14:18:50 +020035#include <wayland-client.h>
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +030036#include <wayland-cursor.h>
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040037
38#include "window.h"
Kristian Høgsberg5a315bc2012-05-15 22:33:43 -040039#include "../shared/cairo-util.h"
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040040
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +030041struct dnd_drag;
42
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040043struct dnd {
44 struct window *window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -050045 struct widget *widget;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040046 struct display *display;
47 uint32_t key;
48 struct item *items[16];
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +030049 int self_only;
50 struct dnd_drag *current_drag;
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -040051};
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -040052
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -040053struct dnd_drag {
54 cairo_surface_t *translucent;
55 cairo_surface_t *opaque;
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -040056 int hotspot_x, hotspot_y;
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -040057 struct dnd *dnd;
58 struct input *input;
Kristian Høgsbergce457ba2010-09-14 15:39:45 -040059 uint32_t time;
Joel Teichroeb0c007ae2010-11-30 10:22:16 -080060 struct item *item;
61 int x_offset, y_offset;
Kristian Høgsberg679f7162012-03-27 16:44:57 -040062 int width, height;
Joel Teichroeb0c007ae2010-11-30 10:22:16 -080063 const char *mime_type;
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -040064
Ander Conselvan de Oliveirae47c3a32012-02-15 17:02:58 +020065 struct wl_surface *drag_surface;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -040066 struct wl_data_source *data_source;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040067};
68
69struct item {
70 cairo_surface_t *surface;
Joel Teichroeb0c007ae2010-11-30 10:22:16 -080071 int seed;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040072 int x, y;
73};
74
Joel Teichroeb0c007ae2010-11-30 10:22:16 -080075struct dnd_flower_message {
76 int seed, x_offset, y_offset;
77};
78
79
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040080static const int item_width = 64;
81static const int item_height = 64;
82static const int item_padding = 16;
83
84static struct item *
Joel Teichroeb0c007ae2010-11-30 10:22:16 -080085item_create(struct display *display, int x, int y, int seed)
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040086{
Joel Teichroeb0c007ae2010-11-30 10:22:16 -080087 struct item *item;
88 struct timeval tv;
89
90 item = malloc(sizeof *item);
91 if (item == NULL)
92 return NULL;
93
94
95 gettimeofday(&tv, NULL);
96 item->seed = seed ? seed : tv.tv_usec;
97 srandom(item->seed);
98
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -040099 const int petal_count = 3 + random() % 5;
100 const double r1 = 20 + random() % 10;
101 const double r2 = 5 + random() % 12;
102 const double u = (10 + random() % 90) / 100.0;
103 const double v = (random() % 90) / 100.0;
104
105 cairo_t *cr;
106 int i;
107 double t, dt = 2 * M_PI / (petal_count * 2);
108 double x1, y1, x2, y2, x3, y3;
109 struct rectangle rect;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400110
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400111
112 rect.width = item_width;
113 rect.height = item_height;
Ander Conselvan de Oliveira210eb9d2012-05-25 16:03:06 +0300114 item->surface =
115 display_create_surface(display, NULL, &rect, SURFACE_SHM);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400116
117 item->x = x;
118 item->y = y;
119
120 cr = cairo_create(item->surface);
121 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
122 cairo_set_source_rgba(cr, 0, 0, 0, 0);
123 cairo_paint(cr);
124
125 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
126 cairo_translate(cr, item_width / 2, item_height / 2);
127 t = random();
128 cairo_move_to(cr, cos(t) * r1, sin(t) * r1);
129 for (i = 0; i < petal_count; i++, t += dt * 2) {
130 x1 = cos(t) * r1;
131 y1 = sin(t) * r1;
132 x2 = cos(t + dt) * r2;
133 y2 = sin(t + dt) * r2;
134 x3 = cos(t + 2 * dt) * r1;
135 y3 = sin(t + 2 * dt) * r1;
136
137 cairo_curve_to(cr,
138 x1 - y1 * u, y1 + x1 * u,
139 x2 + y2 * v, y2 - x2 * v,
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400140 x2, y2);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400141
142 cairo_curve_to(cr,
143 x2 - y2 * v, y2 + x2 * v,
144 x3 + y3 * u, y3 - x3 * u,
145 x3, y3);
146 }
147
148 cairo_close_path(cr);
149
150 cairo_set_source_rgba(cr,
151 0.5 + (random() % 50) / 49.0,
152 0.5 + (random() % 50) / 49.0,
153 0.5 + (random() % 50) / 49.0,
154 0.5 + (random() % 100) / 99.0);
155
156 cairo_fill_preserve(cr);
157
158 cairo_set_line_width(cr, 1);
159 cairo_set_source_rgba(cr,
160 0.5 + (random() % 50) / 49.0,
161 0.5 + (random() % 50) / 49.0,
162 0.5 + (random() % 50) / 49.0,
163 0.5 + (random() % 100) / 99.0);
164 cairo_stroke(cr);
165
166 cairo_destroy(cr);
167
168 return item;
169}
170
171static void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500172dnd_redraw_handler(struct widget *widget, void *data)
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400173{
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500174 struct dnd *dnd = data;
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500175 struct rectangle allocation;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400176 cairo_t *cr;
Kristian Høgsberge164e4e2011-01-21 11:35:05 -0500177 cairo_surface_t *surface;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400178 unsigned int i;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400179
Kristian Høgsberge164e4e2011-01-21 11:35:05 -0500180 surface = window_get_surface(dnd->window);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400181 cr = cairo_create(surface);
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500182 widget_get_allocation(dnd->widget, &allocation);
Kristian Høgsberge164e4e2011-01-21 11:35:05 -0500183 cairo_rectangle(cr, allocation.x, allocation.y,
184 allocation.width, allocation.height);
Kristian Høgsberge164e4e2011-01-21 11:35:05 -0500185
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400186 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
187 cairo_set_source_rgba(cr, 0, 0, 0, 0.8);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400188 cairo_fill(cr);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400189
Kristian Høgsberg0fd49aa2012-07-23 21:32:46 -0400190 cairo_rectangle(cr, allocation.x, allocation.y,
191 allocation.width, allocation.height);
192 cairo_clip(cr);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400193 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
194 for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) {
195 if (!dnd->items[i])
196 continue;
197 cairo_set_source_surface(cr, dnd->items[i]->surface,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400198 dnd->items[i]->x + allocation.x,
199 dnd->items[i]->y + allocation.y);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400200 cairo_paint(cr);
201 }
202
203 cairo_destroy(cr);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400204 cairo_surface_destroy(surface);
205}
206
207static void
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400208keyboard_focus_handler(struct window *window,
209 struct input *device, void *data)
210{
211 struct dnd *dnd = data;
212
213 window_schedule_redraw(dnd->window);
214}
215
Joel Teichroeb0c007ae2010-11-30 10:22:16 -0800216static int
217dnd_add_item(struct dnd *dnd, struct item *item)
218{
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400219 unsigned int i;
Joel Teichroeb0c007ae2010-11-30 10:22:16 -0800220
221 for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) {
222 if (dnd->items[i] == 0) {
223 dnd->items[i] = item;
224 return i;
225 }
226 }
227 return -1;
228}
229
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400230static struct item *
231dnd_get_item(struct dnd *dnd, int32_t x, int32_t y)
232{
233 struct item *item;
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500234 struct rectangle allocation;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400235 unsigned int i;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400236
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500237 widget_get_allocation(dnd->widget, &allocation);
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400238
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500239 x -= allocation.x;
240 y -= allocation.y;
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400241
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400242 for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) {
243 item = dnd->items[i];
244 if (item &&
245 item->x <= x && x < item->x + item_width &&
246 item->y <= y && y < item->y + item_height)
247 return item;
248 }
249
250 return NULL;
251}
252
253static void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400254data_source_target(void *data,
255 struct wl_data_source *source, const char *mime_type)
Kristian Høgsberg506e20e2010-08-19 17:26:02 -0400256{
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400257 struct dnd_drag *dnd_drag = data;
258 struct dnd *dnd = dnd_drag->dnd;
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400259 cairo_surface_t *surface;
260 struct wl_buffer *buffer;
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -0400261
Joel Teichroeb0c007ae2010-11-30 10:22:16 -0800262 dnd_drag->mime_type = mime_type;
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400263 if (mime_type)
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400264 surface = dnd_drag->opaque;
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400265 else
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400266 surface = dnd_drag->translucent;
267
268 buffer = display_get_buffer_for_surface(dnd->display, surface);
Ander Conselvan de Oliveirae47c3a32012-02-15 17:02:58 +0200269 wl_surface_attach(dnd_drag->drag_surface, buffer, 0, 0);
Kristian Høgsberg679f7162012-03-27 16:44:57 -0400270 wl_surface_damage(dnd_drag->drag_surface, 0, 0,
271 dnd_drag->width, dnd_drag->height);
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400272}
273
274static void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400275data_source_send(void *data, struct wl_data_source *source,
276 const char *mime_type, int32_t fd)
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400277{
Joel Teichroeb0c007ae2010-11-30 10:22:16 -0800278 struct dnd_flower_message dnd_flower_message;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400279 struct dnd_drag *dnd_drag = data;
Joel Teichroeb0c007ae2010-11-30 10:22:16 -0800280
281 dnd_flower_message.seed = dnd_drag->item->seed;
Joel Teichroeb0c007ae2010-11-30 10:22:16 -0800282 dnd_flower_message.x_offset = dnd_drag->x_offset;
283 dnd_flower_message.y_offset = dnd_drag->y_offset;
284
Jonas Ådahl3685c3a2012-03-30 23:10:27 +0200285 if (write(fd, &dnd_flower_message, sizeof dnd_flower_message) < 0)
286 abort();
287
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400288 close(fd);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400289}
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400290
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400291static void
292data_source_cancelled(void *data, struct wl_data_source *source)
293{
294 struct dnd_drag *dnd_drag = data;
295
296 /* The 'cancelled' event means that the source is no longer in
297 * use by the drag (or current selection). We need to clean
298 * up the drag object created and the local state. */
299
300 wl_data_source_destroy(dnd_drag->data_source);
Joel Teichroeb0c007ae2010-11-30 10:22:16 -0800301
302 /* Destroy the item that has been dragged out */
303 cairo_surface_destroy(dnd_drag->item->surface);
304 free(dnd_drag->item);
Ander Conselvan de Oliveirae47c3a32012-02-15 17:02:58 +0200305
306 wl_surface_destroy(dnd_drag->drag_surface);
307
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400308 cairo_surface_destroy(dnd_drag->translucent);
309 cairo_surface_destroy(dnd_drag->opaque);
310 free(dnd_drag);
311}
312
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400313static const struct wl_data_source_listener data_source_listener = {
314 data_source_target,
315 data_source_send,
316 data_source_cancelled
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400317};
318
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400319static cairo_surface_t *
320create_drag_cursor(struct dnd_drag *dnd_drag,
321 struct item *item, int32_t x, int32_t y, double opacity)
322{
323 struct dnd *dnd = dnd_drag->dnd;
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300324 cairo_surface_t *surface;
325 struct wl_cursor_image *pointer;
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400326 struct rectangle rectangle;
327 cairo_pattern_t *pattern;
328 cairo_t *cr;
329
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +0300330 pointer = display_get_pointer_image(dnd->display, CURSOR_DRAGGING);
Philipp Brüschweilerf22d0ec2012-08-13 20:04:54 +0200331 if (!pointer) {
332 fprintf(stderr, "WARNING: grabbing cursor image not found\n");
333 pointer = display_get_pointer_image(dnd->display,
334 CURSOR_LEFT_PTR);
335 assert(pointer && "no cursor image found");
336 }
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400337
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300338 rectangle.width = item_width + 2 * pointer->width;
339 rectangle.height = item_height + 2 * pointer->height;
Ander Conselvan de Oliveira210eb9d2012-05-25 16:03:06 +0300340 surface = display_create_surface(dnd->display, NULL, &rectangle,
341 SURFACE_SHM);
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400342
343 cr = cairo_create(surface);
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300344 cairo_translate(cr, pointer->width, pointer->height);
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400345
346 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
347 cairo_set_source_rgba(cr, 0, 0, 0, 0);
348 cairo_paint(cr);
349
350 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
351 cairo_set_source_surface(cr, item->surface, 0, 0);
352 pattern = cairo_pattern_create_rgba(0, 0, 0, opacity);
353 cairo_mask(cr, pattern);
354 cairo_pattern_destroy(pattern);
355
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400356 /* FIXME: more cairo-gl brokeness */
Benjamin Franzke47eb8f42011-10-07 09:08:56 +0200357 surface_flush_device(surface);
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400358 cairo_destroy(cr);
359
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300360 dnd_drag->hotspot_x = pointer->width + x - item->x;
361 dnd_drag->hotspot_y = pointer->height + y - item->y;
Kristian Høgsberg679f7162012-03-27 16:44:57 -0400362 dnd_drag->width = rectangle.width;
363 dnd_drag->height = rectangle.height;
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400364
365 return surface;
366}
367
Kristian Høgsberg506e20e2010-08-19 17:26:02 -0400368static void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -0500369dnd_button_handler(struct widget *widget,
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400370 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +0100371 uint32_t button, enum wl_pointer_button_state state,
372 void *data)
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400373{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500374 struct dnd *dnd = data;
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400375 int32_t x, y;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400376 struct item *item;
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500377 struct rectangle allocation;
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400378 struct dnd_drag *dnd_drag;
Ander Conselvan de Oliveirae47c3a32012-02-15 17:02:58 +0200379 struct display *display;
380 struct wl_compositor *compositor;
381 struct wl_buffer *buffer;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400382 unsigned int i;
Kristian Høgsbergeae5de72012-04-11 22:42:15 -0400383 uint32_t serial;
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300384 cairo_surface_t *icon;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400385
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500386 widget_get_allocation(dnd->widget, &allocation);
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400387 input_get_position(input, &x, &y);
388 item = dnd_get_item(dnd, x, y);
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500389 x -= allocation.x;
390 y -= allocation.y;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400391
Daniel Stone4dbadb12012-05-30 16:31:51 +0100392 if (item && state == WL_POINTER_BUTTON_STATE_PRESSED) {
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400393 dnd_drag = malloc(sizeof *dnd_drag);
394 dnd_drag->dnd = dnd;
395 dnd_drag->input = input;
Kristian Høgsbergce457ba2010-09-14 15:39:45 -0400396 dnd_drag->time = time;
Joel Teichroeb0c007ae2010-11-30 10:22:16 -0800397 dnd_drag->item = item;
398 dnd_drag->x_offset = x - item->x;
399 dnd_drag->y_offset = y - item->y;
400
401 for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) {
402 if (item == dnd->items[i]){
403 dnd->items[i] = 0;
404 break;
405 }
406 }
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400407
Ander Conselvan de Oliveirae47c3a32012-02-15 17:02:58 +0200408 display = window_get_display(dnd->window);
409 compositor = display_get_compositor(display);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -0400410 serial = display_get_serial(display);
Ander Conselvan de Oliveirae47c3a32012-02-15 17:02:58 +0200411 dnd_drag->drag_surface =
412 wl_compositor_create_surface(compositor);
413
Kristian Høgsberga6c8b002012-04-13 12:55:45 -0400414 input_ungrab(input);
415
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300416 if (dnd->self_only) {
417 dnd_drag->data_source = NULL;
418 } else {
419 dnd_drag->data_source =
420 display_create_data_source(dnd->display);
421 wl_data_source_add_listener(dnd_drag->data_source,
422 &data_source_listener,
423 dnd_drag);
424 wl_data_source_offer(dnd_drag->data_source,
425 "application/x-wayland-dnd-flower");
426 wl_data_source_offer(dnd_drag->data_source,
427 "text/plain; charset=utf-8");
428 }
429
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400430 wl_data_device_start_drag(input_get_data_device(input),
431 dnd_drag->data_source,
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500432 window_get_wl_surface(dnd->window),
Ander Conselvan de Oliveirae47c3a32012-02-15 17:02:58 +0200433 dnd_drag->drag_surface,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -0400434 serial);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400435
Kristian Høgsberg5a4e9ff2012-06-04 16:04:07 -0400436 input_set_pointer_image(input, CURSOR_DRAGGING);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400437
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400438 dnd_drag->opaque =
439 create_drag_cursor(dnd_drag, item, x, y, 1);
440 dnd_drag->translucent =
441 create_drag_cursor(dnd_drag, item, x, y, 0.2);
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -0400442
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300443 if (dnd->self_only)
444 icon = dnd_drag->opaque;
445 else
446 icon = dnd_drag->translucent;
447
448 buffer = display_get_buffer_for_surface(dnd->display, icon);
Ander Conselvan de Oliveirae47c3a32012-02-15 17:02:58 +0200449 wl_surface_attach(dnd_drag->drag_surface, buffer,
450 -dnd_drag->hotspot_x, -dnd_drag->hotspot_y);
Kristian Høgsberg679f7162012-03-27 16:44:57 -0400451 wl_surface_damage(dnd_drag->drag_surface, 0, 0,
452 dnd_drag->width, dnd_drag->height);
Ander Conselvan de Oliveirae47c3a32012-02-15 17:02:58 +0200453
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300454 dnd->current_drag = dnd_drag;
Joel Teichroeb0c007ae2010-11-30 10:22:16 -0800455 window_schedule_redraw(dnd->window);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400456 }
457}
458
459static int
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400460lookup_cursor(struct dnd *dnd, int x, int y)
461{
462 struct item *item;
463
464 item = dnd_get_item(dnd, x, y);
465 if (item)
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +0300466 return CURSOR_HAND1;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400467 else
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +0300468 return CURSOR_LEFT_PTR;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400469}
470
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -0500471static int
Kristian Høgsbergac7619f2012-01-09 09:26:38 -0500472dnd_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -0400473 struct input *input, float x, float y, void *data)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400474{
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300475 struct dnd *dnd = data;
476
477 dnd->current_drag = NULL;
478
479 return lookup_cursor(dnd, x, y);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400480}
481
482static int
Kristian Høgsberg5f190ef2012-01-09 09:44:45 -0500483dnd_motion_handler(struct widget *widget,
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400484 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -0400485 float x, float y, void *data)
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400486{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500487 return lookup_cursor(data, x, y);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400488}
489
490static void
491dnd_data_handler(struct window *window,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -0400492 struct input *input,
Kristian Høgsberg80680c72012-05-10 12:21:37 -0400493 float x, float y, const char **types, void *data)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400494{
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400495 struct dnd *dnd = data;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400496
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300497 if (!types)
498 return;
499
500 if (dnd_get_item(dnd, x, y) || dnd->self_only) {
Kristian Høgsbergeae5de72012-04-11 22:42:15 -0400501 input_accept(input, NULL);
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300502 } else {
503 input_accept(input, types[0]);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400504 }
505}
506
507static void
508dnd_receive_func(void *data, size_t len, int32_t x, int32_t y, void *user_data)
509{
510 struct dnd *dnd = user_data;
511 struct dnd_flower_message *message = data;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400512 struct item *item;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400513 struct rectangle allocation;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400514
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400515 if (len == 0) {
516 return;
517 } else if (len != sizeof *message) {
518 fprintf(stderr, "odd message length %ld, expected %ld\n",
519 len, sizeof *message);
520 return;
521 }
522
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500523 widget_get_allocation(dnd->widget, &allocation);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400524 item = item_create(dnd->display,
525 x - message->x_offset - allocation.x,
526 y - message->y_offset - allocation.y,
527 message->seed);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400528
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400529 dnd_add_item(dnd, item);
530 window_schedule_redraw(dnd->window);
531}
532
533static void
534dnd_drop_handler(struct window *window, struct input *input,
535 int32_t x, int32_t y, void *data)
536{
537 struct dnd *dnd = data;
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300538 struct dnd_flower_message message;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400539
540 if (dnd_get_item(dnd, x, y)) {
541 fprintf(stderr, "got 'drop', but no target\n");
542 return;
543 }
544
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300545 if (!dnd->self_only) {
546 input_receive_drag_data(input,
547 "application/x-wayland-dnd-flower",
548 dnd_receive_func, dnd);
549 } else if (dnd->current_drag) {
550 message.seed = dnd->current_drag->item->seed;
551 message.x_offset = dnd->current_drag->x_offset;
552 message.y_offset = dnd->current_drag->y_offset;
553 dnd_receive_func(&message, sizeof message, x, y, dnd);
554 dnd->current_drag = NULL;
555 } else {
556 fprintf(stderr, "ignoring drop from another client\n");
557 }
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400558}
559
560static struct dnd *
561dnd_create(struct display *display)
562{
563 struct dnd *dnd;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400564 int x, y;
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500565 int32_t width, height;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400566 unsigned int i;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400567
568 dnd = malloc(sizeof *dnd);
569 if (dnd == NULL)
570 return dnd;
571 memset(dnd, 0, sizeof *dnd);
572
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -0500573 dnd->window = window_create(display);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500574 dnd->widget = frame_create(dnd->window, dnd);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500575 window_set_title(dnd->window, "Wayland Drag and Drop Demo");
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400576
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400577 dnd->display = display;
578 dnd->key = 100;
579
580 for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) {
581 x = (i % 4) * (item_width + item_padding) + item_padding;
582 y = (i / 4) * (item_height + item_padding) + item_padding;
583 if ((i ^ (i >> 2)) & 1)
Joel Teichroeb0c007ae2010-11-30 10:22:16 -0800584 dnd->items[i] = item_create(display, x, y, 0);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400585 else
586 dnd->items[i] = NULL;
587 }
588
589 window_set_user_data(dnd->window, dnd);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400590 window_set_keyboard_focus_handler(dnd->window,
591 keyboard_focus_handler);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400592 window_set_data_handler(dnd->window, dnd_data_handler);
593 window_set_drop_handler(dnd->window, dnd_drop_handler);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400594
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500595 widget_set_redraw_handler(dnd->widget, dnd_redraw_handler);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500596 widget_set_enter_handler(dnd->widget, dnd_enter_handler);
597 widget_set_motion_handler(dnd->widget, dnd_motion_handler);
598 widget_set_button_handler(dnd->widget, dnd_button_handler);
Kristian Høgsbergac7619f2012-01-09 09:26:38 -0500599
Kristian Høgsbergda846ca2011-01-11 10:00:52 -0500600 width = 4 * (item_width + item_padding) + item_padding;
601 height = 4 * (item_height + item_padding) + item_padding;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400602
Kristian Høgsberga1627922012-06-20 17:30:03 -0400603 frame_set_child_size(dnd->widget, width, height);
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400604
605 return dnd;
606}
607
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400608int
609main(int argc, char *argv[])
610{
611 struct display *d;
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300612 struct dnd *dnd;
613 int i;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400614
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400615 d = display_create(argc, argv);
Yuval Fledele9f5e362010-11-22 21:34:19 +0200616 if (d == NULL) {
617 fprintf(stderr, "failed to create display: %m\n");
618 return -1;
619 }
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400620
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +0300621 dnd = dnd_create(d);
622
623 for (i = 1; i < argc; i++)
624 if (strcmp("--self-only", argv[i]) == 0)
625 dnd->self_only = 1;
Kristian Høgsbergb8cc24e2010-08-18 20:31:06 -0400626
627 display_run(d);
628
629 return 0;
630}