2 * Copyright © 2010 Kristian Høgsberg
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.
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
32 #include <sys/epoll.h>
33 #include <gdk-pixbuf/gdk-pixbuf.h>
35 #include <wayland-client.h>
38 #include "cairo-util.h"
41 struct window *window;
42 struct display *display;
44 struct item *items[16];
48 cairo_surface_t *translucent;
49 cairo_surface_t *opaque;
50 int hotspot_x, hotspot_y;
55 int x_offset, y_offset;
56 const char *mime_type;
62 struct wl_array types;
64 const char *drag_type;
71 cairo_surface_t *surface;
76 struct dnd_flower_message {
77 int seed, x_offset, y_offset;
81 static const int item_width = 64;
82 static const int item_height = 64;
83 static const int item_padding = 16;
86 item_create(struct display *display, int x, int y, int seed)
91 item = malloc(sizeof *item);
96 gettimeofday(&tv, NULL);
97 item->seed = seed ? seed : tv.tv_usec;
100 const int petal_count = 3 + random() % 5;
101 const double r1 = 20 + random() % 10;
102 const double r2 = 5 + random() % 12;
103 const double u = (10 + random() % 90) / 100.0;
104 const double v = (random() % 90) / 100.0;
108 double t, dt = 2 * M_PI / (petal_count * 2);
109 double x1, y1, x2, y2, x3, y3;
110 struct rectangle rect;
113 rect.width = item_width;
114 rect.height = item_height;
115 item->surface = display_create_surface(display, NULL, &rect, 0);
120 cr = cairo_create(item->surface);
121 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
122 cairo_set_source_rgba(cr, 0, 0, 0, 0);
125 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
126 cairo_translate(cr, item_width / 2, item_height / 2);
128 cairo_move_to(cr, cos(t) * r1, sin(t) * r1);
129 for (i = 0; i < petal_count; i++, t += dt * 2) {
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;
138 x1 - y1 * u, y1 + x1 * u,
139 x2 + y2 * v, y2 - x2 * v,
143 x2 - y2 * v, y2 + x2 * v,
144 x3 + y3 * u, y3 - x3 * u,
148 cairo_close_path(cr);
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);
156 cairo_fill_preserve(cr);
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);
172 dnd_draw(struct dnd *dnd)
174 struct rectangle allocation;
176 cairo_surface_t *surface;
179 window_draw(dnd->window);
181 surface = window_get_surface(dnd->window);
182 cr = cairo_create(surface);
183 window_get_child_allocation(dnd->window, &allocation);
184 cairo_rectangle(cr, allocation.x, allocation.y,
185 allocation.width, allocation.height);
187 cairo_push_group(cr);
189 cairo_translate(cr, allocation.x, allocation.y);
190 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
191 cairo_set_source_rgba(cr, 0, 0, 0, 0.8);
194 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
195 for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) {
198 cairo_set_source_surface(cr, dnd->items[i]->surface,
199 dnd->items[i]->x, dnd->items[i]->y);
203 cairo_pop_group_to_source(cr);
206 cairo_surface_destroy(surface);
207 window_flush(dnd->window);
211 redraw_handler(struct window *window, void *data)
213 struct dnd *dnd = data;
219 keyboard_focus_handler(struct window *window,
220 struct input *device, void *data)
222 struct dnd *dnd = data;
224 window_schedule_redraw(dnd->window);
228 dnd_offer_destroy(struct dnd_offer *dnd_offer)
230 dnd_offer->refcount--;
231 if (dnd_offer->refcount == 0) {
232 wl_array_release(&dnd_offer->types);
238 dnd_add_item(struct dnd *dnd, struct item *item)
242 for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) {
243 if (dnd->items[i] == 0) {
244 dnd->items[i] = item;
252 dnd_get_item(struct dnd *dnd, int32_t x, int32_t y)
255 struct rectangle allocation;
258 window_get_child_allocation(dnd->window, &allocation);
263 for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) {
264 item = dnd->items[i];
266 item->x <= x && x < item->x + item_width &&
267 item->y <= y && y < item->y + item_height)
275 drag_target(void *data,
276 struct wl_drag *drag, const char *mime_type)
278 struct dnd_drag *dnd_drag = data;
279 struct dnd *dnd = dnd_drag->dnd;
280 struct wl_input_device *device;
281 cairo_surface_t *surface;
282 struct wl_buffer *buffer;
284 fprintf(stderr, "target %s\n", mime_type);
285 device = input_get_input_device(dnd_drag->input);
286 dnd_drag->mime_type = mime_type;
288 surface = dnd_drag->opaque;
290 surface = dnd_drag->translucent;
292 buffer = display_get_buffer_for_surface(dnd->display, surface);
293 wl_input_device_attach(device, dnd_drag->time, buffer,
294 dnd_drag->hotspot_x, dnd_drag->hotspot_y);
298 drag_finish(void *data, struct wl_drag *drag, int fd)
300 struct dnd_drag *dnd_drag = data;
302 if (!dnd_drag->mime_type) {
303 dnd_add_item(dnd_drag->dnd, dnd_drag->item);
304 window_schedule_redraw(dnd_drag->dnd->window);
308 struct dnd_flower_message dnd_flower_message;
311 dnd_flower_message.seed = dnd_drag->item->seed;
313 dnd_flower_message.x_offset = dnd_drag->x_offset;
314 dnd_flower_message.y_offset = dnd_drag->y_offset;
316 fprintf(stderr, "got 'finish', fd %d, sending dnd_flower_message\n", fd);
318 write(fd, &dnd_flower_message, sizeof dnd_flower_message);
321 /* The 'finish' event marks the end of the session on the drag
322 * source side and we need to clean up the drag object created
323 * and the local state. */
324 wl_drag_destroy(drag);
326 /* Destroy the item that has been dragged out */
327 cairo_surface_destroy(dnd_drag->item->surface);
328 free(dnd_drag->item);
330 cairo_surface_destroy(dnd_drag->translucent);
331 cairo_surface_destroy(dnd_drag->opaque);
336 drag_reject(void *data, struct wl_drag *drag)
338 struct dnd_drag *dnd_drag = data;
340 dnd_add_item(dnd_drag->dnd, dnd_drag->item);
341 window_schedule_redraw(dnd_drag->dnd->window);
344 static const struct wl_drag_listener drag_listener = {
351 drag_offer_offer(void *data,
352 struct wl_drag_offer *offer, const char *type)
354 struct dnd_offer *dnd_offer = data;
357 p = wl_array_add(&dnd_offer->types, sizeof *p);
363 drag_offer_pointer_focus(void *data,
364 struct wl_drag_offer *offer,
365 uint32_t time, struct wl_surface *surface,
366 int32_t x, int32_t y,
367 int32_t surface_x, int32_t surface_y)
369 struct dnd_offer *dnd_offer = data;
370 struct window *window;
373 /* The last event in a dnd session is pointer_focus with a
374 * NULL surface, whether or not we get the drop event. We
375 * need to clean up the dnd_offer proxy and whatever state we
378 fprintf(stderr, "pointer focus NULL, session over\n");
379 wl_drag_offer_destroy(offer);
380 dnd_offer_destroy(dnd_offer);
384 fprintf(stderr, "drag pointer focus %p\n", surface);
385 fprintf(stderr, "offered types:\n");
386 end = dnd_offer->types.data + dnd_offer->types.size;
387 for (p = dnd_offer->types.data; p < end; p++)
388 fprintf(stderr, "\%s\n", *p);
390 window = wl_surface_get_user_data(surface);
391 dnd_offer->dnd = window_get_user_data(window);
393 if (!dnd_get_item(dnd_offer->dnd, surface_x, surface_y)) {
394 wl_drag_offer_accept(offer, time, "application/x-wayland-dnd-flower");
395 dnd_offer->drag_type = "application/x-wayland-dnd-flower";
396 dnd_offer->x = surface_x;
397 dnd_offer->y = surface_y;
399 wl_drag_offer_accept(offer, time, NULL);
400 dnd_offer->drag_type = NULL;
405 drag_offer_motion(void *data,
406 struct wl_drag_offer *offer, uint32_t time,
407 int32_t x, int32_t y, int32_t surface_x, int32_t surface_y)
409 struct dnd_offer *dnd_offer = data;
411 if (!dnd_get_item(dnd_offer->dnd, surface_x, surface_y)) {
412 fprintf(stderr, "drag offer motion %d, %d, accepting\n",
413 surface_x, surface_y);
414 wl_drag_offer_accept(offer, time, "application/x-wayland-dnd-flower");
415 dnd_offer->drag_type = "application/x-wayland-dnd-flower";
416 dnd_offer->x = surface_x;
417 dnd_offer->y = surface_y;
419 fprintf(stderr, "drag offer motion %d, %d, declining\n",
420 surface_x, surface_y);
421 wl_drag_offer_accept(offer, time, NULL);
422 dnd_offer->drag_type = NULL;
427 drop_io_func(struct task *task, uint32_t events)
429 struct dnd_offer *dnd_offer =
430 container_of(task, struct dnd_offer, io_task);
431 struct dnd *dnd = dnd_offer->dnd;
432 struct dnd_flower_message dnd_flower_message;
436 len = read(dnd_offer->fd,
437 &dnd_flower_message, sizeof dnd_flower_message);
438 fprintf(stderr, "read %d bytes\n", len);
440 close(dnd_offer->fd);
442 item = item_create(dnd->display,
443 dnd_offer->x - dnd_flower_message.x_offset - 26,
444 dnd_offer->y - dnd_flower_message.y_offset - 66,
445 dnd_flower_message.seed);
447 dnd_add_item(dnd, item);
448 window_schedule_redraw(dnd->window);
450 dnd_offer_destroy(dnd_offer);
454 drag_offer_drop(void *data, struct wl_drag_offer *offer)
456 struct dnd_offer *dnd_offer = data;
459 if (!dnd_offer->drag_type) {
460 fprintf(stderr, "got 'drop', but no target\n");
461 wl_drag_offer_reject(offer);
465 fprintf(stderr, "got 'drop', sending write end of pipe\n");
467 dnd_offer->refcount++;
469 wl_drag_offer_receive(offer, p[1]);
472 dnd_offer->io_task.run = drop_io_func;
473 dnd_offer->fd = p[0];
474 display_watch_fd(dnd_offer->dnd->display,
475 p[0], EPOLLIN, &dnd_offer->io_task);
478 static const struct wl_drag_offer_listener drag_offer_listener = {
480 drag_offer_pointer_focus,
486 global_handler(struct wl_display *display, uint32_t id,
487 const char *interface, uint32_t version, void *data)
489 struct wl_drag_offer *offer;
490 struct dnd_offer *dnd_offer;
492 if (strcmp(interface, "wl_drag_offer") != 0)
495 offer = wl_display_bind(display, id, &wl_drag_offer_interface);
497 dnd_offer = malloc(sizeof *dnd_offer);
498 if (dnd_offer == NULL)
501 dnd_offer->refcount = 1;
503 wl_drag_offer_add_listener(offer, &drag_offer_listener, dnd_offer);
504 wl_array_init(&dnd_offer->types);
507 static cairo_surface_t *
508 create_drag_cursor(struct dnd_drag *dnd_drag,
509 struct item *item, int32_t x, int32_t y, double opacity)
511 struct dnd *dnd = dnd_drag->dnd;
512 cairo_surface_t *surface, *pointer;
513 int32_t pointer_width, pointer_height, hotspot_x, hotspot_y;
514 struct rectangle rectangle;
515 cairo_pattern_t *pattern;
518 pointer = display_get_pointer_surface(dnd->display,
525 rectangle.width = item_width + 2 * pointer_width;
526 rectangle.height = item_height + 2 * pointer_height;
527 surface = display_create_surface(dnd->display, NULL, &rectangle, 0);
529 cr = cairo_create(surface);
530 cairo_translate(cr, pointer_width, pointer_height);
532 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
533 cairo_set_source_rgba(cr, 0, 0, 0, 0);
536 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
537 cairo_set_source_surface(cr, item->surface, 0, 0);
538 pattern = cairo_pattern_create_rgba(0, 0, 0, opacity);
539 cairo_mask(cr, pattern);
540 cairo_pattern_destroy(pattern);
542 cairo_set_source_surface(cr, pointer,
543 x - item->x - hotspot_x,
544 y - item->y - hotspot_y);
545 cairo_surface_destroy(pointer);
547 /* FIXME: more cairo-gl brokeness */
548 surface_flush_device(surface);
551 dnd_drag->hotspot_x = pointer_width + x - item->x;
552 dnd_drag->hotspot_y = pointer_height + y - item->y;
558 dnd_button_handler(struct window *window,
559 struct input *input, uint32_t time,
560 int button, int state, void *data)
562 struct dnd *dnd = data;
565 struct rectangle allocation;
566 struct dnd_drag *dnd_drag;
567 struct wl_drag *drag;
570 window_get_child_allocation(dnd->window, &allocation);
571 input_get_position(input, &x, &y);
572 item = dnd_get_item(dnd, x, y);
576 if (item && state == 1) {
577 fprintf(stderr, "start drag, item %p\n", item);
579 dnd_drag = malloc(sizeof *dnd_drag);
581 dnd_drag->input = input;
582 dnd_drag->time = time;
583 dnd_drag->item = item;
584 dnd_drag->x_offset = x - item->x;
585 dnd_drag->y_offset = y - item->y;
587 for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) {
588 if (item == dnd->items[i]){
595 create_drag_cursor(dnd_drag, item, x, y, 1);
596 dnd_drag->translucent =
597 create_drag_cursor(dnd_drag, item, x, y, 0.2);
599 drag = window_create_drag(window);
600 wl_drag_offer(drag, "application/x-wayland-dnd-flower");
601 window_activate_drag(drag, window, input, time);
602 wl_drag_add_listener(drag, &drag_listener, dnd_drag);
603 window_schedule_redraw(dnd->window);
608 dnd_motion_handler(struct window *window,
609 struct input *input, uint32_t time,
610 int32_t x, int32_t y,
611 int32_t sx, int32_t sy, void *data)
613 struct dnd *dnd = data;
616 item = dnd_get_item(dnd, sx, sy);
619 return POINTER_HAND1;
621 return POINTER_LEFT_PTR;
625 dnd_create(struct display *display)
629 int32_t width, height;
631 dnd = malloc(sizeof *dnd);
634 memset(dnd, 0, sizeof *dnd);
636 dnd->window = window_create(display, 400, 400);
637 window_set_title(dnd->window, "Wayland Drag and Drop Demo");
639 dnd->display = display;
642 wl_display_add_global_listener(display_get_display(display),
643 global_handler, dnd);
645 for (i = 0; i < ARRAY_LENGTH(dnd->items); i++) {
646 x = (i % 4) * (item_width + item_padding) + item_padding;
647 y = (i / 4) * (item_height + item_padding) + item_padding;
648 if ((i ^ (i >> 2)) & 1)
649 dnd->items[i] = item_create(display, x, y, 0);
651 dnd->items[i] = NULL;
654 window_set_user_data(dnd->window, dnd);
655 window_set_redraw_handler(dnd->window, redraw_handler);
656 window_set_keyboard_focus_handler(dnd->window,
657 keyboard_focus_handler);
658 window_set_button_handler(dnd->window,
661 window_set_motion_handler(dnd->window,
664 width = 4 * (item_width + item_padding) + item_padding;
665 height = 4 * (item_height + item_padding) + item_padding;
666 window_set_child_size(dnd->window, width, height);
673 static const GOptionEntry option_entries[] = {
678 main(int argc, char *argv[])
682 d = display_create(&argc, &argv, option_entries);
684 fprintf(stderr, "failed to create display: %m\n");