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