window.c: Dismiss menu on touch up events
[platform/upstream/weston.git] / clients / window.c
1 /*
2  * Copyright © 2008 Kristian Høgsberg
3  * Copyright © 2012-2013 Collabora, Ltd.
4  *
5  * Permission to use, copy, modify, distribute, and sell this software and its
6  * documentation for any purpose is hereby granted without fee, provided that
7  * the above copyright notice appear in all copies and that both that copyright
8  * notice and this permission notice appear in supporting documentation, and
9  * that the name of the copyright holders not be used in advertising or
10  * publicity pertaining to distribution of the software without specific,
11  * written prior permission.  The copyright holders make no representations
12  * about the suitability of this software for any purpose.  It is provided "as
13  * is" without express or implied warranty.
14  *
15  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
17  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
19  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
20  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
21  * OF THIS SOFTWARE.
22  */
23
24 #include "config.h"
25
26 #include <stdint.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <stdarg.h>
30 #include <string.h>
31 #include <fcntl.h>
32 #include <unistd.h>
33 #include <errno.h>
34 #include <math.h>
35 #include <assert.h>
36 #include <time.h>
37 #include <cairo.h>
38 #include <sys/mman.h>
39 #include <sys/epoll.h>
40 #include <sys/timerfd.h>
41
42 #ifdef HAVE_CAIRO_EGL
43 #include <wayland-egl.h>
44
45 #ifdef USE_CAIRO_GLESV2
46 #include <GLES2/gl2.h>
47 #include <GLES2/gl2ext.h>
48 #else
49 #include <GL/gl.h>
50 #endif
51 #include <EGL/egl.h>
52 #include <EGL/eglext.h>
53
54 #include <cairo-gl.h>
55 #else /* HAVE_CAIRO_EGL */
56 typedef void *EGLDisplay;
57 typedef void *EGLConfig;
58 typedef void *EGLContext;
59 #define EGL_NO_DISPLAY ((EGLDisplay)0)
60 #endif /* no HAVE_CAIRO_EGL */
61
62 #include <xkbcommon/xkbcommon.h>
63 #include <wayland-cursor.h>
64
65 #include <linux/input.h>
66 #include <wayland-client.h>
67 #include "../shared/cairo-util.h"
68 #include "xdg-shell-client-protocol.h"
69 #include "text-cursor-position-client-protocol.h"
70 #include "workspaces-client-protocol.h"
71 #include "../shared/os-compatibility.h"
72
73 #include "window.h"
74
75 struct shm_pool;
76
77 struct global {
78         uint32_t name;
79         char *interface;
80         uint32_t version;
81         struct wl_list link;
82 };
83
84 struct display {
85         struct wl_display *display;
86         struct wl_registry *registry;
87         struct wl_compositor *compositor;
88         struct wl_subcompositor *subcompositor;
89         struct wl_shm *shm;
90         struct wl_data_device_manager *data_device_manager;
91         struct text_cursor_position *text_cursor_position;
92         struct workspace_manager *workspace_manager;
93         struct xdg_shell *xdg_shell;
94         EGLDisplay dpy;
95         EGLConfig argb_config;
96         EGLContext argb_ctx;
97         cairo_device_t *argb_device;
98         uint32_t serial;
99
100         int display_fd;
101         uint32_t display_fd_events;
102         struct task display_task;
103
104         int epoll_fd;
105         struct wl_list deferred_list;
106
107         int running;
108
109         struct wl_list global_list;
110         struct wl_list window_list;
111         struct wl_list input_list;
112         struct wl_list output_list;
113
114         struct theme *theme;
115
116         struct wl_cursor_theme *cursor_theme;
117         struct wl_cursor **cursors;
118
119         display_output_handler_t output_configure_handler;
120         display_global_handler_t global_handler;
121         display_global_handler_t global_handler_remove;
122
123         void *user_data;
124
125         struct xkb_context *xkb_context;
126
127         uint32_t workspace;
128         uint32_t workspace_count;
129
130         /* A hack to get text extents for tooltips */
131         cairo_surface_t *dummy_surface;
132         void *dummy_surface_data;
133
134         int has_rgb565;
135         int seat_version;
136 };
137
138 struct window_output {
139         struct output *output;
140         struct wl_list link;
141 };
142
143 struct toysurface {
144         /*
145          * Prepare the surface for drawing. Makes sure there is a surface
146          * of the right size available for rendering, and returns it.
147          * dx,dy are the x,y of wl_surface.attach.
148          * width,height are the new buffer size.
149          * If flags has SURFACE_HINT_RESIZE set, the user is
150          * doing continuous resizing.
151          * Returns the Cairo surface to draw to.
152          */
153         cairo_surface_t *(*prepare)(struct toysurface *base, int dx, int dy,
154                                     int32_t width, int32_t height, uint32_t flags,
155                                     enum wl_output_transform buffer_transform, int32_t buffer_scale);
156
157         /*
158          * Post the surface to the server, returning the server allocation
159          * rectangle. The Cairo surface from prepare() must be destroyed
160          * after calling this.
161          */
162         void (*swap)(struct toysurface *base,
163                      enum wl_output_transform buffer_transform, int32_t buffer_scale,
164                      struct rectangle *server_allocation);
165
166         /*
167          * Make the toysurface current with the given EGL context.
168          * Returns 0 on success, and negative of failure.
169          */
170         int (*acquire)(struct toysurface *base, EGLContext ctx);
171
172         /*
173          * Release the toysurface from the EGL context, returning control
174          * to Cairo.
175          */
176         void (*release)(struct toysurface *base);
177
178         /*
179          * Destroy the toysurface, including the Cairo surface, any
180          * backing storage, and the Wayland protocol objects.
181          */
182         void (*destroy)(struct toysurface *base);
183 };
184
185 struct surface {
186         struct window *window;
187
188         struct wl_surface *surface;
189         struct wl_subsurface *subsurface;
190         int synchronized;
191         int synchronized_default;
192         struct toysurface *toysurface;
193         struct widget *widget;
194         int redraw_needed;
195         struct wl_callback *frame_cb;
196         uint32_t last_time;
197
198         struct rectangle allocation;
199         struct rectangle server_allocation;
200
201         struct wl_region *input_region;
202         struct wl_region *opaque_region;
203
204         enum window_buffer_type buffer_type;
205         enum wl_output_transform buffer_transform;
206         int32_t buffer_scale;
207
208         cairo_surface_t *cairo_surface;
209
210         struct wl_list link;
211 };
212
213 struct window {
214         struct display *display;
215         struct wl_list window_output_list;
216         char *title;
217         struct rectangle saved_allocation;
218         struct rectangle min_allocation;
219         struct rectangle pending_allocation;
220         int x, y;
221         int redraw_needed;
222         int redraw_task_scheduled;
223         struct task redraw_task;
224         int resize_needed;
225         int custom;
226         int focused;
227
228         int resizing;
229
230         int fullscreen;
231         int maximized;
232
233         enum preferred_format preferred_format;
234
235         window_key_handler_t key_handler;
236         window_keyboard_focus_handler_t keyboard_focus_handler;
237         window_data_handler_t data_handler;
238         window_drop_handler_t drop_handler;
239         window_close_handler_t close_handler;
240         window_fullscreen_handler_t fullscreen_handler;
241         window_output_handler_t output_handler;
242
243         struct surface *main_surface;
244         struct xdg_surface *xdg_surface;
245         struct xdg_popup *xdg_popup;
246
247         struct window *transient_for;
248
249         struct window_frame *frame;
250
251         /* struct surface::link, contains also main_surface */
252         struct wl_list subsurface_list;
253
254         void *user_data;
255         struct wl_list link;
256 };
257
258 struct widget {
259         struct window *window;
260         struct surface *surface;
261         struct tooltip *tooltip;
262         struct wl_list child_list;
263         struct wl_list link;
264         struct rectangle allocation;
265         widget_resize_handler_t resize_handler;
266         widget_redraw_handler_t redraw_handler;
267         widget_enter_handler_t enter_handler;
268         widget_leave_handler_t leave_handler;
269         widget_motion_handler_t motion_handler;
270         widget_button_handler_t button_handler;
271         widget_touch_down_handler_t touch_down_handler;
272         widget_touch_up_handler_t touch_up_handler;
273         widget_touch_motion_handler_t touch_motion_handler;
274         widget_touch_frame_handler_t touch_frame_handler;
275         widget_touch_cancel_handler_t touch_cancel_handler;
276         widget_axis_handler_t axis_handler;
277         void *user_data;
278         int opaque;
279         int tooltip_count;
280         int default_cursor;
281         /* If this is set to false then no cairo surface will be
282          * created before redrawing the surface. This is useful if the
283          * redraw handler is going to do completely custom rendering
284          * such as using EGL directly */
285         int use_cairo;
286 };
287
288 struct touch_point {
289         int32_t id;
290         float x, y;
291         struct widget *widget;
292         struct wl_list link;
293 };
294
295 struct input {
296         struct display *display;
297         struct wl_seat *seat;
298         struct wl_pointer *pointer;
299         struct wl_keyboard *keyboard;
300         struct wl_touch *touch;
301         struct wl_list touch_point_list;
302         struct window *pointer_focus;
303         struct window *keyboard_focus;
304         struct window *touch_focus;
305         int current_cursor;
306         uint32_t cursor_anim_start;
307         struct wl_callback *cursor_frame_cb;
308         struct wl_surface *pointer_surface;
309         uint32_t modifiers;
310         uint32_t pointer_enter_serial;
311         uint32_t cursor_serial;
312         float sx, sy;
313         struct wl_list link;
314
315         struct widget *focus_widget;
316         struct widget *grab;
317         uint32_t grab_button;
318
319         struct wl_data_device *data_device;
320         struct data_offer *drag_offer;
321         struct data_offer *selection_offer;
322         uint32_t touch_grab;
323         int32_t touch_grab_id;
324         float drag_x, drag_y;
325         struct window *drag_focus;
326         uint32_t drag_enter_serial;
327
328         struct {
329                 struct xkb_keymap *keymap;
330                 struct xkb_state *state;
331                 xkb_mod_mask_t control_mask;
332                 xkb_mod_mask_t alt_mask;
333                 xkb_mod_mask_t shift_mask;
334         } xkb;
335
336         struct task repeat_task;
337         int repeat_timer_fd;
338         uint32_t repeat_sym;
339         uint32_t repeat_key;
340         uint32_t repeat_time;
341 };
342
343 struct output {
344         struct display *display;
345         struct wl_output *output;
346         uint32_t server_output_id;
347         struct rectangle allocation;
348         struct wl_list link;
349         int transform;
350         int scale;
351         char *make;
352         char *model;
353
354         display_output_handler_t destroy_handler;
355         void *user_data;
356 };
357
358 struct window_frame {
359         struct widget *widget;
360         struct widget *child;
361         struct frame *frame;
362 };
363
364 struct menu {
365         struct window *window;
366         struct window *parent;
367         struct widget *widget;
368         struct input *input;
369         struct frame *frame;
370         const char **entries;
371         uint32_t time;
372         int current;
373         int count;
374         int release_count;
375         menu_func_t func;
376 };
377
378 struct tooltip {
379         struct widget *parent;
380         struct widget *widget;
381         char *entry;
382         struct task tooltip_task;
383         int tooltip_fd;
384         float x, y;
385 };
386
387 struct shm_pool {
388         struct wl_shm_pool *pool;
389         size_t size;
390         size_t used;
391         void *data;
392 };
393
394 enum {
395         CURSOR_DEFAULT = 100,
396         CURSOR_UNSET
397 };
398
399 static const cairo_user_data_key_t shm_surface_data_key;
400
401 /* #define DEBUG */
402
403 #ifdef DEBUG
404
405 static void
406 debug_print(void *proxy, int line, const char *func, const char *fmt, ...)
407 __attribute__ ((format (printf, 4, 5)));
408
409 static void
410 debug_print(void *proxy, int line, const char *func, const char *fmt, ...)
411 {
412         va_list ap;
413         struct timeval tv;
414
415         gettimeofday(&tv, NULL);
416         fprintf(stderr, "%8ld.%03ld ",
417                 (long)tv.tv_sec & 0xffff, (long)tv.tv_usec / 1000);
418
419         if (proxy)
420                 fprintf(stderr, "%s@%d ",
421                         wl_proxy_get_class(proxy), wl_proxy_get_id(proxy));
422
423         /*fprintf(stderr, __FILE__ ":%d:%s ", line, func);*/
424         fprintf(stderr, "%s ", func);
425
426         va_start(ap, fmt);
427         vfprintf(stderr, fmt, ap);
428         va_end(ap);
429 }
430
431 #define DBG(fmt, ...) \
432         debug_print(NULL, __LINE__, __func__, fmt, ##__VA_ARGS__)
433
434 #define DBG_OBJ(obj, fmt, ...) \
435         debug_print(obj, __LINE__, __func__, fmt, ##__VA_ARGS__)
436
437 #else
438
439 #define DBG(...) do {} while (0)
440 #define DBG_OBJ(...) do {} while (0)
441
442 #endif
443
444 static void
445 surface_to_buffer_size (enum wl_output_transform buffer_transform, int32_t buffer_scale, int32_t *width, int32_t *height)
446 {
447         int32_t tmp;
448
449         switch (buffer_transform) {
450         case WL_OUTPUT_TRANSFORM_90:
451         case WL_OUTPUT_TRANSFORM_270:
452         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
453         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
454                 tmp = *width;
455                 *width = *height;
456                 *height = tmp;
457                 break;
458         default:
459                 break;
460         }
461
462         *width *= buffer_scale;
463         *height *= buffer_scale;
464 }
465
466 static void
467 buffer_to_surface_size (enum wl_output_transform buffer_transform, int32_t buffer_scale, int32_t *width, int32_t *height)
468 {
469         int32_t tmp;
470
471         switch (buffer_transform) {
472         case WL_OUTPUT_TRANSFORM_90:
473         case WL_OUTPUT_TRANSFORM_270:
474         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
475         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
476                 tmp = *width;
477                 *width = *height;
478                 *height = tmp;
479                 break;
480         default:
481                 break;
482         }
483
484         *width /= buffer_scale;
485         *height /= buffer_scale;
486 }
487
488 #ifdef HAVE_CAIRO_EGL
489
490 struct egl_window_surface {
491         struct toysurface base;
492         cairo_surface_t *cairo_surface;
493         struct display *display;
494         struct wl_surface *surface;
495         struct wl_egl_window *egl_window;
496         EGLSurface egl_surface;
497 };
498
499 static struct egl_window_surface *
500 to_egl_window_surface(struct toysurface *base)
501 {
502         return container_of(base, struct egl_window_surface, base);
503 }
504
505 static cairo_surface_t *
506 egl_window_surface_prepare(struct toysurface *base, int dx, int dy,
507                            int32_t width, int32_t height, uint32_t flags,
508                            enum wl_output_transform buffer_transform, int32_t buffer_scale)
509 {
510         struct egl_window_surface *surface = to_egl_window_surface(base);
511
512         surface_to_buffer_size (buffer_transform, buffer_scale, &width, &height);
513
514         wl_egl_window_resize(surface->egl_window, width, height, dx, dy);
515         cairo_gl_surface_set_size(surface->cairo_surface, width, height);
516
517         return cairo_surface_reference(surface->cairo_surface);
518 }
519
520 static void
521 egl_window_surface_swap(struct toysurface *base,
522                         enum wl_output_transform buffer_transform, int32_t buffer_scale,
523                         struct rectangle *server_allocation)
524 {
525         struct egl_window_surface *surface = to_egl_window_surface(base);
526
527         cairo_gl_surface_swapbuffers(surface->cairo_surface);
528         wl_egl_window_get_attached_size(surface->egl_window,
529                                         &server_allocation->width,
530                                         &server_allocation->height);
531
532         buffer_to_surface_size (buffer_transform, buffer_scale,
533                                 &server_allocation->width,
534                                 &server_allocation->height);
535 }
536
537 static int
538 egl_window_surface_acquire(struct toysurface *base, EGLContext ctx)
539 {
540         struct egl_window_surface *surface = to_egl_window_surface(base);
541         cairo_device_t *device;
542
543         device = cairo_surface_get_device(surface->cairo_surface);
544         if (!device)
545                 return -1;
546
547         if (!ctx) {
548                 if (device == surface->display->argb_device)
549                         ctx = surface->display->argb_ctx;
550                 else
551                         assert(0);
552         }
553
554         cairo_device_flush(device);
555         cairo_device_acquire(device);
556         if (!eglMakeCurrent(surface->display->dpy, surface->egl_surface,
557                             surface->egl_surface, ctx))
558                 fprintf(stderr, "failed to make surface current\n");
559
560         return 0;
561 }
562
563 static void
564 egl_window_surface_release(struct toysurface *base)
565 {
566         struct egl_window_surface *surface = to_egl_window_surface(base);
567         cairo_device_t *device;
568
569         device = cairo_surface_get_device(surface->cairo_surface);
570         if (!device)
571                 return;
572
573         if (!eglMakeCurrent(surface->display->dpy, NULL, NULL,
574                             surface->display->argb_ctx))
575                 fprintf(stderr, "failed to make context current\n");
576
577         cairo_device_release(device);
578 }
579
580 static void
581 egl_window_surface_destroy(struct toysurface *base)
582 {
583         struct egl_window_surface *surface = to_egl_window_surface(base);
584         struct display *d = surface->display;
585
586         cairo_surface_destroy(surface->cairo_surface);
587         eglDestroySurface(d->dpy, surface->egl_surface);
588         wl_egl_window_destroy(surface->egl_window);
589         surface->surface = NULL;
590
591         free(surface);
592 }
593
594 static struct toysurface *
595 egl_window_surface_create(struct display *display,
596                           struct wl_surface *wl_surface,
597                           uint32_t flags,
598                           struct rectangle *rectangle)
599 {
600         struct egl_window_surface *surface;
601
602         if (display->dpy == EGL_NO_DISPLAY)
603                 return NULL;
604
605         surface = calloc(1, sizeof *surface);
606         if (!surface)
607                 return NULL;
608
609         surface->base.prepare = egl_window_surface_prepare;
610         surface->base.swap = egl_window_surface_swap;
611         surface->base.acquire = egl_window_surface_acquire;
612         surface->base.release = egl_window_surface_release;
613         surface->base.destroy = egl_window_surface_destroy;
614
615         surface->display = display;
616         surface->surface = wl_surface;
617
618         surface->egl_window = wl_egl_window_create(surface->surface,
619                                                    rectangle->width,
620                                                    rectangle->height);
621
622         surface->egl_surface = eglCreateWindowSurface(display->dpy,
623                                                       display->argb_config,
624                                                       surface->egl_window,
625                                                       NULL);
626
627         surface->cairo_surface =
628                 cairo_gl_surface_create_for_egl(display->argb_device,
629                                                 surface->egl_surface,
630                                                 rectangle->width,
631                                                 rectangle->height);
632
633         return &surface->base;
634 }
635
636 #else
637
638 static struct toysurface *
639 egl_window_surface_create(struct display *display,
640                           struct wl_surface *wl_surface,
641                           uint32_t flags,
642                           struct rectangle *rectangle)
643 {
644         return NULL;
645 }
646
647 #endif
648
649 struct shm_surface_data {
650         struct wl_buffer *buffer;
651         struct shm_pool *pool;
652 };
653
654 struct wl_buffer *
655 display_get_buffer_for_surface(struct display *display,
656                                cairo_surface_t *surface)
657 {
658         struct shm_surface_data *data;
659
660         data = cairo_surface_get_user_data(surface, &shm_surface_data_key);
661
662         return data->buffer;
663 }
664
665 static void
666 shm_pool_destroy(struct shm_pool *pool);
667
668 static void
669 shm_surface_data_destroy(void *p)
670 {
671         struct shm_surface_data *data = p;
672
673         wl_buffer_destroy(data->buffer);
674         if (data->pool)
675                 shm_pool_destroy(data->pool);
676
677         free(data);
678 }
679
680 static struct wl_shm_pool *
681 make_shm_pool(struct display *display, int size, void **data)
682 {
683         struct wl_shm_pool *pool;
684         int fd;
685
686         fd = os_create_anonymous_file(size);
687         if (fd < 0) {
688                 fprintf(stderr, "creating a buffer file for %d B failed: %m\n",
689                         size);
690                 return NULL;
691         }
692
693         *data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
694         if (*data == MAP_FAILED) {
695                 fprintf(stderr, "mmap failed: %m\n");
696                 close(fd);
697                 return NULL;
698         }
699
700         pool = wl_shm_create_pool(display->shm, fd, size);
701
702         close(fd);
703
704         return pool;
705 }
706
707 static struct shm_pool *
708 shm_pool_create(struct display *display, size_t size)
709 {
710         struct shm_pool *pool = malloc(sizeof *pool);
711
712         if (!pool)
713                 return NULL;
714
715         pool->pool = make_shm_pool(display, size, &pool->data);
716         if (!pool->pool) {
717                 free(pool);
718                 return NULL;
719         }
720
721         pool->size = size;
722         pool->used = 0;
723
724         return pool;
725 }
726
727 static void *
728 shm_pool_allocate(struct shm_pool *pool, size_t size, int *offset)
729 {
730         if (pool->used + size > pool->size)
731                 return NULL;
732
733         *offset = pool->used;
734         pool->used += size;
735
736         return (char *) pool->data + *offset;
737 }
738
739 /* destroy the pool. this does not unmap the memory though */
740 static void
741 shm_pool_destroy(struct shm_pool *pool)
742 {
743         munmap(pool->data, pool->size);
744         wl_shm_pool_destroy(pool->pool);
745         free(pool);
746 }
747
748 /* Start allocating from the beginning of the pool again */
749 static void
750 shm_pool_reset(struct shm_pool *pool)
751 {
752         pool->used = 0;
753 }
754
755 static int
756 data_length_for_shm_surface(struct rectangle *rect)
757 {
758         int stride;
759
760         stride = cairo_format_stride_for_width (CAIRO_FORMAT_ARGB32,
761                                                 rect->width);
762         return stride * rect->height;
763 }
764
765 static cairo_surface_t *
766 display_create_shm_surface_from_pool(struct display *display,
767                                      struct rectangle *rectangle,
768                                      uint32_t flags, struct shm_pool *pool)
769 {
770         struct shm_surface_data *data;
771         uint32_t format;
772         cairo_surface_t *surface;
773         cairo_format_t cairo_format;
774         int stride, length, offset;
775         void *map;
776
777         data = malloc(sizeof *data);
778         if (data == NULL)
779                 return NULL;
780
781         if (flags & SURFACE_HINT_RGB565 && display->has_rgb565)
782                 cairo_format = CAIRO_FORMAT_RGB16_565;
783         else
784                 cairo_format = CAIRO_FORMAT_ARGB32;
785
786         stride = cairo_format_stride_for_width (cairo_format, rectangle->width);
787         length = stride * rectangle->height;
788         data->pool = NULL;
789         map = shm_pool_allocate(pool, length, &offset);
790
791         if (!map) {
792                 free(data);
793                 return NULL;
794         }
795
796         surface = cairo_image_surface_create_for_data (map,
797                                                        cairo_format,
798                                                        rectangle->width,
799                                                        rectangle->height,
800                                                        stride);
801
802         cairo_surface_set_user_data(surface, &shm_surface_data_key,
803                                     data, shm_surface_data_destroy);
804
805         if (flags & SURFACE_HINT_RGB565 && display->has_rgb565)
806                 format = WL_SHM_FORMAT_RGB565;
807         else {
808                 if (flags & SURFACE_OPAQUE)
809                         format = WL_SHM_FORMAT_XRGB8888;
810                 else
811                         format = WL_SHM_FORMAT_ARGB8888;
812         }
813
814         data->buffer = wl_shm_pool_create_buffer(pool->pool, offset,
815                                                  rectangle->width,
816                                                  rectangle->height,
817                                                  stride, format);
818
819         return surface;
820 }
821
822 static cairo_surface_t *
823 display_create_shm_surface(struct display *display,
824                            struct rectangle *rectangle, uint32_t flags,
825                            struct shm_pool *alternate_pool,
826                            struct shm_surface_data **data_ret)
827 {
828         struct shm_surface_data *data;
829         struct shm_pool *pool;
830         cairo_surface_t *surface;
831
832         if (alternate_pool) {
833                 shm_pool_reset(alternate_pool);
834                 surface = display_create_shm_surface_from_pool(display,
835                                                                rectangle,
836                                                                flags,
837                                                                alternate_pool);
838                 if (surface) {
839                         data = cairo_surface_get_user_data(surface,
840                                                            &shm_surface_data_key);
841                         goto out;
842                 }
843         }
844
845         pool = shm_pool_create(display,
846                                data_length_for_shm_surface(rectangle));
847         if (!pool)
848                 return NULL;
849
850         surface =
851                 display_create_shm_surface_from_pool(display, rectangle,
852                                                      flags, pool);
853
854         if (!surface) {
855                 shm_pool_destroy(pool);
856                 return NULL;
857         }
858
859         /* make sure we destroy the pool when the surface is destroyed */
860         data = cairo_surface_get_user_data(surface, &shm_surface_data_key);
861         data->pool = pool;
862
863 out:
864         if (data_ret)
865                 *data_ret = data;
866
867         return surface;
868 }
869
870 static int
871 check_size(struct rectangle *rect)
872 {
873         if (rect->width && rect->height)
874                 return 0;
875
876         fprintf(stderr, "tried to create surface of "
877                 "width: %d, height: %d\n", rect->width, rect->height);
878         return -1;
879 }
880
881 cairo_surface_t *
882 display_create_surface(struct display *display,
883                        struct wl_surface *surface,
884                        struct rectangle *rectangle,
885                        uint32_t flags)
886 {
887         if (check_size(rectangle) < 0)
888                 return NULL;
889
890         assert(flags & SURFACE_SHM);
891         return display_create_shm_surface(display, rectangle, flags,
892                                           NULL, NULL);
893 }
894
895 struct shm_surface_leaf {
896         cairo_surface_t *cairo_surface;
897         /* 'data' is automatically destroyed, when 'cairo_surface' is */
898         struct shm_surface_data *data;
899
900         struct shm_pool *resize_pool;
901         int busy;
902 };
903
904 static void
905 shm_surface_leaf_release(struct shm_surface_leaf *leaf)
906 {
907         if (leaf->cairo_surface)
908                 cairo_surface_destroy(leaf->cairo_surface);
909         /* leaf->data already destroyed via cairo private */
910
911         if (leaf->resize_pool)
912                 shm_pool_destroy(leaf->resize_pool);
913
914         memset(leaf, 0, sizeof *leaf);
915 }
916
917 #define MAX_LEAVES 3
918
919 struct shm_surface {
920         struct toysurface base;
921         struct display *display;
922         struct wl_surface *surface;
923         uint32_t flags;
924         int dx, dy;
925
926         struct shm_surface_leaf leaf[MAX_LEAVES];
927         struct shm_surface_leaf *current;
928 };
929
930 static struct shm_surface *
931 to_shm_surface(struct toysurface *base)
932 {
933         return container_of(base, struct shm_surface, base);
934 }
935
936 static void
937 shm_surface_buffer_state_debug(struct shm_surface *surface, const char *msg)
938 {
939 #ifdef DEBUG
940         struct shm_surface_leaf *leaf;
941         char bufs[MAX_LEAVES + 1];
942         int i;
943
944         for (i = 0; i < MAX_LEAVES; i++) {
945                 leaf = &surface->leaf[i];
946
947                 if (leaf->busy)
948                         bufs[i] = 'b';
949                 else if (leaf->cairo_surface)
950                         bufs[i] = 'a';
951                 else
952                         bufs[i] = ' ';
953         }
954
955         bufs[MAX_LEAVES] = '\0';
956         DBG_OBJ(surface->surface, "%s, leaves [%s]\n", msg, bufs);
957 #endif
958 }
959
960 static void
961 shm_surface_buffer_release(void *data, struct wl_buffer *buffer)
962 {
963         struct shm_surface *surface = data;
964         struct shm_surface_leaf *leaf;
965         int i;
966         int free_found;
967
968         shm_surface_buffer_state_debug(surface, "buffer_release before");
969
970         for (i = 0; i < MAX_LEAVES; i++) {
971                 leaf = &surface->leaf[i];
972                 if (leaf->data && leaf->data->buffer == buffer) {
973                         leaf->busy = 0;
974                         break;
975                 }
976         }
977         assert(i < MAX_LEAVES && "unknown buffer released");
978
979         /* Leave one free leaf with storage, release others */
980         free_found = 0;
981         for (i = 0; i < MAX_LEAVES; i++) {
982                 leaf = &surface->leaf[i];
983
984                 if (!leaf->cairo_surface || leaf->busy)
985                         continue;
986
987                 if (!free_found)
988                         free_found = 1;
989                 else
990                         shm_surface_leaf_release(leaf);
991         }
992
993         shm_surface_buffer_state_debug(surface, "buffer_release  after");
994 }
995
996 static const struct wl_buffer_listener shm_surface_buffer_listener = {
997         shm_surface_buffer_release
998 };
999
1000 static cairo_surface_t *
1001 shm_surface_prepare(struct toysurface *base, int dx, int dy,
1002                     int32_t width, int32_t height, uint32_t flags,
1003                     enum wl_output_transform buffer_transform, int32_t buffer_scale)
1004 {
1005         int resize_hint = !!(flags & SURFACE_HINT_RESIZE);
1006         struct shm_surface *surface = to_shm_surface(base);
1007         struct rectangle rect = { 0};
1008         struct shm_surface_leaf *leaf = NULL;
1009         int i;
1010
1011         surface->dx = dx;
1012         surface->dy = dy;
1013
1014         /* pick a free buffer, preferrably one that already has storage */
1015         for (i = 0; i < MAX_LEAVES; i++) {
1016                 if (surface->leaf[i].busy)
1017                         continue;
1018
1019                 if (!leaf || surface->leaf[i].cairo_surface)
1020                         leaf = &surface->leaf[i];
1021         }
1022         DBG_OBJ(surface->surface, "pick leaf %d\n",
1023                 (int)(leaf - &surface->leaf[0]));
1024
1025         if (!leaf) {
1026                 fprintf(stderr, "%s: all buffers are held by the server.\n",
1027                         __func__);
1028                 exit(1);
1029                 return NULL;
1030         }
1031
1032         if (!resize_hint && leaf->resize_pool) {
1033                 cairo_surface_destroy(leaf->cairo_surface);
1034                 leaf->cairo_surface = NULL;
1035                 shm_pool_destroy(leaf->resize_pool);
1036                 leaf->resize_pool = NULL;
1037         }
1038
1039         surface_to_buffer_size (buffer_transform, buffer_scale, &width, &height);
1040
1041         if (leaf->cairo_surface &&
1042             cairo_image_surface_get_width(leaf->cairo_surface) == width &&
1043             cairo_image_surface_get_height(leaf->cairo_surface) == height)
1044                 goto out;
1045
1046         if (leaf->cairo_surface)
1047                 cairo_surface_destroy(leaf->cairo_surface);
1048
1049 #ifdef USE_RESIZE_POOL
1050         if (resize_hint && !leaf->resize_pool) {
1051                 /* Create a big pool to allocate from, while continuously
1052                  * resizing. Mmapping a new pool in the server
1053                  * is relatively expensive, so reusing a pool performs
1054                  * better, but may temporarily reserve unneeded memory.
1055                  */
1056                 /* We should probably base this number on the output size. */
1057                 leaf->resize_pool = shm_pool_create(surface->display,
1058                                                     6 * 1024 * 1024);
1059         }
1060 #endif
1061
1062         rect.width = width;
1063         rect.height = height;
1064
1065         leaf->cairo_surface =
1066                 display_create_shm_surface(surface->display, &rect,
1067                                            surface->flags,
1068                                            leaf->resize_pool,
1069                                            &leaf->data);
1070         if (!leaf->cairo_surface)
1071                 return NULL;
1072
1073         wl_buffer_add_listener(leaf->data->buffer,
1074                                &shm_surface_buffer_listener, surface);
1075
1076 out:
1077         surface->current = leaf;
1078
1079         return cairo_surface_reference(leaf->cairo_surface);
1080 }
1081
1082 static void
1083 shm_surface_swap(struct toysurface *base,
1084                  enum wl_output_transform buffer_transform, int32_t buffer_scale,
1085                  struct rectangle *server_allocation)
1086 {
1087         struct shm_surface *surface = to_shm_surface(base);
1088         struct shm_surface_leaf *leaf = surface->current;
1089
1090         server_allocation->width =
1091                 cairo_image_surface_get_width(leaf->cairo_surface);
1092         server_allocation->height =
1093                 cairo_image_surface_get_height(leaf->cairo_surface);
1094
1095         buffer_to_surface_size (buffer_transform, buffer_scale,
1096                                 &server_allocation->width,
1097                                 &server_allocation->height);
1098
1099         wl_surface_attach(surface->surface, leaf->data->buffer,
1100                           surface->dx, surface->dy);
1101         wl_surface_damage(surface->surface, 0, 0,
1102                           server_allocation->width, server_allocation->height);
1103         wl_surface_commit(surface->surface);
1104
1105         DBG_OBJ(surface->surface, "leaf %d busy\n",
1106                 (int)(leaf - &surface->leaf[0]));
1107
1108         leaf->busy = 1;
1109         surface->current = NULL;
1110 }
1111
1112 static int
1113 shm_surface_acquire(struct toysurface *base, EGLContext ctx)
1114 {
1115         return -1;
1116 }
1117
1118 static void
1119 shm_surface_release(struct toysurface *base)
1120 {
1121 }
1122
1123 static void
1124 shm_surface_destroy(struct toysurface *base)
1125 {
1126         struct shm_surface *surface = to_shm_surface(base);
1127         int i;
1128
1129         for (i = 0; i < MAX_LEAVES; i++)
1130                 shm_surface_leaf_release(&surface->leaf[i]);
1131
1132         free(surface);
1133 }
1134
1135 static struct toysurface *
1136 shm_surface_create(struct display *display, struct wl_surface *wl_surface,
1137                    uint32_t flags, struct rectangle *rectangle)
1138 {
1139         struct shm_surface *surface;
1140         DBG_OBJ(wl_surface, "\n");
1141
1142         surface = xmalloc(sizeof *surface);
1143         memset(surface, 0, sizeof *surface);
1144
1145         if (!surface)
1146                 return NULL;
1147
1148         surface->base.prepare = shm_surface_prepare;
1149         surface->base.swap = shm_surface_swap;
1150         surface->base.acquire = shm_surface_acquire;
1151         surface->base.release = shm_surface_release;
1152         surface->base.destroy = shm_surface_destroy;
1153
1154         surface->display = display;
1155         surface->surface = wl_surface;
1156         surface->flags = flags;
1157
1158         return &surface->base;
1159 }
1160
1161 /*
1162  * The following correspondences between file names and cursors was copied
1163  * from: https://bugs.kde.org/attachment.cgi?id=67313
1164  */
1165
1166 static const char *bottom_left_corners[] = {
1167         "bottom_left_corner",
1168         "sw-resize",
1169         "size_bdiag"
1170 };
1171
1172 static const char *bottom_right_corners[] = {
1173         "bottom_right_corner",
1174         "se-resize",
1175         "size_fdiag"
1176 };
1177
1178 static const char *bottom_sides[] = {
1179         "bottom_side",
1180         "s-resize",
1181         "size_ver"
1182 };
1183
1184 static const char *grabbings[] = {
1185         "grabbing",
1186         "closedhand",
1187         "208530c400c041818281048008011002"
1188 };
1189
1190 static const char *left_ptrs[] = {
1191         "left_ptr",
1192         "default",
1193         "top_left_arrow",
1194         "left-arrow"
1195 };
1196
1197 static const char *left_sides[] = {
1198         "left_side",
1199         "w-resize",
1200         "size_hor"
1201 };
1202
1203 static const char *right_sides[] = {
1204         "right_side",
1205         "e-resize",
1206         "size_hor"
1207 };
1208
1209 static const char *top_left_corners[] = {
1210         "top_left_corner",
1211         "nw-resize",
1212         "size_fdiag"
1213 };
1214
1215 static const char *top_right_corners[] = {
1216         "top_right_corner",
1217         "ne-resize",
1218         "size_bdiag"
1219 };
1220
1221 static const char *top_sides[] = {
1222         "top_side",
1223         "n-resize",
1224         "size_ver"
1225 };
1226
1227 static const char *xterms[] = {
1228         "xterm",
1229         "ibeam",
1230         "text"
1231 };
1232
1233 static const char *hand1s[] = {
1234         "hand1",
1235         "pointer",
1236         "pointing_hand",
1237         "e29285e634086352946a0e7090d73106"
1238 };
1239
1240 static const char *watches[] = {
1241         "watch",
1242         "wait",
1243         "0426c94ea35c87780ff01dc239897213"
1244 };
1245
1246 struct cursor_alternatives {
1247         const char **names;
1248         size_t count;
1249 };
1250
1251 static const struct cursor_alternatives cursors[] = {
1252         {bottom_left_corners, ARRAY_LENGTH(bottom_left_corners)},
1253         {bottom_right_corners, ARRAY_LENGTH(bottom_right_corners)},
1254         {bottom_sides, ARRAY_LENGTH(bottom_sides)},
1255         {grabbings, ARRAY_LENGTH(grabbings)},
1256         {left_ptrs, ARRAY_LENGTH(left_ptrs)},
1257         {left_sides, ARRAY_LENGTH(left_sides)},
1258         {right_sides, ARRAY_LENGTH(right_sides)},
1259         {top_left_corners, ARRAY_LENGTH(top_left_corners)},
1260         {top_right_corners, ARRAY_LENGTH(top_right_corners)},
1261         {top_sides, ARRAY_LENGTH(top_sides)},
1262         {xterms, ARRAY_LENGTH(xterms)},
1263         {hand1s, ARRAY_LENGTH(hand1s)},
1264         {watches, ARRAY_LENGTH(watches)},
1265 };
1266
1267 static void
1268 create_cursors(struct display *display)
1269 {
1270         struct weston_config *config;
1271         struct weston_config_section *s;
1272         int size;
1273         char *theme = NULL;
1274         unsigned int i, j;
1275         struct wl_cursor *cursor;
1276
1277         config = weston_config_parse("weston.ini");
1278         s = weston_config_get_section(config, "shell", NULL, NULL);
1279         weston_config_section_get_string(s, "cursor-theme", &theme, NULL);
1280         weston_config_section_get_int(s, "cursor-size", &size, 32);
1281         weston_config_destroy(config);
1282
1283         display->cursor_theme = wl_cursor_theme_load(theme, size, display->shm);
1284         if (!display->cursor_theme) {
1285                 fprintf(stderr, "could not load theme '%s'\n", theme);
1286                 return;
1287         }
1288         free(theme);
1289         display->cursors =
1290                 xmalloc(ARRAY_LENGTH(cursors) * sizeof display->cursors[0]);
1291
1292         for (i = 0; i < ARRAY_LENGTH(cursors); i++) {
1293                 cursor = NULL;
1294                 for (j = 0; !cursor && j < cursors[i].count; ++j)
1295                         cursor = wl_cursor_theme_get_cursor(
1296                             display->cursor_theme, cursors[i].names[j]);
1297
1298                 if (!cursor)
1299                         fprintf(stderr, "could not load cursor '%s'\n",
1300                                 cursors[i].names[0]);
1301
1302                 display->cursors[i] = cursor;
1303         }
1304 }
1305
1306 static void
1307 destroy_cursors(struct display *display)
1308 {
1309         wl_cursor_theme_destroy(display->cursor_theme);
1310         free(display->cursors);
1311 }
1312
1313 struct wl_cursor_image *
1314 display_get_pointer_image(struct display *display, int pointer)
1315 {
1316         struct wl_cursor *cursor = display->cursors[pointer];
1317
1318         return cursor ? cursor->images[0] : NULL;
1319 }
1320
1321 static void
1322 surface_flush(struct surface *surface)
1323 {
1324         if (!surface->cairo_surface)
1325                 return;
1326
1327         if (surface->opaque_region) {
1328                 wl_surface_set_opaque_region(surface->surface,
1329                                              surface->opaque_region);
1330                 wl_region_destroy(surface->opaque_region);
1331                 surface->opaque_region = NULL;
1332         }
1333
1334         if (surface->input_region) {
1335                 wl_surface_set_input_region(surface->surface,
1336                                             surface->input_region);
1337                 wl_region_destroy(surface->input_region);
1338                 surface->input_region = NULL;
1339         }
1340
1341         surface->toysurface->swap(surface->toysurface,
1342                                   surface->buffer_transform, surface->buffer_scale,
1343                                   &surface->server_allocation);
1344
1345         cairo_surface_destroy(surface->cairo_surface);
1346         surface->cairo_surface = NULL;
1347 }
1348
1349 int
1350 window_has_focus(struct window *window)
1351 {
1352         return window->focused;
1353 }
1354
1355 static void
1356 window_close(struct window *window)
1357 {
1358         if (window->close_handler)
1359                 window->close_handler(window->user_data);
1360         else
1361                 display_exit(window->display);
1362 }
1363
1364 struct display *
1365 window_get_display(struct window *window)
1366 {
1367         return window->display;
1368 }
1369
1370 static void
1371 surface_create_surface(struct surface *surface, uint32_t flags)
1372 {
1373         struct display *display = surface->window->display;
1374         struct rectangle allocation = surface->allocation;
1375
1376         if (!surface->toysurface && display->dpy &&
1377             surface->buffer_type == WINDOW_BUFFER_TYPE_EGL_WINDOW) {
1378                 surface->toysurface =
1379                         egl_window_surface_create(display,
1380                                                   surface->surface,
1381                                                   flags,
1382                                                   &allocation);
1383         }
1384
1385         if (!surface->toysurface)
1386                 surface->toysurface = shm_surface_create(display,
1387                                                          surface->surface,
1388                                                          flags, &allocation);
1389
1390         surface->cairo_surface = surface->toysurface->prepare(
1391                 surface->toysurface, 0, 0,
1392                 allocation.width, allocation.height, flags,
1393                 surface->buffer_transform, surface->buffer_scale);
1394 }
1395
1396 static void
1397 window_create_main_surface(struct window *window)
1398 {
1399         struct surface *surface = window->main_surface;
1400         uint32_t flags = 0;
1401
1402         if (window->resizing)
1403                 flags |= SURFACE_HINT_RESIZE;
1404
1405         if (window->preferred_format == WINDOW_PREFERRED_FORMAT_RGB565)
1406                 flags |= SURFACE_HINT_RGB565;
1407
1408         surface_create_surface(surface, flags);
1409 }
1410
1411 int
1412 window_get_buffer_transform(struct window *window)
1413 {
1414         return window->main_surface->buffer_transform;
1415 }
1416
1417 void
1418 window_set_buffer_transform(struct window *window,
1419                             enum wl_output_transform transform)
1420 {
1421         window->main_surface->buffer_transform = transform;
1422         wl_surface_set_buffer_transform(window->main_surface->surface,
1423                                         transform);
1424 }
1425
1426 void
1427 window_set_buffer_scale(struct window *window,
1428                         int32_t scale)
1429 {
1430         window->main_surface->buffer_scale = scale;
1431         wl_surface_set_buffer_scale(window->main_surface->surface,
1432                                     scale);
1433 }
1434
1435 uint32_t
1436 window_get_buffer_scale(struct window *window)
1437 {
1438         return window->main_surface->buffer_scale;
1439 }
1440
1441 uint32_t
1442 window_get_output_scale(struct window *window)
1443 {
1444         struct window_output *window_output;
1445         struct window_output *window_output_tmp;
1446         int scale = 1;
1447
1448         wl_list_for_each_safe(window_output, window_output_tmp,
1449                               &window->window_output_list, link) {
1450                 if (window_output->output->scale > scale)
1451                         scale = window_output->output->scale;
1452         }
1453
1454         return scale;
1455 }
1456
1457 static void window_frame_destroy(struct window_frame *frame);
1458
1459 static void
1460 surface_destroy(struct surface *surface)
1461 {
1462         if (surface->frame_cb)
1463                 wl_callback_destroy(surface->frame_cb);
1464
1465         if (surface->input_region)
1466                 wl_region_destroy(surface->input_region);
1467
1468         if (surface->opaque_region)
1469                 wl_region_destroy(surface->opaque_region);
1470
1471         if (surface->subsurface)
1472                 wl_subsurface_destroy(surface->subsurface);
1473
1474         wl_surface_destroy(surface->surface);
1475
1476         if (surface->toysurface)
1477                 surface->toysurface->destroy(surface->toysurface);
1478
1479         wl_list_remove(&surface->link);
1480         free(surface);
1481 }
1482
1483 void
1484 window_destroy(struct window *window)
1485 {
1486         struct display *display = window->display;
1487         struct input *input;
1488         struct window_output *window_output;
1489         struct window_output *window_output_tmp;
1490
1491         wl_list_remove(&window->redraw_task.link);
1492
1493         wl_list_for_each(input, &display->input_list, link) {     
1494                 if (input->touch_focus == window)
1495                         input->touch_focus = NULL;
1496                 if (input->pointer_focus == window)
1497                         input->pointer_focus = NULL;
1498                 if (input->keyboard_focus == window)
1499                         input->keyboard_focus = NULL;
1500                 if (input->focus_widget &&
1501                     input->focus_widget->window == window)
1502                         input->focus_widget = NULL;
1503         }
1504
1505         wl_list_for_each_safe(window_output, window_output_tmp,
1506                               &window->window_output_list, link) {
1507                 free (window_output);
1508         }
1509
1510         if (window->frame)
1511                 window_frame_destroy(window->frame);
1512
1513         if (window->xdg_surface)
1514                 xdg_surface_destroy(window->xdg_surface);
1515         if (window->xdg_popup)
1516                 xdg_popup_destroy(window->xdg_popup);
1517
1518         surface_destroy(window->main_surface);
1519
1520         wl_list_remove(&window->link);
1521
1522         free(window->title);
1523         free(window);
1524 }
1525
1526 static struct widget *
1527 widget_find_widget(struct widget *widget, int32_t x, int32_t y)
1528 {
1529         struct widget *child, *target;
1530
1531         wl_list_for_each(child, &widget->child_list, link) {
1532                 target = widget_find_widget(child, x, y);
1533                 if (target)
1534                         return target;
1535         }
1536
1537         if (widget->allocation.x <= x &&
1538             x < widget->allocation.x + widget->allocation.width &&
1539             widget->allocation.y <= y &&
1540             y < widget->allocation.y + widget->allocation.height) {
1541                 return widget;
1542         }
1543
1544         return NULL;
1545 }
1546
1547 static struct widget *
1548 window_find_widget(struct window *window, int32_t x, int32_t y)
1549 {
1550         struct surface *surface;
1551         struct widget *widget;
1552
1553         wl_list_for_each(surface, &window->subsurface_list, link) {
1554                 widget = widget_find_widget(surface->widget, x, y);
1555                 if (widget)
1556                         return widget;
1557         }
1558
1559         return NULL;
1560 }
1561
1562 static struct widget *
1563 widget_create(struct window *window, struct surface *surface, void *data)
1564 {
1565         struct widget *widget;
1566
1567         widget = xzalloc(sizeof *widget);
1568         widget->window = window;
1569         widget->surface = surface;
1570         widget->user_data = data;
1571         widget->allocation = surface->allocation;
1572         wl_list_init(&widget->child_list);
1573         widget->opaque = 0;
1574         widget->tooltip = NULL;
1575         widget->tooltip_count = 0;
1576         widget->default_cursor = CURSOR_LEFT_PTR;
1577         widget->use_cairo = 1;
1578
1579         return widget;
1580 }
1581
1582 struct widget *
1583 window_add_widget(struct window *window, void *data)
1584 {
1585         struct widget *widget;
1586
1587         widget = widget_create(window, window->main_surface, data);
1588         wl_list_init(&widget->link);
1589         window->main_surface->widget = widget;
1590
1591         return widget;
1592 }
1593
1594 struct widget *
1595 widget_add_widget(struct widget *parent, void *data)
1596 {
1597         struct widget *widget;
1598
1599         widget = widget_create(parent->window, parent->surface, data);
1600         wl_list_insert(parent->child_list.prev, &widget->link);
1601
1602         return widget;
1603 }
1604
1605 void
1606 widget_destroy(struct widget *widget)
1607 {
1608         struct display *display = widget->window->display;
1609         struct surface *surface = widget->surface;
1610         struct input *input;
1611
1612         /* Destroy the sub-surface along with the root widget */
1613         if (surface->widget == widget && surface->subsurface)
1614                 surface_destroy(widget->surface);
1615
1616         if (widget->tooltip)
1617                 widget_destroy_tooltip(widget);
1618
1619         wl_list_for_each(input, &display->input_list, link) {
1620                 if (input->focus_widget == widget)
1621                         input->focus_widget = NULL;
1622         }
1623
1624         wl_list_remove(&widget->link);
1625         free(widget);
1626 }
1627
1628 void
1629 widget_set_default_cursor(struct widget *widget, int cursor)
1630 {
1631         widget->default_cursor = cursor;
1632 }
1633
1634 void
1635 widget_get_allocation(struct widget *widget, struct rectangle *allocation)
1636 {
1637         *allocation = widget->allocation;
1638 }
1639
1640 void
1641 widget_set_size(struct widget *widget, int32_t width, int32_t height)
1642 {
1643         widget->allocation.width = width;
1644         widget->allocation.height = height;
1645 }
1646
1647 void
1648 widget_set_allocation(struct widget *widget,
1649                       int32_t x, int32_t y, int32_t width, int32_t height)
1650 {
1651         widget->allocation.x = x;
1652         widget->allocation.y = y;
1653         widget_set_size(widget, width, height);
1654 }
1655
1656 void
1657 widget_set_transparent(struct widget *widget, int transparent)
1658 {
1659         widget->opaque = !transparent;
1660 }
1661
1662 void *
1663 widget_get_user_data(struct widget *widget)
1664 {
1665         return widget->user_data;
1666 }
1667
1668 static cairo_surface_t *
1669 widget_get_cairo_surface(struct widget *widget)
1670 {
1671         struct surface *surface = widget->surface;
1672         struct window *window = widget->window;
1673
1674         assert(widget->use_cairo);
1675
1676         if (!surface->cairo_surface) {
1677                 if (surface == window->main_surface)
1678                         window_create_main_surface(window);
1679                 else
1680                         surface_create_surface(surface, 0);
1681         }
1682
1683         return surface->cairo_surface;
1684 }
1685
1686 static void
1687 widget_cairo_update_transform(struct widget *widget, cairo_t *cr)
1688 {
1689         struct surface *surface = widget->surface;
1690         double angle;
1691         cairo_matrix_t m;
1692         enum wl_output_transform transform;
1693         int surface_width, surface_height;
1694         int translate_x, translate_y;
1695         int32_t scale;
1696
1697         surface_width = surface->allocation.width;
1698         surface_height = surface->allocation.height;
1699
1700         transform = surface->buffer_transform;
1701         scale = surface->buffer_scale;
1702
1703         switch (transform) {
1704         case WL_OUTPUT_TRANSFORM_FLIPPED:
1705         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
1706         case WL_OUTPUT_TRANSFORM_FLIPPED_180:
1707         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
1708                 cairo_matrix_init(&m, -1, 0, 0, 1, 0, 0);
1709                 break;
1710         default:
1711                 cairo_matrix_init_identity(&m);
1712                 break;
1713         }
1714
1715         switch (transform) {
1716         case WL_OUTPUT_TRANSFORM_NORMAL:
1717         default:
1718                 angle = 0;
1719                 translate_x = 0;
1720                 translate_y = 0;
1721                 break;
1722         case WL_OUTPUT_TRANSFORM_FLIPPED:
1723                 angle = 0;
1724                 translate_x = surface_width;
1725                 translate_y = 0;
1726                 break;
1727         case WL_OUTPUT_TRANSFORM_90:
1728                 angle = M_PI_2;
1729                 translate_x = surface_height;
1730                 translate_y = 0;
1731                 break;
1732         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
1733                 angle = M_PI_2;
1734                 translate_x = surface_height;
1735                 translate_y = surface_width;
1736                 break;
1737         case WL_OUTPUT_TRANSFORM_180:
1738                 angle = M_PI;
1739                 translate_x = surface_width;
1740                 translate_y = surface_height;
1741                 break;
1742         case WL_OUTPUT_TRANSFORM_FLIPPED_180:
1743                 angle = M_PI;
1744                 translate_x = 0;
1745                 translate_y = surface_height;
1746                 break;
1747         case WL_OUTPUT_TRANSFORM_270:
1748                 angle = M_PI + M_PI_2;
1749                 translate_x = 0;
1750                 translate_y = surface_width;
1751                 break;
1752         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
1753                 angle = M_PI + M_PI_2;
1754                 translate_x = 0;
1755                 translate_y = 0;
1756                 break;
1757         }
1758
1759         cairo_scale(cr, scale, scale);
1760         cairo_translate(cr, translate_x, translate_y);
1761         cairo_rotate(cr, angle);
1762         cairo_transform(cr, &m);
1763 }
1764
1765 cairo_t *
1766 widget_cairo_create(struct widget *widget)
1767 {
1768         struct surface *surface = widget->surface;
1769         cairo_surface_t *cairo_surface;
1770         cairo_t *cr;
1771
1772         cairo_surface = widget_get_cairo_surface(widget);
1773         cr = cairo_create(cairo_surface);
1774
1775         widget_cairo_update_transform(widget, cr);
1776
1777         cairo_translate(cr, -surface->allocation.x, -surface->allocation.y);
1778
1779         return cr;
1780 }
1781
1782 struct wl_surface *
1783 widget_get_wl_surface(struct widget *widget)
1784 {
1785         return widget->surface->surface;
1786 }
1787
1788 struct wl_subsurface *
1789 widget_get_wl_subsurface(struct widget *widget)
1790 {
1791         return widget->surface->subsurface;
1792 }
1793
1794 uint32_t
1795 widget_get_last_time(struct widget *widget)
1796 {
1797         return widget->surface->last_time;
1798 }
1799
1800 void
1801 widget_input_region_add(struct widget *widget, const struct rectangle *rect)
1802 {
1803         struct wl_compositor *comp = widget->window->display->compositor;
1804         struct surface *surface = widget->surface;
1805
1806         if (!surface->input_region)
1807                 surface->input_region = wl_compositor_create_region(comp);
1808
1809         if (rect) {
1810                 wl_region_add(surface->input_region,
1811                               rect->x, rect->y, rect->width, rect->height);
1812         }
1813 }
1814
1815 void
1816 widget_set_resize_handler(struct widget *widget,
1817                           widget_resize_handler_t handler)
1818 {
1819         widget->resize_handler = handler;
1820 }
1821
1822 void
1823 widget_set_redraw_handler(struct widget *widget,
1824                           widget_redraw_handler_t handler)
1825 {
1826         widget->redraw_handler = handler;
1827 }
1828
1829 void
1830 widget_set_enter_handler(struct widget *widget, widget_enter_handler_t handler)
1831 {
1832         widget->enter_handler = handler;
1833 }
1834
1835 void
1836 widget_set_leave_handler(struct widget *widget, widget_leave_handler_t handler)
1837 {
1838         widget->leave_handler = handler;
1839 }
1840
1841 void
1842 widget_set_motion_handler(struct widget *widget,
1843                           widget_motion_handler_t handler)
1844 {
1845         widget->motion_handler = handler;
1846 }
1847
1848 void
1849 widget_set_button_handler(struct widget *widget,
1850                           widget_button_handler_t handler)
1851 {
1852         widget->button_handler = handler;
1853 }
1854
1855 void
1856 widget_set_touch_up_handler(struct widget *widget,
1857                             widget_touch_up_handler_t handler)
1858 {
1859         widget->touch_up_handler = handler;
1860 }
1861
1862 void
1863 widget_set_touch_down_handler(struct widget *widget,
1864                               widget_touch_down_handler_t handler)
1865 {
1866         widget->touch_down_handler = handler;
1867 }
1868
1869 void
1870 widget_set_touch_motion_handler(struct widget *widget,
1871                                 widget_touch_motion_handler_t handler)
1872 {
1873         widget->touch_motion_handler = handler;
1874 }
1875
1876 void
1877 widget_set_touch_frame_handler(struct widget *widget,
1878                                widget_touch_frame_handler_t handler)
1879 {
1880         widget->touch_frame_handler = handler;
1881 }
1882
1883 void
1884 widget_set_touch_cancel_handler(struct widget *widget,
1885                                 widget_touch_cancel_handler_t handler)
1886 {
1887         widget->touch_cancel_handler = handler;
1888 }
1889
1890 void
1891 widget_set_axis_handler(struct widget *widget,
1892                         widget_axis_handler_t handler)
1893 {
1894         widget->axis_handler = handler;
1895 }
1896
1897 static void
1898 window_schedule_redraw_task(struct window *window);
1899
1900 void
1901 widget_schedule_redraw(struct widget *widget)
1902 {
1903         DBG_OBJ(widget->surface->surface, "widget %p\n", widget);
1904         widget->surface->redraw_needed = 1;
1905         window_schedule_redraw_task(widget->window);
1906 }
1907
1908 void
1909 widget_set_use_cairo(struct widget *widget,
1910                      int use_cairo)
1911 {
1912         widget->use_cairo = use_cairo;
1913 }
1914
1915 cairo_surface_t *
1916 window_get_surface(struct window *window)
1917 {
1918         cairo_surface_t *cairo_surface;
1919
1920         cairo_surface = widget_get_cairo_surface(window->main_surface->widget);
1921
1922         return cairo_surface_reference(cairo_surface);
1923 }
1924
1925 struct wl_surface *
1926 window_get_wl_surface(struct window *window)
1927 {
1928         return window->main_surface->surface;
1929 }
1930
1931 static void
1932 tooltip_redraw_handler(struct widget *widget, void *data)
1933 {
1934         cairo_t *cr;
1935         const int32_t r = 3;
1936         struct tooltip *tooltip = data;
1937         int32_t width, height;
1938
1939         cr = widget_cairo_create(widget);
1940         cairo_translate(cr, widget->allocation.x, widget->allocation.y);
1941         cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
1942         cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
1943         cairo_paint(cr);
1944
1945         width = widget->allocation.width;
1946         height = widget->allocation.height;
1947         rounded_rect(cr, 0, 0, width, height, r);
1948
1949         cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
1950         cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
1951         cairo_fill(cr);
1952
1953         cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
1954         cairo_move_to(cr, 10, 16);
1955         cairo_show_text(cr, tooltip->entry);
1956         cairo_destroy(cr);
1957 }
1958
1959 static cairo_text_extents_t
1960 get_text_extents(struct display *display, struct tooltip *tooltip)
1961 {
1962         cairo_t *cr;
1963         cairo_text_extents_t extents;
1964
1965         /* Use the dummy_surface because tooltip's surface was not
1966          * created yet, and parent does not have a valid surface
1967          * outside repaint, either.
1968          */
1969         cr = cairo_create(display->dummy_surface);
1970         cairo_text_extents(cr, tooltip->entry, &extents);
1971         cairo_destroy(cr);
1972
1973         return extents;
1974 }
1975
1976 static int
1977 window_create_tooltip(struct tooltip *tooltip)
1978 {
1979         struct widget *parent = tooltip->parent;
1980         struct display *display = parent->window->display;
1981         const int offset_y = 27;
1982         const int margin = 3;
1983         cairo_text_extents_t extents;
1984
1985         if (tooltip->widget)
1986                 return 0;
1987
1988         tooltip->widget = window_add_subsurface(parent->window, tooltip, SUBSURFACE_DESYNCHRONIZED);
1989
1990         extents = get_text_extents(display, tooltip);
1991         widget_set_redraw_handler(tooltip->widget, tooltip_redraw_handler);
1992         widget_set_allocation(tooltip->widget,
1993                               tooltip->x, tooltip->y + offset_y,
1994                               extents.width + 20, 20 + margin * 2);
1995
1996         return 0;
1997 }
1998
1999 void
2000 widget_destroy_tooltip(struct widget *parent)
2001 {
2002         struct tooltip *tooltip = parent->tooltip;
2003
2004         parent->tooltip_count = 0;
2005         if (!tooltip)
2006                 return;
2007
2008         if (tooltip->widget) {
2009                 widget_destroy(tooltip->widget);
2010                 tooltip->widget = NULL;
2011         }
2012
2013         close(tooltip->tooltip_fd);
2014         free(tooltip->entry);
2015         free(tooltip);
2016         parent->tooltip = NULL;
2017 }
2018
2019 static void
2020 tooltip_func(struct task *task, uint32_t events)
2021 {
2022         struct tooltip *tooltip =
2023                 container_of(task, struct tooltip, tooltip_task);
2024         uint64_t exp;
2025
2026         if (read(tooltip->tooltip_fd, &exp, sizeof (uint64_t)) != sizeof (uint64_t))
2027                 abort();
2028         window_create_tooltip(tooltip);
2029 }
2030
2031 #define TOOLTIP_TIMEOUT 500
2032 static int
2033 tooltip_timer_reset(struct tooltip *tooltip)
2034 {
2035         struct itimerspec its;
2036
2037         its.it_interval.tv_sec = 0;
2038         its.it_interval.tv_nsec = 0;
2039         its.it_value.tv_sec = TOOLTIP_TIMEOUT / 1000;
2040         its.it_value.tv_nsec = (TOOLTIP_TIMEOUT % 1000) * 1000 * 1000;
2041         if (timerfd_settime(tooltip->tooltip_fd, 0, &its, NULL) < 0) {
2042                 fprintf(stderr, "could not set timerfd\n: %m");
2043                 return -1;
2044         }
2045
2046         return 0;
2047 }
2048
2049 int
2050 widget_set_tooltip(struct widget *parent, char *entry, float x, float y)
2051 {
2052         struct tooltip *tooltip = parent->tooltip;
2053
2054         parent->tooltip_count++;
2055         if (tooltip) {
2056                 tooltip->x = x;
2057                 tooltip->y = y;
2058                 tooltip_timer_reset(tooltip);
2059                 return 0;
2060         }
2061
2062         /* the handler might be triggered too fast via input device motion, so
2063          * we need this check here to make sure tooltip is fully initialized */
2064         if (parent->tooltip_count > 1)
2065                 return 0;
2066
2067         tooltip = malloc(sizeof *tooltip);
2068         if (!tooltip)
2069                 return -1;
2070
2071         parent->tooltip = tooltip;
2072         tooltip->parent = parent;
2073         tooltip->widget = NULL;
2074         tooltip->x = x;
2075         tooltip->y = y;
2076         tooltip->entry = strdup(entry);
2077         tooltip->tooltip_fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
2078         if (tooltip->tooltip_fd < 0) {
2079                 fprintf(stderr, "could not create timerfd\n: %m");
2080                 return -1;
2081         }
2082
2083         tooltip->tooltip_task.run = tooltip_func;
2084         display_watch_fd(parent->window->display, tooltip->tooltip_fd,
2085                          EPOLLIN, &tooltip->tooltip_task);
2086         tooltip_timer_reset(tooltip);
2087
2088         return 0;
2089 }
2090
2091 static void
2092 workspace_manager_state(void *data,
2093                         struct workspace_manager *workspace_manager,
2094                         uint32_t current,
2095                         uint32_t count)
2096 {
2097         struct display *display = data;
2098
2099         display->workspace = current;
2100         display->workspace_count = count;
2101 }
2102
2103 static const struct workspace_manager_listener workspace_manager_listener = {
2104         workspace_manager_state
2105 };
2106
2107 static void
2108 frame_resize_handler(struct widget *widget,
2109                      int32_t width, int32_t height, void *data)
2110 {
2111         struct window_frame *frame = data;
2112         struct widget *child = frame->child;
2113         struct rectangle interior;
2114         struct rectangle input;
2115         struct rectangle opaque;
2116
2117         if (widget->window->fullscreen) {
2118                 interior.x = 0;
2119                 interior.y = 0;
2120                 interior.width = width;
2121                 interior.height = height;
2122         } else {
2123                 if (widget->window->maximized) {
2124                         frame_set_flag(frame->frame, FRAME_FLAG_MAXIMIZED);
2125                 } else {
2126                         frame_unset_flag(frame->frame, FRAME_FLAG_MAXIMIZED);
2127                 }
2128
2129                 frame_resize(frame->frame, width, height);
2130                 frame_interior(frame->frame, &interior.x, &interior.y,
2131                                &interior.width, &interior.height);
2132         }
2133
2134         widget_set_allocation(child, interior.x, interior.y,
2135                               interior.width, interior.height);
2136
2137         if (child->resize_handler) {
2138                 child->resize_handler(child, interior.width, interior.height,
2139                                       child->user_data);
2140
2141                 if (widget->window->fullscreen) {
2142                         width = child->allocation.width;
2143                         height = child->allocation.height;
2144                 } else {
2145                         frame_resize_inside(frame->frame,
2146                                             child->allocation.width,
2147                                             child->allocation.height);
2148                         width = frame_width(frame->frame);
2149                         height = frame_height(frame->frame);
2150                 }
2151         }
2152
2153         widget_set_allocation(widget, 0, 0, width, height);
2154
2155         widget->surface->input_region =
2156                 wl_compositor_create_region(widget->window->display->compositor);
2157         if (!widget->window->fullscreen) {
2158                 frame_input_rect(frame->frame, &input.x, &input.y,
2159                                  &input.width, &input.height);
2160                 wl_region_add(widget->surface->input_region,
2161                               input.x, input.y, input.width, input.height);
2162         } else {
2163                 wl_region_add(widget->surface->input_region, 0, 0, width, height);
2164         }
2165
2166         widget_set_allocation(widget, 0, 0, width, height);
2167
2168         if (child->opaque) {
2169                 if (!widget->window->fullscreen) {
2170                         frame_opaque_rect(frame->frame, &opaque.x, &opaque.y,
2171                                           &opaque.width, &opaque.height);
2172
2173                         wl_region_add(widget->surface->opaque_region,
2174                                       opaque.x, opaque.y,
2175                                       opaque.width, opaque.height);
2176                 } else {
2177                         wl_region_add(widget->surface->opaque_region,
2178                                       0, 0, width, height);
2179                 }
2180         }
2181
2182
2183         widget_schedule_redraw(widget);
2184 }
2185
2186 static void
2187 frame_redraw_handler(struct widget *widget, void *data)
2188 {
2189         cairo_t *cr;
2190         struct window_frame *frame = data;
2191         struct window *window = widget->window;
2192
2193         if (window->fullscreen)
2194                 return;
2195
2196         if (window->focused) {
2197                 frame_set_flag(frame->frame, FRAME_FLAG_ACTIVE);
2198         } else {
2199                 frame_unset_flag(frame->frame, FRAME_FLAG_ACTIVE);
2200         }
2201
2202         cr = widget_cairo_create(widget);
2203
2204         frame_repaint(frame->frame, cr);
2205
2206         cairo_destroy(cr);
2207 }
2208
2209 static int
2210 frame_get_pointer_image_for_location(struct window_frame *frame,
2211                                      enum theme_location location)
2212 {
2213         struct window *window = frame->widget->window;
2214
2215         if (window->custom)
2216                 return CURSOR_LEFT_PTR;
2217
2218         switch (location) {
2219         case THEME_LOCATION_RESIZING_TOP:
2220                 return CURSOR_TOP;
2221         case THEME_LOCATION_RESIZING_BOTTOM:
2222                 return CURSOR_BOTTOM;
2223         case THEME_LOCATION_RESIZING_LEFT:
2224                 return CURSOR_LEFT;
2225         case THEME_LOCATION_RESIZING_RIGHT:
2226                 return CURSOR_RIGHT;
2227         case THEME_LOCATION_RESIZING_TOP_LEFT:
2228                 return CURSOR_TOP_LEFT;
2229         case THEME_LOCATION_RESIZING_TOP_RIGHT:
2230                 return CURSOR_TOP_RIGHT;
2231         case THEME_LOCATION_RESIZING_BOTTOM_LEFT:
2232                 return CURSOR_BOTTOM_LEFT;
2233         case THEME_LOCATION_RESIZING_BOTTOM_RIGHT:
2234                 return CURSOR_BOTTOM_RIGHT;
2235         case THEME_LOCATION_EXTERIOR:
2236         case THEME_LOCATION_TITLEBAR:
2237         default:
2238                 return CURSOR_LEFT_PTR;
2239         }
2240 }
2241
2242 static void
2243 frame_menu_func(struct window *window,
2244                 struct input *input, int index, void *data)
2245 {
2246         struct display *display;
2247
2248         switch (index) {
2249         case 0: /* close */
2250                 window_close(window);
2251                 break;
2252         case 1: /* move to workspace above */
2253                 display = window->display;
2254                 if (display->workspace > 0)
2255                         workspace_manager_move_surface(
2256                                 display->workspace_manager,
2257                                 window->main_surface->surface,
2258                                 display->workspace - 1);
2259                 break;
2260         case 2: /* move to workspace below */
2261                 display = window->display;
2262                 if (display->workspace < display->workspace_count - 1)
2263                         workspace_manager_move_surface(
2264                                 display->workspace_manager,
2265                                 window->main_surface->surface,
2266                                 display->workspace + 1);
2267                 break;
2268         case 3: /* fullscreen */
2269                 /* we don't have a way to get out of fullscreen for now */
2270                 if (window->fullscreen_handler)
2271                         window->fullscreen_handler(window, window->user_data);
2272                 break;
2273         }
2274 }
2275
2276 void
2277 window_show_frame_menu(struct window *window,
2278                        struct input *input, uint32_t time)
2279 {
2280         int32_t x, y;
2281         int count;
2282
2283         static const char *entries[] = {
2284                 "Close",
2285                 "Move to workspace above", "Move to workspace below",
2286                 "Fullscreen"
2287         };
2288
2289         if (window->fullscreen_handler)
2290                 count = ARRAY_LENGTH(entries);
2291         else
2292                 count = ARRAY_LENGTH(entries) - 1;
2293
2294         input_get_position(input, &x, &y);
2295         window_show_menu(window->display, input, time, window,
2296                          x - 10, y - 10, frame_menu_func, entries, count);
2297 }
2298
2299 static int
2300 frame_enter_handler(struct widget *widget,
2301                     struct input *input, float x, float y, void *data)
2302 {
2303         struct window_frame *frame = data;
2304         enum theme_location location;
2305
2306         location = frame_pointer_enter(frame->frame, input, x, y);
2307         if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2308                 widget_schedule_redraw(frame->widget);
2309
2310         return frame_get_pointer_image_for_location(data, location);
2311 }
2312
2313 static int
2314 frame_motion_handler(struct widget *widget,
2315                      struct input *input, uint32_t time,
2316                      float x, float y, void *data)
2317 {
2318         struct window_frame *frame = data;
2319         enum theme_location location;
2320
2321         location = frame_pointer_motion(frame->frame, input, x, y);
2322         if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2323                 widget_schedule_redraw(frame->widget);
2324
2325         return frame_get_pointer_image_for_location(data, location);
2326 }
2327
2328 static void
2329 frame_leave_handler(struct widget *widget,
2330                     struct input *input, void *data)
2331 {
2332         struct window_frame *frame = data;
2333
2334         frame_pointer_leave(frame->frame, input);
2335         if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2336                 widget_schedule_redraw(frame->widget);
2337 }
2338
2339 static void
2340 frame_handle_status(struct window_frame *frame, struct input *input,
2341                     uint32_t time, enum theme_location location)
2342 {
2343         struct window *window = frame->widget->window;
2344         uint32_t status;
2345
2346         status = frame_status(frame->frame);
2347         if (status & FRAME_STATUS_REPAINT)
2348                 widget_schedule_redraw(frame->widget);
2349
2350         if (status & FRAME_STATUS_MINIMIZE) {
2351                 window_set_minimized(window);
2352                 frame_status_clear(frame->frame, FRAME_STATUS_MINIMIZE);
2353         }
2354
2355         if (status & FRAME_STATUS_MENU) {
2356                 window_show_frame_menu(window, input, time);
2357                 frame_status_clear(frame->frame, FRAME_STATUS_MENU);
2358         }
2359
2360         if (status & FRAME_STATUS_MAXIMIZE) {
2361                 window_set_maximized(window, !window->maximized);
2362                 frame_status_clear(frame->frame, FRAME_STATUS_MAXIMIZE);
2363         }
2364
2365         if (status & FRAME_STATUS_CLOSE) {
2366                 window_close(window);
2367                 return;
2368         }
2369
2370         if ((status & FRAME_STATUS_MOVE) && window->xdg_surface) {
2371                 input_ungrab(input);
2372                 xdg_surface_move(window->xdg_surface,
2373                                  input_get_seat(input),
2374                                  window->display->serial);
2375
2376                 frame_status_clear(frame->frame, FRAME_STATUS_MOVE);
2377         }
2378
2379         if ((status & FRAME_STATUS_RESIZE) && window->xdg_surface) {
2380                 input_ungrab(input);
2381
2382                 window->resizing = 1;
2383                 xdg_surface_resize(window->xdg_surface,
2384                                    input_get_seat(input),
2385                                    window->display->serial,
2386                                    location);
2387
2388                 frame_status_clear(frame->frame, FRAME_STATUS_RESIZE);
2389         }
2390 }
2391
2392 static void
2393 frame_button_handler(struct widget *widget,
2394                      struct input *input, uint32_t time,
2395                      uint32_t button, enum wl_pointer_button_state state,
2396                      void *data)
2397
2398 {
2399         struct window_frame *frame = data;
2400         enum theme_location location;
2401
2402         location = frame_pointer_button(frame->frame, input, button, state);
2403         frame_handle_status(frame, input, time, location);
2404 }
2405
2406 static void
2407 frame_touch_down_handler(struct widget *widget, struct input *input,
2408                          uint32_t serial, uint32_t time, int32_t id,
2409                          float x, float y, void *data)
2410 {
2411         struct window_frame *frame = data;
2412
2413         frame_touch_down(frame->frame, input, id, x, y);
2414         frame_handle_status(frame, input, time, THEME_LOCATION_CLIENT_AREA);
2415 }
2416
2417 static void
2418 frame_touch_up_handler(struct widget *widget,
2419                          struct input *input, uint32_t serial, uint32_t time,
2420                          int32_t id, void *data)
2421 {
2422         struct window_frame *frame = data;
2423
2424         frame_touch_up(frame->frame, input, id);
2425         frame_handle_status(frame, input, time, THEME_LOCATION_CLIENT_AREA);
2426 }
2427
2428 struct widget *
2429 window_frame_create(struct window *window, void *data)
2430 {
2431         struct window_frame *frame;
2432         uint32_t buttons;
2433
2434         if (window->custom) {
2435                 buttons = FRAME_BUTTON_NONE;
2436         } else {
2437                 buttons = FRAME_BUTTON_ALL;
2438         }
2439
2440         frame = xzalloc(sizeof *frame);
2441         frame->frame = frame_create(window->display->theme, 0, 0,
2442                                     buttons, window->title);
2443
2444         frame->widget = window_add_widget(window, frame);
2445         frame->child = widget_add_widget(frame->widget, data);
2446
2447         widget_set_redraw_handler(frame->widget, frame_redraw_handler);
2448         widget_set_resize_handler(frame->widget, frame_resize_handler);
2449         widget_set_enter_handler(frame->widget, frame_enter_handler);
2450         widget_set_leave_handler(frame->widget, frame_leave_handler);
2451         widget_set_motion_handler(frame->widget, frame_motion_handler);
2452         widget_set_button_handler(frame->widget, frame_button_handler);
2453         widget_set_touch_down_handler(frame->widget, frame_touch_down_handler);
2454         widget_set_touch_up_handler(frame->widget, frame_touch_up_handler);
2455
2456         window->frame = frame;
2457
2458         return frame->child;
2459 }
2460
2461 void
2462 window_frame_set_child_size(struct widget *widget, int child_width,
2463                             int child_height)
2464 {
2465         struct display *display = widget->window->display;
2466         struct theme *t = display->theme;
2467         int decoration_width, decoration_height;
2468         int width, height;
2469         int margin = widget->window->maximized ? 0 : t->margin;
2470
2471         if (!widget->window->fullscreen) {
2472                 decoration_width = (t->width + margin) * 2;
2473                 decoration_height = t->width +
2474                         t->titlebar_height + margin * 2;
2475
2476                 width = child_width + decoration_width;
2477                 height = child_height + decoration_height;
2478         } else {
2479                 width = child_width;
2480                 height = child_height;
2481         }
2482
2483         window_schedule_resize(widget->window, width, height);
2484 }
2485
2486 static void
2487 window_frame_destroy(struct window_frame *frame)
2488 {
2489         frame_destroy(frame->frame);
2490
2491         /* frame->child must be destroyed by the application */
2492         widget_destroy(frame->widget);
2493         free(frame);
2494 }
2495
2496 static void
2497 input_set_focus_widget(struct input *input, struct widget *focus,
2498                        float x, float y)
2499 {
2500         struct widget *old, *widget;
2501         int cursor;
2502
2503         if (focus == input->focus_widget)
2504                 return;
2505
2506         old = input->focus_widget;
2507         if (old) {
2508                 widget = old;
2509                 if (input->grab)
2510                         widget = input->grab;
2511                 if (widget->leave_handler)
2512                         widget->leave_handler(old, input, widget->user_data);
2513                 input->focus_widget = NULL;
2514         }
2515
2516         if (focus) {
2517                 widget = focus;
2518                 if (input->grab)
2519                         widget = input->grab;
2520                 input->focus_widget = focus;
2521                 if (widget->enter_handler)
2522                         cursor = widget->enter_handler(focus, input, x, y,
2523                                                        widget->user_data);
2524                 else
2525                         cursor = widget->default_cursor;
2526
2527                 input_set_pointer_image(input, cursor);
2528         }
2529 }
2530
2531 void
2532 touch_grab(struct input  *input, int32_t touch_id)
2533 {
2534         input->touch_grab = 1;
2535         input->touch_grab_id = touch_id;
2536 }
2537
2538 void
2539 touch_ungrab(struct input *input)
2540 {
2541         struct touch_point *tp, *tmp;
2542
2543         input->touch_grab = 0;
2544
2545         wl_list_for_each_safe(tp, tmp,
2546                         &input->touch_point_list, link) {
2547                 if (tp->id != input->touch_grab_id)
2548                         continue;
2549                 wl_list_remove(&tp->link);
2550                 free(tp);
2551
2552                 return;
2553         }
2554 }
2555
2556 void
2557 input_grab(struct input *input, struct widget *widget, uint32_t button)
2558 {
2559         input->grab = widget;
2560         input->grab_button = button;
2561
2562         input_set_focus_widget(input, widget, input->sx, input->sy);
2563 }
2564
2565 void
2566 input_ungrab(struct input *input)
2567 {
2568         struct widget *widget;
2569
2570         input->grab = NULL;
2571         if (input->pointer_focus) {
2572                 widget = window_find_widget(input->pointer_focus,
2573                                             input->sx, input->sy);
2574                 input_set_focus_widget(input, widget, input->sx, input->sy);
2575         }
2576 }
2577
2578 static void
2579 input_remove_pointer_focus(struct input *input)
2580 {
2581         struct window *window = input->pointer_focus;
2582
2583         if (!window)
2584                 return;
2585
2586         input_set_focus_widget(input, NULL, 0, 0);
2587
2588         input->pointer_focus = NULL;
2589         input->current_cursor = CURSOR_UNSET;
2590 }
2591
2592 static void
2593 pointer_handle_enter(void *data, struct wl_pointer *pointer,
2594                      uint32_t serial, struct wl_surface *surface,
2595                      wl_fixed_t sx_w, wl_fixed_t sy_w)
2596 {
2597         struct input *input = data;
2598         struct window *window;
2599         struct widget *widget;
2600         float sx = wl_fixed_to_double(sx_w);
2601         float sy = wl_fixed_to_double(sy_w);
2602
2603         if (!surface) {
2604                 /* enter event for a window we've just destroyed */
2605                 return;
2606         }
2607
2608         input->display->serial = serial;
2609         input->pointer_enter_serial = serial;
2610         input->pointer_focus = wl_surface_get_user_data(surface);
2611         window = input->pointer_focus;
2612
2613         if (window->resizing) {
2614                 window->resizing = 0;
2615                 /* Schedule a redraw to free the pool */
2616                 window_schedule_redraw(window);
2617         }
2618
2619         input->sx = sx;
2620         input->sy = sy;
2621
2622         widget = window_find_widget(window, sx, sy);
2623         input_set_focus_widget(input, widget, sx, sy);
2624 }
2625
2626 static void
2627 pointer_handle_leave(void *data, struct wl_pointer *pointer,
2628                      uint32_t serial, struct wl_surface *surface)
2629 {
2630         struct input *input = data;
2631
2632         input->display->serial = serial;
2633         input_remove_pointer_focus(input);
2634 }
2635
2636 static void
2637 pointer_handle_motion(void *data, struct wl_pointer *pointer,
2638                       uint32_t time, wl_fixed_t sx_w, wl_fixed_t sy_w)
2639 {
2640         struct input *input = data;
2641         struct window *window = input->pointer_focus;
2642         struct widget *widget;
2643         int cursor;
2644         float sx = wl_fixed_to_double(sx_w);
2645         float sy = wl_fixed_to_double(sy_w);
2646
2647         input->sx = sx;
2648         input->sy = sy;
2649
2650         if (!window)
2651                 return;
2652
2653         /* when making the window smaller - e.g. after a unmaximise we might
2654          * still have a pending motion event that the compositor has picked
2655          * based on the old surface dimensions
2656          */
2657         if (sx > window->main_surface->allocation.width ||
2658             sy > window->main_surface->allocation.height)
2659                 return;
2660
2661         if (!(input->grab && input->grab_button)) {
2662                 widget = window_find_widget(window, sx, sy);
2663                 input_set_focus_widget(input, widget, sx, sy);
2664         }
2665
2666         if (input->grab)
2667                 widget = input->grab;
2668         else
2669                 widget = input->focus_widget;
2670         if (widget) {
2671                 if (widget->motion_handler)
2672                         cursor = widget->motion_handler(input->focus_widget,
2673                                                         input, time, sx, sy,
2674                                                         widget->user_data);
2675                 else
2676                         cursor = widget->default_cursor;
2677         } else
2678                 cursor = CURSOR_LEFT_PTR;
2679
2680         input_set_pointer_image(input, cursor);
2681 }
2682
2683 static void
2684 pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial,
2685                       uint32_t time, uint32_t button, uint32_t state_w)
2686 {
2687         struct input *input = data;
2688         struct widget *widget;
2689         enum wl_pointer_button_state state = state_w;
2690
2691         input->display->serial = serial;
2692         if (input->focus_widget && input->grab == NULL &&
2693             state == WL_POINTER_BUTTON_STATE_PRESSED)
2694                 input_grab(input, input->focus_widget, button);
2695
2696         widget = input->grab;
2697         if (widget && widget->button_handler)
2698                 (*widget->button_handler)(widget,
2699                                           input, time,
2700                                           button, state,
2701                                           input->grab->user_data);
2702
2703         if (input->grab && input->grab_button == button &&
2704             state == WL_POINTER_BUTTON_STATE_RELEASED)
2705                 input_ungrab(input);
2706 }
2707
2708 static void
2709 pointer_handle_axis(void *data, struct wl_pointer *pointer,
2710                     uint32_t time, uint32_t axis, wl_fixed_t value)
2711 {
2712         struct input *input = data;
2713         struct widget *widget;
2714
2715         widget = input->focus_widget;
2716         if (input->grab)
2717                 widget = input->grab;
2718         if (widget && widget->axis_handler)
2719                 (*widget->axis_handler)(widget,
2720                                         input, time,
2721                                         axis, value,
2722                                         widget->user_data);
2723 }
2724
2725 static const struct wl_pointer_listener pointer_listener = {
2726         pointer_handle_enter,
2727         pointer_handle_leave,
2728         pointer_handle_motion,
2729         pointer_handle_button,
2730         pointer_handle_axis,
2731 };
2732
2733 static void
2734 input_remove_keyboard_focus(struct input *input)
2735 {
2736         struct window *window = input->keyboard_focus;
2737         struct itimerspec its;
2738
2739         its.it_interval.tv_sec = 0;
2740         its.it_interval.tv_nsec = 0;
2741         its.it_value.tv_sec = 0;
2742         its.it_value.tv_nsec = 0;
2743         timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2744
2745         if (!window)
2746                 return;
2747
2748         if (window->keyboard_focus_handler)
2749                 (*window->keyboard_focus_handler)(window, NULL,
2750                                                   window->user_data);
2751
2752         input->keyboard_focus = NULL;
2753 }
2754
2755 static void
2756 keyboard_repeat_func(struct task *task, uint32_t events)
2757 {
2758         struct input *input =
2759                 container_of(task, struct input, repeat_task);
2760         struct window *window = input->keyboard_focus;
2761         uint64_t exp;
2762
2763         if (read(input->repeat_timer_fd, &exp, sizeof exp) != sizeof exp)
2764                 /* If we change the timer between the fd becoming
2765                  * readable and getting here, there'll be nothing to
2766                  * read and we get EAGAIN. */
2767                 return;
2768
2769         if (window && window->key_handler) {
2770                 (*window->key_handler)(window, input, input->repeat_time,
2771                                        input->repeat_key, input->repeat_sym,
2772                                        WL_KEYBOARD_KEY_STATE_PRESSED,
2773                                        window->user_data);
2774         }
2775 }
2776
2777 static void
2778 keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard,
2779                        uint32_t format, int fd, uint32_t size)
2780 {
2781         struct input *input = data;
2782         struct xkb_keymap *keymap;
2783         struct xkb_state *state;
2784         char *map_str;
2785
2786         if (!data) {
2787                 close(fd);
2788                 return;
2789         }
2790
2791         if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
2792                 close(fd);
2793                 return;
2794         }
2795
2796         map_str = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
2797         if (map_str == MAP_FAILED) {
2798                 close(fd);
2799                 return;
2800         }
2801
2802         keymap = xkb_map_new_from_string(input->display->xkb_context,
2803                                          map_str,
2804                                          XKB_KEYMAP_FORMAT_TEXT_V1,
2805                                          0);
2806         munmap(map_str, size);
2807         close(fd);
2808
2809         if (!keymap) {
2810                 fprintf(stderr, "failed to compile keymap\n");
2811                 return;
2812         }
2813
2814         state = xkb_state_new(keymap);
2815         if (!state) {
2816                 fprintf(stderr, "failed to create XKB state\n");
2817                 xkb_map_unref(keymap);
2818                 return;
2819         }
2820
2821         xkb_keymap_unref(input->xkb.keymap);
2822         xkb_state_unref(input->xkb.state);
2823         input->xkb.keymap = keymap;
2824         input->xkb.state = state;
2825
2826         input->xkb.control_mask =
2827                 1 << xkb_map_mod_get_index(input->xkb.keymap, "Control");
2828         input->xkb.alt_mask =
2829                 1 << xkb_map_mod_get_index(input->xkb.keymap, "Mod1");
2830         input->xkb.shift_mask =
2831                 1 << xkb_map_mod_get_index(input->xkb.keymap, "Shift");
2832 }
2833
2834 static void
2835 keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,
2836                       uint32_t serial, struct wl_surface *surface,
2837                       struct wl_array *keys)
2838 {
2839         struct input *input = data;
2840         struct window *window;
2841
2842         input->display->serial = serial;
2843         input->keyboard_focus = wl_surface_get_user_data(surface);
2844
2845         window = input->keyboard_focus;
2846         if (window->keyboard_focus_handler)
2847                 (*window->keyboard_focus_handler)(window,
2848                                                   input, window->user_data);
2849 }
2850
2851 static void
2852 keyboard_handle_leave(void *data, struct wl_keyboard *keyboard,
2853                       uint32_t serial, struct wl_surface *surface)
2854 {
2855         struct input *input = data;
2856
2857         input->display->serial = serial;
2858         input_remove_keyboard_focus(input);
2859 }
2860
2861 static void
2862 keyboard_handle_key(void *data, struct wl_keyboard *keyboard,
2863                     uint32_t serial, uint32_t time, uint32_t key,
2864                     uint32_t state_w)
2865 {
2866         struct input *input = data;
2867         struct window *window = input->keyboard_focus;
2868         uint32_t code, num_syms;
2869         enum wl_keyboard_key_state state = state_w;
2870         const xkb_keysym_t *syms;
2871         xkb_keysym_t sym;
2872         struct itimerspec its;
2873
2874         input->display->serial = serial;
2875         code = key + 8;
2876         if (!window || !input->xkb.state)
2877                 return;
2878
2879         /* We only use input grabs for pointer events for now, so just
2880          * ignore key presses if a grab is active.  We expand the key
2881          * event delivery mechanism to route events to widgets to
2882          * properly handle key grabs.  In the meantime, this prevents
2883          * key event devlivery while a grab is active. */
2884         if (input->grab && input->grab_button == 0)
2885                 return;
2886
2887         num_syms = xkb_key_get_syms(input->xkb.state, code, &syms);
2888
2889         sym = XKB_KEY_NoSymbol;
2890         if (num_syms == 1)
2891                 sym = syms[0];
2892
2893
2894         if (sym == XKB_KEY_F5 && input->modifiers == MOD_ALT_MASK) {
2895                 if (state == WL_KEYBOARD_KEY_STATE_PRESSED)
2896                         window_set_maximized(window, !window->maximized);
2897         } else if (sym == XKB_KEY_F11 &&
2898                    window->fullscreen_handler &&
2899                    state == WL_KEYBOARD_KEY_STATE_PRESSED) {
2900                 window->fullscreen_handler(window, window->user_data);
2901         } else if (sym == XKB_KEY_F4 &&
2902                    input->modifiers == MOD_ALT_MASK &&
2903                    state == WL_KEYBOARD_KEY_STATE_PRESSED) {
2904                 window_close(window);
2905         } else if (window->key_handler) {
2906                 (*window->key_handler)(window, input, time, key,
2907                                        sym, state, window->user_data);
2908         }
2909
2910         if (state == WL_KEYBOARD_KEY_STATE_RELEASED &&
2911             key == input->repeat_key) {
2912                 its.it_interval.tv_sec = 0;
2913                 its.it_interval.tv_nsec = 0;
2914                 its.it_value.tv_sec = 0;
2915                 its.it_value.tv_nsec = 0;
2916                 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2917         } else if (state == WL_KEYBOARD_KEY_STATE_PRESSED &&
2918                    xkb_keymap_key_repeats(input->xkb.keymap, code)) {
2919                 input->repeat_sym = sym;
2920                 input->repeat_key = key;
2921                 input->repeat_time = time;
2922                 its.it_interval.tv_sec = 0;
2923                 its.it_interval.tv_nsec = 25 * 1000 * 1000;
2924                 its.it_value.tv_sec = 0;
2925                 its.it_value.tv_nsec = 400 * 1000 * 1000;
2926                 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2927         }
2928 }
2929
2930 static void
2931 keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard,
2932                           uint32_t serial, uint32_t mods_depressed,
2933                           uint32_t mods_latched, uint32_t mods_locked,
2934                           uint32_t group)
2935 {
2936         struct input *input = data;
2937         xkb_mod_mask_t mask;
2938
2939         /* If we're not using a keymap, then we don't handle PC-style modifiers */
2940         if (!input->xkb.keymap)
2941                 return;
2942
2943         xkb_state_update_mask(input->xkb.state, mods_depressed, mods_latched,
2944                               mods_locked, 0, 0, group);
2945         mask = xkb_state_serialize_mods(input->xkb.state,
2946                                         XKB_STATE_DEPRESSED |
2947                                         XKB_STATE_LATCHED);
2948         input->modifiers = 0;
2949         if (mask & input->xkb.control_mask)
2950                 input->modifiers |= MOD_CONTROL_MASK;
2951         if (mask & input->xkb.alt_mask)
2952                 input->modifiers |= MOD_ALT_MASK;
2953         if (mask & input->xkb.shift_mask)
2954                 input->modifiers |= MOD_SHIFT_MASK;
2955 }
2956
2957 static const struct wl_keyboard_listener keyboard_listener = {
2958         keyboard_handle_keymap,
2959         keyboard_handle_enter,
2960         keyboard_handle_leave,
2961         keyboard_handle_key,
2962         keyboard_handle_modifiers,
2963 };
2964
2965 static void
2966 touch_handle_down(void *data, struct wl_touch *wl_touch,
2967                   uint32_t serial, uint32_t time, struct wl_surface *surface,
2968                   int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
2969 {
2970         struct input *input = data;
2971         struct widget *widget;
2972         float sx = wl_fixed_to_double(x_w);
2973         float sy = wl_fixed_to_double(y_w);
2974
2975         input->display->serial = serial;
2976         input->touch_focus = wl_surface_get_user_data(surface);
2977         if (!input->touch_focus) {
2978                 DBG("Failed to find to touch focus for surface %p\n", surface);
2979                 return;
2980         }
2981
2982         if (input->grab)
2983                 widget = input->grab;
2984         else
2985                 widget = window_find_widget(input->touch_focus,
2986                                             wl_fixed_to_double(x_w),
2987                                             wl_fixed_to_double(y_w));
2988         if (widget) {
2989                 struct touch_point *tp = xmalloc(sizeof *tp);
2990                 if (tp) {
2991                         tp->id = id;
2992                         tp->widget = widget;
2993                         tp->x = sx;
2994                         tp->y = sy;
2995                         wl_list_insert(&input->touch_point_list, &tp->link);
2996
2997                         if (widget->touch_down_handler)
2998                                 (*widget->touch_down_handler)(widget, input, 
2999                                                               serial, time, id,
3000                                                               sx, sy,
3001                                                               widget->user_data);
3002                 }
3003         }
3004 }
3005
3006 static void
3007 touch_handle_up(void *data, struct wl_touch *wl_touch,
3008                 uint32_t serial, uint32_t time, int32_t id)
3009 {
3010         struct input *input = data;
3011         struct touch_point *tp, *tmp;
3012
3013         if (!input->touch_focus) {
3014                 DBG("No touch focus found for touch up event!\n");
3015                 return;
3016         }
3017
3018         wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3019                 if (tp->id != id)
3020                         continue;
3021
3022                 if (tp->widget->touch_up_handler)
3023                         (*tp->widget->touch_up_handler)(tp->widget, input, serial,
3024                                                         time, id,
3025                                                         tp->widget->user_data);
3026
3027                 wl_list_remove(&tp->link);
3028                 free(tp);
3029
3030                 return;
3031         }
3032 }
3033
3034 static void
3035 touch_handle_motion(void *data, struct wl_touch *wl_touch,
3036                     uint32_t time, int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
3037 {
3038         struct input *input = data;
3039         struct touch_point *tp;
3040         float sx = wl_fixed_to_double(x_w);
3041         float sy = wl_fixed_to_double(y_w);
3042
3043         DBG("touch_handle_motion: %i %i\n", id, wl_list_length(&input->touch_point_list));
3044
3045         if (!input->touch_focus) {
3046                 DBG("No touch focus found for touch motion event!\n");
3047                 return;
3048         }
3049
3050         wl_list_for_each(tp, &input->touch_point_list, link) {
3051                 if (tp->id != id)
3052                         continue;
3053
3054                 tp->x = sx;
3055                 tp->y = sy;
3056                 if (tp->widget->touch_motion_handler)
3057                         (*tp->widget->touch_motion_handler)(tp->widget, input, time,
3058                                                             id, sx, sy,
3059                                                             tp->widget->user_data);
3060                 return;
3061         }
3062 }
3063
3064 static void
3065 touch_handle_frame(void *data, struct wl_touch *wl_touch)
3066 {
3067         struct input *input = data;
3068         struct touch_point *tp, *tmp;
3069
3070         DBG("touch_handle_frame\n");
3071
3072         if (!input->touch_focus) {
3073                 DBG("No touch focus found for touch frame event!\n");
3074                 return;
3075         }
3076
3077         wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3078                 if (tp->widget->touch_frame_handler)
3079                         (*tp->widget->touch_frame_handler)(tp->widget, input, 
3080                                                            tp->widget->user_data);
3081         }
3082 }
3083
3084 static void
3085 touch_handle_cancel(void *data, struct wl_touch *wl_touch)
3086 {
3087         struct input *input = data;
3088         struct touch_point *tp, *tmp;
3089
3090         DBG("touch_handle_cancel\n");
3091
3092         if (!input->touch_focus) {
3093                 DBG("No touch focus found for touch cancel event!\n");
3094                 return;
3095         }
3096
3097         wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3098                 if (tp->widget->touch_cancel_handler)
3099                         (*tp->widget->touch_cancel_handler)(tp->widget, input,
3100                                                             tp->widget->user_data);
3101
3102                 wl_list_remove(&tp->link);
3103                 free(tp);
3104         }
3105 }
3106
3107 static const struct wl_touch_listener touch_listener = {
3108         touch_handle_down,
3109         touch_handle_up,
3110         touch_handle_motion,
3111         touch_handle_frame,
3112         touch_handle_cancel,
3113 };
3114
3115 static void
3116 seat_handle_capabilities(void *data, struct wl_seat *seat,
3117                          enum wl_seat_capability caps)
3118 {
3119         struct input *input = data;
3120
3121         if ((caps & WL_SEAT_CAPABILITY_POINTER) && !input->pointer) {
3122                 input->pointer = wl_seat_get_pointer(seat);
3123                 wl_pointer_set_user_data(input->pointer, input);
3124                 wl_pointer_add_listener(input->pointer, &pointer_listener,
3125                                         input);
3126         } else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && input->pointer) {
3127                 wl_pointer_destroy(input->pointer);
3128                 input->pointer = NULL;
3129         }
3130
3131         if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !input->keyboard) {
3132                 input->keyboard = wl_seat_get_keyboard(seat);
3133                 wl_keyboard_set_user_data(input->keyboard, input);
3134                 wl_keyboard_add_listener(input->keyboard, &keyboard_listener,
3135                                          input);
3136         } else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && input->keyboard) {
3137                 wl_keyboard_destroy(input->keyboard);
3138                 input->keyboard = NULL;
3139         }
3140
3141         if ((caps & WL_SEAT_CAPABILITY_TOUCH) && !input->touch) {
3142                 input->touch = wl_seat_get_touch(seat);
3143                 wl_touch_set_user_data(input->touch, input);
3144                 wl_touch_add_listener(input->touch, &touch_listener, input);
3145         } else if (!(caps & WL_SEAT_CAPABILITY_TOUCH) && input->touch) {
3146                 wl_touch_destroy(input->touch);
3147                 input->touch = NULL;
3148         }
3149 }
3150
3151 static void
3152 seat_handle_name(void *data, struct wl_seat *seat,
3153                  const char *name)
3154 {
3155
3156 }
3157
3158 static const struct wl_seat_listener seat_listener = {
3159         seat_handle_capabilities,
3160         seat_handle_name
3161 };
3162
3163 void
3164 input_get_position(struct input *input, int32_t *x, int32_t *y)
3165 {
3166         *x = input->sx;
3167         *y = input->sy;
3168 }
3169
3170 int
3171 input_get_touch(struct input *input, int32_t id, float *x, float *y)
3172 {
3173         struct touch_point *tp;
3174
3175         wl_list_for_each(tp, &input->touch_point_list, link) {
3176                 if (tp->id != id)
3177                         continue;
3178
3179                 *x = tp->x;
3180                 *y = tp->y;
3181                 return 0;
3182         }
3183
3184         return -1;
3185 }
3186
3187 struct display *
3188 input_get_display(struct input *input)
3189 {
3190         return input->display;
3191 }
3192
3193 struct wl_seat *
3194 input_get_seat(struct input *input)
3195 {
3196         return input->seat;
3197 }
3198
3199 uint32_t
3200 input_get_modifiers(struct input *input)
3201 {
3202         return input->modifiers;
3203 }
3204
3205 struct widget *
3206 input_get_focus_widget(struct input *input)
3207 {
3208         return input->focus_widget;
3209 }
3210
3211 struct data_offer {
3212         struct wl_data_offer *offer;
3213         struct input *input;
3214         struct wl_array types;
3215         int refcount;
3216
3217         struct task io_task;
3218         int fd;
3219         data_func_t func;
3220         int32_t x, y;
3221         void *user_data;
3222 };
3223
3224 static void
3225 data_offer_offer(void *data, struct wl_data_offer *wl_data_offer, const char *type)
3226 {
3227         struct data_offer *offer = data;
3228         char **p;
3229
3230         p = wl_array_add(&offer->types, sizeof *p);
3231         *p = strdup(type);
3232 }
3233
3234 static const struct wl_data_offer_listener data_offer_listener = {
3235         data_offer_offer,
3236 };
3237
3238 static void
3239 data_offer_destroy(struct data_offer *offer)
3240 {
3241         char **p;
3242
3243         offer->refcount--;
3244         if (offer->refcount == 0) {
3245                 wl_data_offer_destroy(offer->offer);
3246                 for (p = offer->types.data; *p; p++)
3247                         free(*p);
3248                 wl_array_release(&offer->types);
3249                 free(offer);
3250         }
3251 }
3252
3253 static void
3254 data_device_data_offer(void *data,
3255                        struct wl_data_device *data_device,
3256                        struct wl_data_offer *_offer)
3257 {
3258         struct data_offer *offer;
3259
3260         offer = xmalloc(sizeof *offer);
3261
3262         wl_array_init(&offer->types);
3263         offer->refcount = 1;
3264         offer->input = data;
3265         offer->offer = _offer;
3266         wl_data_offer_add_listener(offer->offer,
3267                                    &data_offer_listener, offer);
3268 }
3269
3270 static void
3271 data_device_enter(void *data, struct wl_data_device *data_device,
3272                   uint32_t serial, struct wl_surface *surface,
3273                   wl_fixed_t x_w, wl_fixed_t y_w,
3274                   struct wl_data_offer *offer)
3275 {
3276         struct input *input = data;
3277         struct window *window;
3278         void *types_data;
3279         float x = wl_fixed_to_double(x_w);
3280         float y = wl_fixed_to_double(y_w);
3281         char **p;
3282
3283         window = wl_surface_get_user_data(surface);
3284         input->drag_enter_serial = serial;
3285         input->drag_focus = window,
3286         input->drag_x = x;
3287         input->drag_y = y;
3288
3289         if (!input->touch_grab)
3290                 input->pointer_enter_serial = serial;
3291
3292         if (offer) {
3293                 input->drag_offer = wl_data_offer_get_user_data(offer);
3294
3295                 p = wl_array_add(&input->drag_offer->types, sizeof *p);
3296                 *p = NULL;
3297
3298                 types_data = input->drag_offer->types.data;
3299         } else {
3300                 input->drag_offer = NULL;
3301                 types_data = NULL;
3302         }
3303
3304         if (window->data_handler)
3305                 window->data_handler(window, input, x, y, types_data,
3306                                      window->user_data);
3307 }
3308
3309 static void
3310 data_device_leave(void *data, struct wl_data_device *data_device)
3311 {
3312         struct input *input = data;
3313
3314         if (input->drag_offer) {
3315                 data_offer_destroy(input->drag_offer);
3316                 input->drag_offer = NULL;
3317         }
3318 }
3319
3320 static void
3321 data_device_motion(void *data, struct wl_data_device *data_device,
3322                    uint32_t time, wl_fixed_t x_w, wl_fixed_t y_w)
3323 {
3324         struct input *input = data;
3325         struct window *window = input->drag_focus;
3326         float x = wl_fixed_to_double(x_w);
3327         float y = wl_fixed_to_double(y_w);
3328         void *types_data;
3329
3330         input->drag_x = x;
3331         input->drag_y = y;
3332
3333         if (input->drag_offer)
3334                 types_data = input->drag_offer->types.data;
3335         else
3336                 types_data = NULL;
3337
3338         if (window->data_handler)
3339                 window->data_handler(window, input, x, y, types_data,
3340                                      window->user_data);
3341 }
3342
3343 static void
3344 data_device_drop(void *data, struct wl_data_device *data_device)
3345 {
3346         struct input *input = data;
3347         struct window *window = input->drag_focus;
3348         float x, y;
3349
3350         x = input->drag_x;
3351         y = input->drag_y;
3352
3353         if (window->drop_handler)
3354                 window->drop_handler(window, input,
3355                                      x, y, window->user_data);
3356
3357         if (input->touch_grab)
3358                 touch_ungrab(input);
3359 }
3360
3361 static void
3362 data_device_selection(void *data,
3363                       struct wl_data_device *wl_data_device,
3364                       struct wl_data_offer *offer)
3365 {
3366         struct input *input = data;
3367         char **p;
3368
3369         if (input->selection_offer)
3370                 data_offer_destroy(input->selection_offer);
3371
3372         if (offer) {
3373                 input->selection_offer = wl_data_offer_get_user_data(offer);
3374                 p = wl_array_add(&input->selection_offer->types, sizeof *p);
3375                 *p = NULL;
3376         } else {
3377                 input->selection_offer = NULL;
3378         }
3379 }
3380
3381 static const struct wl_data_device_listener data_device_listener = {
3382         data_device_data_offer,
3383         data_device_enter,
3384         data_device_leave,
3385         data_device_motion,
3386         data_device_drop,
3387         data_device_selection
3388 };
3389
3390 static void
3391 input_set_pointer_image_index(struct input *input, int index)
3392 {
3393         struct wl_buffer *buffer;
3394         struct wl_cursor *cursor;
3395         struct wl_cursor_image *image;
3396
3397         if (!input->pointer)
3398                 return;
3399
3400         cursor = input->display->cursors[input->current_cursor];
3401         if (!cursor)
3402                 return;
3403
3404         if (index >= (int) cursor->image_count) {
3405                 fprintf(stderr, "cursor index out of range\n");
3406                 return;
3407         }
3408
3409         image = cursor->images[index];
3410         buffer = wl_cursor_image_get_buffer(image);
3411         if (!buffer)
3412                 return;
3413
3414         wl_surface_attach(input->pointer_surface, buffer, 0, 0);
3415         wl_surface_damage(input->pointer_surface, 0, 0,
3416                           image->width, image->height);
3417         wl_surface_commit(input->pointer_surface);
3418         wl_pointer_set_cursor(input->pointer, input->pointer_enter_serial,
3419                               input->pointer_surface,
3420                               image->hotspot_x, image->hotspot_y);
3421 }
3422
3423 static const struct wl_callback_listener pointer_surface_listener;
3424
3425 static void
3426 pointer_surface_frame_callback(void *data, struct wl_callback *callback,
3427                                uint32_t time)
3428 {
3429         struct input *input = data;
3430         struct wl_cursor *cursor;
3431         int i;
3432
3433         if (callback) {
3434                 assert(callback == input->cursor_frame_cb);
3435                 wl_callback_destroy(callback);
3436                 input->cursor_frame_cb = NULL;
3437         }
3438
3439         if (!input->pointer)
3440                 return;
3441
3442         if (input->current_cursor == CURSOR_BLANK) {
3443                 wl_pointer_set_cursor(input->pointer,
3444                                       input->pointer_enter_serial,
3445                                       NULL, 0, 0);
3446                 return;
3447         }
3448
3449         if (input->current_cursor == CURSOR_UNSET)
3450                 return;
3451         cursor = input->display->cursors[input->current_cursor];
3452         if (!cursor)
3453                 return;
3454
3455         /* FIXME We don't have the current time on the first call so we set
3456          * the animation start to the time of the first frame callback. */
3457         if (time == 0)
3458                 input->cursor_anim_start = 0;
3459         else if (input->cursor_anim_start == 0)
3460                 input->cursor_anim_start = time;
3461
3462         if (time == 0 || input->cursor_anim_start == 0)
3463                 i = 0;
3464         else
3465                 i = wl_cursor_frame(cursor, time - input->cursor_anim_start);
3466
3467         if (cursor->image_count > 1) {
3468                 input->cursor_frame_cb =
3469                         wl_surface_frame(input->pointer_surface);
3470                 wl_callback_add_listener(input->cursor_frame_cb,
3471                                          &pointer_surface_listener, input);
3472         }
3473
3474         input_set_pointer_image_index(input, i);
3475 }
3476
3477 static const struct wl_callback_listener pointer_surface_listener = {
3478         pointer_surface_frame_callback
3479 };
3480
3481 void
3482 input_set_pointer_image(struct input *input, int pointer)
3483 {
3484         int force = 0;
3485
3486         if (!input->pointer)
3487                 return;
3488
3489         if (input->pointer_enter_serial > input->cursor_serial)
3490                 force = 1;
3491
3492         if (!force && pointer == input->current_cursor)
3493                 return;
3494
3495         input->current_cursor = pointer;
3496         input->cursor_serial = input->pointer_enter_serial;
3497         if (!input->cursor_frame_cb)
3498                 pointer_surface_frame_callback(input, NULL, 0);
3499         else if (force) {
3500                 /* The current frame callback may be stuck if, for instance,
3501                  * the set cursor request was processed by the server after
3502                  * this client lost the focus. In this case the cursor surface
3503                  * might not be mapped and the frame callback wouldn't ever
3504                  * complete. Send a set_cursor and attach to try to map the
3505                  * cursor surface again so that the callback will finish */
3506                 input_set_pointer_image_index(input, 0);
3507         }
3508 }
3509
3510 struct wl_data_device *
3511 input_get_data_device(struct input *input)
3512 {
3513         return input->data_device;
3514 }
3515
3516 void
3517 input_set_selection(struct input *input,
3518                     struct wl_data_source *source, uint32_t time)
3519 {
3520         if (input->data_device)
3521                 wl_data_device_set_selection(input->data_device, source, time);
3522 }
3523
3524 void
3525 input_accept(struct input *input, const char *type)
3526 {
3527         wl_data_offer_accept(input->drag_offer->offer,
3528                              input->drag_enter_serial, type);
3529 }
3530
3531 static void
3532 offer_io_func(struct task *task, uint32_t events)
3533 {
3534         struct data_offer *offer =
3535                 container_of(task, struct data_offer, io_task);
3536         unsigned int len;
3537         char buffer[4096];
3538
3539         len = read(offer->fd, buffer, sizeof buffer);
3540         offer->func(buffer, len,
3541                     offer->x, offer->y, offer->user_data);
3542
3543         if (len == 0) {
3544                 close(offer->fd);
3545                 data_offer_destroy(offer);
3546         }
3547 }
3548
3549 static void
3550 data_offer_receive_data(struct data_offer *offer, const char *mime_type,
3551                         data_func_t func, void *user_data)
3552 {
3553         int p[2];
3554
3555         if (pipe2(p, O_CLOEXEC) == -1)
3556                 return;
3557
3558         wl_data_offer_receive(offer->offer, mime_type, p[1]);
3559         close(p[1]);
3560
3561         offer->io_task.run = offer_io_func;
3562         offer->fd = p[0];
3563         offer->func = func;
3564         offer->refcount++;
3565         offer->user_data = user_data;
3566
3567         display_watch_fd(offer->input->display,
3568                          offer->fd, EPOLLIN, &offer->io_task);
3569 }
3570
3571 void
3572 input_receive_drag_data(struct input *input, const char *mime_type,
3573                         data_func_t func, void *data)
3574 {
3575         data_offer_receive_data(input->drag_offer, mime_type, func, data);
3576         input->drag_offer->x = input->drag_x;
3577         input->drag_offer->y = input->drag_y;
3578 }
3579
3580 int
3581 input_receive_drag_data_to_fd(struct input *input,
3582                               const char *mime_type, int fd)
3583 {
3584         if (input->drag_offer)
3585                 wl_data_offer_receive(input->drag_offer->offer, mime_type, fd);
3586
3587         return 0;
3588 }
3589
3590 int
3591 input_receive_selection_data(struct input *input, const char *mime_type,
3592                              data_func_t func, void *data)
3593 {
3594         char **p;
3595
3596         if (input->selection_offer == NULL)
3597                 return -1;
3598
3599         for (p = input->selection_offer->types.data; *p; p++)
3600                 if (strcmp(mime_type, *p) == 0)
3601                         break;
3602
3603         if (*p == NULL)
3604                 return -1;
3605
3606         data_offer_receive_data(input->selection_offer,
3607                                 mime_type, func, data);
3608         return 0;
3609 }
3610
3611 int
3612 input_receive_selection_data_to_fd(struct input *input,
3613                                    const char *mime_type, int fd)
3614 {
3615         if (input->selection_offer)
3616                 wl_data_offer_receive(input->selection_offer->offer,
3617                                       mime_type, fd);
3618
3619         return 0;
3620 }
3621
3622 void
3623 window_move(struct window *window, struct input *input, uint32_t serial)
3624 {
3625         if (!window->xdg_surface)
3626                 return;
3627
3628         xdg_surface_move(window->xdg_surface, input->seat, serial);
3629 }
3630
3631 static void
3632 surface_set_synchronized(struct surface *surface)
3633 {
3634         if (!surface->subsurface)
3635                 return;
3636
3637         if (surface->synchronized)
3638                 return;
3639
3640         wl_subsurface_set_sync(surface->subsurface);
3641         surface->synchronized = 1;
3642 }
3643
3644 static void
3645 surface_set_synchronized_default(struct surface *surface)
3646 {
3647         if (!surface->subsurface)
3648                 return;
3649
3650         if (surface->synchronized == surface->synchronized_default)
3651                 return;
3652
3653         if (surface->synchronized_default)
3654                 wl_subsurface_set_sync(surface->subsurface);
3655         else
3656                 wl_subsurface_set_desync(surface->subsurface);
3657
3658         surface->synchronized = surface->synchronized_default;
3659 }
3660
3661 static void
3662 surface_resize(struct surface *surface)
3663 {
3664         struct widget *widget = surface->widget;
3665         struct wl_compositor *compositor = widget->window->display->compositor;
3666
3667         if (surface->input_region) {
3668                 wl_region_destroy(surface->input_region);
3669                 surface->input_region = NULL;
3670         }
3671
3672         if (surface->opaque_region)
3673                 wl_region_destroy(surface->opaque_region);
3674
3675         surface->opaque_region = wl_compositor_create_region(compositor);
3676
3677         if (widget->resize_handler)
3678                 widget->resize_handler(widget,
3679                                        widget->allocation.width,
3680                                        widget->allocation.height,
3681                                        widget->user_data);
3682
3683         if (surface->subsurface &&
3684             (surface->allocation.x != widget->allocation.x ||
3685              surface->allocation.y != widget->allocation.y)) {
3686                 wl_subsurface_set_position(surface->subsurface,
3687                                            widget->allocation.x,
3688                                            widget->allocation.y);
3689         }
3690         if (surface->allocation.width != widget->allocation.width ||
3691             surface->allocation.height != widget->allocation.height) {
3692                 window_schedule_redraw(widget->window);
3693         }
3694         surface->allocation = widget->allocation;
3695
3696         if (widget->opaque)
3697                 wl_region_add(surface->opaque_region, 0, 0,
3698                               widget->allocation.width,
3699                               widget->allocation.height);
3700 }
3701
3702 static void
3703 hack_prevent_EGL_sub_surface_deadlock(struct window *window)
3704 {
3705         /*
3706          * This hack should be removed, when EGL respects
3707          * eglSwapInterval(0).
3708          *
3709          * If this window has sub-surfaces, especially a free-running
3710          * EGL-widget, we need to post the parent surface once with
3711          * all the old state to guarantee, that the EGL-widget will
3712          * receive its frame callback soon. Otherwise, a forced call
3713          * to eglSwapBuffers may end up blocking, waiting for a frame
3714          * event that will never come, because we will commit the parent
3715          * surface with all new state only after eglSwapBuffers returns.
3716          *
3717          * This assumes, that:
3718          * 1. When the EGL widget's resize hook is called, it pauses.
3719          * 2. When the EGL widget's redraw hook is called, it forces a
3720          *    repaint and a call to eglSwapBuffers(), and maybe resumes.
3721          * In a single threaded application condition 1 is a no-op.
3722          *
3723          * XXX: This should actually be after the surface_resize() calls,
3724          * but cannot, because then it would commit the incomplete state
3725          * accumulated from the widget resize hooks.
3726          */
3727         if (window->subsurface_list.next != &window->main_surface->link ||
3728             window->subsurface_list.prev != &window->main_surface->link)
3729                 wl_surface_commit(window->main_surface->surface);
3730 }
3731
3732 static void
3733 window_do_resize(struct window *window)
3734 {
3735         struct surface *surface;
3736
3737         widget_set_allocation(window->main_surface->widget,
3738                               window->pending_allocation.x,
3739                               window->pending_allocation.y,
3740                               window->pending_allocation.width,
3741                               window->pending_allocation.height);
3742
3743         surface_resize(window->main_surface);
3744
3745         /* The main surface is in the list, too. Main surface's
3746          * resize_handler is responsible for calling widget_set_allocation()
3747          * on all sub-surface root widgets, so they will be resized
3748          * properly.
3749          */
3750         wl_list_for_each(surface, &window->subsurface_list, link) {
3751                 if (surface == window->main_surface)
3752                         continue;
3753
3754                 surface_set_synchronized(surface);
3755                 surface_resize(surface);
3756         }
3757
3758         if (!window->fullscreen && !window->maximized)
3759                 window->saved_allocation = window->pending_allocation;
3760 }
3761
3762 static void
3763 idle_resize(struct window *window)
3764 {
3765         window->resize_needed = 0;
3766         window->redraw_needed = 1;
3767
3768         DBG("from %dx%d to %dx%d\n",
3769             window->main_surface->server_allocation.width,
3770             window->main_surface->server_allocation.height,
3771             window->pending_allocation.width,
3772             window->pending_allocation.height);
3773
3774         hack_prevent_EGL_sub_surface_deadlock(window);
3775
3776         window_do_resize(window);
3777 }
3778
3779 static void
3780 undo_resize(struct window *window)
3781 {
3782         window->pending_allocation.width =
3783                 window->main_surface->server_allocation.width;
3784         window->pending_allocation.height =
3785                 window->main_surface->server_allocation.height;
3786
3787         DBG("back to %dx%d\n",
3788             window->main_surface->server_allocation.width,
3789             window->main_surface->server_allocation.height);
3790
3791         window_do_resize(window);
3792
3793         if (window->pending_allocation.width == 0 &&
3794             window->pending_allocation.height == 0) {
3795                 fprintf(stderr, "Error: Could not draw a surface, "
3796                         "most likely due to insufficient disk space in "
3797                         "%s (XDG_RUNTIME_DIR).\n", getenv("XDG_RUNTIME_DIR"));
3798                 exit(EXIT_FAILURE);
3799         }
3800 }
3801
3802 void
3803 window_schedule_resize(struct window *window, int width, int height)
3804 {
3805         /* We should probably get these numbers from the theme. */
3806         const int min_width = 200, min_height = 200;
3807
3808         window->pending_allocation.x = 0;
3809         window->pending_allocation.y = 0;
3810         window->pending_allocation.width = width;
3811         window->pending_allocation.height = height;
3812
3813         if (window->min_allocation.width == 0) {
3814                 if (width < min_width && window->frame)
3815                         window->min_allocation.width = min_width;
3816                 else
3817                         window->min_allocation.width = width;
3818                 if (height < min_height && window->frame)
3819                         window->min_allocation.height = min_height;
3820                 else
3821                         window->min_allocation.height = height;
3822         }
3823
3824         if (window->pending_allocation.width < window->min_allocation.width)
3825                 window->pending_allocation.width = window->min_allocation.width;
3826         if (window->pending_allocation.height < window->min_allocation.height)
3827                 window->pending_allocation.height = window->min_allocation.height;
3828
3829         window->resize_needed = 1;
3830         window_schedule_redraw(window);
3831 }
3832
3833 void
3834 widget_schedule_resize(struct widget *widget, int32_t width, int32_t height)
3835 {
3836         window_schedule_resize(widget->window, width, height);
3837 }
3838
3839 static void
3840 handle_surface_configure(void *data, struct xdg_surface *xdg_surface,
3841                          int32_t width, int32_t height)
3842 {
3843         struct window *window = data;
3844
3845         window_schedule_resize(window, width, height);
3846 }
3847
3848 static void
3849 handle_surface_change_state(void *data, struct xdg_surface *xdg_surface,
3850                             uint32_t state,
3851                             uint32_t value,
3852                             uint32_t serial)
3853 {
3854         struct window *window = data;
3855
3856         switch (state) {
3857         case XDG_SURFACE_STATE_MAXIMIZED:
3858                 window->maximized = value;
3859                 break;
3860         case XDG_SURFACE_STATE_FULLSCREEN:
3861                 window->fullscreen = value;
3862                 break;
3863         }
3864
3865         if (!window->fullscreen && !window->maximized)
3866                 window_schedule_resize(window,
3867                                        window->saved_allocation.width,
3868                                        window->saved_allocation.height);
3869
3870         xdg_surface_ack_change_state(xdg_surface, state, value, serial);
3871         window_schedule_redraw(window);
3872 }
3873
3874 static void
3875 handle_surface_activated(void *data, struct xdg_surface *xdg_surface)
3876 {
3877         struct window *window = data;
3878         window->focused = 1;
3879 }
3880
3881 static void
3882 handle_surface_deactivated(void *data, struct xdg_surface *xdg_surface)
3883 {
3884         struct window *window = data;
3885         window->focused = 0;
3886 }
3887
3888 static void
3889 handle_surface_delete(void *data, struct xdg_surface *xdg_surface)
3890 {
3891         struct window *window = data;
3892         window_close(window);
3893 }
3894
3895 static const struct xdg_surface_listener xdg_surface_listener = {
3896         handle_surface_configure,
3897         handle_surface_change_state,
3898         handle_surface_activated,
3899         handle_surface_deactivated,
3900         handle_surface_delete,
3901 };
3902
3903 static void
3904 window_sync_transient_for(struct window *window)
3905 {
3906         struct wl_surface *parent_surface;
3907
3908         if (!window->xdg_surface)
3909                 return;
3910
3911         if (window->transient_for)
3912                 parent_surface = window->transient_for->main_surface->surface;
3913         else
3914                 parent_surface = NULL;
3915
3916         xdg_surface_set_transient_for(window->xdg_surface, parent_surface);
3917 }
3918
3919 static void
3920 window_sync_margin(struct window *window)
3921 {
3922         int margin;
3923
3924         if (!window->xdg_surface)
3925                 return;
3926
3927         if (!window->frame)
3928                 return;
3929
3930         margin = frame_get_shadow_margin(window->frame->frame);
3931
3932         /* Shadow size is the same on every side. */
3933         xdg_surface_set_margin(window->xdg_surface,
3934                                      margin,
3935                                      margin,
3936                                      margin,
3937                                      margin);
3938 }
3939
3940 static void
3941 window_flush(struct window *window)
3942 {
3943         struct surface *surface;
3944
3945         if (!window->custom) {
3946                 if (window->xdg_surface) {
3947                         window_sync_transient_for(window);
3948                         window_sync_margin(window);
3949                 }
3950         }
3951
3952         wl_list_for_each(surface, &window->subsurface_list, link) {
3953                 if (surface == window->main_surface)
3954                         continue;
3955
3956                 surface_flush(surface);
3957         }
3958
3959         surface_flush(window->main_surface);
3960 }
3961
3962 static void
3963 menu_destroy(struct menu *menu)
3964 {
3965         widget_destroy(menu->widget);
3966         window_destroy(menu->window);
3967         frame_destroy(menu->frame);
3968         free(menu);
3969 }
3970
3971 void
3972 window_get_allocation(struct window *window,
3973                       struct rectangle *allocation)
3974 {
3975         *allocation = window->main_surface->allocation;
3976 }
3977
3978 static void
3979 widget_redraw(struct widget *widget)
3980 {
3981         struct widget *child;
3982
3983         if (widget->redraw_handler)
3984                 widget->redraw_handler(widget, widget->user_data);
3985         wl_list_for_each(child, &widget->child_list, link)
3986                 widget_redraw(child);
3987 }
3988
3989 static void
3990 frame_callback(void *data, struct wl_callback *callback, uint32_t time)
3991 {
3992         struct surface *surface = data;
3993
3994         assert(callback == surface->frame_cb);
3995         DBG_OBJ(callback, "done\n");
3996         wl_callback_destroy(callback);
3997         surface->frame_cb = NULL;
3998
3999         surface->last_time = time;
4000
4001         if (surface->redraw_needed || surface->window->redraw_needed) {
4002                 DBG_OBJ(surface->surface, "window_schedule_redraw_task\n");
4003                 window_schedule_redraw_task(surface->window);
4004         }
4005 }
4006
4007 static const struct wl_callback_listener listener = {
4008         frame_callback
4009 };
4010
4011 static int
4012 surface_redraw(struct surface *surface)
4013 {
4014         DBG_OBJ(surface->surface, "begin\n");
4015
4016         if (!surface->window->redraw_needed && !surface->redraw_needed)
4017                 return 0;
4018
4019         /* Whole-window redraw forces a redraw even if the previous has
4020          * not yet hit the screen.
4021          */
4022         if (surface->frame_cb) {
4023                 if (!surface->window->redraw_needed)
4024                         return 0;
4025
4026                 DBG_OBJ(surface->frame_cb, "cancelled\n");
4027                 wl_callback_destroy(surface->frame_cb);
4028         }
4029
4030         if (surface->widget->use_cairo &&
4031             !widget_get_cairo_surface(surface->widget)) {
4032                 DBG_OBJ(surface->surface, "cancelled due buffer failure\n");
4033                 return -1;
4034         }
4035
4036         surface->frame_cb = wl_surface_frame(surface->surface);
4037         wl_callback_add_listener(surface->frame_cb, &listener, surface);
4038         DBG_OBJ(surface->frame_cb, "new\n");
4039
4040         surface->redraw_needed = 0;
4041         DBG_OBJ(surface->surface, "-> widget_redraw\n");
4042         widget_redraw(surface->widget);
4043         DBG_OBJ(surface->surface, "done\n");
4044         return 0;
4045 }
4046
4047 static void
4048 idle_redraw(struct task *task, uint32_t events)
4049 {
4050         struct window *window = container_of(task, struct window, redraw_task);
4051         struct surface *surface;
4052         int failed = 0;
4053         int resized = 0;
4054
4055         DBG(" --------- \n");
4056
4057         wl_list_init(&window->redraw_task.link);
4058         window->redraw_task_scheduled = 0;
4059
4060         if (window->resize_needed) {
4061                 /* throttle resizing to the main surface display */
4062                 if (window->main_surface->frame_cb) {
4063                         DBG_OBJ(window->main_surface->frame_cb, "pending\n");
4064                         return;
4065                 }
4066
4067                 idle_resize(window);
4068                 resized = 1;
4069         }
4070
4071         if (surface_redraw(window->main_surface) < 0) {
4072                 /*
4073                  * Only main_surface failure will cause us to undo the resize.
4074                  * If sub-surfaces fail, they will just be broken with old
4075                  * content.
4076                  */
4077                 failed = 1;
4078         } else {
4079                 wl_list_for_each(surface, &window->subsurface_list, link) {
4080                         if (surface == window->main_surface)
4081                                 continue;
4082
4083                         surface_redraw(surface);
4084                 }
4085         }
4086
4087         window->redraw_needed = 0;
4088         window_flush(window);
4089
4090         wl_list_for_each(surface, &window->subsurface_list, link)
4091                 surface_set_synchronized_default(surface);
4092
4093         if (resized && failed) {
4094                 /* Restore widget tree to correspond to what is on screen. */
4095                 undo_resize(window);
4096         }
4097 }
4098
4099 static void
4100 window_schedule_redraw_task(struct window *window)
4101 {
4102         if (!window->redraw_task_scheduled) {
4103                 window->redraw_task.run = idle_redraw;
4104                 display_defer(window->display, &window->redraw_task);
4105                 window->redraw_task_scheduled = 1;
4106         }
4107 }
4108
4109 void
4110 window_schedule_redraw(struct window *window)
4111 {
4112         struct surface *surface;
4113
4114         DBG_OBJ(window->main_surface->surface, "window %p\n", window);
4115
4116         wl_list_for_each(surface, &window->subsurface_list, link)
4117                 surface->redraw_needed = 1;
4118
4119         window_schedule_redraw_task(window);
4120 }
4121
4122 int
4123 window_is_fullscreen(struct window *window)
4124 {
4125         return window->fullscreen;
4126 }
4127
4128 void
4129 window_set_fullscreen(struct window *window, int fullscreen)
4130 {
4131         if (!window->xdg_surface)
4132                 return;
4133
4134         if (window->fullscreen == fullscreen)
4135                 return;
4136
4137         xdg_surface_request_change_state(window->xdg_surface,
4138                                          XDG_SURFACE_STATE_FULLSCREEN,
4139                                          fullscreen ? 1 : 0,
4140                                          0);
4141 }
4142
4143 int
4144 window_is_maximized(struct window *window)
4145 {
4146         return window->maximized;
4147 }
4148
4149 void
4150 window_set_maximized(struct window *window, int maximized)
4151 {
4152         if (!window->xdg_surface)
4153                 return;
4154
4155         if (window->maximized == maximized)
4156                 return;
4157
4158         xdg_surface_request_change_state(window->xdg_surface,
4159                                          XDG_SURFACE_STATE_MAXIMIZED,
4160                                          maximized ? 1 : 0,
4161                                          0);
4162 }
4163
4164 void
4165 window_set_minimized(struct window *window)
4166 {
4167         if (!window->xdg_surface)
4168                 return;
4169
4170         xdg_surface_set_minimized(window->xdg_surface);
4171 }
4172
4173 void
4174 window_set_user_data(struct window *window, void *data)
4175 {
4176         window->user_data = data;
4177 }
4178
4179 void *
4180 window_get_user_data(struct window *window)
4181 {
4182         return window->user_data;
4183 }
4184
4185 void
4186 window_set_key_handler(struct window *window,
4187                        window_key_handler_t handler)
4188 {
4189         window->key_handler = handler;
4190 }
4191
4192 void
4193 window_set_keyboard_focus_handler(struct window *window,
4194                                   window_keyboard_focus_handler_t handler)
4195 {
4196         window->keyboard_focus_handler = handler;
4197 }
4198
4199 void
4200 window_set_data_handler(struct window *window, window_data_handler_t handler)
4201 {
4202         window->data_handler = handler;
4203 }
4204
4205 void
4206 window_set_drop_handler(struct window *window, window_drop_handler_t handler)
4207 {
4208         window->drop_handler = handler;
4209 }
4210
4211 void
4212 window_set_close_handler(struct window *window,
4213                          window_close_handler_t handler)
4214 {
4215         window->close_handler = handler;
4216 }
4217
4218 void
4219 window_set_fullscreen_handler(struct window *window,
4220                               window_fullscreen_handler_t handler)
4221 {
4222         window->fullscreen_handler = handler;
4223 }
4224
4225 void
4226 window_set_output_handler(struct window *window,
4227                           window_output_handler_t handler)
4228 {
4229         window->output_handler = handler;
4230 }
4231
4232 void
4233 window_set_title(struct window *window, const char *title)
4234 {
4235         free(window->title);
4236         window->title = strdup(title);
4237         if (window->frame) {
4238                 frame_set_title(window->frame->frame, title);
4239                 widget_schedule_redraw(window->frame->widget);
4240         }
4241         if (window->xdg_surface)
4242                 xdg_surface_set_title(window->xdg_surface, title);
4243 }
4244
4245 const char *
4246 window_get_title(struct window *window)
4247 {
4248         return window->title;
4249 }
4250
4251 void
4252 window_set_text_cursor_position(struct window *window, int32_t x, int32_t y)
4253 {
4254         struct text_cursor_position *text_cursor_position =
4255                                         window->display->text_cursor_position;
4256
4257         if (!text_cursor_position)
4258                 return;
4259
4260         text_cursor_position_notify(text_cursor_position,
4261                                     window->main_surface->surface,
4262                                     wl_fixed_from_int(x),
4263                                     wl_fixed_from_int(y));
4264 }
4265
4266 void
4267 window_damage(struct window *window, int32_t x, int32_t y,
4268               int32_t width, int32_t height)
4269 {
4270         wl_surface_damage(window->main_surface->surface, x, y, width, height);
4271 }
4272
4273 static void
4274 surface_enter(void *data,
4275               struct wl_surface *wl_surface, struct wl_output *wl_output)
4276 {
4277         struct window *window = data;
4278         struct output *output;
4279         struct output *output_found = NULL;
4280         struct window_output *window_output;
4281
4282         wl_list_for_each(output, &window->display->output_list, link) {
4283                 if (output->output == wl_output) {
4284                         output_found = output;
4285                         break;
4286                 }
4287         }
4288
4289         if (!output_found)
4290                 return;
4291
4292         window_output = xmalloc(sizeof *window_output);
4293         window_output->output = output_found;
4294
4295         wl_list_insert (&window->window_output_list, &window_output->link);
4296
4297         if (window->output_handler)
4298                 window->output_handler(window, output_found, 1,
4299                                        window->user_data);
4300 }
4301
4302 static void
4303 surface_leave(void *data,
4304               struct wl_surface *wl_surface, struct wl_output *output)
4305 {
4306         struct window *window = data;
4307         struct window_output *window_output;
4308         struct window_output *window_output_found = NULL;
4309
4310         wl_list_for_each(window_output, &window->window_output_list, link) {
4311                 if (window_output->output->output == output) {
4312                         window_output_found = window_output;
4313                         break;
4314                 }
4315         }
4316
4317         if (window_output_found) {
4318                 wl_list_remove(&window_output_found->link);
4319
4320                 if (window->output_handler)
4321                         window->output_handler(window, window_output->output,
4322                                                0, window->user_data);
4323
4324                 free(window_output_found);
4325         }
4326 }
4327
4328 static const struct wl_surface_listener surface_listener = {
4329         surface_enter,
4330         surface_leave
4331 };
4332
4333 static struct surface *
4334 surface_create(struct window *window)
4335 {
4336         struct display *display = window->display;
4337         struct surface *surface;
4338
4339         surface = xmalloc(sizeof *surface);
4340         memset(surface, 0, sizeof *surface);
4341         if (!surface)
4342                 return NULL;
4343
4344         surface->window = window;
4345         surface->surface = wl_compositor_create_surface(display->compositor);
4346         surface->buffer_scale = 1;
4347         wl_surface_add_listener(surface->surface, &surface_listener, window);
4348
4349         wl_list_insert(&window->subsurface_list, &surface->link);
4350
4351         return surface;
4352 }
4353
4354 static struct window *
4355 window_create_internal(struct display *display, int custom)
4356 {
4357         struct window *window;
4358         struct surface *surface;
4359
4360         window = xzalloc(sizeof *window);
4361         wl_list_init(&window->subsurface_list);
4362         window->display = display;
4363
4364         surface = surface_create(window);
4365         window->main_surface = surface;
4366
4367         assert(custom || display->xdg_shell);
4368
4369         window->custom = custom;
4370         window->preferred_format = WINDOW_PREFERRED_FORMAT_NONE;
4371
4372         if (display->argb_device)
4373 #ifdef HAVE_CAIRO_EGL
4374                 surface->buffer_type = WINDOW_BUFFER_TYPE_EGL_WINDOW;
4375 #else
4376                 surface->buffer_type = WINDOW_BUFFER_TYPE_SHM;
4377 #endif
4378         else
4379                 surface->buffer_type = WINDOW_BUFFER_TYPE_SHM;
4380
4381         wl_surface_set_user_data(surface->surface, window);
4382         wl_list_insert(display->window_list.prev, &window->link);
4383         wl_list_init(&window->redraw_task.link);
4384
4385         wl_list_init (&window->window_output_list);
4386
4387         return window;
4388 }
4389
4390 struct window *
4391 window_create(struct display *display)
4392 {
4393         struct window *window;
4394
4395         window = window_create_internal(display, 0);
4396
4397         window->xdg_surface =
4398                 xdg_shell_get_xdg_surface(window->display->xdg_shell,
4399                                           window->main_surface->surface);
4400         fail_on_null(window->xdg_surface);
4401
4402         xdg_surface_set_user_data(window->xdg_surface, window);
4403         xdg_surface_add_listener(window->xdg_surface,
4404                                  &xdg_surface_listener, window);
4405
4406         return window;
4407 }
4408
4409 struct window *
4410 window_create_custom(struct display *display)
4411 {
4412         return window_create_internal(display, 1);
4413 }
4414
4415 void
4416 window_set_transient_for(struct window *window,
4417                          struct window *parent_window)
4418 {
4419         window->transient_for = parent_window;
4420         window_sync_transient_for(window);
4421 }
4422
4423 struct window *
4424 window_get_transient_for(struct window *window)
4425 {
4426         return window->transient_for;
4427 }
4428
4429 static void
4430 menu_set_item(struct menu *menu, int sy)
4431 {
4432         int32_t x, y, width, height;
4433         int next;
4434
4435         frame_interior(menu->frame, &x, &y, &width, &height);
4436         next = (sy - y) / 20;
4437         if (menu->current != next) {
4438                 menu->current = next;
4439                 widget_schedule_redraw(menu->widget);
4440         }
4441 }
4442
4443 static int
4444 menu_motion_handler(struct widget *widget,
4445                     struct input *input, uint32_t time,
4446                     float x, float y, void *data)
4447 {
4448         struct menu *menu = data;
4449
4450         if (widget == menu->widget)
4451                 menu_set_item(data, y);
4452
4453         return CURSOR_LEFT_PTR;
4454 }
4455
4456 static int
4457 menu_enter_handler(struct widget *widget,
4458                    struct input *input, float x, float y, void *data)
4459 {
4460         struct menu *menu = data;
4461
4462         if (widget == menu->widget)
4463                 menu_set_item(data, y);
4464
4465         return CURSOR_LEFT_PTR;
4466 }
4467
4468 static void
4469 menu_leave_handler(struct widget *widget, struct input *input, void *data)
4470 {
4471         struct menu *menu = data;
4472
4473         if (widget == menu->widget)
4474                 menu_set_item(data, -200);
4475 }
4476
4477 static void
4478 menu_button_handler(struct widget *widget,
4479                     struct input *input, uint32_t time,
4480                     uint32_t button, enum wl_pointer_button_state state,
4481                     void *data)
4482
4483 {
4484         struct menu *menu = data;
4485
4486         if (state == WL_POINTER_BUTTON_STATE_RELEASED &&
4487             (menu->release_count > 0 || time - menu->time > 500)) {
4488                 /* Either relase after press-drag-release or
4489                  * click-motion-click. */
4490                 menu->func(menu->parent, input,
4491                            menu->current, menu->parent->user_data);
4492                 input_ungrab(input);
4493                 menu_destroy(menu);
4494         } else if (state == WL_POINTER_BUTTON_STATE_RELEASED) {
4495                 menu->release_count++;
4496         }
4497 }
4498
4499 static void
4500 menu_touch_up_handler(struct widget *widget,
4501                                           struct input *input,
4502                                           uint32_t serial,
4503                                           uint32_t time,
4504                                           int32_t id,
4505                                           void *data)
4506 {
4507         struct menu *menu = data;
4508
4509         input_ungrab(input);
4510         menu_destroy(menu);
4511 }
4512
4513 static void
4514 menu_redraw_handler(struct widget *widget, void *data)
4515 {
4516         cairo_t *cr;
4517         struct menu *menu = data;
4518         int32_t x, y, width, height, i;
4519
4520         cr = widget_cairo_create(widget);
4521
4522         frame_repaint(menu->frame, cr);
4523         frame_interior(menu->frame, &x, &y, &width, &height);
4524
4525         theme_set_background_source(menu->window->display->theme,
4526                                     cr, THEME_FRAME_ACTIVE);
4527         cairo_rectangle(cr, x, y, width, height);
4528         cairo_fill(cr);
4529
4530         cairo_select_font_face(cr, "sans",
4531                                CAIRO_FONT_SLANT_NORMAL,
4532                                CAIRO_FONT_WEIGHT_NORMAL);
4533         cairo_set_font_size(cr, 12);
4534
4535         for (i = 0; i < menu->count; i++) {
4536                 if (i == menu->current) {
4537                         cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
4538                         cairo_rectangle(cr, x, y + i * 20, width, 20);
4539                         cairo_fill(cr);
4540                         cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
4541                         cairo_move_to(cr, x + 10, y + i * 20 + 16);
4542                         cairo_show_text(cr, menu->entries[i]);
4543                 } else {
4544                         cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
4545                         cairo_move_to(cr, x + 10, y + i * 20 + 16);
4546                         cairo_show_text(cr, menu->entries[i]);
4547                 }
4548         }
4549
4550         cairo_destroy(cr);
4551 }
4552
4553 static void
4554 handle_popup_popup_done(void *data, struct xdg_popup *xdg_popup, uint32_t serial)
4555 {
4556         struct window *window = data;
4557         struct menu *menu = window->main_surface->widget->user_data;
4558
4559         input_ungrab(menu->input);
4560         menu_destroy(menu);
4561 }
4562
4563 static const struct xdg_popup_listener xdg_popup_listener = {
4564         handle_popup_popup_done,
4565 };
4566
4567 void
4568 window_show_menu(struct display *display,
4569                  struct input *input, uint32_t time, struct window *parent,
4570                  int32_t x, int32_t y,
4571                  menu_func_t func, const char **entries, int count)
4572 {
4573         struct window *window;
4574         struct menu *menu;
4575         int32_t ix, iy;
4576
4577         menu = malloc(sizeof *menu);
4578         if (!menu)
4579                 return;
4580
4581         window = window_create_internal(parent->display, 0);
4582         if (!window) {
4583                 free(menu);
4584                 return;
4585         }
4586
4587         menu->window = window;
4588         menu->parent = parent;
4589         menu->widget = window_add_widget(menu->window, menu);
4590         window_set_buffer_scale (menu->window, window_get_buffer_scale (parent));
4591         window_set_buffer_transform (menu->window, window_get_buffer_transform (parent));
4592         menu->frame = frame_create(window->display->theme, 0, 0,
4593                                    FRAME_BUTTON_NONE, NULL);
4594         fail_on_null(menu->frame);
4595         menu->entries = entries;
4596         menu->count = count;
4597         menu->release_count = 0;
4598         menu->current = -1;
4599         menu->time = time;
4600         menu->func = func;
4601         menu->input = input;
4602         window->x = x;
4603         window->y = y;
4604
4605         input_ungrab(input);
4606
4607         widget_set_redraw_handler(menu->widget, menu_redraw_handler);
4608         widget_set_enter_handler(menu->widget, menu_enter_handler);
4609         widget_set_leave_handler(menu->widget, menu_leave_handler);
4610         widget_set_motion_handler(menu->widget, menu_motion_handler);
4611         widget_set_button_handler(menu->widget, menu_button_handler);
4612         widget_set_touch_up_handler(menu->widget, menu_touch_up_handler);
4613
4614         input_grab(input, menu->widget, 0);
4615         frame_resize_inside(menu->frame, 200, count * 20);
4616         frame_set_flag(menu->frame, FRAME_FLAG_ACTIVE);
4617         window_schedule_resize(window, frame_width(menu->frame),
4618                                frame_height(menu->frame));
4619
4620         frame_interior(menu->frame, &ix, &iy, NULL, NULL);
4621
4622         window->xdg_popup = xdg_shell_get_xdg_popup(display->xdg_shell,
4623                                                     window->main_surface->surface,
4624                                                     parent->main_surface->surface,
4625                                                     input->seat,
4626                                                     display_get_serial(window->display),
4627                                                     window->x - ix,
4628                                                     window->y - iy,
4629                                                     0);
4630         fail_on_null(window->xdg_popup);
4631
4632         xdg_popup_set_user_data(window->xdg_popup, window);
4633         xdg_popup_add_listener(window->xdg_popup,
4634                                &xdg_popup_listener, window);
4635 }
4636
4637 void
4638 window_set_buffer_type(struct window *window, enum window_buffer_type type)
4639 {
4640         window->main_surface->buffer_type = type;
4641 }
4642
4643 enum window_buffer_type
4644 window_get_buffer_type(struct window *window)
4645 {
4646         return window->main_surface->buffer_type;
4647 }
4648
4649 void
4650 window_set_preferred_format(struct window *window,
4651                             enum preferred_format format)
4652 {
4653         window->preferred_format = format;
4654 }
4655
4656 struct widget *
4657 window_add_subsurface(struct window *window, void *data,
4658                       enum subsurface_mode default_mode)
4659 {
4660         struct widget *widget;
4661         struct surface *surface;
4662         struct wl_surface *parent;
4663         struct wl_subcompositor *subcompo = window->display->subcompositor;
4664
4665         surface = surface_create(window);
4666         surface->buffer_type = window_get_buffer_type(window);
4667         widget = widget_create(window, surface, data);
4668         wl_list_init(&widget->link);
4669         surface->widget = widget;
4670
4671         parent = window->main_surface->surface;
4672         surface->subsurface = wl_subcompositor_get_subsurface(subcompo,
4673                                                               surface->surface,
4674                                                               parent);
4675         surface->synchronized = 1;
4676
4677         switch (default_mode) {
4678         case SUBSURFACE_SYNCHRONIZED:
4679                 surface->synchronized_default = 1;
4680                 break;
4681         case SUBSURFACE_DESYNCHRONIZED:
4682                 surface->synchronized_default = 0;
4683                 break;
4684         default:
4685                 assert(!"bad enum subsurface_mode");
4686         }
4687
4688         window->resize_needed = 1;
4689         window_schedule_redraw(window);
4690
4691         return widget;
4692 }
4693
4694 static void
4695 display_handle_geometry(void *data,
4696                         struct wl_output *wl_output,
4697                         int x, int y,
4698                         int physical_width,
4699                         int physical_height,
4700                         int subpixel,
4701                         const char *make,
4702                         const char *model,
4703                         int transform)
4704 {
4705         struct output *output = data;
4706
4707         output->allocation.x = x;
4708         output->allocation.y = y;
4709         output->transform = transform;
4710
4711         if (output->make)
4712                 free(output->make);
4713         output->make = strdup(make);
4714
4715         if (output->model)
4716                 free(output->model);
4717         output->model = strdup(model);
4718 }
4719
4720 static void
4721 display_handle_done(void *data,
4722                      struct wl_output *wl_output)
4723 {
4724 }
4725
4726 static void
4727 display_handle_scale(void *data,
4728                      struct wl_output *wl_output,
4729                      int32_t scale)
4730 {
4731         struct output *output = data;
4732
4733         output->scale = scale;
4734 }
4735
4736 static void
4737 display_handle_mode(void *data,
4738                     struct wl_output *wl_output,
4739                     uint32_t flags,
4740                     int width,
4741                     int height,
4742                     int refresh)
4743 {
4744         struct output *output = data;
4745         struct display *display = output->display;
4746
4747         if (flags & WL_OUTPUT_MODE_CURRENT) {
4748                 output->allocation.width = width;
4749                 output->allocation.height = height;
4750                 if (display->output_configure_handler)
4751                         (*display->output_configure_handler)(
4752                                                 output, display->user_data);
4753         }
4754 }
4755
4756 static const struct wl_output_listener output_listener = {
4757         display_handle_geometry,
4758         display_handle_mode,
4759         display_handle_done,
4760         display_handle_scale
4761 };
4762
4763 static void
4764 display_add_output(struct display *d, uint32_t id)
4765 {
4766         struct output *output;
4767
4768         output = xzalloc(sizeof *output);
4769         output->display = d;
4770         output->scale = 1;
4771         output->output =
4772                 wl_registry_bind(d->registry, id, &wl_output_interface, 2);
4773         output->server_output_id = id;
4774         wl_list_insert(d->output_list.prev, &output->link);
4775
4776         wl_output_add_listener(output->output, &output_listener, output);
4777 }
4778
4779 static void
4780 output_destroy(struct output *output)
4781 {
4782         if (output->destroy_handler)
4783                 (*output->destroy_handler)(output, output->user_data);
4784
4785         wl_output_destroy(output->output);
4786         wl_list_remove(&output->link);
4787         free(output);
4788 }
4789
4790 static void
4791 display_destroy_output(struct display *d, uint32_t id)
4792 {
4793         struct output *output;
4794
4795         wl_list_for_each(output, &d->output_list, link) {
4796                 if (output->server_output_id == id) {
4797                         output_destroy(output);
4798                         break;
4799                 }
4800         }
4801 }
4802
4803 void
4804 display_set_global_handler(struct display *display,
4805                            display_global_handler_t handler)
4806 {
4807         struct global *global;
4808
4809         display->global_handler = handler;
4810         if (!handler)
4811                 return;
4812
4813         wl_list_for_each(global, &display->global_list, link)
4814                 display->global_handler(display,
4815                                         global->name, global->interface,
4816                                         global->version, display->user_data);
4817 }
4818
4819 void
4820 display_set_global_handler_remove(struct display *display,
4821                            display_global_handler_t remove_handler)
4822 {
4823         display->global_handler_remove = remove_handler;
4824         if (!remove_handler)
4825                 return;
4826 }
4827
4828 void
4829 display_set_output_configure_handler(struct display *display,
4830                                      display_output_handler_t handler)
4831 {
4832         struct output *output;
4833
4834         display->output_configure_handler = handler;
4835         if (!handler)
4836                 return;
4837
4838         wl_list_for_each(output, &display->output_list, link) {
4839                 if (output->allocation.width == 0 &&
4840                     output->allocation.height == 0)
4841                         continue;
4842
4843                 (*display->output_configure_handler)(output,
4844                                                      display->user_data);
4845         }
4846 }
4847
4848 void
4849 output_set_user_data(struct output *output, void *data)
4850 {
4851         output->user_data = data;
4852 }
4853
4854 void *
4855 output_get_user_data(struct output *output)
4856 {
4857         return output->user_data;
4858 }
4859
4860 void
4861 output_set_destroy_handler(struct output *output,
4862                            display_output_handler_t handler)
4863 {
4864         output->destroy_handler = handler;
4865         /* FIXME: implement this, once we have way to remove outputs */
4866 }
4867
4868 void
4869 output_get_allocation(struct output *output, struct rectangle *base)
4870 {
4871         struct rectangle allocation = output->allocation;
4872
4873         switch (output->transform) {
4874         case WL_OUTPUT_TRANSFORM_90:
4875         case WL_OUTPUT_TRANSFORM_270:
4876         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
4877         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
4878                 /* Swap width and height */
4879                 allocation.width = output->allocation.height;
4880                 allocation.height = output->allocation.width;
4881                 break;
4882         }
4883
4884         *base = allocation;
4885 }
4886
4887 struct wl_output *
4888 output_get_wl_output(struct output *output)
4889 {
4890         return output->output;
4891 }
4892
4893 enum wl_output_transform
4894 output_get_transform(struct output *output)
4895 {
4896         return output->transform;
4897 }
4898
4899 uint32_t
4900 output_get_scale(struct output *output)
4901 {
4902         return output->scale;
4903 }
4904
4905 const char *
4906 output_get_make(struct output *output)
4907 {
4908         return output->make;
4909 }
4910
4911 const char *
4912 output_get_model(struct output *output)
4913 {
4914         return output->model;
4915 }
4916
4917 static void
4918 fini_xkb(struct input *input)
4919 {
4920         xkb_state_unref(input->xkb.state);
4921         xkb_map_unref(input->xkb.keymap);
4922 }
4923
4924 #define MIN(a,b) ((a) < (b) ? a : b)
4925
4926 static void
4927 display_add_input(struct display *d, uint32_t id)
4928 {
4929         struct input *input;
4930
4931         input = xzalloc(sizeof *input);
4932         input->display = d;
4933         input->seat = wl_registry_bind(d->registry, id, &wl_seat_interface,
4934                                        MIN(d->seat_version, 3));
4935         input->touch_focus = NULL;
4936         input->pointer_focus = NULL;
4937         input->keyboard_focus = NULL;
4938         wl_list_init(&input->touch_point_list);
4939         wl_list_insert(d->input_list.prev, &input->link);
4940
4941         wl_seat_add_listener(input->seat, &seat_listener, input);
4942         wl_seat_set_user_data(input->seat, input);
4943
4944         if (d->data_device_manager) {
4945                 input->data_device =
4946                         wl_data_device_manager_get_data_device(d->data_device_manager,
4947                                                                input->seat);
4948                 wl_data_device_add_listener(input->data_device,
4949                                             &data_device_listener,
4950                                             input);
4951         }
4952
4953         input->pointer_surface = wl_compositor_create_surface(d->compositor);
4954
4955         input->repeat_timer_fd = timerfd_create(CLOCK_MONOTONIC,
4956                                                 TFD_CLOEXEC | TFD_NONBLOCK);
4957         input->repeat_task.run = keyboard_repeat_func;
4958         display_watch_fd(d, input->repeat_timer_fd,
4959                          EPOLLIN, &input->repeat_task);
4960 }
4961
4962 static void
4963 input_destroy(struct input *input)
4964 {
4965         input_remove_keyboard_focus(input);
4966         input_remove_pointer_focus(input);
4967
4968         if (input->drag_offer)
4969                 data_offer_destroy(input->drag_offer);
4970
4971         if (input->selection_offer)
4972                 data_offer_destroy(input->selection_offer);
4973
4974         if (input->data_device)
4975                 wl_data_device_destroy(input->data_device);
4976
4977         if (input->display->seat_version >= 3) {
4978                 if (input->pointer)
4979                         wl_pointer_release(input->pointer);
4980                 if (input->keyboard)
4981                         wl_keyboard_release(input->keyboard);
4982         }
4983
4984         fini_xkb(input);
4985
4986         wl_surface_destroy(input->pointer_surface);
4987
4988         wl_list_remove(&input->link);
4989         wl_seat_destroy(input->seat);
4990         close(input->repeat_timer_fd);
4991         free(input);
4992 }
4993
4994 static void
4995 init_workspace_manager(struct display *d, uint32_t id)
4996 {
4997         d->workspace_manager =
4998                 wl_registry_bind(d->registry, id,
4999                                  &workspace_manager_interface, 1);
5000         if (d->workspace_manager != NULL)
5001                 workspace_manager_add_listener(d->workspace_manager,
5002                                                &workspace_manager_listener,
5003                                                d);
5004 }
5005
5006 static void
5007 shm_format(void *data, struct wl_shm *wl_shm, uint32_t format)
5008 {
5009         struct display *d = data;
5010
5011         if (format == WL_SHM_FORMAT_RGB565)
5012                 d->has_rgb565 = 1;
5013 }
5014
5015 struct wl_shm_listener shm_listener = {
5016         shm_format
5017 };
5018
5019 static void
5020 xdg_shell_ping(void *data, struct xdg_shell *shell, uint32_t serial)
5021 {
5022         xdg_shell_pong(shell, serial);
5023 }
5024
5025 static const struct xdg_shell_listener xdg_shell_listener = {
5026         xdg_shell_ping,
5027 };
5028
5029 #define XDG_VERSION 3 /* The version of xdg-shell that we implement */
5030 #ifdef static_assert
5031 static_assert(XDG_VERSION == XDG_SHELL_VERSION_CURRENT,
5032               "Interface version doesn't match implementation version");
5033 #endif
5034
5035 static void
5036 registry_handle_global(void *data, struct wl_registry *registry, uint32_t id,
5037                        const char *interface, uint32_t version)
5038 {
5039         struct display *d = data;
5040         struct global *global;
5041
5042         global = xmalloc(sizeof *global);
5043         global->name = id;
5044         global->interface = strdup(interface);
5045         global->version = version;
5046         wl_list_insert(d->global_list.prev, &global->link);
5047
5048         if (strcmp(interface, "wl_compositor") == 0) {
5049                 d->compositor = wl_registry_bind(registry, id,
5050                                                  &wl_compositor_interface, 3);
5051         } else if (strcmp(interface, "wl_output") == 0) {
5052                 display_add_output(d, id);
5053         } else if (strcmp(interface, "wl_seat") == 0) {
5054                 d->seat_version = version;
5055                 display_add_input(d, id);
5056         } else if (strcmp(interface, "wl_shm") == 0) {
5057                 d->shm = wl_registry_bind(registry, id, &wl_shm_interface, 1);
5058                 wl_shm_add_listener(d->shm, &shm_listener, d);
5059         } else if (strcmp(interface, "wl_data_device_manager") == 0) {
5060                 d->data_device_manager =
5061                         wl_registry_bind(registry, id,
5062                                          &wl_data_device_manager_interface, 1);
5063         } else if (strcmp(interface, "xdg_shell") == 0) {
5064                 d->xdg_shell = wl_registry_bind(registry, id,
5065                                                 &xdg_shell_interface, 1);
5066                 xdg_shell_use_unstable_version(d->xdg_shell, XDG_VERSION);
5067                 xdg_shell_add_listener(d->xdg_shell, &xdg_shell_listener, d);
5068         } else if (strcmp(interface, "text_cursor_position") == 0) {
5069                 d->text_cursor_position =
5070                         wl_registry_bind(registry, id,
5071                                          &text_cursor_position_interface, 1);
5072         } else if (strcmp(interface, "workspace_manager") == 0) {
5073                 init_workspace_manager(d, id);
5074         } else if (strcmp(interface, "wl_subcompositor") == 0) {
5075                 d->subcompositor =
5076                         wl_registry_bind(registry, id,
5077                                          &wl_subcompositor_interface, 1);
5078         }
5079
5080         if (d->global_handler)
5081                 d->global_handler(d, id, interface, version, d->user_data);
5082 }
5083
5084 static void
5085 registry_handle_global_remove(void *data, struct wl_registry *registry,
5086                               uint32_t name)
5087 {
5088         struct display *d = data;
5089         struct global *global;
5090         struct global *tmp;
5091
5092         wl_list_for_each_safe(global, tmp, &d->global_list, link) {
5093                 if (global->name != name)
5094                         continue;
5095
5096                 if (strcmp(global->interface, "wl_output") == 0)
5097                         display_destroy_output(d, name);
5098
5099                 /* XXX: Should destroy remaining bound globals */
5100
5101                 if (d->global_handler_remove)
5102                         d->global_handler_remove(d, name, global->interface,
5103                                         global->version, d->user_data);
5104
5105                 wl_list_remove(&global->link);
5106                 free(global->interface);
5107                 free(global);
5108         }
5109 }
5110
5111 void *
5112 display_bind(struct display *display, uint32_t name,
5113              const struct wl_interface *interface, uint32_t version)
5114 {
5115         return wl_registry_bind(display->registry, name, interface, version);
5116 }
5117
5118 static const struct wl_registry_listener registry_listener = {
5119         registry_handle_global,
5120         registry_handle_global_remove
5121 };
5122
5123 #ifdef HAVE_CAIRO_EGL
5124 static int
5125 init_egl(struct display *d)
5126 {
5127         EGLint major, minor;
5128         EGLint n;
5129
5130 #ifdef USE_CAIRO_GLESV2
5131 #  define GL_BIT EGL_OPENGL_ES2_BIT
5132 #else
5133 #  define GL_BIT EGL_OPENGL_BIT
5134 #endif
5135
5136         static const EGLint argb_cfg_attribs[] = {
5137                 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
5138                 EGL_RED_SIZE, 1,
5139                 EGL_GREEN_SIZE, 1,
5140                 EGL_BLUE_SIZE, 1,
5141                 EGL_ALPHA_SIZE, 1,
5142                 EGL_DEPTH_SIZE, 1,
5143                 EGL_RENDERABLE_TYPE, GL_BIT,
5144                 EGL_NONE
5145         };
5146
5147 #ifdef USE_CAIRO_GLESV2
5148         static const EGLint context_attribs[] = {
5149                 EGL_CONTEXT_CLIENT_VERSION, 2,
5150                 EGL_NONE
5151         };
5152         EGLint api = EGL_OPENGL_ES_API;
5153 #else
5154         EGLint *context_attribs = NULL;
5155         EGLint api = EGL_OPENGL_API;
5156 #endif
5157
5158         d->dpy = eglGetDisplay(d->display);
5159         if (!eglInitialize(d->dpy, &major, &minor)) {
5160                 fprintf(stderr, "failed to initialize EGL\n");
5161                 return -1;
5162         }
5163
5164         if (!eglBindAPI(api)) {
5165                 fprintf(stderr, "failed to bind EGL client API\n");
5166                 return -1;
5167         }
5168
5169         if (!eglChooseConfig(d->dpy, argb_cfg_attribs,
5170                              &d->argb_config, 1, &n) || n != 1) {
5171                 fprintf(stderr, "failed to choose argb EGL config\n");
5172                 return -1;
5173         }
5174
5175         d->argb_ctx = eglCreateContext(d->dpy, d->argb_config,
5176                                        EGL_NO_CONTEXT, context_attribs);
5177         if (d->argb_ctx == NULL) {
5178                 fprintf(stderr, "failed to create EGL context\n");
5179                 return -1;
5180         }
5181
5182         d->argb_device = cairo_egl_device_create(d->dpy, d->argb_ctx);
5183         if (cairo_device_status(d->argb_device) != CAIRO_STATUS_SUCCESS) {
5184                 fprintf(stderr, "failed to get cairo EGL argb device\n");
5185                 return -1;
5186         }
5187
5188         return 0;
5189 }
5190
5191 static void
5192 fini_egl(struct display *display)
5193 {
5194         cairo_device_destroy(display->argb_device);
5195
5196         eglMakeCurrent(display->dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
5197                        EGL_NO_CONTEXT);
5198
5199         eglTerminate(display->dpy);
5200         eglReleaseThread();
5201 }
5202 #endif
5203
5204 static void
5205 init_dummy_surface(struct display *display)
5206 {
5207         int len;
5208         void *data;
5209
5210         len = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, 1);
5211         data = malloc(len);
5212         display->dummy_surface =
5213                 cairo_image_surface_create_for_data(data, CAIRO_FORMAT_ARGB32,
5214                                                     1, 1, len);
5215         display->dummy_surface_data = data;
5216 }
5217
5218 static void
5219 handle_display_data(struct task *task, uint32_t events)
5220 {
5221         struct display *display =
5222                 container_of(task, struct display, display_task);
5223         struct epoll_event ep;
5224         int ret;
5225
5226         display->display_fd_events = events;
5227
5228         if (events & EPOLLERR || events & EPOLLHUP) {
5229                 display_exit(display);
5230                 return;
5231         }
5232
5233         if (events & EPOLLIN) {
5234                 ret = wl_display_dispatch(display->display);
5235                 if (ret == -1) {
5236                         display_exit(display);
5237                         return;
5238                 }
5239         }
5240
5241         if (events & EPOLLOUT) {
5242                 ret = wl_display_flush(display->display);
5243                 if (ret == 0) {
5244                         ep.events = EPOLLIN | EPOLLERR | EPOLLHUP;
5245                         ep.data.ptr = &display->display_task;
5246                         epoll_ctl(display->epoll_fd, EPOLL_CTL_MOD,
5247                                   display->display_fd, &ep);
5248                 } else if (ret == -1 && errno != EAGAIN) {
5249                         display_exit(display);
5250                         return;
5251                 }
5252         }
5253 }
5254
5255 static void
5256 log_handler(const char *format, va_list args)
5257 {
5258         vfprintf(stderr, format, args);
5259 }
5260
5261 struct display *
5262 display_create(int *argc, char *argv[])
5263 {
5264         struct display *d;
5265
5266         wl_log_set_handler_client(log_handler);
5267
5268         d = zalloc(sizeof *d);
5269         if (d == NULL)
5270                 return NULL;
5271
5272         d->display = wl_display_connect(NULL);
5273         if (d->display == NULL) {
5274                 fprintf(stderr, "failed to connect to Wayland display: %m\n");
5275                 free(d);
5276                 return NULL;
5277         }
5278
5279         d->xkb_context = xkb_context_new(0);
5280         if (d->xkb_context == NULL) {
5281                 fprintf(stderr, "Failed to create XKB context\n");
5282                 free(d);
5283                 return NULL;
5284         }
5285
5286         d->epoll_fd = os_epoll_create_cloexec();
5287         d->display_fd = wl_display_get_fd(d->display);
5288         d->display_task.run = handle_display_data;
5289         display_watch_fd(d, d->display_fd, EPOLLIN | EPOLLERR | EPOLLHUP,
5290                          &d->display_task);
5291
5292         wl_list_init(&d->deferred_list);
5293         wl_list_init(&d->input_list);
5294         wl_list_init(&d->output_list);
5295         wl_list_init(&d->global_list);
5296
5297         d->workspace = 0;
5298         d->workspace_count = 1;
5299
5300         d->registry = wl_display_get_registry(d->display);
5301         wl_registry_add_listener(d->registry, &registry_listener, d);
5302
5303         if (wl_display_dispatch(d->display) < 0) {
5304                 fprintf(stderr, "Failed to process Wayland connection: %m\n");
5305                 return NULL;
5306         }
5307
5308 #ifdef HAVE_CAIRO_EGL
5309         if (init_egl(d) < 0)
5310                 fprintf(stderr, "EGL does not seem to work, "
5311                         "falling back to software rendering and wl_shm.\n");
5312 #endif
5313
5314         create_cursors(d);
5315
5316         d->theme = theme_create();
5317
5318         wl_list_init(&d->window_list);
5319
5320         init_dummy_surface(d);
5321
5322         return d;
5323 }
5324
5325 static void
5326 display_destroy_outputs(struct display *display)
5327 {
5328         struct output *tmp;
5329         struct output *output;
5330
5331         wl_list_for_each_safe(output, tmp, &display->output_list, link)
5332                 output_destroy(output);
5333 }
5334
5335 static void
5336 display_destroy_inputs(struct display *display)
5337 {
5338         struct input *tmp;
5339         struct input *input;
5340
5341         wl_list_for_each_safe(input, tmp, &display->input_list, link)
5342                 input_destroy(input);
5343 }
5344
5345 void
5346 display_destroy(struct display *display)
5347 {
5348         if (!wl_list_empty(&display->window_list))
5349                 fprintf(stderr, "toytoolkit warning: %d windows exist.\n",
5350                         wl_list_length(&display->window_list));
5351
5352         if (!wl_list_empty(&display->deferred_list))
5353                 fprintf(stderr, "toytoolkit warning: deferred tasks exist.\n");
5354
5355         cairo_surface_destroy(display->dummy_surface);
5356         free(display->dummy_surface_data);
5357
5358         display_destroy_outputs(display);
5359         display_destroy_inputs(display);
5360
5361         xkb_context_unref(display->xkb_context);
5362
5363         theme_destroy(display->theme);
5364         destroy_cursors(display);
5365
5366 #ifdef HAVE_CAIRO_EGL
5367         if (display->argb_device)
5368                 fini_egl(display);
5369 #endif
5370
5371         if (display->subcompositor)
5372                 wl_subcompositor_destroy(display->subcompositor);
5373
5374         if (display->xdg_shell)
5375                 xdg_shell_destroy(display->xdg_shell);
5376
5377         if (display->shm)
5378                 wl_shm_destroy(display->shm);
5379
5380         if (display->data_device_manager)
5381                 wl_data_device_manager_destroy(display->data_device_manager);
5382
5383         wl_compositor_destroy(display->compositor);
5384         wl_registry_destroy(display->registry);
5385
5386         close(display->epoll_fd);
5387
5388         if (!(display->display_fd_events & EPOLLERR) &&
5389             !(display->display_fd_events & EPOLLHUP))
5390                 wl_display_flush(display->display);
5391
5392         wl_display_disconnect(display->display);
5393         free(display);
5394 }
5395
5396 void
5397 display_set_user_data(struct display *display, void *data)
5398 {
5399         display->user_data = data;
5400 }
5401
5402 void *
5403 display_get_user_data(struct display *display)
5404 {
5405         return display->user_data;
5406 }
5407
5408 struct wl_display *
5409 display_get_display(struct display *display)
5410 {
5411         return display->display;
5412 }
5413
5414 int
5415 display_has_subcompositor(struct display *display)
5416 {
5417         if (display->subcompositor)
5418                 return 1;
5419
5420         wl_display_roundtrip(display->display);
5421
5422         return display->subcompositor != NULL;
5423 }
5424
5425 cairo_device_t *
5426 display_get_cairo_device(struct display *display)
5427 {
5428         return display->argb_device;
5429 }
5430
5431 struct output *
5432 display_get_output(struct display *display)
5433 {
5434         return container_of(display->output_list.next, struct output, link);
5435 }
5436
5437 struct wl_compositor *
5438 display_get_compositor(struct display *display)
5439 {
5440         return display->compositor;
5441 }
5442
5443 uint32_t
5444 display_get_serial(struct display *display)
5445 {
5446         return display->serial;
5447 }
5448
5449 EGLDisplay
5450 display_get_egl_display(struct display *d)
5451 {
5452         return d->dpy;
5453 }
5454
5455 struct wl_data_source *
5456 display_create_data_source(struct display *display)
5457 {
5458         if (display->data_device_manager)
5459                 return wl_data_device_manager_create_data_source(display->data_device_manager);
5460         else
5461                 return NULL;
5462 }
5463
5464 EGLConfig
5465 display_get_argb_egl_config(struct display *d)
5466 {
5467         return d->argb_config;
5468 }
5469
5470 int
5471 display_acquire_window_surface(struct display *display,
5472                                struct window *window,
5473                                EGLContext ctx)
5474 {
5475         struct surface *surface = window->main_surface;
5476
5477         if (surface->buffer_type != WINDOW_BUFFER_TYPE_EGL_WINDOW)
5478                 return -1;
5479
5480         widget_get_cairo_surface(window->main_surface->widget);
5481         return surface->toysurface->acquire(surface->toysurface, ctx);
5482 }
5483
5484 void
5485 display_release_window_surface(struct display *display,
5486                                struct window *window)
5487 {
5488         struct surface *surface = window->main_surface;
5489
5490         if (surface->buffer_type != WINDOW_BUFFER_TYPE_EGL_WINDOW)
5491                 return;
5492
5493         surface->toysurface->release(surface->toysurface);
5494 }
5495
5496 void
5497 display_defer(struct display *display, struct task *task)
5498 {
5499         wl_list_insert(&display->deferred_list, &task->link);
5500 }
5501
5502 void
5503 display_watch_fd(struct display *display,
5504                  int fd, uint32_t events, struct task *task)
5505 {
5506         struct epoll_event ep;
5507
5508         ep.events = events;
5509         ep.data.ptr = task;
5510         epoll_ctl(display->epoll_fd, EPOLL_CTL_ADD, fd, &ep);
5511 }
5512
5513 void
5514 display_unwatch_fd(struct display *display, int fd)
5515 {
5516         epoll_ctl(display->epoll_fd, EPOLL_CTL_DEL, fd, NULL);
5517 }
5518
5519 void
5520 display_run(struct display *display)
5521 {
5522         struct task *task;
5523         struct epoll_event ep[16];
5524         int i, count, ret;
5525
5526         display->running = 1;
5527         while (1) {
5528                 while (!wl_list_empty(&display->deferred_list)) {
5529                         task = container_of(display->deferred_list.prev,
5530                                             struct task, link);
5531                         wl_list_remove(&task->link);
5532                         task->run(task, 0);
5533                 }
5534
5535                 wl_display_dispatch_pending(display->display);
5536
5537                 if (!display->running)
5538                         break;
5539
5540                 ret = wl_display_flush(display->display);
5541                 if (ret < 0 && errno == EAGAIN) {
5542                         ep[0].events =
5543                                 EPOLLIN | EPOLLOUT | EPOLLERR | EPOLLHUP;
5544                         ep[0].data.ptr = &display->display_task;
5545
5546                         epoll_ctl(display->epoll_fd, EPOLL_CTL_MOD,
5547                                   display->display_fd, &ep[0]);
5548                 } else if (ret < 0) {
5549                         break;
5550                 }
5551
5552                 count = epoll_wait(display->epoll_fd,
5553                                    ep, ARRAY_LENGTH(ep), -1);
5554                 for (i = 0; i < count; i++) {
5555                         task = ep[i].data.ptr;
5556                         task->run(task, ep[i].events);
5557                 }
5558         }
5559 }
5560
5561 void
5562 display_exit(struct display *display)
5563 {
5564         display->running = 0;
5565 }
5566
5567 void
5568 keysym_modifiers_add(struct wl_array *modifiers_map,
5569                      const char *name)
5570 {
5571         size_t len = strlen(name) + 1;
5572         char *p;
5573
5574         p = wl_array_add(modifiers_map, len);
5575
5576         if (p == NULL)
5577                 return;
5578
5579         strncpy(p, name, len);
5580 }
5581
5582 static xkb_mod_index_t
5583 keysym_modifiers_get_index(struct wl_array *modifiers_map,
5584                            const char *name)
5585 {
5586         xkb_mod_index_t index = 0;
5587         char *p = modifiers_map->data;
5588
5589         while ((const char *)p < (const char *)(modifiers_map->data + modifiers_map->size)) {
5590                 if (strcmp(p, name) == 0)
5591                         return index;
5592
5593                 index++;
5594                 p += strlen(p) + 1;
5595         }
5596
5597         return XKB_MOD_INVALID;
5598 }
5599
5600 xkb_mod_mask_t
5601 keysym_modifiers_get_mask(struct wl_array *modifiers_map,
5602                           const char *name)
5603 {
5604         xkb_mod_index_t index = keysym_modifiers_get_index(modifiers_map, name);
5605
5606         if (index == XKB_MOD_INVALID)
5607                 return XKB_MOD_INVALID;
5608
5609         return 1 << index;
5610 }
5611
5612 void *
5613 fail_on_null(void *p)
5614 {
5615         if (p == NULL) {
5616                 fprintf(stderr, "%s: out of memory\n", program_invocation_short_name);
5617                 exit(EXIT_FAILURE);
5618         }
5619
5620         return p;
5621 }
5622
5623 void *
5624 xmalloc(size_t s)
5625 {
5626         return fail_on_null(malloc(s));
5627 }
5628
5629 void *
5630 xzalloc(size_t s)
5631 {
5632         return fail_on_null(zalloc(s));
5633 }
5634
5635 char *
5636 xstrdup(const char *s)
5637 {
5638         return fail_on_null(strdup(s));
5639 }
5640
5641 void *
5642 xrealloc(char *p, size_t s)
5643 {
5644         return fail_on_null(realloc(p, s));
5645 }