toytoolkit: Expose output make and model
[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
2563 void
2564 input_ungrab(struct input *input)
2565 {
2566         struct widget *widget;
2567
2568         input->grab = NULL;
2569         if (input->pointer_focus) {
2570                 widget = window_find_widget(input->pointer_focus,
2571                                             input->sx, input->sy);
2572                 input_set_focus_widget(input, widget, input->sx, input->sy);
2573         }
2574 }
2575
2576 static void
2577 input_remove_pointer_focus(struct input *input)
2578 {
2579         struct window *window = input->pointer_focus;
2580
2581         if (!window)
2582                 return;
2583
2584         input_set_focus_widget(input, NULL, 0, 0);
2585
2586         input->pointer_focus = NULL;
2587         input->current_cursor = CURSOR_UNSET;
2588 }
2589
2590 static void
2591 pointer_handle_enter(void *data, struct wl_pointer *pointer,
2592                      uint32_t serial, struct wl_surface *surface,
2593                      wl_fixed_t sx_w, wl_fixed_t sy_w)
2594 {
2595         struct input *input = data;
2596         struct window *window;
2597         struct widget *widget;
2598         float sx = wl_fixed_to_double(sx_w);
2599         float sy = wl_fixed_to_double(sy_w);
2600
2601         if (!surface) {
2602                 /* enter event for a window we've just destroyed */
2603                 return;
2604         }
2605
2606         input->display->serial = serial;
2607         input->pointer_enter_serial = serial;
2608         input->pointer_focus = wl_surface_get_user_data(surface);
2609         window = input->pointer_focus;
2610
2611         if (window->resizing) {
2612                 window->resizing = 0;
2613                 /* Schedule a redraw to free the pool */
2614                 window_schedule_redraw(window);
2615         }
2616
2617         input->sx = sx;
2618         input->sy = sy;
2619
2620         widget = window_find_widget(window, sx, sy);
2621         input_set_focus_widget(input, widget, sx, sy);
2622 }
2623
2624 static void
2625 pointer_handle_leave(void *data, struct wl_pointer *pointer,
2626                      uint32_t serial, struct wl_surface *surface)
2627 {
2628         struct input *input = data;
2629
2630         input->display->serial = serial;
2631         input_remove_pointer_focus(input);
2632 }
2633
2634 static void
2635 pointer_handle_motion(void *data, struct wl_pointer *pointer,
2636                       uint32_t time, wl_fixed_t sx_w, wl_fixed_t sy_w)
2637 {
2638         struct input *input = data;
2639         struct window *window = input->pointer_focus;
2640         struct widget *widget;
2641         int cursor;
2642         float sx = wl_fixed_to_double(sx_w);
2643         float sy = wl_fixed_to_double(sy_w);
2644
2645         input->sx = sx;
2646         input->sy = sy;
2647
2648         if (!window)
2649                 return;
2650
2651         /* when making the window smaller - e.g. after a unmaximise we might
2652          * still have a pending motion event that the compositor has picked
2653          * based on the old surface dimensions
2654          */
2655         if (sx > window->main_surface->allocation.width ||
2656             sy > window->main_surface->allocation.height)
2657                 return;
2658
2659         if (!(input->grab && input->grab_button)) {
2660                 widget = window_find_widget(window, sx, sy);
2661                 input_set_focus_widget(input, widget, sx, sy);
2662         }
2663
2664         if (input->grab)
2665                 widget = input->grab;
2666         else
2667                 widget = input->focus_widget;
2668         if (widget) {
2669                 if (widget->motion_handler)
2670                         cursor = widget->motion_handler(input->focus_widget,
2671                                                         input, time, sx, sy,
2672                                                         widget->user_data);
2673                 else
2674                         cursor = widget->default_cursor;
2675         } else
2676                 cursor = CURSOR_LEFT_PTR;
2677
2678         input_set_pointer_image(input, cursor);
2679 }
2680
2681 static void
2682 pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial,
2683                       uint32_t time, uint32_t button, uint32_t state_w)
2684 {
2685         struct input *input = data;
2686         struct widget *widget;
2687         enum wl_pointer_button_state state = state_w;
2688
2689         input->display->serial = serial;
2690         if (input->focus_widget && input->grab == NULL &&
2691             state == WL_POINTER_BUTTON_STATE_PRESSED)
2692                 input_grab(input, input->focus_widget, button);
2693
2694         widget = input->grab;
2695         if (widget && widget->button_handler)
2696                 (*widget->button_handler)(widget,
2697                                           input, time,
2698                                           button, state,
2699                                           input->grab->user_data);
2700
2701         if (input->grab && input->grab_button == button &&
2702             state == WL_POINTER_BUTTON_STATE_RELEASED)
2703                 input_ungrab(input);
2704 }
2705
2706 static void
2707 pointer_handle_axis(void *data, struct wl_pointer *pointer,
2708                     uint32_t time, uint32_t axis, wl_fixed_t value)
2709 {
2710         struct input *input = data;
2711         struct widget *widget;
2712
2713         widget = input->focus_widget;
2714         if (input->grab)
2715                 widget = input->grab;
2716         if (widget && widget->axis_handler)
2717                 (*widget->axis_handler)(widget,
2718                                         input, time,
2719                                         axis, value,
2720                                         widget->user_data);
2721 }
2722
2723 static const struct wl_pointer_listener pointer_listener = {
2724         pointer_handle_enter,
2725         pointer_handle_leave,
2726         pointer_handle_motion,
2727         pointer_handle_button,
2728         pointer_handle_axis,
2729 };
2730
2731 static void
2732 input_remove_keyboard_focus(struct input *input)
2733 {
2734         struct window *window = input->keyboard_focus;
2735         struct itimerspec its;
2736
2737         its.it_interval.tv_sec = 0;
2738         its.it_interval.tv_nsec = 0;
2739         its.it_value.tv_sec = 0;
2740         its.it_value.tv_nsec = 0;
2741         timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2742
2743         if (!window)
2744                 return;
2745
2746         if (window->keyboard_focus_handler)
2747                 (*window->keyboard_focus_handler)(window, NULL,
2748                                                   window->user_data);
2749
2750         input->keyboard_focus = NULL;
2751 }
2752
2753 static void
2754 keyboard_repeat_func(struct task *task, uint32_t events)
2755 {
2756         struct input *input =
2757                 container_of(task, struct input, repeat_task);
2758         struct window *window = input->keyboard_focus;
2759         uint64_t exp;
2760
2761         if (read(input->repeat_timer_fd, &exp, sizeof exp) != sizeof exp)
2762                 /* If we change the timer between the fd becoming
2763                  * readable and getting here, there'll be nothing to
2764                  * read and we get EAGAIN. */
2765                 return;
2766
2767         if (window && window->key_handler) {
2768                 (*window->key_handler)(window, input, input->repeat_time,
2769                                        input->repeat_key, input->repeat_sym,
2770                                        WL_KEYBOARD_KEY_STATE_PRESSED,
2771                                        window->user_data);
2772         }
2773 }
2774
2775 static void
2776 keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard,
2777                        uint32_t format, int fd, uint32_t size)
2778 {
2779         struct input *input = data;
2780         struct xkb_keymap *keymap;
2781         struct xkb_state *state;
2782         char *map_str;
2783
2784         if (!data) {
2785                 close(fd);
2786                 return;
2787         }
2788
2789         if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
2790                 close(fd);
2791                 return;
2792         }
2793
2794         map_str = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
2795         if (map_str == MAP_FAILED) {
2796                 close(fd);
2797                 return;
2798         }
2799
2800         keymap = xkb_map_new_from_string(input->display->xkb_context,
2801                                          map_str,
2802                                          XKB_KEYMAP_FORMAT_TEXT_V1,
2803                                          0);
2804         munmap(map_str, size);
2805         close(fd);
2806
2807         if (!keymap) {
2808                 fprintf(stderr, "failed to compile keymap\n");
2809                 return;
2810         }
2811
2812         state = xkb_state_new(keymap);
2813         if (!state) {
2814                 fprintf(stderr, "failed to create XKB state\n");
2815                 xkb_map_unref(keymap);
2816                 return;
2817         }
2818
2819         xkb_keymap_unref(input->xkb.keymap);
2820         xkb_state_unref(input->xkb.state);
2821         input->xkb.keymap = keymap;
2822         input->xkb.state = state;
2823
2824         input->xkb.control_mask =
2825                 1 << xkb_map_mod_get_index(input->xkb.keymap, "Control");
2826         input->xkb.alt_mask =
2827                 1 << xkb_map_mod_get_index(input->xkb.keymap, "Mod1");
2828         input->xkb.shift_mask =
2829                 1 << xkb_map_mod_get_index(input->xkb.keymap, "Shift");
2830 }
2831
2832 static void
2833 keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,
2834                       uint32_t serial, struct wl_surface *surface,
2835                       struct wl_array *keys)
2836 {
2837         struct input *input = data;
2838         struct window *window;
2839
2840         input->display->serial = serial;
2841         input->keyboard_focus = wl_surface_get_user_data(surface);
2842
2843         window = input->keyboard_focus;
2844         if (window->keyboard_focus_handler)
2845                 (*window->keyboard_focus_handler)(window,
2846                                                   input, window->user_data);
2847 }
2848
2849 static void
2850 keyboard_handle_leave(void *data, struct wl_keyboard *keyboard,
2851                       uint32_t serial, struct wl_surface *surface)
2852 {
2853         struct input *input = data;
2854
2855         input->display->serial = serial;
2856         input_remove_keyboard_focus(input);
2857 }
2858
2859 static void
2860 keyboard_handle_key(void *data, struct wl_keyboard *keyboard,
2861                     uint32_t serial, uint32_t time, uint32_t key,
2862                     uint32_t state_w)
2863 {
2864         struct input *input = data;
2865         struct window *window = input->keyboard_focus;
2866         uint32_t code, num_syms;
2867         enum wl_keyboard_key_state state = state_w;
2868         const xkb_keysym_t *syms;
2869         xkb_keysym_t sym;
2870         struct itimerspec its;
2871
2872         input->display->serial = serial;
2873         code = key + 8;
2874         if (!window || !input->xkb.state)
2875                 return;
2876
2877         num_syms = xkb_key_get_syms(input->xkb.state, code, &syms);
2878
2879         sym = XKB_KEY_NoSymbol;
2880         if (num_syms == 1)
2881                 sym = syms[0];
2882
2883
2884         if (sym == XKB_KEY_F5 && input->modifiers == MOD_ALT_MASK) {
2885                 if (state == WL_KEYBOARD_KEY_STATE_PRESSED)
2886                         window_set_maximized(window, !window->maximized);
2887         } else if (sym == XKB_KEY_F11 &&
2888                    window->fullscreen_handler &&
2889                    state == WL_KEYBOARD_KEY_STATE_PRESSED) {
2890                 window->fullscreen_handler(window, window->user_data);
2891         } else if (sym == XKB_KEY_F4 &&
2892                    input->modifiers == MOD_ALT_MASK &&
2893                    state == WL_KEYBOARD_KEY_STATE_PRESSED) {
2894                 window_close(window);
2895         } else if (window->key_handler) {
2896                 (*window->key_handler)(window, input, time, key,
2897                                        sym, state, window->user_data);
2898         }
2899
2900         if (state == WL_KEYBOARD_KEY_STATE_RELEASED &&
2901             key == input->repeat_key) {
2902                 its.it_interval.tv_sec = 0;
2903                 its.it_interval.tv_nsec = 0;
2904                 its.it_value.tv_sec = 0;
2905                 its.it_value.tv_nsec = 0;
2906                 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2907         } else if (state == WL_KEYBOARD_KEY_STATE_PRESSED &&
2908                    xkb_keymap_key_repeats(input->xkb.keymap, code)) {
2909                 input->repeat_sym = sym;
2910                 input->repeat_key = key;
2911                 input->repeat_time = time;
2912                 its.it_interval.tv_sec = 0;
2913                 its.it_interval.tv_nsec = 25 * 1000 * 1000;
2914                 its.it_value.tv_sec = 0;
2915                 its.it_value.tv_nsec = 400 * 1000 * 1000;
2916                 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2917         }
2918 }
2919
2920 static void
2921 keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard,
2922                           uint32_t serial, uint32_t mods_depressed,
2923                           uint32_t mods_latched, uint32_t mods_locked,
2924                           uint32_t group)
2925 {
2926         struct input *input = data;
2927         xkb_mod_mask_t mask;
2928
2929         /* If we're not using a keymap, then we don't handle PC-style modifiers */
2930         if (!input->xkb.keymap)
2931                 return;
2932
2933         xkb_state_update_mask(input->xkb.state, mods_depressed, mods_latched,
2934                               mods_locked, 0, 0, group);
2935         mask = xkb_state_serialize_mods(input->xkb.state,
2936                                         XKB_STATE_DEPRESSED |
2937                                         XKB_STATE_LATCHED);
2938         input->modifiers = 0;
2939         if (mask & input->xkb.control_mask)
2940                 input->modifiers |= MOD_CONTROL_MASK;
2941         if (mask & input->xkb.alt_mask)
2942                 input->modifiers |= MOD_ALT_MASK;
2943         if (mask & input->xkb.shift_mask)
2944                 input->modifiers |= MOD_SHIFT_MASK;
2945 }
2946
2947 static const struct wl_keyboard_listener keyboard_listener = {
2948         keyboard_handle_keymap,
2949         keyboard_handle_enter,
2950         keyboard_handle_leave,
2951         keyboard_handle_key,
2952         keyboard_handle_modifiers,
2953 };
2954
2955 static void
2956 touch_handle_down(void *data, struct wl_touch *wl_touch,
2957                   uint32_t serial, uint32_t time, struct wl_surface *surface,
2958                   int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
2959 {
2960         struct input *input = data;
2961         struct widget *widget;
2962         float sx = wl_fixed_to_double(x_w);
2963         float sy = wl_fixed_to_double(y_w);
2964
2965         input->display->serial = serial;
2966         input->touch_focus = wl_surface_get_user_data(surface);
2967         if (!input->touch_focus) {
2968                 DBG("Failed to find to touch focus for surface %p\n", surface);
2969                 return;
2970         }
2971
2972         widget = window_find_widget(input->touch_focus,
2973                                     wl_fixed_to_double(x_w),
2974                                     wl_fixed_to_double(y_w));
2975         if (widget) {
2976                 struct touch_point *tp = xmalloc(sizeof *tp);
2977                 if (tp) {
2978                         tp->id = id;
2979                         tp->widget = widget;
2980                         tp->x = sx;
2981                         tp->y = sy;
2982                         wl_list_insert(&input->touch_point_list, &tp->link);
2983
2984                         if (widget->touch_down_handler)
2985                                 (*widget->touch_down_handler)(widget, input, 
2986                                                               serial, time, id,
2987                                                               sx, sy,
2988                                                               widget->user_data);
2989                 }
2990         }
2991 }
2992
2993 static void
2994 touch_handle_up(void *data, struct wl_touch *wl_touch,
2995                 uint32_t serial, uint32_t time, int32_t id)
2996 {
2997         struct input *input = data;
2998         struct touch_point *tp, *tmp;
2999
3000         if (!input->touch_focus) {
3001                 DBG("No touch focus found for touch up event!\n");
3002                 return;
3003         }
3004
3005         wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3006                 if (tp->id != id)
3007                         continue;
3008
3009                 if (tp->widget->touch_up_handler)
3010                         (*tp->widget->touch_up_handler)(tp->widget, input, serial,
3011                                                         time, id,
3012                                                         tp->widget->user_data);
3013
3014                 wl_list_remove(&tp->link);
3015                 free(tp);
3016
3017                 return;
3018         }
3019 }
3020
3021 static void
3022 touch_handle_motion(void *data, struct wl_touch *wl_touch,
3023                     uint32_t time, int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
3024 {
3025         struct input *input = data;
3026         struct touch_point *tp;
3027         float sx = wl_fixed_to_double(x_w);
3028         float sy = wl_fixed_to_double(y_w);
3029
3030         DBG("touch_handle_motion: %i %i\n", id, wl_list_length(&input->touch_point_list));
3031
3032         if (!input->touch_focus) {
3033                 DBG("No touch focus found for touch motion event!\n");
3034                 return;
3035         }
3036
3037         wl_list_for_each(tp, &input->touch_point_list, link) {
3038                 if (tp->id != id)
3039                         continue;
3040
3041                 tp->x = sx;
3042                 tp->y = sy;
3043                 if (tp->widget->touch_motion_handler)
3044                         (*tp->widget->touch_motion_handler)(tp->widget, input, time,
3045                                                             id, sx, sy,
3046                                                             tp->widget->user_data);
3047                 return;
3048         }
3049 }
3050
3051 static void
3052 touch_handle_frame(void *data, struct wl_touch *wl_touch)
3053 {
3054         struct input *input = data;
3055         struct touch_point *tp, *tmp;
3056
3057         DBG("touch_handle_frame\n");
3058
3059         if (!input->touch_focus) {
3060                 DBG("No touch focus found for touch frame event!\n");
3061                 return;
3062         }
3063
3064         wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3065                 if (tp->widget->touch_frame_handler)
3066                         (*tp->widget->touch_frame_handler)(tp->widget, input, 
3067                                                            tp->widget->user_data);
3068
3069                 wl_list_remove(&tp->link);
3070                 free(tp);
3071         }
3072 }
3073
3074 static void
3075 touch_handle_cancel(void *data, struct wl_touch *wl_touch)
3076 {
3077         struct input *input = data;
3078         struct touch_point *tp, *tmp;
3079
3080         DBG("touch_handle_cancel\n");
3081
3082         if (!input->touch_focus) {
3083                 DBG("No touch focus found for touch cancel event!\n");
3084                 return;
3085         }
3086
3087         wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3088                 if (tp->widget->touch_cancel_handler)
3089                         (*tp->widget->touch_cancel_handler)(tp->widget, input,
3090                                                             tp->widget->user_data);
3091
3092                 wl_list_remove(&tp->link);
3093                 free(tp);
3094         }
3095 }
3096
3097 static const struct wl_touch_listener touch_listener = {
3098         touch_handle_down,
3099         touch_handle_up,
3100         touch_handle_motion,
3101         touch_handle_frame,
3102         touch_handle_cancel,
3103 };
3104
3105 static void
3106 seat_handle_capabilities(void *data, struct wl_seat *seat,
3107                          enum wl_seat_capability caps)
3108 {
3109         struct input *input = data;
3110
3111         if ((caps & WL_SEAT_CAPABILITY_POINTER) && !input->pointer) {
3112                 input->pointer = wl_seat_get_pointer(seat);
3113                 wl_pointer_set_user_data(input->pointer, input);
3114                 wl_pointer_add_listener(input->pointer, &pointer_listener,
3115                                         input);
3116         } else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && input->pointer) {
3117                 wl_pointer_destroy(input->pointer);
3118                 input->pointer = NULL;
3119         }
3120
3121         if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !input->keyboard) {
3122                 input->keyboard = wl_seat_get_keyboard(seat);
3123                 wl_keyboard_set_user_data(input->keyboard, input);
3124                 wl_keyboard_add_listener(input->keyboard, &keyboard_listener,
3125                                          input);
3126         } else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && input->keyboard) {
3127                 wl_keyboard_destroy(input->keyboard);
3128                 input->keyboard = NULL;
3129         }
3130
3131         if ((caps & WL_SEAT_CAPABILITY_TOUCH) && !input->touch) {
3132                 input->touch = wl_seat_get_touch(seat);
3133                 wl_touch_set_user_data(input->touch, input);
3134                 wl_touch_add_listener(input->touch, &touch_listener, input);
3135         } else if (!(caps & WL_SEAT_CAPABILITY_TOUCH) && input->touch) {
3136                 wl_touch_destroy(input->touch);
3137                 input->touch = NULL;
3138         }
3139 }
3140
3141 static void
3142 seat_handle_name(void *data, struct wl_seat *seat,
3143                  const char *name)
3144 {
3145
3146 }
3147
3148 static const struct wl_seat_listener seat_listener = {
3149         seat_handle_capabilities,
3150         seat_handle_name
3151 };
3152
3153 void
3154 input_get_position(struct input *input, int32_t *x, int32_t *y)
3155 {
3156         *x = input->sx;
3157         *y = input->sy;
3158 }
3159
3160 int
3161 input_get_touch(struct input *input, int32_t id, float *x, float *y)
3162 {
3163         struct touch_point *tp;
3164
3165         wl_list_for_each(tp, &input->touch_point_list, link) {
3166                 if (tp->id != id)
3167                         continue;
3168
3169                 *x = tp->x;
3170                 *y = tp->y;
3171                 return 0;
3172         }
3173
3174         return -1;
3175 }
3176
3177 struct display *
3178 input_get_display(struct input *input)
3179 {
3180         return input->display;
3181 }
3182
3183 struct wl_seat *
3184 input_get_seat(struct input *input)
3185 {
3186         return input->seat;
3187 }
3188
3189 uint32_t
3190 input_get_modifiers(struct input *input)
3191 {
3192         return input->modifiers;
3193 }
3194
3195 struct widget *
3196 input_get_focus_widget(struct input *input)
3197 {
3198         return input->focus_widget;
3199 }
3200
3201 struct data_offer {
3202         struct wl_data_offer *offer;
3203         struct input *input;
3204         struct wl_array types;
3205         int refcount;
3206
3207         struct task io_task;
3208         int fd;
3209         data_func_t func;
3210         int32_t x, y;
3211         void *user_data;
3212 };
3213
3214 static void
3215 data_offer_offer(void *data, struct wl_data_offer *wl_data_offer, const char *type)
3216 {
3217         struct data_offer *offer = data;
3218         char **p;
3219
3220         p = wl_array_add(&offer->types, sizeof *p);
3221         *p = strdup(type);
3222 }
3223
3224 static const struct wl_data_offer_listener data_offer_listener = {
3225         data_offer_offer,
3226 };
3227
3228 static void
3229 data_offer_destroy(struct data_offer *offer)
3230 {
3231         char **p;
3232
3233         offer->refcount--;
3234         if (offer->refcount == 0) {
3235                 wl_data_offer_destroy(offer->offer);
3236                 for (p = offer->types.data; *p; p++)
3237                         free(*p);
3238                 wl_array_release(&offer->types);
3239                 free(offer);
3240         }
3241 }
3242
3243 static void
3244 data_device_data_offer(void *data,
3245                        struct wl_data_device *data_device,
3246                        struct wl_data_offer *_offer)
3247 {
3248         struct data_offer *offer;
3249
3250         offer = xmalloc(sizeof *offer);
3251
3252         wl_array_init(&offer->types);
3253         offer->refcount = 1;
3254         offer->input = data;
3255         offer->offer = _offer;
3256         wl_data_offer_add_listener(offer->offer,
3257                                    &data_offer_listener, offer);
3258 }
3259
3260 static void
3261 data_device_enter(void *data, struct wl_data_device *data_device,
3262                   uint32_t serial, struct wl_surface *surface,
3263                   wl_fixed_t x_w, wl_fixed_t y_w,
3264                   struct wl_data_offer *offer)
3265 {
3266         struct input *input = data;
3267         struct window *window;
3268         void *types_data;
3269         float x = wl_fixed_to_double(x_w);
3270         float y = wl_fixed_to_double(y_w);
3271         char **p;
3272
3273         window = wl_surface_get_user_data(surface);
3274         input->drag_enter_serial = serial;
3275         input->drag_focus = window,
3276         input->drag_x = x;
3277         input->drag_y = y;
3278
3279         if (!input->touch_grab)
3280                 input->pointer_enter_serial = serial;
3281
3282         if (offer) {
3283                 input->drag_offer = wl_data_offer_get_user_data(offer);
3284
3285                 p = wl_array_add(&input->drag_offer->types, sizeof *p);
3286                 *p = NULL;
3287
3288                 types_data = input->drag_offer->types.data;
3289         } else {
3290                 input->drag_offer = NULL;
3291                 types_data = NULL;
3292         }
3293
3294         if (window->data_handler)
3295                 window->data_handler(window, input, x, y, types_data,
3296                                      window->user_data);
3297 }
3298
3299 static void
3300 data_device_leave(void *data, struct wl_data_device *data_device)
3301 {
3302         struct input *input = data;
3303
3304         if (input->drag_offer) {
3305                 data_offer_destroy(input->drag_offer);
3306                 input->drag_offer = NULL;
3307         }
3308 }
3309
3310 static void
3311 data_device_motion(void *data, struct wl_data_device *data_device,
3312                    uint32_t time, wl_fixed_t x_w, wl_fixed_t y_w)
3313 {
3314         struct input *input = data;
3315         struct window *window = input->drag_focus;
3316         float x = wl_fixed_to_double(x_w);
3317         float y = wl_fixed_to_double(y_w);
3318         void *types_data;
3319
3320         input->drag_x = x;
3321         input->drag_y = y;
3322
3323         if (input->drag_offer)
3324                 types_data = input->drag_offer->types.data;
3325         else
3326                 types_data = NULL;
3327
3328         if (window->data_handler)
3329                 window->data_handler(window, input, x, y, types_data,
3330                                      window->user_data);
3331 }
3332
3333 static void
3334 data_device_drop(void *data, struct wl_data_device *data_device)
3335 {
3336         struct input *input = data;
3337         struct window *window = input->drag_focus;
3338         float x, y;
3339
3340         x = input->drag_x;
3341         y = input->drag_y;
3342
3343         if (window->drop_handler)
3344                 window->drop_handler(window, input,
3345                                      x, y, window->user_data);
3346
3347         if (input->touch_grab)
3348                 touch_ungrab(input);
3349 }
3350
3351 static void
3352 data_device_selection(void *data,
3353                       struct wl_data_device *wl_data_device,
3354                       struct wl_data_offer *offer)
3355 {
3356         struct input *input = data;
3357         char **p;
3358
3359         if (input->selection_offer)
3360                 data_offer_destroy(input->selection_offer);
3361
3362         if (offer) {
3363                 input->selection_offer = wl_data_offer_get_user_data(offer);
3364                 p = wl_array_add(&input->selection_offer->types, sizeof *p);
3365                 *p = NULL;
3366         } else {
3367                 input->selection_offer = NULL;
3368         }
3369 }
3370
3371 static const struct wl_data_device_listener data_device_listener = {
3372         data_device_data_offer,
3373         data_device_enter,
3374         data_device_leave,
3375         data_device_motion,
3376         data_device_drop,
3377         data_device_selection
3378 };
3379
3380 static void
3381 input_set_pointer_image_index(struct input *input, int index)
3382 {
3383         struct wl_buffer *buffer;
3384         struct wl_cursor *cursor;
3385         struct wl_cursor_image *image;
3386
3387         if (!input->pointer)
3388                 return;
3389
3390         cursor = input->display->cursors[input->current_cursor];
3391         if (!cursor)
3392                 return;
3393
3394         if (index >= (int) cursor->image_count) {
3395                 fprintf(stderr, "cursor index out of range\n");
3396                 return;
3397         }
3398
3399         image = cursor->images[index];
3400         buffer = wl_cursor_image_get_buffer(image);
3401         if (!buffer)
3402                 return;
3403
3404         wl_surface_attach(input->pointer_surface, buffer, 0, 0);
3405         wl_surface_damage(input->pointer_surface, 0, 0,
3406                           image->width, image->height);
3407         wl_surface_commit(input->pointer_surface);
3408         wl_pointer_set_cursor(input->pointer, input->pointer_enter_serial,
3409                               input->pointer_surface,
3410                               image->hotspot_x, image->hotspot_y);
3411 }
3412
3413 static const struct wl_callback_listener pointer_surface_listener;
3414
3415 static void
3416 pointer_surface_frame_callback(void *data, struct wl_callback *callback,
3417                                uint32_t time)
3418 {
3419         struct input *input = data;
3420         struct wl_cursor *cursor;
3421         int i;
3422
3423         if (callback) {
3424                 assert(callback == input->cursor_frame_cb);
3425                 wl_callback_destroy(callback);
3426                 input->cursor_frame_cb = NULL;
3427         }
3428
3429         if (!input->pointer)
3430                 return;
3431
3432         if (input->current_cursor == CURSOR_BLANK) {
3433                 wl_pointer_set_cursor(input->pointer,
3434                                       input->pointer_enter_serial,
3435                                       NULL, 0, 0);
3436                 return;
3437         }
3438
3439         if (input->current_cursor == CURSOR_UNSET)
3440                 return;
3441         cursor = input->display->cursors[input->current_cursor];
3442         if (!cursor)
3443                 return;
3444
3445         /* FIXME We don't have the current time on the first call so we set
3446          * the animation start to the time of the first frame callback. */
3447         if (time == 0)
3448                 input->cursor_anim_start = 0;
3449         else if (input->cursor_anim_start == 0)
3450                 input->cursor_anim_start = time;
3451
3452         if (time == 0 || input->cursor_anim_start == 0)
3453                 i = 0;
3454         else
3455                 i = wl_cursor_frame(cursor, time - input->cursor_anim_start);
3456
3457         if (cursor->image_count > 1) {
3458                 input->cursor_frame_cb =
3459                         wl_surface_frame(input->pointer_surface);
3460                 wl_callback_add_listener(input->cursor_frame_cb,
3461                                          &pointer_surface_listener, input);
3462         }
3463
3464         input_set_pointer_image_index(input, i);
3465 }
3466
3467 static const struct wl_callback_listener pointer_surface_listener = {
3468         pointer_surface_frame_callback
3469 };
3470
3471 void
3472 input_set_pointer_image(struct input *input, int pointer)
3473 {
3474         int force = 0;
3475
3476         if (!input->pointer)
3477                 return;
3478
3479         if (input->pointer_enter_serial > input->cursor_serial)
3480                 force = 1;
3481
3482         if (!force && pointer == input->current_cursor)
3483                 return;
3484
3485         input->current_cursor = pointer;
3486         input->cursor_serial = input->pointer_enter_serial;
3487         if (!input->cursor_frame_cb)
3488                 pointer_surface_frame_callback(input, NULL, 0);
3489         else if (force) {
3490                 /* The current frame callback may be stuck if, for instance,
3491                  * the set cursor request was processed by the server after
3492                  * this client lost the focus. In this case the cursor surface
3493                  * might not be mapped and the frame callback wouldn't ever
3494                  * complete. Send a set_cursor and attach to try to map the
3495                  * cursor surface again so that the callback will finish */
3496                 input_set_pointer_image_index(input, 0);
3497         }
3498 }
3499
3500 struct wl_data_device *
3501 input_get_data_device(struct input *input)
3502 {
3503         return input->data_device;
3504 }
3505
3506 void
3507 input_set_selection(struct input *input,
3508                     struct wl_data_source *source, uint32_t time)
3509 {
3510         wl_data_device_set_selection(input->data_device, source, time);
3511 }
3512
3513 void
3514 input_accept(struct input *input, const char *type)
3515 {
3516         wl_data_offer_accept(input->drag_offer->offer,
3517                              input->drag_enter_serial, type);
3518 }
3519
3520 static void
3521 offer_io_func(struct task *task, uint32_t events)
3522 {
3523         struct data_offer *offer =
3524                 container_of(task, struct data_offer, io_task);
3525         unsigned int len;
3526         char buffer[4096];
3527
3528         len = read(offer->fd, buffer, sizeof buffer);
3529         offer->func(buffer, len,
3530                     offer->x, offer->y, offer->user_data);
3531
3532         if (len == 0) {
3533                 close(offer->fd);
3534                 data_offer_destroy(offer);
3535         }
3536 }
3537
3538 static void
3539 data_offer_receive_data(struct data_offer *offer, const char *mime_type,
3540                         data_func_t func, void *user_data)
3541 {
3542         int p[2];
3543
3544         if (pipe2(p, O_CLOEXEC) == -1)
3545                 return;
3546
3547         wl_data_offer_receive(offer->offer, mime_type, p[1]);
3548         close(p[1]);
3549
3550         offer->io_task.run = offer_io_func;
3551         offer->fd = p[0];
3552         offer->func = func;
3553         offer->refcount++;
3554         offer->user_data = user_data;
3555
3556         display_watch_fd(offer->input->display,
3557                          offer->fd, EPOLLIN, &offer->io_task);
3558 }
3559
3560 void
3561 input_receive_drag_data(struct input *input, const char *mime_type,
3562                         data_func_t func, void *data)
3563 {
3564         data_offer_receive_data(input->drag_offer, mime_type, func, data);
3565         input->drag_offer->x = input->drag_x;
3566         input->drag_offer->y = input->drag_y;
3567 }
3568
3569 int
3570 input_receive_drag_data_to_fd(struct input *input,
3571                               const char *mime_type, int fd)
3572 {
3573         if (input->drag_offer)
3574                 wl_data_offer_receive(input->drag_offer->offer, mime_type, fd);
3575
3576         return 0;
3577 }
3578
3579 int
3580 input_receive_selection_data(struct input *input, const char *mime_type,
3581                              data_func_t func, void *data)
3582 {
3583         char **p;
3584
3585         if (input->selection_offer == NULL)
3586                 return -1;
3587
3588         for (p = input->selection_offer->types.data; *p; p++)
3589                 if (strcmp(mime_type, *p) == 0)
3590                         break;
3591
3592         if (*p == NULL)
3593                 return -1;
3594
3595         data_offer_receive_data(input->selection_offer,
3596                                 mime_type, func, data);
3597         return 0;
3598 }
3599
3600 int
3601 input_receive_selection_data_to_fd(struct input *input,
3602                                    const char *mime_type, int fd)
3603 {
3604         if (input->selection_offer)
3605                 wl_data_offer_receive(input->selection_offer->offer,
3606                                       mime_type, fd);
3607
3608         return 0;
3609 }
3610
3611 void
3612 window_move(struct window *window, struct input *input, uint32_t serial)
3613 {
3614         if (!window->xdg_surface)
3615                 return;
3616
3617         xdg_surface_move(window->xdg_surface, input->seat, serial);
3618 }
3619
3620 static void
3621 surface_set_synchronized(struct surface *surface)
3622 {
3623         if (!surface->subsurface)
3624                 return;
3625
3626         if (surface->synchronized)
3627                 return;
3628
3629         wl_subsurface_set_sync(surface->subsurface);
3630         surface->synchronized = 1;
3631 }
3632
3633 static void
3634 surface_set_synchronized_default(struct surface *surface)
3635 {
3636         if (!surface->subsurface)
3637                 return;
3638
3639         if (surface->synchronized == surface->synchronized_default)
3640                 return;
3641
3642         if (surface->synchronized_default)
3643                 wl_subsurface_set_sync(surface->subsurface);
3644         else
3645                 wl_subsurface_set_desync(surface->subsurface);
3646
3647         surface->synchronized = surface->synchronized_default;
3648 }
3649
3650 static void
3651 surface_resize(struct surface *surface)
3652 {
3653         struct widget *widget = surface->widget;
3654         struct wl_compositor *compositor = widget->window->display->compositor;
3655
3656         if (surface->input_region) {
3657                 wl_region_destroy(surface->input_region);
3658                 surface->input_region = NULL;
3659         }
3660
3661         if (surface->opaque_region)
3662                 wl_region_destroy(surface->opaque_region);
3663
3664         surface->opaque_region = wl_compositor_create_region(compositor);
3665
3666         if (widget->resize_handler)
3667                 widget->resize_handler(widget,
3668                                        widget->allocation.width,
3669                                        widget->allocation.height,
3670                                        widget->user_data);
3671
3672         if (surface->subsurface &&
3673             (surface->allocation.x != widget->allocation.x ||
3674              surface->allocation.y != widget->allocation.y)) {
3675                 wl_subsurface_set_position(surface->subsurface,
3676                                            widget->allocation.x,
3677                                            widget->allocation.y);
3678         }
3679         if (surface->allocation.width != widget->allocation.width ||
3680             surface->allocation.height != widget->allocation.height) {
3681                 window_schedule_redraw(widget->window);
3682         }
3683         surface->allocation = widget->allocation;
3684
3685         if (widget->opaque)
3686                 wl_region_add(surface->opaque_region, 0, 0,
3687                               widget->allocation.width,
3688                               widget->allocation.height);
3689 }
3690
3691 static void
3692 hack_prevent_EGL_sub_surface_deadlock(struct window *window)
3693 {
3694         /*
3695          * This hack should be removed, when EGL respects
3696          * eglSwapInterval(0).
3697          *
3698          * If this window has sub-surfaces, especially a free-running
3699          * EGL-widget, we need to post the parent surface once with
3700          * all the old state to guarantee, that the EGL-widget will
3701          * receive its frame callback soon. Otherwise, a forced call
3702          * to eglSwapBuffers may end up blocking, waiting for a frame
3703          * event that will never come, because we will commit the parent
3704          * surface with all new state only after eglSwapBuffers returns.
3705          *
3706          * This assumes, that:
3707          * 1. When the EGL widget's resize hook is called, it pauses.
3708          * 2. When the EGL widget's redraw hook is called, it forces a
3709          *    repaint and a call to eglSwapBuffers(), and maybe resumes.
3710          * In a single threaded application condition 1 is a no-op.
3711          *
3712          * XXX: This should actually be after the surface_resize() calls,
3713          * but cannot, because then it would commit the incomplete state
3714          * accumulated from the widget resize hooks.
3715          */
3716         if (window->subsurface_list.next != &window->main_surface->link ||
3717             window->subsurface_list.prev != &window->main_surface->link)
3718                 wl_surface_commit(window->main_surface->surface);
3719 }
3720
3721 static void
3722 window_do_resize(struct window *window)
3723 {
3724         struct surface *surface;
3725
3726         widget_set_allocation(window->main_surface->widget,
3727                               window->pending_allocation.x,
3728                               window->pending_allocation.y,
3729                               window->pending_allocation.width,
3730                               window->pending_allocation.height);
3731
3732         surface_resize(window->main_surface);
3733
3734         /* The main surface is in the list, too. Main surface's
3735          * resize_handler is responsible for calling widget_set_allocation()
3736          * on all sub-surface root widgets, so they will be resized
3737          * properly.
3738          */
3739         wl_list_for_each(surface, &window->subsurface_list, link) {
3740                 if (surface == window->main_surface)
3741                         continue;
3742
3743                 surface_set_synchronized(surface);
3744                 surface_resize(surface);
3745         }
3746
3747         if (!window->fullscreen && !window->maximized)
3748                 window->saved_allocation = window->pending_allocation;
3749 }
3750
3751 static void
3752 idle_resize(struct window *window)
3753 {
3754         window->resize_needed = 0;
3755         window->redraw_needed = 1;
3756
3757         DBG("from %dx%d to %dx%d\n",
3758             window->main_surface->server_allocation.width,
3759             window->main_surface->server_allocation.height,
3760             window->pending_allocation.width,
3761             window->pending_allocation.height);
3762
3763         hack_prevent_EGL_sub_surface_deadlock(window);
3764
3765         window_do_resize(window);
3766 }
3767
3768 static void
3769 undo_resize(struct window *window)
3770 {
3771         window->pending_allocation.width =
3772                 window->main_surface->server_allocation.width;
3773         window->pending_allocation.height =
3774                 window->main_surface->server_allocation.height;
3775
3776         DBG("back to %dx%d\n",
3777             window->main_surface->server_allocation.width,
3778             window->main_surface->server_allocation.height);
3779
3780         window_do_resize(window);
3781
3782         if (window->pending_allocation.width == 0 &&
3783             window->pending_allocation.height == 0) {
3784                 fprintf(stderr, "Error: Could not draw a surface, "
3785                         "most likely due to insufficient disk space in "
3786                         "%s (XDG_RUNTIME_DIR).\n", getenv("XDG_RUNTIME_DIR"));
3787                 exit(EXIT_FAILURE);
3788         }
3789 }
3790
3791 void
3792 window_schedule_resize(struct window *window, int width, int height)
3793 {
3794         /* We should probably get these numbers from the theme. */
3795         const int min_width = 200, min_height = 200;
3796
3797         window->pending_allocation.x = 0;
3798         window->pending_allocation.y = 0;
3799         window->pending_allocation.width = width;
3800         window->pending_allocation.height = height;
3801
3802         if (window->min_allocation.width == 0) {
3803                 if (width < min_width && window->frame)
3804                         window->min_allocation.width = min_width;
3805                 else
3806                         window->min_allocation.width = width;
3807                 if (height < min_height && window->frame)
3808                         window->min_allocation.height = min_height;
3809                 else
3810                         window->min_allocation.height = height;
3811         }
3812
3813         if (window->pending_allocation.width < window->min_allocation.width)
3814                 window->pending_allocation.width = window->min_allocation.width;
3815         if (window->pending_allocation.height < window->min_allocation.height)
3816                 window->pending_allocation.height = window->min_allocation.height;
3817
3818         window->resize_needed = 1;
3819         window_schedule_redraw(window);
3820 }
3821
3822 void
3823 widget_schedule_resize(struct widget *widget, int32_t width, int32_t height)
3824 {
3825         window_schedule_resize(widget->window, width, height);
3826 }
3827
3828 static void
3829 handle_surface_configure(void *data, struct xdg_surface *xdg_surface,
3830                          int32_t width, int32_t height)
3831 {
3832         struct window *window = data;
3833
3834         window_schedule_resize(window, width, height);
3835 }
3836
3837 static void
3838 handle_surface_change_state(void *data, struct xdg_surface *xdg_surface,
3839                             uint32_t state,
3840                             uint32_t value,
3841                             uint32_t serial)
3842 {
3843         struct window *window = data;
3844
3845         switch (state) {
3846         case XDG_SURFACE_STATE_MAXIMIZED:
3847                 window->maximized = value;
3848                 break;
3849         case XDG_SURFACE_STATE_FULLSCREEN:
3850                 window->fullscreen = value;
3851                 break;
3852         }
3853
3854         if (!window->fullscreen && !window->maximized)
3855                 window_schedule_resize(window,
3856                                        window->saved_allocation.width,
3857                                        window->saved_allocation.height);
3858
3859         xdg_surface_ack_change_state(xdg_surface, state, value, serial);
3860         window_schedule_redraw(window);
3861 }
3862
3863 static void
3864 handle_surface_activated(void *data, struct xdg_surface *xdg_surface)
3865 {
3866         struct window *window = data;
3867         window->focused = 1;
3868 }
3869
3870 static void
3871 handle_surface_deactivated(void *data, struct xdg_surface *xdg_surface)
3872 {
3873         struct window *window = data;
3874         window->focused = 0;
3875 }
3876
3877 static void
3878 handle_surface_delete(void *data, struct xdg_surface *xdg_surface)
3879 {
3880         struct window *window = data;
3881         window_close(window);
3882 }
3883
3884 static const struct xdg_surface_listener xdg_surface_listener = {
3885         handle_surface_configure,
3886         handle_surface_change_state,
3887         handle_surface_activated,
3888         handle_surface_deactivated,
3889         handle_surface_delete,
3890 };
3891
3892 static void
3893 window_sync_transient_for(struct window *window)
3894 {
3895         struct wl_surface *parent_surface;
3896
3897         if (!window->xdg_surface)
3898                 return;
3899
3900         if (window->transient_for)
3901                 parent_surface = window->transient_for->main_surface->surface;
3902         else
3903                 parent_surface = NULL;
3904
3905         xdg_surface_set_transient_for(window->xdg_surface, parent_surface);
3906 }
3907
3908 static void
3909 window_sync_margin(struct window *window)
3910 {
3911         int margin;
3912
3913         if (!window->xdg_surface)
3914                 return;
3915
3916         if (!window->frame)
3917                 return;
3918
3919         margin = frame_get_shadow_margin(window->frame->frame);
3920
3921         /* Shadow size is the same on every side. */
3922         xdg_surface_set_margin(window->xdg_surface,
3923                                      margin,
3924                                      margin,
3925                                      margin,
3926                                      margin);
3927 }
3928
3929 static void
3930 window_flush(struct window *window)
3931 {
3932         struct surface *surface;
3933
3934         if (!window->custom) {
3935                 if (!window->xdg_popup && !window->xdg_surface) {
3936                         window->xdg_surface = xdg_shell_get_xdg_surface(window->display->xdg_shell,
3937                                                                         window->main_surface->surface);
3938                         fail_on_null(window->xdg_surface);
3939
3940                         xdg_surface_set_user_data(window->xdg_surface, window);
3941                         xdg_surface_add_listener(window->xdg_surface,
3942                                                  &xdg_surface_listener, window);
3943
3944                         window_sync_transient_for(window);
3945                         window_sync_margin(window);
3946                 }
3947         }
3948
3949         wl_list_for_each(surface, &window->subsurface_list, link) {
3950                 if (surface == window->main_surface)
3951                         continue;
3952
3953                 surface_flush(surface);
3954         }
3955
3956         surface_flush(window->main_surface);
3957 }
3958
3959 static void
3960 menu_destroy(struct menu *menu)
3961 {
3962         widget_destroy(menu->widget);
3963         window_destroy(menu->window);
3964         frame_destroy(menu->frame);
3965         free(menu);
3966 }
3967
3968 void
3969 window_get_allocation(struct window *window,
3970                       struct rectangle *allocation)
3971 {
3972         *allocation = window->main_surface->allocation;
3973 }
3974
3975 static void
3976 widget_redraw(struct widget *widget)
3977 {
3978         struct widget *child;
3979
3980         if (widget->redraw_handler)
3981                 widget->redraw_handler(widget, widget->user_data);
3982         wl_list_for_each(child, &widget->child_list, link)
3983                 widget_redraw(child);
3984 }
3985
3986 static void
3987 frame_callback(void *data, struct wl_callback *callback, uint32_t time)
3988 {
3989         struct surface *surface = data;
3990
3991         assert(callback == surface->frame_cb);
3992         DBG_OBJ(callback, "done\n");
3993         wl_callback_destroy(callback);
3994         surface->frame_cb = NULL;
3995
3996         surface->last_time = time;
3997
3998         if (surface->redraw_needed || surface->window->redraw_needed) {
3999                 DBG_OBJ(surface->surface, "window_schedule_redraw_task\n");
4000                 window_schedule_redraw_task(surface->window);
4001         }
4002 }
4003
4004 static const struct wl_callback_listener listener = {
4005         frame_callback
4006 };
4007
4008 static int
4009 surface_redraw(struct surface *surface)
4010 {
4011         DBG_OBJ(surface->surface, "begin\n");
4012
4013         if (!surface->window->redraw_needed && !surface->redraw_needed)
4014                 return 0;
4015
4016         /* Whole-window redraw forces a redraw even if the previous has
4017          * not yet hit the screen.
4018          */
4019         if (surface->frame_cb) {
4020                 if (!surface->window->redraw_needed)
4021                         return 0;
4022
4023                 DBG_OBJ(surface->frame_cb, "cancelled\n");
4024                 wl_callback_destroy(surface->frame_cb);
4025         }
4026
4027         if (surface->widget->use_cairo &&
4028             !widget_get_cairo_surface(surface->widget)) {
4029                 DBG_OBJ(surface->surface, "cancelled due buffer failure\n");
4030                 return -1;
4031         }
4032
4033         surface->frame_cb = wl_surface_frame(surface->surface);
4034         wl_callback_add_listener(surface->frame_cb, &listener, surface);
4035         DBG_OBJ(surface->frame_cb, "new\n");
4036
4037         surface->redraw_needed = 0;
4038         DBG_OBJ(surface->surface, "-> widget_redraw\n");
4039         widget_redraw(surface->widget);
4040         DBG_OBJ(surface->surface, "done\n");
4041         return 0;
4042 }
4043
4044 static void
4045 idle_redraw(struct task *task, uint32_t events)
4046 {
4047         struct window *window = container_of(task, struct window, redraw_task);
4048         struct surface *surface;
4049         int failed = 0;
4050         int resized = 0;
4051
4052         DBG(" --------- \n");
4053
4054         wl_list_init(&window->redraw_task.link);
4055         window->redraw_task_scheduled = 0;
4056
4057         if (window->resize_needed) {
4058                 /* throttle resizing to the main surface display */
4059                 if (window->main_surface->frame_cb) {
4060                         DBG_OBJ(window->main_surface->frame_cb, "pending\n");
4061                         return;
4062                 }
4063
4064                 idle_resize(window);
4065                 resized = 1;
4066         }
4067
4068         if (surface_redraw(window->main_surface) < 0) {
4069                 /*
4070                  * Only main_surface failure will cause us to undo the resize.
4071                  * If sub-surfaces fail, they will just be broken with old
4072                  * content.
4073                  */
4074                 failed = 1;
4075         } else {
4076                 wl_list_for_each(surface, &window->subsurface_list, link) {
4077                         if (surface == window->main_surface)
4078                                 continue;
4079
4080                         surface_redraw(surface);
4081                 }
4082         }
4083
4084         window->redraw_needed = 0;
4085         window_flush(window);
4086
4087         wl_list_for_each(surface, &window->subsurface_list, link)
4088                 surface_set_synchronized_default(surface);
4089
4090         if (resized && failed) {
4091                 /* Restore widget tree to correspond to what is on screen. */
4092                 undo_resize(window);
4093         }
4094 }
4095
4096 static void
4097 window_schedule_redraw_task(struct window *window)
4098 {
4099         if (!window->redraw_task_scheduled) {
4100                 window->redraw_task.run = idle_redraw;
4101                 display_defer(window->display, &window->redraw_task);
4102                 window->redraw_task_scheduled = 1;
4103         }
4104 }
4105
4106 void
4107 window_schedule_redraw(struct window *window)
4108 {
4109         struct surface *surface;
4110
4111         DBG_OBJ(window->main_surface->surface, "window %p\n", window);
4112
4113         wl_list_for_each(surface, &window->subsurface_list, link)
4114                 surface->redraw_needed = 1;
4115
4116         window_schedule_redraw_task(window);
4117 }
4118
4119 int
4120 window_is_fullscreen(struct window *window)
4121 {
4122         return window->fullscreen;
4123 }
4124
4125 void
4126 window_set_fullscreen(struct window *window, int fullscreen)
4127 {
4128         if (!window->xdg_surface)
4129                 return;
4130
4131         if (window->fullscreen == fullscreen)
4132                 return;
4133
4134         xdg_surface_request_change_state(window->xdg_surface,
4135                                          XDG_SURFACE_STATE_FULLSCREEN,
4136                                          fullscreen ? 1 : 0,
4137                                          0);
4138 }
4139
4140 int
4141 window_is_maximized(struct window *window)
4142 {
4143         return window->maximized;
4144 }
4145
4146 void
4147 window_set_maximized(struct window *window, int maximized)
4148 {
4149         if (!window->xdg_surface)
4150                 return;
4151
4152         if (window->maximized == maximized)
4153                 return;
4154
4155         xdg_surface_request_change_state(window->xdg_surface,
4156                                          XDG_SURFACE_STATE_MAXIMIZED,
4157                                          maximized ? 1 : 0,
4158                                          0);
4159 }
4160
4161 void
4162 window_set_minimized(struct window *window)
4163 {
4164         if (!window->xdg_surface)
4165                 return;
4166
4167         xdg_surface_set_minimized(window->xdg_surface);
4168 }
4169
4170 void
4171 window_set_user_data(struct window *window, void *data)
4172 {
4173         window->user_data = data;
4174 }
4175
4176 void *
4177 window_get_user_data(struct window *window)
4178 {
4179         return window->user_data;
4180 }
4181
4182 void
4183 window_set_key_handler(struct window *window,
4184                        window_key_handler_t handler)
4185 {
4186         window->key_handler = handler;
4187 }
4188
4189 void
4190 window_set_keyboard_focus_handler(struct window *window,
4191                                   window_keyboard_focus_handler_t handler)
4192 {
4193         window->keyboard_focus_handler = handler;
4194 }
4195
4196 void
4197 window_set_data_handler(struct window *window, window_data_handler_t handler)
4198 {
4199         window->data_handler = handler;
4200 }
4201
4202 void
4203 window_set_drop_handler(struct window *window, window_drop_handler_t handler)
4204 {
4205         window->drop_handler = handler;
4206 }
4207
4208 void
4209 window_set_close_handler(struct window *window,
4210                          window_close_handler_t handler)
4211 {
4212         window->close_handler = handler;
4213 }
4214
4215 void
4216 window_set_fullscreen_handler(struct window *window,
4217                               window_fullscreen_handler_t handler)
4218 {
4219         window->fullscreen_handler = handler;
4220 }
4221
4222 void
4223 window_set_output_handler(struct window *window,
4224                           window_output_handler_t handler)
4225 {
4226         window->output_handler = handler;
4227 }
4228
4229 void
4230 window_set_title(struct window *window, const char *title)
4231 {
4232         free(window->title);
4233         window->title = strdup(title);
4234         if (window->frame) {
4235                 frame_set_title(window->frame->frame, title);
4236                 widget_schedule_redraw(window->frame->widget);
4237         }
4238         if (window->xdg_surface)
4239                 xdg_surface_set_title(window->xdg_surface, title);
4240 }
4241
4242 const char *
4243 window_get_title(struct window *window)
4244 {
4245         return window->title;
4246 }
4247
4248 void
4249 window_set_text_cursor_position(struct window *window, int32_t x, int32_t y)
4250 {
4251         struct text_cursor_position *text_cursor_position =
4252                                         window->display->text_cursor_position;
4253
4254         if (!text_cursor_position)
4255                 return;
4256
4257         text_cursor_position_notify(text_cursor_position,
4258                                     window->main_surface->surface,
4259                                     wl_fixed_from_int(x),
4260                                     wl_fixed_from_int(y));
4261 }
4262
4263 void
4264 window_damage(struct window *window, int32_t x, int32_t y,
4265               int32_t width, int32_t height)
4266 {
4267         wl_surface_damage(window->main_surface->surface, x, y, width, height);
4268 }
4269
4270 static void
4271 surface_enter(void *data,
4272               struct wl_surface *wl_surface, struct wl_output *wl_output)
4273 {
4274         struct window *window = data;
4275         struct output *output;
4276         struct output *output_found = NULL;
4277         struct window_output *window_output;
4278
4279         wl_list_for_each(output, &window->display->output_list, link) {
4280                 if (output->output == wl_output) {
4281                         output_found = output;
4282                         break;
4283                 }
4284         }
4285
4286         if (!output_found)
4287                 return;
4288
4289         window_output = xmalloc(sizeof *window_output);
4290         window_output->output = output_found;
4291
4292         wl_list_insert (&window->window_output_list, &window_output->link);
4293
4294         if (window->output_handler)
4295                 window->output_handler(window, output_found, 1,
4296                                        window->user_data);
4297 }
4298
4299 static void
4300 surface_leave(void *data,
4301               struct wl_surface *wl_surface, struct wl_output *output)
4302 {
4303         struct window *window = data;
4304         struct window_output *window_output;
4305         struct window_output *window_output_found = NULL;
4306
4307         wl_list_for_each(window_output, &window->window_output_list, link) {
4308                 if (window_output->output->output == output) {
4309                         window_output_found = window_output;
4310                         break;
4311                 }
4312         }
4313
4314         if (window_output_found) {
4315                 wl_list_remove(&window_output_found->link);
4316
4317                 if (window->output_handler)
4318                         window->output_handler(window, window_output->output,
4319                                                0, window->user_data);
4320
4321                 free(window_output_found);
4322         }
4323 }
4324
4325 static const struct wl_surface_listener surface_listener = {
4326         surface_enter,
4327         surface_leave
4328 };
4329
4330 static struct surface *
4331 surface_create(struct window *window)
4332 {
4333         struct display *display = window->display;
4334         struct surface *surface;
4335
4336         surface = xmalloc(sizeof *surface);
4337         memset(surface, 0, sizeof *surface);
4338         if (!surface)
4339                 return NULL;
4340
4341         surface->window = window;
4342         surface->surface = wl_compositor_create_surface(display->compositor);
4343         surface->buffer_scale = 1;
4344         wl_surface_add_listener(surface->surface, &surface_listener, window);
4345
4346         wl_list_insert(&window->subsurface_list, &surface->link);
4347
4348         return surface;
4349 }
4350
4351 static struct window *
4352 window_create_internal(struct display *display, int custom)
4353 {
4354         struct window *window;
4355         struct surface *surface;
4356
4357         window = xzalloc(sizeof *window);
4358         wl_list_init(&window->subsurface_list);
4359         window->display = display;
4360
4361         surface = surface_create(window);
4362         window->main_surface = surface;
4363
4364         assert(custom || display->xdg_shell);
4365
4366         window->custom = custom;
4367         window->preferred_format = WINDOW_PREFERRED_FORMAT_NONE;
4368
4369         if (display->argb_device)
4370 #ifdef HAVE_CAIRO_EGL
4371                 surface->buffer_type = WINDOW_BUFFER_TYPE_EGL_WINDOW;
4372 #else
4373                 surface->buffer_type = WINDOW_BUFFER_TYPE_SHM;
4374 #endif
4375         else
4376                 surface->buffer_type = WINDOW_BUFFER_TYPE_SHM;
4377
4378         wl_surface_set_user_data(surface->surface, window);
4379         wl_list_insert(display->window_list.prev, &window->link);
4380         wl_list_init(&window->redraw_task.link);
4381
4382         wl_list_init (&window->window_output_list);
4383
4384         return window;
4385 }
4386
4387 struct window *
4388 window_create(struct display *display)
4389 {
4390         return window_create_internal(display, 0);
4391 }
4392
4393 struct window *
4394 window_create_custom(struct display *display)
4395 {
4396         return window_create_internal(display, 1);
4397 }
4398
4399 void
4400 window_set_transient_for(struct window *window,
4401                          struct window *parent_window)
4402 {
4403         window->transient_for = parent_window;
4404         window_sync_transient_for(window);
4405 }
4406
4407 struct window *
4408 window_get_transient_for(struct window *window)
4409 {
4410         return window->transient_for;
4411 }
4412
4413 static void
4414 menu_set_item(struct menu *menu, int sy)
4415 {
4416         int32_t x, y, width, height;
4417         int next;
4418
4419         frame_interior(menu->frame, &x, &y, &width, &height);
4420         next = (sy - y) / 20;
4421         if (menu->current != next) {
4422                 menu->current = next;
4423                 widget_schedule_redraw(menu->widget);
4424         }
4425 }
4426
4427 static int
4428 menu_motion_handler(struct widget *widget,
4429                     struct input *input, uint32_t time,
4430                     float x, float y, void *data)
4431 {
4432         struct menu *menu = data;
4433
4434         if (widget == menu->widget)
4435                 menu_set_item(data, y);
4436
4437         return CURSOR_LEFT_PTR;
4438 }
4439
4440 static int
4441 menu_enter_handler(struct widget *widget,
4442                    struct input *input, float x, float y, void *data)
4443 {
4444         struct menu *menu = data;
4445
4446         if (widget == menu->widget)
4447                 menu_set_item(data, y);
4448
4449         return CURSOR_LEFT_PTR;
4450 }
4451
4452 static void
4453 menu_leave_handler(struct widget *widget, struct input *input, void *data)
4454 {
4455         struct menu *menu = data;
4456
4457         if (widget == menu->widget)
4458                 menu_set_item(data, -200);
4459 }
4460
4461 static void
4462 menu_button_handler(struct widget *widget,
4463                     struct input *input, uint32_t time,
4464                     uint32_t button, enum wl_pointer_button_state state,
4465                     void *data)
4466
4467 {
4468         struct menu *menu = data;
4469
4470         if (state == WL_POINTER_BUTTON_STATE_RELEASED &&
4471             (menu->release_count > 0 || time - menu->time > 500)) {
4472                 /* Either relase after press-drag-release or
4473                  * click-motion-click. */
4474                 menu->func(menu->parent, input,
4475                            menu->current, menu->parent->user_data);
4476                 input_ungrab(input);
4477                 menu_destroy(menu);
4478         } else if (state == WL_POINTER_BUTTON_STATE_RELEASED) {
4479                 menu->release_count++;
4480         }
4481 }
4482
4483 static void
4484 menu_redraw_handler(struct widget *widget, void *data)
4485 {
4486         cairo_t *cr;
4487         struct menu *menu = data;
4488         int32_t x, y, width, height, i;
4489
4490         cr = widget_cairo_create(widget);
4491
4492         frame_repaint(menu->frame, cr);
4493         frame_interior(menu->frame, &x, &y, &width, &height);
4494
4495         theme_set_background_source(menu->window->display->theme,
4496                                     cr, THEME_FRAME_ACTIVE);
4497         cairo_rectangle(cr, x, y, width, height);
4498         cairo_fill(cr);
4499
4500         cairo_select_font_face(cr, "sans",
4501                                CAIRO_FONT_SLANT_NORMAL,
4502                                CAIRO_FONT_WEIGHT_NORMAL);
4503         cairo_set_font_size(cr, 12);
4504
4505         for (i = 0; i < menu->count; i++) {
4506                 if (i == menu->current) {
4507                         cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
4508                         cairo_rectangle(cr, x, y + i * 20, width, 20);
4509                         cairo_fill(cr);
4510                         cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
4511                         cairo_move_to(cr, x + 10, y + i * 20 + 16);
4512                         cairo_show_text(cr, menu->entries[i]);
4513                 } else {
4514                         cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
4515                         cairo_move_to(cr, x + 10, y + i * 20 + 16);
4516                         cairo_show_text(cr, menu->entries[i]);
4517                 }
4518         }
4519
4520         cairo_destroy(cr);
4521 }
4522
4523 static void
4524 handle_popup_popup_done(void *data, struct xdg_popup *xdg_popup, uint32_t serial)
4525 {
4526         struct window *window = data;
4527         struct menu *menu = window->main_surface->widget->user_data;
4528
4529         input_ungrab(menu->input);
4530         menu_destroy(menu);
4531 }
4532
4533 static const struct xdg_popup_listener xdg_popup_listener = {
4534         handle_popup_popup_done,
4535 };
4536
4537 void
4538 window_show_menu(struct display *display,
4539                  struct input *input, uint32_t time, struct window *parent,
4540                  int32_t x, int32_t y,
4541                  menu_func_t func, const char **entries, int count)
4542 {
4543         struct window *window;
4544         struct menu *menu;
4545         int32_t ix, iy;
4546
4547         menu = malloc(sizeof *menu);
4548         if (!menu)
4549                 return;
4550
4551         window = window_create_internal(parent->display, 0);
4552         if (!window) {
4553                 free(menu);
4554                 return;
4555         }
4556
4557         menu->window = window;
4558         menu->parent = parent;
4559         menu->widget = window_add_widget(menu->window, menu);
4560         window_set_buffer_scale (menu->window, window_get_buffer_scale (parent));
4561         window_set_buffer_transform (menu->window, window_get_buffer_transform (parent));
4562         menu->frame = frame_create(window->display->theme, 0, 0,
4563                                    FRAME_BUTTON_NONE, NULL);
4564         fail_on_null(menu->frame);
4565         menu->entries = entries;
4566         menu->count = count;
4567         menu->release_count = 0;
4568         menu->current = -1;
4569         menu->time = time;
4570         menu->func = func;
4571         menu->input = input;
4572         window->x = x;
4573         window->y = y;
4574
4575         input_ungrab(input);
4576
4577         widget_set_redraw_handler(menu->widget, menu_redraw_handler);
4578         widget_set_enter_handler(menu->widget, menu_enter_handler);
4579         widget_set_leave_handler(menu->widget, menu_leave_handler);
4580         widget_set_motion_handler(menu->widget, menu_motion_handler);
4581         widget_set_button_handler(menu->widget, menu_button_handler);
4582
4583         input_grab(input, menu->widget, 0);
4584         frame_resize_inside(menu->frame, 200, count * 20);
4585         frame_set_flag(menu->frame, FRAME_FLAG_ACTIVE);
4586         window_schedule_resize(window, frame_width(menu->frame),
4587                                frame_height(menu->frame));
4588
4589         frame_interior(menu->frame, &ix, &iy, NULL, NULL);
4590
4591         window->xdg_popup = xdg_shell_get_xdg_popup(display->xdg_shell,
4592                                                     window->main_surface->surface,
4593                                                     parent->main_surface->surface,
4594                                                     input->seat,
4595                                                     display_get_serial(window->display),
4596                                                     window->x - ix,
4597                                                     window->y - iy,
4598                                                     0);
4599         fail_on_null(window->xdg_popup);
4600
4601         xdg_popup_set_user_data(window->xdg_popup, window);
4602         xdg_popup_add_listener(window->xdg_popup,
4603                                &xdg_popup_listener, window);
4604 }
4605
4606 void
4607 window_set_buffer_type(struct window *window, enum window_buffer_type type)
4608 {
4609         window->main_surface->buffer_type = type;
4610 }
4611
4612 void
4613 window_set_preferred_format(struct window *window,
4614                             enum preferred_format format)
4615 {
4616         window->preferred_format = format;
4617 }
4618
4619 struct widget *
4620 window_add_subsurface(struct window *window, void *data,
4621                       enum subsurface_mode default_mode)
4622 {
4623         struct widget *widget;
4624         struct surface *surface;
4625         struct wl_surface *parent;
4626         struct wl_subcompositor *subcompo = window->display->subcompositor;
4627
4628         surface = surface_create(window);
4629         widget = widget_create(window, surface, data);
4630         wl_list_init(&widget->link);
4631         surface->widget = widget;
4632
4633         parent = window->main_surface->surface;
4634         surface->subsurface = wl_subcompositor_get_subsurface(subcompo,
4635                                                               surface->surface,
4636                                                               parent);
4637         surface->synchronized = 1;
4638
4639         switch (default_mode) {
4640         case SUBSURFACE_SYNCHRONIZED:
4641                 surface->synchronized_default = 1;
4642                 break;
4643         case SUBSURFACE_DESYNCHRONIZED:
4644                 surface->synchronized_default = 0;
4645                 break;
4646         default:
4647                 assert(!"bad enum subsurface_mode");
4648         }
4649
4650         window->resize_needed = 1;
4651         window_schedule_redraw(window);
4652
4653         return widget;
4654 }
4655
4656 static void
4657 display_handle_geometry(void *data,
4658                         struct wl_output *wl_output,
4659                         int x, int y,
4660                         int physical_width,
4661                         int physical_height,
4662                         int subpixel,
4663                         const char *make,
4664                         const char *model,
4665                         int transform)
4666 {
4667         struct output *output = data;
4668
4669         output->allocation.x = x;
4670         output->allocation.y = y;
4671         output->transform = transform;
4672
4673         if (output->make)
4674                 free(output->make);
4675         output->make = strdup(make);
4676
4677         if (output->model)
4678                 free(output->model);
4679         output->model = strdup(model);
4680 }
4681
4682 static void
4683 display_handle_done(void *data,
4684                      struct wl_output *wl_output)
4685 {
4686 }
4687
4688 static void
4689 display_handle_scale(void *data,
4690                      struct wl_output *wl_output,
4691                      int32_t scale)
4692 {
4693         struct output *output = data;
4694
4695         output->scale = scale;
4696 }
4697
4698 static void
4699 display_handle_mode(void *data,
4700                     struct wl_output *wl_output,
4701                     uint32_t flags,
4702                     int width,
4703                     int height,
4704                     int refresh)
4705 {
4706         struct output *output = data;
4707         struct display *display = output->display;
4708
4709         if (flags & WL_OUTPUT_MODE_CURRENT) {
4710                 output->allocation.width = width;
4711                 output->allocation.height = height;
4712                 if (display->output_configure_handler)
4713                         (*display->output_configure_handler)(
4714                                                 output, display->user_data);
4715         }
4716 }
4717
4718 static const struct wl_output_listener output_listener = {
4719         display_handle_geometry,
4720         display_handle_mode,
4721         display_handle_done,
4722         display_handle_scale
4723 };
4724
4725 static void
4726 display_add_output(struct display *d, uint32_t id)
4727 {
4728         struct output *output;
4729
4730         output = xzalloc(sizeof *output);
4731         output->display = d;
4732         output->scale = 1;
4733         output->output =
4734                 wl_registry_bind(d->registry, id, &wl_output_interface, 2);
4735         output->server_output_id = id;
4736         wl_list_insert(d->output_list.prev, &output->link);
4737
4738         wl_output_add_listener(output->output, &output_listener, output);
4739 }
4740
4741 static void
4742 output_destroy(struct output *output)
4743 {
4744         if (output->destroy_handler)
4745                 (*output->destroy_handler)(output, output->user_data);
4746
4747         wl_output_destroy(output->output);
4748         wl_list_remove(&output->link);
4749         free(output);
4750 }
4751
4752 static void
4753 display_destroy_output(struct display *d, uint32_t id)
4754 {
4755         struct output *output;
4756
4757         wl_list_for_each(output, &d->output_list, link) {
4758                 if (output->server_output_id == id) {
4759                         output_destroy(output);
4760                         break;
4761                 }
4762         }
4763 }
4764
4765 void
4766 display_set_global_handler(struct display *display,
4767                            display_global_handler_t handler)
4768 {
4769         struct global *global;
4770
4771         display->global_handler = handler;
4772         if (!handler)
4773                 return;
4774
4775         wl_list_for_each(global, &display->global_list, link)
4776                 display->global_handler(display,
4777                                         global->name, global->interface,
4778                                         global->version, display->user_data);
4779 }
4780
4781 void
4782 display_set_global_handler_remove(struct display *display,
4783                            display_global_handler_t remove_handler)
4784 {
4785         display->global_handler_remove = remove_handler;
4786         if (!remove_handler)
4787                 return;
4788 }
4789
4790 void
4791 display_set_output_configure_handler(struct display *display,
4792                                      display_output_handler_t handler)
4793 {
4794         struct output *output;
4795
4796         display->output_configure_handler = handler;
4797         if (!handler)
4798                 return;
4799
4800         wl_list_for_each(output, &display->output_list, link) {
4801                 if (output->allocation.width == 0 &&
4802                     output->allocation.height == 0)
4803                         continue;
4804
4805                 (*display->output_configure_handler)(output,
4806                                                      display->user_data);
4807         }
4808 }
4809
4810 void
4811 output_set_user_data(struct output *output, void *data)
4812 {
4813         output->user_data = data;
4814 }
4815
4816 void *
4817 output_get_user_data(struct output *output)
4818 {
4819         return output->user_data;
4820 }
4821
4822 void
4823 output_set_destroy_handler(struct output *output,
4824                            display_output_handler_t handler)
4825 {
4826         output->destroy_handler = handler;
4827         /* FIXME: implement this, once we have way to remove outputs */
4828 }
4829
4830 void
4831 output_get_allocation(struct output *output, struct rectangle *base)
4832 {
4833         struct rectangle allocation = output->allocation;
4834
4835         switch (output->transform) {
4836         case WL_OUTPUT_TRANSFORM_90:
4837         case WL_OUTPUT_TRANSFORM_270:
4838         case WL_OUTPUT_TRANSFORM_FLIPPED_90:
4839         case WL_OUTPUT_TRANSFORM_FLIPPED_270:
4840                 /* Swap width and height */
4841                 allocation.width = output->allocation.height;
4842                 allocation.height = output->allocation.width;
4843                 break;
4844         }
4845
4846         *base = allocation;
4847 }
4848
4849 struct wl_output *
4850 output_get_wl_output(struct output *output)
4851 {
4852         return output->output;
4853 }
4854
4855 enum wl_output_transform
4856 output_get_transform(struct output *output)
4857 {
4858         return output->transform;
4859 }
4860
4861 uint32_t
4862 output_get_scale(struct output *output)
4863 {
4864         return output->scale;
4865 }
4866
4867 const char *
4868 output_get_make(struct output *output)
4869 {
4870         return output->make;
4871 }
4872
4873 const char *
4874 output_get_model(struct output *output)
4875 {
4876         return output->model;
4877 }
4878
4879 static void
4880 fini_xkb(struct input *input)
4881 {
4882         xkb_state_unref(input->xkb.state);
4883         xkb_map_unref(input->xkb.keymap);
4884 }
4885
4886 #define MIN(a,b) ((a) < (b) ? a : b)
4887
4888 static void
4889 display_add_input(struct display *d, uint32_t id)
4890 {
4891         struct input *input;
4892
4893         input = xzalloc(sizeof *input);
4894         input->display = d;
4895         input->seat = wl_registry_bind(d->registry, id, &wl_seat_interface,
4896                                        MIN(d->seat_version, 3));
4897         input->touch_focus = NULL;
4898         input->pointer_focus = NULL;
4899         input->keyboard_focus = NULL;
4900         wl_list_init(&input->touch_point_list);
4901         wl_list_insert(d->input_list.prev, &input->link);
4902
4903         wl_seat_add_listener(input->seat, &seat_listener, input);
4904         wl_seat_set_user_data(input->seat, input);
4905
4906         input->data_device =
4907                 wl_data_device_manager_get_data_device(d->data_device_manager,
4908                                                        input->seat);
4909         wl_data_device_add_listener(input->data_device, &data_device_listener,
4910                                     input);
4911
4912         input->pointer_surface = wl_compositor_create_surface(d->compositor);
4913
4914         input->repeat_timer_fd = timerfd_create(CLOCK_MONOTONIC,
4915                                                 TFD_CLOEXEC | TFD_NONBLOCK);
4916         input->repeat_task.run = keyboard_repeat_func;
4917         display_watch_fd(d, input->repeat_timer_fd,
4918                          EPOLLIN, &input->repeat_task);
4919 }
4920
4921 static void
4922 input_destroy(struct input *input)
4923 {
4924         input_remove_keyboard_focus(input);
4925         input_remove_pointer_focus(input);
4926
4927         if (input->drag_offer)
4928                 data_offer_destroy(input->drag_offer);
4929
4930         if (input->selection_offer)
4931                 data_offer_destroy(input->selection_offer);
4932
4933         wl_data_device_destroy(input->data_device);
4934
4935         if (input->display->seat_version >= 3) {
4936                 if (input->pointer)
4937                         wl_pointer_release(input->pointer);
4938                 if (input->keyboard)
4939                         wl_keyboard_release(input->keyboard);
4940         }
4941
4942         fini_xkb(input);
4943
4944         wl_surface_destroy(input->pointer_surface);
4945
4946         wl_list_remove(&input->link);
4947         wl_seat_destroy(input->seat);
4948         close(input->repeat_timer_fd);
4949         free(input);
4950 }
4951
4952 static void
4953 init_workspace_manager(struct display *d, uint32_t id)
4954 {
4955         d->workspace_manager =
4956                 wl_registry_bind(d->registry, id,
4957                                  &workspace_manager_interface, 1);
4958         if (d->workspace_manager != NULL)
4959                 workspace_manager_add_listener(d->workspace_manager,
4960                                                &workspace_manager_listener,
4961                                                d);
4962 }
4963
4964 static void
4965 shm_format(void *data, struct wl_shm *wl_shm, uint32_t format)
4966 {
4967         struct display *d = data;
4968
4969         if (format == WL_SHM_FORMAT_RGB565)
4970                 d->has_rgb565 = 1;
4971 }
4972
4973 struct wl_shm_listener shm_listener = {
4974         shm_format
4975 };
4976
4977 static void
4978 xdg_shell_ping(void *data, struct xdg_shell *shell, uint32_t serial)
4979 {
4980         xdg_shell_pong(shell, serial);
4981 }
4982
4983 static const struct xdg_shell_listener xdg_shell_listener = {
4984         xdg_shell_ping,
4985 };
4986
4987 #define XDG_VERSION 3 /* The version of xdg-shell that we implement */
4988 #ifdef static_assert
4989 static_assert(XDG_VERSION == XDG_SHELL_VERSION_CURRENT,
4990               "Interface version doesn't match implementation version");
4991 #endif
4992
4993 static void
4994 registry_handle_global(void *data, struct wl_registry *registry, uint32_t id,
4995                        const char *interface, uint32_t version)
4996 {
4997         struct display *d = data;
4998         struct global *global;
4999
5000         global = xmalloc(sizeof *global);
5001         global->name = id;
5002         global->interface = strdup(interface);
5003         global->version = version;
5004         wl_list_insert(d->global_list.prev, &global->link);
5005
5006         if (strcmp(interface, "wl_compositor") == 0) {
5007                 d->compositor = wl_registry_bind(registry, id,
5008                                                  &wl_compositor_interface, 3);
5009         } else if (strcmp(interface, "wl_output") == 0) {
5010                 display_add_output(d, id);
5011         } else if (strcmp(interface, "wl_seat") == 0) {
5012                 d->seat_version = version;
5013                 display_add_input(d, id);
5014         } else if (strcmp(interface, "wl_shm") == 0) {
5015                 d->shm = wl_registry_bind(registry, id, &wl_shm_interface, 1);
5016                 wl_shm_add_listener(d->shm, &shm_listener, d);
5017         } else if (strcmp(interface, "wl_data_device_manager") == 0) {
5018                 d->data_device_manager =
5019                         wl_registry_bind(registry, id,
5020                                          &wl_data_device_manager_interface, 1);
5021         } else if (strcmp(interface, "xdg_shell") == 0) {
5022                 d->xdg_shell = wl_registry_bind(registry, id,
5023                                                 &xdg_shell_interface, 1);
5024                 xdg_shell_use_unstable_version(d->xdg_shell, XDG_VERSION);
5025                 xdg_shell_add_listener(d->xdg_shell, &xdg_shell_listener, d);
5026         } else if (strcmp(interface, "text_cursor_position") == 0) {
5027                 d->text_cursor_position =
5028                         wl_registry_bind(registry, id,
5029                                          &text_cursor_position_interface, 1);
5030         } else if (strcmp(interface, "workspace_manager") == 0) {
5031                 init_workspace_manager(d, id);
5032         } else if (strcmp(interface, "wl_subcompositor") == 0) {
5033                 d->subcompositor =
5034                         wl_registry_bind(registry, id,
5035                                          &wl_subcompositor_interface, 1);
5036         }
5037
5038         if (d->global_handler)
5039                 d->global_handler(d, id, interface, version, d->user_data);
5040 }
5041
5042 static void
5043 registry_handle_global_remove(void *data, struct wl_registry *registry,
5044                               uint32_t name)
5045 {
5046         struct display *d = data;
5047         struct global *global;
5048         struct global *tmp;
5049
5050         wl_list_for_each_safe(global, tmp, &d->global_list, link) {
5051                 if (global->name != name)
5052                         continue;
5053
5054                 if (strcmp(global->interface, "wl_output") == 0)
5055                         display_destroy_output(d, name);
5056
5057                 /* XXX: Should destroy remaining bound globals */
5058
5059                 if (d->global_handler_remove)
5060                         d->global_handler_remove(d, name, global->interface,
5061                                         global->version, d->user_data);
5062
5063                 wl_list_remove(&global->link);
5064                 free(global->interface);
5065                 free(global);
5066         }
5067 }
5068
5069 void *
5070 display_bind(struct display *display, uint32_t name,
5071              const struct wl_interface *interface, uint32_t version)
5072 {
5073         return wl_registry_bind(display->registry, name, interface, version);
5074 }
5075
5076 static const struct wl_registry_listener registry_listener = {
5077         registry_handle_global,
5078         registry_handle_global_remove
5079 };
5080
5081 #ifdef HAVE_CAIRO_EGL
5082 static int
5083 init_egl(struct display *d)
5084 {
5085         EGLint major, minor;
5086         EGLint n;
5087
5088 #ifdef USE_CAIRO_GLESV2
5089 #  define GL_BIT EGL_OPENGL_ES2_BIT
5090 #else
5091 #  define GL_BIT EGL_OPENGL_BIT
5092 #endif
5093
5094         static const EGLint argb_cfg_attribs[] = {
5095                 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
5096                 EGL_RED_SIZE, 1,
5097                 EGL_GREEN_SIZE, 1,
5098                 EGL_BLUE_SIZE, 1,
5099                 EGL_ALPHA_SIZE, 1,
5100                 EGL_DEPTH_SIZE, 1,
5101                 EGL_RENDERABLE_TYPE, GL_BIT,
5102                 EGL_NONE
5103         };
5104
5105 #ifdef USE_CAIRO_GLESV2
5106         static const EGLint context_attribs[] = {
5107                 EGL_CONTEXT_CLIENT_VERSION, 2,
5108                 EGL_NONE
5109         };
5110         EGLint api = EGL_OPENGL_ES_API;
5111 #else
5112         EGLint *context_attribs = NULL;
5113         EGLint api = EGL_OPENGL_API;
5114 #endif
5115
5116         d->dpy = eglGetDisplay(d->display);
5117         if (!eglInitialize(d->dpy, &major, &minor)) {
5118                 fprintf(stderr, "failed to initialize EGL\n");
5119                 return -1;
5120         }
5121
5122         if (!eglBindAPI(api)) {
5123                 fprintf(stderr, "failed to bind EGL client API\n");
5124                 return -1;
5125         }
5126
5127         if (!eglChooseConfig(d->dpy, argb_cfg_attribs,
5128                              &d->argb_config, 1, &n) || n != 1) {
5129                 fprintf(stderr, "failed to choose argb EGL config\n");
5130                 return -1;
5131         }
5132
5133         d->argb_ctx = eglCreateContext(d->dpy, d->argb_config,
5134                                        EGL_NO_CONTEXT, context_attribs);
5135         if (d->argb_ctx == NULL) {
5136                 fprintf(stderr, "failed to create EGL context\n");
5137                 return -1;
5138         }
5139
5140         d->argb_device = cairo_egl_device_create(d->dpy, d->argb_ctx);
5141         if (cairo_device_status(d->argb_device) != CAIRO_STATUS_SUCCESS) {
5142                 fprintf(stderr, "failed to get cairo EGL argb device\n");
5143                 return -1;
5144         }
5145
5146         return 0;
5147 }
5148
5149 static void
5150 fini_egl(struct display *display)
5151 {
5152         cairo_device_destroy(display->argb_device);
5153
5154         eglMakeCurrent(display->dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
5155                        EGL_NO_CONTEXT);
5156
5157         eglTerminate(display->dpy);
5158         eglReleaseThread();
5159 }
5160 #endif
5161
5162 static void
5163 init_dummy_surface(struct display *display)
5164 {
5165         int len;
5166         void *data;
5167
5168         len = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, 1);
5169         data = malloc(len);
5170         display->dummy_surface =
5171                 cairo_image_surface_create_for_data(data, CAIRO_FORMAT_ARGB32,
5172                                                     1, 1, len);
5173         display->dummy_surface_data = data;
5174 }
5175
5176 static void
5177 handle_display_data(struct task *task, uint32_t events)
5178 {
5179         struct display *display =
5180                 container_of(task, struct display, display_task);
5181         struct epoll_event ep;
5182         int ret;
5183
5184         display->display_fd_events = events;
5185
5186         if (events & EPOLLERR || events & EPOLLHUP) {
5187                 display_exit(display);
5188                 return;
5189         }
5190
5191         if (events & EPOLLIN) {
5192                 ret = wl_display_dispatch(display->display);
5193                 if (ret == -1) {
5194                         display_exit(display);
5195                         return;
5196                 }
5197         }
5198
5199         if (events & EPOLLOUT) {
5200                 ret = wl_display_flush(display->display);
5201                 if (ret == 0) {
5202                         ep.events = EPOLLIN | EPOLLERR | EPOLLHUP;
5203                         ep.data.ptr = &display->display_task;
5204                         epoll_ctl(display->epoll_fd, EPOLL_CTL_MOD,
5205                                   display->display_fd, &ep);
5206                 } else if (ret == -1 && errno != EAGAIN) {
5207                         display_exit(display);
5208                         return;
5209                 }
5210         }
5211 }
5212
5213 static void
5214 log_handler(const char *format, va_list args)
5215 {
5216         vfprintf(stderr, format, args);
5217 }
5218
5219 struct display *
5220 display_create(int *argc, char *argv[])
5221 {
5222         struct display *d;
5223
5224         wl_log_set_handler_client(log_handler);
5225
5226         d = zalloc(sizeof *d);
5227         if (d == NULL)
5228                 return NULL;
5229
5230         d->display = wl_display_connect(NULL);
5231         if (d->display == NULL) {
5232                 fprintf(stderr, "failed to connect to Wayland display: %m\n");
5233                 free(d);
5234                 return NULL;
5235         }
5236
5237         d->xkb_context = xkb_context_new(0);
5238         if (d->xkb_context == NULL) {
5239                 fprintf(stderr, "Failed to create XKB context\n");
5240                 free(d);
5241                 return NULL;
5242         }
5243
5244         d->epoll_fd = os_epoll_create_cloexec();
5245         d->display_fd = wl_display_get_fd(d->display);
5246         d->display_task.run = handle_display_data;
5247         display_watch_fd(d, d->display_fd, EPOLLIN | EPOLLERR | EPOLLHUP,
5248                          &d->display_task);
5249
5250         wl_list_init(&d->deferred_list);
5251         wl_list_init(&d->input_list);
5252         wl_list_init(&d->output_list);
5253         wl_list_init(&d->global_list);
5254
5255         d->workspace = 0;
5256         d->workspace_count = 1;
5257
5258         d->registry = wl_display_get_registry(d->display);
5259         wl_registry_add_listener(d->registry, &registry_listener, d);
5260
5261         if (wl_display_dispatch(d->display) < 0) {
5262                 fprintf(stderr, "Failed to process Wayland connection: %m\n");
5263                 return NULL;
5264         }
5265
5266 #ifdef HAVE_CAIRO_EGL
5267         if (init_egl(d) < 0)
5268                 fprintf(stderr, "EGL does not seem to work, "
5269                         "falling back to software rendering and wl_shm.\n");
5270 #endif
5271
5272         create_cursors(d);
5273
5274         d->theme = theme_create();
5275
5276         wl_list_init(&d->window_list);
5277
5278         init_dummy_surface(d);
5279
5280         return d;
5281 }
5282
5283 static void
5284 display_destroy_outputs(struct display *display)
5285 {
5286         struct output *tmp;
5287         struct output *output;
5288
5289         wl_list_for_each_safe(output, tmp, &display->output_list, link)
5290                 output_destroy(output);
5291 }
5292
5293 static void
5294 display_destroy_inputs(struct display *display)
5295 {
5296         struct input *tmp;
5297         struct input *input;
5298
5299         wl_list_for_each_safe(input, tmp, &display->input_list, link)
5300                 input_destroy(input);
5301 }
5302
5303 void
5304 display_destroy(struct display *display)
5305 {
5306         if (!wl_list_empty(&display->window_list))
5307                 fprintf(stderr, "toytoolkit warning: %d windows exist.\n",
5308                         wl_list_length(&display->window_list));
5309
5310         if (!wl_list_empty(&display->deferred_list))
5311                 fprintf(stderr, "toytoolkit warning: deferred tasks exist.\n");
5312
5313         cairo_surface_destroy(display->dummy_surface);
5314         free(display->dummy_surface_data);
5315
5316         display_destroy_outputs(display);
5317         display_destroy_inputs(display);
5318
5319         xkb_context_unref(display->xkb_context);
5320
5321         theme_destroy(display->theme);
5322         destroy_cursors(display);
5323
5324 #ifdef HAVE_CAIRO_EGL
5325         if (display->argb_device)
5326                 fini_egl(display);
5327 #endif
5328
5329         if (display->subcompositor)
5330                 wl_subcompositor_destroy(display->subcompositor);
5331
5332         if (display->xdg_shell)
5333                 xdg_shell_destroy(display->xdg_shell);
5334
5335         if (display->shm)
5336                 wl_shm_destroy(display->shm);
5337
5338         if (display->data_device_manager)
5339                 wl_data_device_manager_destroy(display->data_device_manager);
5340
5341         wl_compositor_destroy(display->compositor);
5342         wl_registry_destroy(display->registry);
5343
5344         close(display->epoll_fd);
5345
5346         if (!(display->display_fd_events & EPOLLERR) &&
5347             !(display->display_fd_events & EPOLLHUP))
5348                 wl_display_flush(display->display);
5349
5350         wl_display_disconnect(display->display);
5351         free(display);
5352 }
5353
5354 void
5355 display_set_user_data(struct display *display, void *data)
5356 {
5357         display->user_data = data;
5358 }
5359
5360 void *
5361 display_get_user_data(struct display *display)
5362 {
5363         return display->user_data;
5364 }
5365
5366 struct wl_display *
5367 display_get_display(struct display *display)
5368 {
5369         return display->display;
5370 }
5371
5372 int
5373 display_has_subcompositor(struct display *display)
5374 {
5375         if (display->subcompositor)
5376                 return 1;
5377
5378         wl_display_roundtrip(display->display);
5379
5380         return display->subcompositor != NULL;
5381 }
5382
5383 cairo_device_t *
5384 display_get_cairo_device(struct display *display)
5385 {
5386         return display->argb_device;
5387 }
5388
5389 struct output *
5390 display_get_output(struct display *display)
5391 {
5392         return container_of(display->output_list.next, struct output, link);
5393 }
5394
5395 struct wl_compositor *
5396 display_get_compositor(struct display *display)
5397 {
5398         return display->compositor;
5399 }
5400
5401 uint32_t
5402 display_get_serial(struct display *display)
5403 {
5404         return display->serial;
5405 }
5406
5407 EGLDisplay
5408 display_get_egl_display(struct display *d)
5409 {
5410         return d->dpy;
5411 }
5412
5413 struct wl_data_source *
5414 display_create_data_source(struct display *display)
5415 {
5416         return wl_data_device_manager_create_data_source(display->data_device_manager);
5417 }
5418
5419 EGLConfig
5420 display_get_argb_egl_config(struct display *d)
5421 {
5422         return d->argb_config;
5423 }
5424
5425 int
5426 display_acquire_window_surface(struct display *display,
5427                                struct window *window,
5428                                EGLContext ctx)
5429 {
5430         struct surface *surface = window->main_surface;
5431
5432         if (surface->buffer_type != WINDOW_BUFFER_TYPE_EGL_WINDOW)
5433                 return -1;
5434
5435         widget_get_cairo_surface(window->main_surface->widget);
5436         return surface->toysurface->acquire(surface->toysurface, ctx);
5437 }
5438
5439 void
5440 display_release_window_surface(struct display *display,
5441                                struct window *window)
5442 {
5443         struct surface *surface = window->main_surface;
5444
5445         if (surface->buffer_type != WINDOW_BUFFER_TYPE_EGL_WINDOW)
5446                 return;
5447
5448         surface->toysurface->release(surface->toysurface);
5449 }
5450
5451 void
5452 display_defer(struct display *display, struct task *task)
5453 {
5454         wl_list_insert(&display->deferred_list, &task->link);
5455 }
5456
5457 void
5458 display_watch_fd(struct display *display,
5459                  int fd, uint32_t events, struct task *task)
5460 {
5461         struct epoll_event ep;
5462
5463         ep.events = events;
5464         ep.data.ptr = task;
5465         epoll_ctl(display->epoll_fd, EPOLL_CTL_ADD, fd, &ep);
5466 }
5467
5468 void
5469 display_unwatch_fd(struct display *display, int fd)
5470 {
5471         epoll_ctl(display->epoll_fd, EPOLL_CTL_DEL, fd, NULL);
5472 }
5473
5474 void
5475 display_run(struct display *display)
5476 {
5477         struct task *task;
5478         struct epoll_event ep[16];
5479         int i, count, ret;
5480
5481         display->running = 1;
5482         while (1) {
5483                 while (!wl_list_empty(&display->deferred_list)) {
5484                         task = container_of(display->deferred_list.prev,
5485                                             struct task, link);
5486                         wl_list_remove(&task->link);
5487                         task->run(task, 0);
5488                 }
5489
5490                 wl_display_dispatch_pending(display->display);
5491
5492                 if (!display->running)
5493                         break;
5494
5495                 ret = wl_display_flush(display->display);
5496                 if (ret < 0 && errno == EAGAIN) {
5497                         ep[0].events =
5498                                 EPOLLIN | EPOLLOUT | EPOLLERR | EPOLLHUP;
5499                         ep[0].data.ptr = &display->display_task;
5500
5501                         epoll_ctl(display->epoll_fd, EPOLL_CTL_MOD,
5502                                   display->display_fd, &ep[0]);
5503                 } else if (ret < 0) {
5504                         break;
5505                 }
5506
5507                 count = epoll_wait(display->epoll_fd,
5508                                    ep, ARRAY_LENGTH(ep), -1);
5509                 for (i = 0; i < count; i++) {
5510                         task = ep[i].data.ptr;
5511                         task->run(task, ep[i].events);
5512                 }
5513         }
5514 }
5515
5516 void
5517 display_exit(struct display *display)
5518 {
5519         display->running = 0;
5520 }
5521
5522 void
5523 keysym_modifiers_add(struct wl_array *modifiers_map,
5524                      const char *name)
5525 {
5526         size_t len = strlen(name) + 1;
5527         char *p;
5528
5529         p = wl_array_add(modifiers_map, len);
5530
5531         if (p == NULL)
5532                 return;
5533
5534         strncpy(p, name, len);
5535 }
5536
5537 static xkb_mod_index_t
5538 keysym_modifiers_get_index(struct wl_array *modifiers_map,
5539                            const char *name)
5540 {
5541         xkb_mod_index_t index = 0;
5542         char *p = modifiers_map->data;
5543
5544         while ((const char *)p < (const char *)(modifiers_map->data + modifiers_map->size)) {
5545                 if (strcmp(p, name) == 0)
5546                         return index;
5547
5548                 index++;
5549                 p += strlen(p) + 1;
5550         }
5551
5552         return XKB_MOD_INVALID;
5553 }
5554
5555 xkb_mod_mask_t
5556 keysym_modifiers_get_mask(struct wl_array *modifiers_map,
5557                           const char *name)
5558 {
5559         xkb_mod_index_t index = keysym_modifiers_get_index(modifiers_map, name);
5560
5561         if (index == XKB_MOD_INVALID)
5562                 return XKB_MOD_INVALID;
5563
5564         return 1 << index;
5565 }
5566
5567 void *
5568 fail_on_null(void *p)
5569 {
5570         if (p == NULL) {
5571                 fprintf(stderr, "%s: out of memory\n", program_invocation_short_name);
5572                 exit(EXIT_FAILURE);
5573         }
5574
5575         return p;
5576 }
5577
5578 void *
5579 xmalloc(size_t s)
5580 {
5581         return fail_on_null(malloc(s));
5582 }
5583
5584 void *
5585 xzalloc(size_t s)
5586 {
5587         return fail_on_null(zalloc(s));
5588 }
5589
5590 char *
5591 xstrdup(const char *s)
5592 {
5593         return fail_on_null(strdup(s));
5594 }
5595
5596 void *
5597 xrealloc(char *p, size_t s)
5598 {
5599         return fail_on_null(realloc(p, s));
5600 }