2 * Copyright © 2008 Kristian Høgsberg
3 * Copyright © 2012-2013 Collabora, Ltd.
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.
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
39 #include <sys/epoll.h>
40 #include <sys/timerfd.h>
43 #include <wayland-egl.h>
45 #ifdef USE_CAIRO_GLESV2
46 #include <GLES2/gl2.h>
47 #include <GLES2/gl2ext.h>
52 #include <EGL/eglext.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 */
62 #include <xkbcommon/xkbcommon.h>
63 #include <wayland-cursor.h>
65 #include <linux/input.h>
66 #include <wayland-client.h>
67 #include "../shared/cairo-util.h"
68 #include "text-cursor-position-client-protocol.h"
69 #include "workspaces-client-protocol.h"
70 #include "../shared/os-compatibility.h"
84 struct wl_display *display;
85 struct wl_registry *registry;
86 struct wl_compositor *compositor;
87 struct wl_subcompositor *subcompositor;
88 struct wl_shell *shell;
90 struct wl_data_device_manager *data_device_manager;
91 struct text_cursor_position *text_cursor_position;
92 struct workspace_manager *workspace_manager;
94 EGLConfig argb_config;
96 cairo_device_t *argb_device;
100 uint32_t display_fd_events;
101 struct task display_task;
104 struct wl_list deferred_list;
108 struct wl_list global_list;
109 struct wl_list window_list;
110 struct wl_list input_list;
111 struct wl_list output_list;
115 struct wl_cursor_theme *cursor_theme;
116 struct wl_cursor **cursors;
118 display_output_handler_t output_configure_handler;
119 display_global_handler_t global_handler;
120 display_global_handler_t global_handler_remove;
124 struct xkb_context *xkb_context;
127 uint32_t workspace_count;
129 /* A hack to get text extents for tooltips */
130 cairo_surface_t *dummy_surface;
131 void *dummy_surface_data;
147 struct window_output {
148 struct output *output;
154 * Prepare the surface for drawing. Makes sure there is a surface
155 * of the right size available for rendering, and returns it.
156 * dx,dy are the x,y of wl_surface.attach.
157 * width,height are the new buffer size.
158 * If flags has SURFACE_HINT_RESIZE set, the user is
159 * doing continuous resizing.
160 * Returns the Cairo surface to draw to.
162 cairo_surface_t *(*prepare)(struct toysurface *base, int dx, int dy,
163 int32_t width, int32_t height, uint32_t flags,
164 enum wl_output_transform buffer_transform, int32_t buffer_scale);
167 * Post the surface to the server, returning the server allocation
168 * rectangle. The Cairo surface from prepare() must be destroyed
169 * after calling this.
171 void (*swap)(struct toysurface *base,
172 enum wl_output_transform buffer_transform, int32_t buffer_scale,
173 struct rectangle *server_allocation);
176 * Make the toysurface current with the given EGL context.
177 * Returns 0 on success, and negative of failure.
179 int (*acquire)(struct toysurface *base, EGLContext ctx);
182 * Release the toysurface from the EGL context, returning control
185 void (*release)(struct toysurface *base);
188 * Destroy the toysurface, including the Cairo surface, any
189 * backing storage, and the Wayland protocol objects.
191 void (*destroy)(struct toysurface *base);
195 struct window *window;
197 struct wl_surface *surface;
198 struct wl_subsurface *subsurface;
200 int synchronized_default;
201 struct toysurface *toysurface;
202 struct widget *widget;
204 struct wl_callback *frame_cb;
207 struct rectangle allocation;
208 struct rectangle server_allocation;
210 struct wl_region *input_region;
211 struct wl_region *opaque_region;
213 enum window_buffer_type buffer_type;
214 enum wl_output_transform buffer_transform;
215 int32_t buffer_scale;
217 cairo_surface_t *cairo_surface;
223 struct display *display;
224 struct window *parent;
225 struct wl_list window_output_list;
227 struct rectangle saved_allocation;
228 struct rectangle min_allocation;
229 struct rectangle pending_allocation;
233 int redraw_task_scheduled;
234 struct task redraw_task;
241 int fullscreen_method;
242 int configure_requests;
244 enum preferred_format preferred_format;
246 window_key_handler_t key_handler;
247 window_keyboard_focus_handler_t keyboard_focus_handler;
248 window_data_handler_t data_handler;
249 window_drop_handler_t drop_handler;
250 window_close_handler_t close_handler;
251 window_fullscreen_handler_t fullscreen_handler;
252 window_output_handler_t output_handler;
254 struct surface *main_surface;
255 struct wl_shell_surface *shell_surface;
257 struct window_frame *frame;
259 /* struct surface::link, contains also main_surface */
260 struct wl_list subsurface_list;
267 struct window *window;
268 struct surface *surface;
269 struct tooltip *tooltip;
270 struct wl_list child_list;
272 struct rectangle allocation;
273 widget_resize_handler_t resize_handler;
274 widget_redraw_handler_t redraw_handler;
275 widget_enter_handler_t enter_handler;
276 widget_leave_handler_t leave_handler;
277 widget_motion_handler_t motion_handler;
278 widget_button_handler_t button_handler;
279 widget_touch_down_handler_t touch_down_handler;
280 widget_touch_up_handler_t touch_up_handler;
281 widget_touch_motion_handler_t touch_motion_handler;
282 widget_touch_frame_handler_t touch_frame_handler;
283 widget_touch_cancel_handler_t touch_cancel_handler;
284 widget_axis_handler_t axis_handler;
293 struct widget *widget;
298 struct display *display;
299 struct wl_seat *seat;
300 struct wl_pointer *pointer;
301 struct wl_keyboard *keyboard;
302 struct wl_touch *touch;
303 struct wl_list touch_point_list;
304 struct window *pointer_focus;
305 struct window *keyboard_focus;
306 struct window *touch_focus;
308 uint32_t cursor_anim_start;
309 struct wl_callback *cursor_frame_cb;
310 struct wl_surface *pointer_surface;
312 uint32_t pointer_enter_serial;
313 uint32_t cursor_serial;
317 struct widget *focus_widget;
319 uint32_t grab_button;
321 struct wl_data_device *data_device;
322 struct data_offer *drag_offer;
323 struct data_offer *selection_offer;
326 struct xkb_keymap *keymap;
327 struct xkb_state *state;
328 xkb_mod_mask_t control_mask;
329 xkb_mod_mask_t alt_mask;
330 xkb_mod_mask_t shift_mask;
333 struct task repeat_task;
337 uint32_t repeat_time;
341 struct display *display;
342 struct wl_output *output;
343 uint32_t server_output_id;
344 struct rectangle allocation;
349 display_output_handler_t destroy_handler;
353 struct window_frame {
354 struct widget *widget;
355 struct widget *child;
360 struct window *window;
361 struct widget *widget;
364 const char **entries;
373 struct widget *parent;
374 struct window *window;
375 struct widget *widget;
377 struct task tooltip_task;
383 struct wl_shm_pool *pool;
390 CURSOR_DEFAULT = 100,
394 enum window_location {
396 WINDOW_RESIZING_TOP = 1,
397 WINDOW_RESIZING_BOTTOM = 2,
398 WINDOW_RESIZING_LEFT = 4,
399 WINDOW_RESIZING_TOP_LEFT = 5,
400 WINDOW_RESIZING_BOTTOM_LEFT = 6,
401 WINDOW_RESIZING_RIGHT = 8,
402 WINDOW_RESIZING_TOP_RIGHT = 9,
403 WINDOW_RESIZING_BOTTOM_RIGHT = 10,
404 WINDOW_RESIZING_MASK = 15,
405 WINDOW_EXTERIOR = 16,
406 WINDOW_TITLEBAR = 17,
407 WINDOW_CLIENT_AREA = 18,
410 static const cairo_user_data_key_t shm_surface_data_key;
417 debug_print(void *proxy, int line, const char *func, const char *fmt, ...)
418 __attribute__ ((format (printf, 4, 5)));
421 debug_print(void *proxy, int line, const char *func, const char *fmt, ...)
426 gettimeofday(&tv, NULL);
427 fprintf(stderr, "%8ld.%03ld ",
428 (long)tv.tv_sec & 0xffff, (long)tv.tv_usec / 1000);
431 fprintf(stderr, "%s@%d ",
432 wl_proxy_get_class(proxy), wl_proxy_get_id(proxy));
434 /*fprintf(stderr, __FILE__ ":%d:%s ", line, func);*/
435 fprintf(stderr, "%s ", func);
438 vfprintf(stderr, fmt, ap);
442 #define DBG(fmt, ...) \
443 debug_print(NULL, __LINE__, __func__, fmt, ##__VA_ARGS__)
445 #define DBG_OBJ(obj, fmt, ...) \
446 debug_print(obj, __LINE__, __func__, fmt, ##__VA_ARGS__)
450 #define DBG(...) do {} while (0)
451 #define DBG_OBJ(...) do {} while (0)
456 surface_to_buffer_size (enum wl_output_transform buffer_transform, int32_t buffer_scale, int32_t *width, int32_t *height)
460 switch (buffer_transform) {
461 case WL_OUTPUT_TRANSFORM_90:
462 case WL_OUTPUT_TRANSFORM_270:
463 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
464 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
473 *width *= buffer_scale;
474 *height *= buffer_scale;
478 buffer_to_surface_size (enum wl_output_transform buffer_transform, int32_t buffer_scale, int32_t *width, int32_t *height)
482 switch (buffer_transform) {
483 case WL_OUTPUT_TRANSFORM_90:
484 case WL_OUTPUT_TRANSFORM_270:
485 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
486 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
495 *width /= buffer_scale;
496 *height /= buffer_scale;
499 #ifdef HAVE_CAIRO_EGL
501 struct egl_window_surface {
502 struct toysurface base;
503 cairo_surface_t *cairo_surface;
504 struct display *display;
505 struct wl_surface *surface;
506 struct wl_egl_window *egl_window;
507 EGLSurface egl_surface;
510 static struct egl_window_surface *
511 to_egl_window_surface(struct toysurface *base)
513 return container_of(base, struct egl_window_surface, base);
516 static cairo_surface_t *
517 egl_window_surface_prepare(struct toysurface *base, int dx, int dy,
518 int32_t width, int32_t height, uint32_t flags,
519 enum wl_output_transform buffer_transform, int32_t buffer_scale)
521 struct egl_window_surface *surface = to_egl_window_surface(base);
523 surface_to_buffer_size (buffer_transform, buffer_scale, &width, &height);
525 wl_egl_window_resize(surface->egl_window, width, height, dx, dy);
526 cairo_gl_surface_set_size(surface->cairo_surface, width, height);
528 return cairo_surface_reference(surface->cairo_surface);
532 egl_window_surface_swap(struct toysurface *base,
533 enum wl_output_transform buffer_transform, int32_t buffer_scale,
534 struct rectangle *server_allocation)
536 struct egl_window_surface *surface = to_egl_window_surface(base);
538 cairo_gl_surface_swapbuffers(surface->cairo_surface);
539 wl_egl_window_get_attached_size(surface->egl_window,
540 &server_allocation->width,
541 &server_allocation->height);
543 buffer_to_surface_size (buffer_transform, buffer_scale,
544 &server_allocation->width,
545 &server_allocation->height);
549 egl_window_surface_acquire(struct toysurface *base, EGLContext ctx)
551 struct egl_window_surface *surface = to_egl_window_surface(base);
552 cairo_device_t *device;
554 device = cairo_surface_get_device(surface->cairo_surface);
559 if (device == surface->display->argb_device)
560 ctx = surface->display->argb_ctx;
565 cairo_device_flush(device);
566 cairo_device_acquire(device);
567 if (!eglMakeCurrent(surface->display->dpy, surface->egl_surface,
568 surface->egl_surface, ctx))
569 fprintf(stderr, "failed to make surface current\n");
575 egl_window_surface_release(struct toysurface *base)
577 struct egl_window_surface *surface = to_egl_window_surface(base);
578 cairo_device_t *device;
580 device = cairo_surface_get_device(surface->cairo_surface);
584 if (!eglMakeCurrent(surface->display->dpy, NULL, NULL,
585 surface->display->argb_ctx))
586 fprintf(stderr, "failed to make context current\n");
588 cairo_device_release(device);
592 egl_window_surface_destroy(struct toysurface *base)
594 struct egl_window_surface *surface = to_egl_window_surface(base);
595 struct display *d = surface->display;
597 cairo_surface_destroy(surface->cairo_surface);
598 eglDestroySurface(d->dpy, surface->egl_surface);
599 wl_egl_window_destroy(surface->egl_window);
600 surface->surface = NULL;
605 static struct toysurface *
606 egl_window_surface_create(struct display *display,
607 struct wl_surface *wl_surface,
609 struct rectangle *rectangle)
611 struct egl_window_surface *surface;
613 if (display->dpy == EGL_NO_DISPLAY)
616 surface = calloc(1, sizeof *surface);
620 surface->base.prepare = egl_window_surface_prepare;
621 surface->base.swap = egl_window_surface_swap;
622 surface->base.acquire = egl_window_surface_acquire;
623 surface->base.release = egl_window_surface_release;
624 surface->base.destroy = egl_window_surface_destroy;
626 surface->display = display;
627 surface->surface = wl_surface;
629 surface->egl_window = wl_egl_window_create(surface->surface,
633 surface->egl_surface = eglCreateWindowSurface(display->dpy,
634 display->argb_config,
638 surface->cairo_surface =
639 cairo_gl_surface_create_for_egl(display->argb_device,
640 surface->egl_surface,
644 return &surface->base;
649 static struct toysurface *
650 egl_window_surface_create(struct display *display,
651 struct wl_surface *wl_surface,
653 struct rectangle *rectangle)
660 struct shm_surface_data {
661 struct wl_buffer *buffer;
662 struct shm_pool *pool;
666 display_get_buffer_for_surface(struct display *display,
667 cairo_surface_t *surface)
669 struct shm_surface_data *data;
671 data = cairo_surface_get_user_data(surface, &shm_surface_data_key);
677 shm_pool_destroy(struct shm_pool *pool);
680 shm_surface_data_destroy(void *p)
682 struct shm_surface_data *data = p;
684 wl_buffer_destroy(data->buffer);
686 shm_pool_destroy(data->pool);
691 static struct wl_shm_pool *
692 make_shm_pool(struct display *display, int size, void **data)
694 struct wl_shm_pool *pool;
697 fd = os_create_anonymous_file(size);
699 fprintf(stderr, "creating a buffer file for %d B failed: %m\n",
704 *data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
705 if (*data == MAP_FAILED) {
706 fprintf(stderr, "mmap failed: %m\n");
711 pool = wl_shm_create_pool(display->shm, fd, size);
718 static struct shm_pool *
719 shm_pool_create(struct display *display, size_t size)
721 struct shm_pool *pool = malloc(sizeof *pool);
726 pool->pool = make_shm_pool(display, size, &pool->data);
739 shm_pool_allocate(struct shm_pool *pool, size_t size, int *offset)
741 if (pool->used + size > pool->size)
744 *offset = pool->used;
747 return (char *) pool->data + *offset;
750 /* destroy the pool. this does not unmap the memory though */
752 shm_pool_destroy(struct shm_pool *pool)
754 munmap(pool->data, pool->size);
755 wl_shm_pool_destroy(pool->pool);
759 /* Start allocating from the beginning of the pool again */
761 shm_pool_reset(struct shm_pool *pool)
767 data_length_for_shm_surface(struct rectangle *rect)
771 stride = cairo_format_stride_for_width (CAIRO_FORMAT_ARGB32,
773 return stride * rect->height;
776 static cairo_surface_t *
777 display_create_shm_surface_from_pool(struct display *display,
778 struct rectangle *rectangle,
779 uint32_t flags, struct shm_pool *pool)
781 struct shm_surface_data *data;
783 cairo_surface_t *surface;
784 cairo_format_t cairo_format;
785 int stride, length, offset;
788 data = malloc(sizeof *data);
792 if (flags & SURFACE_HINT_RGB565 && display->has_rgb565)
793 cairo_format = CAIRO_FORMAT_RGB16_565;
795 cairo_format = CAIRO_FORMAT_ARGB32;
797 stride = cairo_format_stride_for_width (cairo_format, rectangle->width);
798 length = stride * rectangle->height;
800 map = shm_pool_allocate(pool, length, &offset);
807 surface = cairo_image_surface_create_for_data (map,
813 cairo_surface_set_user_data(surface, &shm_surface_data_key,
814 data, shm_surface_data_destroy);
816 if (flags & SURFACE_HINT_RGB565 && display->has_rgb565)
817 format = WL_SHM_FORMAT_RGB565;
819 if (flags & SURFACE_OPAQUE)
820 format = WL_SHM_FORMAT_XRGB8888;
822 format = WL_SHM_FORMAT_ARGB8888;
825 data->buffer = wl_shm_pool_create_buffer(pool->pool, offset,
833 static cairo_surface_t *
834 display_create_shm_surface(struct display *display,
835 struct rectangle *rectangle, uint32_t flags,
836 struct shm_pool *alternate_pool,
837 struct shm_surface_data **data_ret)
839 struct shm_surface_data *data;
840 struct shm_pool *pool;
841 cairo_surface_t *surface;
843 if (alternate_pool) {
844 shm_pool_reset(alternate_pool);
845 surface = display_create_shm_surface_from_pool(display,
850 data = cairo_surface_get_user_data(surface,
851 &shm_surface_data_key);
856 pool = shm_pool_create(display,
857 data_length_for_shm_surface(rectangle));
862 display_create_shm_surface_from_pool(display, rectangle,
866 shm_pool_destroy(pool);
870 /* make sure we destroy the pool when the surface is destroyed */
871 data = cairo_surface_get_user_data(surface, &shm_surface_data_key);
882 check_size(struct rectangle *rect)
884 if (rect->width && rect->height)
887 fprintf(stderr, "tried to create surface of "
888 "width: %d, height: %d\n", rect->width, rect->height);
893 display_create_surface(struct display *display,
894 struct wl_surface *surface,
895 struct rectangle *rectangle,
898 if (check_size(rectangle) < 0)
901 assert(flags & SURFACE_SHM);
902 return display_create_shm_surface(display, rectangle, flags,
906 struct shm_surface_leaf {
907 cairo_surface_t *cairo_surface;
908 /* 'data' is automatically destroyed, when 'cairo_surface' is */
909 struct shm_surface_data *data;
911 struct shm_pool *resize_pool;
916 shm_surface_leaf_release(struct shm_surface_leaf *leaf)
918 if (leaf->cairo_surface)
919 cairo_surface_destroy(leaf->cairo_surface);
920 /* leaf->data already destroyed via cairo private */
922 if (leaf->resize_pool)
923 shm_pool_destroy(leaf->resize_pool);
925 memset(leaf, 0, sizeof *leaf);
931 struct toysurface base;
932 struct display *display;
933 struct wl_surface *surface;
937 struct shm_surface_leaf leaf[MAX_LEAVES];
938 struct shm_surface_leaf *current;
941 static struct shm_surface *
942 to_shm_surface(struct toysurface *base)
944 return container_of(base, struct shm_surface, base);
948 shm_surface_buffer_state_debug(struct shm_surface *surface, const char *msg)
951 struct shm_surface_leaf *leaf;
952 char bufs[MAX_LEAVES + 1];
955 for (i = 0; i < MAX_LEAVES; i++) {
956 leaf = &surface->leaf[i];
960 else if (leaf->cairo_surface)
966 bufs[MAX_LEAVES] = '\0';
967 DBG_OBJ(surface->surface, "%s, leaves [%s]\n", msg, bufs);
972 shm_surface_buffer_release(void *data, struct wl_buffer *buffer)
974 struct shm_surface *surface = data;
975 struct shm_surface_leaf *leaf;
979 shm_surface_buffer_state_debug(surface, "buffer_release before");
981 for (i = 0; i < MAX_LEAVES; i++) {
982 leaf = &surface->leaf[i];
983 if (leaf->data && leaf->data->buffer == buffer) {
988 assert(i < MAX_LEAVES && "unknown buffer released");
990 /* Leave one free leaf with storage, release others */
992 for (i = 0; i < MAX_LEAVES; i++) {
993 leaf = &surface->leaf[i];
995 if (!leaf->cairo_surface || leaf->busy)
1001 shm_surface_leaf_release(leaf);
1004 shm_surface_buffer_state_debug(surface, "buffer_release after");
1007 static const struct wl_buffer_listener shm_surface_buffer_listener = {
1008 shm_surface_buffer_release
1011 static cairo_surface_t *
1012 shm_surface_prepare(struct toysurface *base, int dx, int dy,
1013 int32_t width, int32_t height, uint32_t flags,
1014 enum wl_output_transform buffer_transform, int32_t buffer_scale)
1016 int resize_hint = !!(flags & SURFACE_HINT_RESIZE);
1017 struct shm_surface *surface = to_shm_surface(base);
1018 struct rectangle rect = { 0};
1019 struct shm_surface_leaf *leaf = NULL;
1025 /* pick a free buffer, preferrably one that already has storage */
1026 for (i = 0; i < MAX_LEAVES; i++) {
1027 if (surface->leaf[i].busy)
1030 if (!leaf || surface->leaf[i].cairo_surface)
1031 leaf = &surface->leaf[i];
1033 DBG_OBJ(surface->surface, "pick leaf %d\n",
1034 (int)(leaf - &surface->leaf[0]));
1037 fprintf(stderr, "%s: all buffers are held by the server.\n",
1043 if (!resize_hint && leaf->resize_pool) {
1044 cairo_surface_destroy(leaf->cairo_surface);
1045 leaf->cairo_surface = NULL;
1046 shm_pool_destroy(leaf->resize_pool);
1047 leaf->resize_pool = NULL;
1050 surface_to_buffer_size (buffer_transform, buffer_scale, &width, &height);
1052 if (leaf->cairo_surface &&
1053 cairo_image_surface_get_width(leaf->cairo_surface) == width &&
1054 cairo_image_surface_get_height(leaf->cairo_surface) == height)
1057 if (leaf->cairo_surface)
1058 cairo_surface_destroy(leaf->cairo_surface);
1060 #ifdef USE_RESIZE_POOL
1061 if (resize_hint && !leaf->resize_pool) {
1062 /* Create a big pool to allocate from, while continuously
1063 * resizing. Mmapping a new pool in the server
1064 * is relatively expensive, so reusing a pool performs
1065 * better, but may temporarily reserve unneeded memory.
1067 /* We should probably base this number on the output size. */
1068 leaf->resize_pool = shm_pool_create(surface->display,
1074 rect.height = height;
1076 leaf->cairo_surface =
1077 display_create_shm_surface(surface->display, &rect,
1081 wl_buffer_add_listener(leaf->data->buffer,
1082 &shm_surface_buffer_listener, surface);
1085 surface->current = leaf;
1087 return cairo_surface_reference(leaf->cairo_surface);
1091 shm_surface_swap(struct toysurface *base,
1092 enum wl_output_transform buffer_transform, int32_t buffer_scale,
1093 struct rectangle *server_allocation)
1095 struct shm_surface *surface = to_shm_surface(base);
1096 struct shm_surface_leaf *leaf = surface->current;
1098 server_allocation->width =
1099 cairo_image_surface_get_width(leaf->cairo_surface);
1100 server_allocation->height =
1101 cairo_image_surface_get_height(leaf->cairo_surface);
1103 buffer_to_surface_size (buffer_transform, buffer_scale,
1104 &server_allocation->width,
1105 &server_allocation->height);
1107 wl_surface_attach(surface->surface, leaf->data->buffer,
1108 surface->dx, surface->dy);
1109 wl_surface_damage(surface->surface, 0, 0,
1110 server_allocation->width, server_allocation->height);
1111 wl_surface_commit(surface->surface);
1113 DBG_OBJ(surface->surface, "leaf %d busy\n",
1114 (int)(leaf - &surface->leaf[0]));
1117 surface->current = NULL;
1121 shm_surface_acquire(struct toysurface *base, EGLContext ctx)
1127 shm_surface_release(struct toysurface *base)
1132 shm_surface_destroy(struct toysurface *base)
1134 struct shm_surface *surface = to_shm_surface(base);
1137 for (i = 0; i < MAX_LEAVES; i++)
1138 shm_surface_leaf_release(&surface->leaf[i]);
1143 static struct toysurface *
1144 shm_surface_create(struct display *display, struct wl_surface *wl_surface,
1145 uint32_t flags, struct rectangle *rectangle)
1147 struct shm_surface *surface;
1148 DBG_OBJ(wl_surface, "\n");
1150 surface = xmalloc(sizeof *surface);
1151 memset(surface, 0, sizeof *surface);
1156 surface->base.prepare = shm_surface_prepare;
1157 surface->base.swap = shm_surface_swap;
1158 surface->base.acquire = shm_surface_acquire;
1159 surface->base.release = shm_surface_release;
1160 surface->base.destroy = shm_surface_destroy;
1162 surface->display = display;
1163 surface->surface = wl_surface;
1164 surface->flags = flags;
1166 return &surface->base;
1170 * The following correspondences between file names and cursors was copied
1171 * from: https://bugs.kde.org/attachment.cgi?id=67313
1174 static const char *bottom_left_corners[] = {
1175 "bottom_left_corner",
1180 static const char *bottom_right_corners[] = {
1181 "bottom_right_corner",
1186 static const char *bottom_sides[] = {
1192 static const char *grabbings[] = {
1195 "208530c400c041818281048008011002"
1198 static const char *left_ptrs[] = {
1205 static const char *left_sides[] = {
1211 static const char *right_sides[] = {
1217 static const char *top_left_corners[] = {
1223 static const char *top_right_corners[] = {
1229 static const char *top_sides[] = {
1235 static const char *xterms[] = {
1241 static const char *hand1s[] = {
1245 "e29285e634086352946a0e7090d73106"
1248 static const char *watches[] = {
1251 "0426c94ea35c87780ff01dc239897213"
1254 struct cursor_alternatives {
1259 static const struct cursor_alternatives cursors[] = {
1260 {bottom_left_corners, ARRAY_LENGTH(bottom_left_corners)},
1261 {bottom_right_corners, ARRAY_LENGTH(bottom_right_corners)},
1262 {bottom_sides, ARRAY_LENGTH(bottom_sides)},
1263 {grabbings, ARRAY_LENGTH(grabbings)},
1264 {left_ptrs, ARRAY_LENGTH(left_ptrs)},
1265 {left_sides, ARRAY_LENGTH(left_sides)},
1266 {right_sides, ARRAY_LENGTH(right_sides)},
1267 {top_left_corners, ARRAY_LENGTH(top_left_corners)},
1268 {top_right_corners, ARRAY_LENGTH(top_right_corners)},
1269 {top_sides, ARRAY_LENGTH(top_sides)},
1270 {xterms, ARRAY_LENGTH(xterms)},
1271 {hand1s, ARRAY_LENGTH(hand1s)},
1272 {watches, ARRAY_LENGTH(watches)},
1276 create_cursors(struct display *display)
1278 struct weston_config *config;
1279 struct weston_config_section *s;
1283 struct wl_cursor *cursor;
1285 config = weston_config_parse("weston.ini");
1286 s = weston_config_get_section(config, "shell", NULL, NULL);
1287 weston_config_section_get_string(s, "cursor-theme", &theme, NULL);
1288 weston_config_section_get_int(s, "cursor-size", &size, 32);
1289 weston_config_destroy(config);
1291 display->cursor_theme = wl_cursor_theme_load(theme, size, display->shm);
1294 xmalloc(ARRAY_LENGTH(cursors) * sizeof display->cursors[0]);
1296 for (i = 0; i < ARRAY_LENGTH(cursors); i++) {
1298 for (j = 0; !cursor && j < cursors[i].count; ++j)
1299 cursor = wl_cursor_theme_get_cursor(
1300 display->cursor_theme, cursors[i].names[j]);
1303 fprintf(stderr, "could not load cursor '%s'\n",
1304 cursors[i].names[0]);
1306 display->cursors[i] = cursor;
1311 destroy_cursors(struct display *display)
1313 wl_cursor_theme_destroy(display->cursor_theme);
1314 free(display->cursors);
1317 struct wl_cursor_image *
1318 display_get_pointer_image(struct display *display, int pointer)
1320 struct wl_cursor *cursor = display->cursors[pointer];
1322 return cursor ? cursor->images[0] : NULL;
1326 surface_flush(struct surface *surface)
1328 if (!surface->cairo_surface)
1331 if (surface->opaque_region) {
1332 wl_surface_set_opaque_region(surface->surface,
1333 surface->opaque_region);
1334 wl_region_destroy(surface->opaque_region);
1335 surface->opaque_region = NULL;
1338 if (surface->input_region) {
1339 wl_surface_set_input_region(surface->surface,
1340 surface->input_region);
1341 wl_region_destroy(surface->input_region);
1342 surface->input_region = NULL;
1345 surface->toysurface->swap(surface->toysurface,
1346 surface->buffer_transform, surface->buffer_scale,
1347 &surface->server_allocation);
1349 cairo_surface_destroy(surface->cairo_surface);
1350 surface->cairo_surface = NULL;
1354 window_has_focus(struct window *window)
1356 return window->focus_count > 0;
1360 window_flush(struct window *window)
1362 struct surface *surface;
1364 if (window->type == TYPE_NONE) {
1365 window->type = TYPE_TOPLEVEL;
1366 if (window->shell_surface)
1367 wl_shell_surface_set_toplevel(window->shell_surface);
1370 wl_list_for_each(surface, &window->subsurface_list, link) {
1371 if (surface == window->main_surface)
1374 surface_flush(surface);
1377 surface_flush(window->main_surface);
1381 window_get_display(struct window *window)
1383 return window->display;
1387 surface_create_surface(struct surface *surface, int dx, int dy, uint32_t flags)
1389 struct display *display = surface->window->display;
1390 struct rectangle allocation = surface->allocation;
1392 if (!surface->toysurface && display->dpy &&
1393 surface->buffer_type == WINDOW_BUFFER_TYPE_EGL_WINDOW) {
1394 surface->toysurface =
1395 egl_window_surface_create(display,
1401 if (!surface->toysurface)
1402 surface->toysurface = shm_surface_create(display,
1404 flags, &allocation);
1406 surface->cairo_surface = surface->toysurface->prepare(
1407 surface->toysurface, dx, dy,
1408 allocation.width, allocation.height, flags,
1409 surface->buffer_transform, surface->buffer_scale);
1413 window_create_main_surface(struct window *window)
1415 struct surface *surface = window->main_surface;
1420 if (window->resizing)
1421 flags |= SURFACE_HINT_RESIZE;
1423 if (window->preferred_format == WINDOW_PREFERRED_FORMAT_RGB565)
1424 flags |= SURFACE_HINT_RGB565;
1426 if (window->resize_edges & WINDOW_RESIZING_LEFT)
1427 dx = surface->server_allocation.width -
1428 surface->allocation.width;
1430 if (window->resize_edges & WINDOW_RESIZING_TOP)
1431 dy = surface->server_allocation.height -
1432 surface->allocation.height;
1434 window->resize_edges = 0;
1436 surface_create_surface(surface, dx, dy, flags);
1440 window_get_buffer_transform(struct window *window)
1442 return window->main_surface->buffer_transform;
1446 window_set_buffer_transform(struct window *window,
1447 enum wl_output_transform transform)
1449 window->main_surface->buffer_transform = transform;
1450 wl_surface_set_buffer_transform(window->main_surface->surface,
1455 window_set_buffer_scale(struct window *window,
1458 window->main_surface->buffer_scale = scale;
1459 wl_surface_set_buffer_scale(window->main_surface->surface,
1464 window_get_buffer_scale(struct window *window)
1466 return window->main_surface->buffer_scale;
1470 window_get_output_scale(struct window *window)
1472 struct window_output *window_output;
1473 struct window_output *window_output_tmp;
1476 wl_list_for_each_safe(window_output, window_output_tmp,
1477 &window->window_output_list, link) {
1478 if (window_output->output->scale > scale)
1479 scale = window_output->output->scale;
1485 static void window_frame_destroy(struct window_frame *frame);
1488 surface_destroy(struct surface *surface)
1490 if (surface->frame_cb)
1491 wl_callback_destroy(surface->frame_cb);
1493 if (surface->input_region)
1494 wl_region_destroy(surface->input_region);
1496 if (surface->opaque_region)
1497 wl_region_destroy(surface->opaque_region);
1499 if (surface->subsurface)
1500 wl_subsurface_destroy(surface->subsurface);
1502 wl_surface_destroy(surface->surface);
1504 if (surface->toysurface)
1505 surface->toysurface->destroy(surface->toysurface);
1507 wl_list_remove(&surface->link);
1512 window_destroy(struct window *window)
1514 struct display *display = window->display;
1515 struct input *input;
1516 struct window_output *window_output;
1517 struct window_output *window_output_tmp;
1519 wl_list_remove(&window->redraw_task.link);
1521 wl_list_for_each(input, &display->input_list, link) {
1522 if (input->touch_focus == window)
1523 input->touch_focus = NULL;
1524 if (input->pointer_focus == window)
1525 input->pointer_focus = NULL;
1526 if (input->keyboard_focus == window)
1527 input->keyboard_focus = NULL;
1528 if (input->focus_widget &&
1529 input->focus_widget->window == window)
1530 input->focus_widget = NULL;
1533 wl_list_for_each_safe(window_output, window_output_tmp,
1534 &window->window_output_list, link) {
1535 free (window_output);
1539 window_frame_destroy(window->frame);
1541 if (window->shell_surface)
1542 wl_shell_surface_destroy(window->shell_surface);
1544 surface_destroy(window->main_surface);
1546 wl_list_remove(&window->link);
1548 free(window->title);
1552 static struct widget *
1553 widget_find_widget(struct widget *widget, int32_t x, int32_t y)
1555 struct widget *child, *target;
1557 wl_list_for_each(child, &widget->child_list, link) {
1558 target = widget_find_widget(child, x, y);
1563 if (widget->allocation.x <= x &&
1564 x < widget->allocation.x + widget->allocation.width &&
1565 widget->allocation.y <= y &&
1566 y < widget->allocation.y + widget->allocation.height) {
1573 static struct widget *
1574 window_find_widget(struct window *window, int32_t x, int32_t y)
1576 struct surface *surface;
1577 struct widget *widget;
1579 wl_list_for_each(surface, &window->subsurface_list, link) {
1580 widget = widget_find_widget(surface->widget, x, y);
1588 static struct widget *
1589 widget_create(struct window *window, struct surface *surface, void *data)
1591 struct widget *widget;
1593 widget = xzalloc(sizeof *widget);
1594 widget->window = window;
1595 widget->surface = surface;
1596 widget->user_data = data;
1597 widget->allocation = surface->allocation;
1598 wl_list_init(&widget->child_list);
1600 widget->tooltip = NULL;
1601 widget->tooltip_count = 0;
1602 widget->default_cursor = CURSOR_LEFT_PTR;
1608 window_add_widget(struct window *window, void *data)
1610 struct widget *widget;
1612 widget = widget_create(window, window->main_surface, data);
1613 wl_list_init(&widget->link);
1614 window->main_surface->widget = widget;
1620 widget_add_widget(struct widget *parent, void *data)
1622 struct widget *widget;
1624 widget = widget_create(parent->window, parent->surface, data);
1625 wl_list_insert(parent->child_list.prev, &widget->link);
1631 widget_destroy(struct widget *widget)
1633 struct display *display = widget->window->display;
1634 struct surface *surface = widget->surface;
1635 struct input *input;
1637 /* Destroy the sub-surface along with the root widget */
1638 if (surface->widget == widget && surface->subsurface)
1639 surface_destroy(widget->surface);
1641 if (widget->tooltip) {
1642 free(widget->tooltip);
1643 widget->tooltip = NULL;
1646 wl_list_for_each(input, &display->input_list, link) {
1647 if (input->focus_widget == widget)
1648 input->focus_widget = NULL;
1651 wl_list_remove(&widget->link);
1656 widget_set_default_cursor(struct widget *widget, int cursor)
1658 widget->default_cursor = cursor;
1662 widget_get_allocation(struct widget *widget, struct rectangle *allocation)
1664 *allocation = widget->allocation;
1668 widget_set_size(struct widget *widget, int32_t width, int32_t height)
1670 widget->allocation.width = width;
1671 widget->allocation.height = height;
1675 widget_set_allocation(struct widget *widget,
1676 int32_t x, int32_t y, int32_t width, int32_t height)
1678 widget->allocation.x = x;
1679 widget->allocation.y = y;
1680 widget_set_size(widget, width, height);
1684 widget_set_transparent(struct widget *widget, int transparent)
1686 widget->opaque = !transparent;
1690 widget_get_user_data(struct widget *widget)
1692 return widget->user_data;
1695 static cairo_surface_t *
1696 widget_get_cairo_surface(struct widget *widget)
1698 struct surface *surface = widget->surface;
1699 struct window *window = widget->window;
1701 if (!surface->cairo_surface) {
1702 if (surface == window->main_surface)
1703 window_create_main_surface(window);
1705 surface_create_surface(surface, 0, 0, 0);
1708 return surface->cairo_surface;
1712 widget_cairo_update_transform(struct widget *widget, cairo_t *cr)
1714 struct surface *surface = widget->surface;
1717 enum wl_output_transform transform;
1718 int surface_width, surface_height;
1719 int translate_x, translate_y;
1722 surface_width = surface->allocation.width;
1723 surface_height = surface->allocation.height;
1725 transform = surface->buffer_transform;
1726 scale = surface->buffer_scale;
1728 switch (transform) {
1729 case WL_OUTPUT_TRANSFORM_FLIPPED:
1730 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
1731 case WL_OUTPUT_TRANSFORM_FLIPPED_180:
1732 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
1733 cairo_matrix_init(&m, -1, 0, 0, 1, 0, 0);
1736 cairo_matrix_init_identity(&m);
1740 switch (transform) {
1741 case WL_OUTPUT_TRANSFORM_NORMAL:
1747 case WL_OUTPUT_TRANSFORM_FLIPPED:
1749 translate_x = surface_width;
1752 case WL_OUTPUT_TRANSFORM_90:
1754 translate_x = surface_height;
1757 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
1759 translate_x = surface_height;
1760 translate_y = surface_width;
1762 case WL_OUTPUT_TRANSFORM_180:
1764 translate_x = surface_width;
1765 translate_y = surface_height;
1767 case WL_OUTPUT_TRANSFORM_FLIPPED_180:
1770 translate_y = surface_height;
1772 case WL_OUTPUT_TRANSFORM_270:
1773 angle = M_PI + M_PI_2;
1775 translate_y = surface_width;
1777 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
1778 angle = M_PI + M_PI_2;
1784 cairo_scale(cr, scale, scale);
1785 cairo_translate(cr, translate_x, translate_y);
1786 cairo_rotate(cr, angle);
1787 cairo_transform(cr, &m);
1791 widget_cairo_create(struct widget *widget)
1793 struct surface *surface = widget->surface;
1794 cairo_surface_t *cairo_surface;
1797 cairo_surface = widget_get_cairo_surface(widget);
1798 cr = cairo_create(cairo_surface);
1800 widget_cairo_update_transform(widget, cr);
1802 cairo_translate(cr, -surface->allocation.x, -surface->allocation.y);
1808 widget_get_wl_surface(struct widget *widget)
1810 return widget->surface->surface;
1814 widget_get_last_time(struct widget *widget)
1816 return widget->surface->last_time;
1820 widget_input_region_add(struct widget *widget, const struct rectangle *rect)
1822 struct wl_compositor *comp = widget->window->display->compositor;
1823 struct surface *surface = widget->surface;
1825 if (!surface->input_region)
1826 surface->input_region = wl_compositor_create_region(comp);
1829 wl_region_add(surface->input_region,
1830 rect->x, rect->y, rect->width, rect->height);
1835 widget_set_resize_handler(struct widget *widget,
1836 widget_resize_handler_t handler)
1838 widget->resize_handler = handler;
1842 widget_set_redraw_handler(struct widget *widget,
1843 widget_redraw_handler_t handler)
1845 widget->redraw_handler = handler;
1849 widget_set_enter_handler(struct widget *widget, widget_enter_handler_t handler)
1851 widget->enter_handler = handler;
1855 widget_set_leave_handler(struct widget *widget, widget_leave_handler_t handler)
1857 widget->leave_handler = handler;
1861 widget_set_motion_handler(struct widget *widget,
1862 widget_motion_handler_t handler)
1864 widget->motion_handler = handler;
1868 widget_set_button_handler(struct widget *widget,
1869 widget_button_handler_t handler)
1871 widget->button_handler = handler;
1875 widget_set_touch_up_handler(struct widget *widget,
1876 widget_touch_up_handler_t handler)
1878 widget->touch_up_handler = handler;
1882 widget_set_touch_down_handler(struct widget *widget,
1883 widget_touch_down_handler_t handler)
1885 widget->touch_down_handler = handler;
1889 widget_set_touch_motion_handler(struct widget *widget,
1890 widget_touch_motion_handler_t handler)
1892 widget->touch_motion_handler = handler;
1896 widget_set_touch_frame_handler(struct widget *widget,
1897 widget_touch_frame_handler_t handler)
1899 widget->touch_frame_handler = handler;
1903 widget_set_touch_cancel_handler(struct widget *widget,
1904 widget_touch_cancel_handler_t handler)
1906 widget->touch_cancel_handler = handler;
1910 widget_set_axis_handler(struct widget *widget,
1911 widget_axis_handler_t handler)
1913 widget->axis_handler = handler;
1917 window_schedule_redraw_task(struct window *window);
1920 widget_schedule_redraw(struct widget *widget)
1922 DBG_OBJ(widget->surface->surface, "widget %p\n", widget);
1923 widget->surface->redraw_needed = 1;
1924 window_schedule_redraw_task(widget->window);
1928 window_get_surface(struct window *window)
1930 cairo_surface_t *cairo_surface;
1932 cairo_surface = widget_get_cairo_surface(window->main_surface->widget);
1934 return cairo_surface_reference(cairo_surface);
1938 window_get_wl_surface(struct window *window)
1940 return window->main_surface->surface;
1943 struct wl_shell_surface *
1944 window_get_wl_shell_surface(struct window *window)
1946 return window->shell_surface;
1950 tooltip_redraw_handler(struct widget *widget, void *data)
1953 const int32_t r = 3;
1954 struct tooltip *tooltip = data;
1955 int32_t width, height;
1957 cr = widget_cairo_create(widget);
1958 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
1959 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
1962 width = widget->allocation.width;
1963 height = widget->allocation.height;
1964 rounded_rect(cr, 0, 0, width, height, r);
1966 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
1967 cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
1970 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
1971 cairo_move_to(cr, 10, 16);
1972 cairo_show_text(cr, tooltip->entry);
1976 static cairo_text_extents_t
1977 get_text_extents(struct tooltip *tooltip)
1980 cairo_text_extents_t extents;
1982 /* Use the dummy_surface because tooltip's surface was not
1983 * created yet, and parent does not have a valid surface
1984 * outside repaint, either.
1986 cr = cairo_create(tooltip->window->display->dummy_surface);
1987 cairo_text_extents(cr, tooltip->entry, &extents);
1994 window_create_tooltip(struct tooltip *tooltip)
1996 struct widget *parent = tooltip->parent;
1997 struct display *display = parent->window->display;
1998 struct window *window;
1999 const int offset_y = 27;
2000 const int margin = 3;
2001 cairo_text_extents_t extents;
2003 if (tooltip->widget)
2006 window = window_create_transient(display, parent->window, tooltip->x,
2007 tooltip->y + offset_y,
2008 WL_SHELL_SURFACE_TRANSIENT_INACTIVE);
2012 tooltip->window = window;
2013 tooltip->widget = window_add_widget(tooltip->window, tooltip);
2015 extents = get_text_extents(tooltip);
2016 widget_set_redraw_handler(tooltip->widget, tooltip_redraw_handler);
2017 window_schedule_resize(window, extents.width + 20, 20 + margin * 2);
2023 widget_destroy_tooltip(struct widget *parent)
2025 struct tooltip *tooltip = parent->tooltip;
2027 parent->tooltip_count = 0;
2031 if (tooltip->widget) {
2032 widget_destroy(tooltip->widget);
2033 window_destroy(tooltip->window);
2034 tooltip->widget = NULL;
2035 tooltip->window = NULL;
2038 close(tooltip->tooltip_fd);
2039 free(tooltip->entry);
2041 parent->tooltip = NULL;
2045 tooltip_func(struct task *task, uint32_t events)
2047 struct tooltip *tooltip =
2048 container_of(task, struct tooltip, tooltip_task);
2051 if (read(tooltip->tooltip_fd, &exp, sizeof (uint64_t)) != sizeof (uint64_t))
2053 window_create_tooltip(tooltip);
2056 #define TOOLTIP_TIMEOUT 500
2058 tooltip_timer_reset(struct tooltip *tooltip)
2060 struct itimerspec its;
2062 its.it_interval.tv_sec = 0;
2063 its.it_interval.tv_nsec = 0;
2064 its.it_value.tv_sec = TOOLTIP_TIMEOUT / 1000;
2065 its.it_value.tv_nsec = (TOOLTIP_TIMEOUT % 1000) * 1000 * 1000;
2066 if (timerfd_settime(tooltip->tooltip_fd, 0, &its, NULL) < 0) {
2067 fprintf(stderr, "could not set timerfd\n: %m");
2075 widget_set_tooltip(struct widget *parent, char *entry, float x, float y)
2077 struct tooltip *tooltip = parent->tooltip;
2079 parent->tooltip_count++;
2083 tooltip_timer_reset(tooltip);
2087 /* the handler might be triggered too fast via input device motion, so
2088 * we need this check here to make sure tooltip is fully initialized */
2089 if (parent->tooltip_count > 1)
2092 tooltip = malloc(sizeof *tooltip);
2096 parent->tooltip = tooltip;
2097 tooltip->parent = parent;
2098 tooltip->widget = NULL;
2099 tooltip->window = NULL;
2102 tooltip->entry = strdup(entry);
2103 tooltip->tooltip_fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
2104 if (tooltip->tooltip_fd < 0) {
2105 fprintf(stderr, "could not create timerfd\n: %m");
2109 tooltip->tooltip_task.run = tooltip_func;
2110 display_watch_fd(parent->window->display, tooltip->tooltip_fd,
2111 EPOLLIN, &tooltip->tooltip_task);
2112 tooltip_timer_reset(tooltip);
2118 workspace_manager_state(void *data,
2119 struct workspace_manager *workspace_manager,
2123 struct display *display = data;
2125 display->workspace = current;
2126 display->workspace_count = count;
2129 static const struct workspace_manager_listener workspace_manager_listener = {
2130 workspace_manager_state
2134 frame_resize_handler(struct widget *widget,
2135 int32_t width, int32_t height, void *data)
2137 struct window_frame *frame = data;
2138 struct widget *child = frame->child;
2139 struct rectangle interior;
2140 struct rectangle input;
2141 struct rectangle opaque;
2143 if (widget->window->type == TYPE_FULLSCREEN) {
2146 interior.width = width;
2147 interior.height = height;
2149 if (widget->window->type == TYPE_MAXIMIZED) {
2150 frame_set_flag(frame->frame, FRAME_FLAG_MAXIMIZED);
2152 frame_unset_flag(frame->frame, FRAME_FLAG_MAXIMIZED);
2155 frame_resize(frame->frame, width, height);
2156 frame_interior(frame->frame, &interior.x, &interior.y,
2157 &interior.width, &interior.height);
2160 widget_set_allocation(child, interior.x, interior.y,
2161 interior.width, interior.height);
2163 if (child->resize_handler) {
2164 child->resize_handler(child, interior.width, interior.height,
2167 if (widget->window->type == TYPE_FULLSCREEN) {
2168 width = child->allocation.width;
2169 height = child->allocation.height;
2171 frame_resize_inside(frame->frame,
2172 child->allocation.width,
2173 child->allocation.height);
2174 width = frame_width(frame->frame);
2175 height = frame_height(frame->frame);
2179 widget_set_allocation(widget, 0, 0, width, height);
2181 widget->surface->input_region =
2182 wl_compositor_create_region(widget->window->display->compositor);
2183 if (widget->window->type != TYPE_FULLSCREEN) {
2184 frame_input_rect(frame->frame, &input.x, &input.y,
2185 &input.width, &input.height);
2186 wl_region_add(widget->surface->input_region,
2187 input.x, input.y, input.width, input.height);
2189 wl_region_add(widget->surface->input_region, 0, 0, width, height);
2192 widget_set_allocation(widget, 0, 0, width, height);
2194 if (child->opaque) {
2195 if (widget->window->type != TYPE_FULLSCREEN) {
2196 frame_opaque_rect(frame->frame, &opaque.x, &opaque.y,
2197 &opaque.width, &opaque.height);
2199 wl_region_add(widget->surface->opaque_region,
2201 opaque.width, opaque.height);
2203 wl_region_add(widget->surface->opaque_region,
2204 0, 0, width, height);
2209 widget_schedule_redraw(widget);
2213 frame_redraw_handler(struct widget *widget, void *data)
2216 struct window_frame *frame = data;
2217 struct window *window = widget->window;
2219 if (window->type == TYPE_FULLSCREEN)
2222 if (window->focus_count) {
2223 frame_set_flag(frame->frame, FRAME_FLAG_ACTIVE);
2225 frame_unset_flag(frame->frame, FRAME_FLAG_ACTIVE);
2228 cr = widget_cairo_create(widget);
2230 frame_repaint(frame->frame, cr);
2236 frame_get_pointer_image_for_location(struct window_frame *frame,
2237 enum theme_location location)
2239 struct window *window = frame->widget->window;
2241 if (window->type != TYPE_TOPLEVEL)
2242 return CURSOR_LEFT_PTR;
2245 case THEME_LOCATION_RESIZING_TOP:
2247 case THEME_LOCATION_RESIZING_BOTTOM:
2248 return CURSOR_BOTTOM;
2249 case THEME_LOCATION_RESIZING_LEFT:
2251 case THEME_LOCATION_RESIZING_RIGHT:
2252 return CURSOR_RIGHT;
2253 case THEME_LOCATION_RESIZING_TOP_LEFT:
2254 return CURSOR_TOP_LEFT;
2255 case THEME_LOCATION_RESIZING_TOP_RIGHT:
2256 return CURSOR_TOP_RIGHT;
2257 case THEME_LOCATION_RESIZING_BOTTOM_LEFT:
2258 return CURSOR_BOTTOM_LEFT;
2259 case THEME_LOCATION_RESIZING_BOTTOM_RIGHT:
2260 return CURSOR_BOTTOM_RIGHT;
2261 case THEME_LOCATION_EXTERIOR:
2262 case THEME_LOCATION_TITLEBAR:
2264 return CURSOR_LEFT_PTR;
2269 frame_menu_func(struct window *window,
2270 struct input *input, int index, void *data)
2272 struct display *display;
2276 if (window->close_handler)
2277 window->close_handler(window->parent,
2280 display_exit(window->display);
2282 case 1: /* move to workspace above */
2283 display = window->display;
2284 if (display->workspace > 0)
2285 workspace_manager_move_surface(
2286 display->workspace_manager,
2287 window->main_surface->surface,
2288 display->workspace - 1);
2290 case 2: /* move to workspace below */
2291 display = window->display;
2292 if (display->workspace < display->workspace_count - 1)
2293 workspace_manager_move_surface(
2294 display->workspace_manager,
2295 window->main_surface->surface,
2296 display->workspace + 1);
2298 case 3: /* fullscreen */
2299 /* we don't have a way to get out of fullscreen for now */
2300 if (window->fullscreen_handler)
2301 window->fullscreen_handler(window, window->user_data);
2307 window_show_frame_menu(struct window *window,
2308 struct input *input, uint32_t time)
2313 static const char *entries[] = {
2315 "Move to workspace above", "Move to workspace below",
2319 if (window->fullscreen_handler)
2320 count = ARRAY_LENGTH(entries);
2322 count = ARRAY_LENGTH(entries) - 1;
2324 input_get_position(input, &x, &y);
2325 window_show_menu(window->display, input, time, window,
2326 x - 10, y - 10, frame_menu_func, entries, count);
2330 frame_enter_handler(struct widget *widget,
2331 struct input *input, float x, float y, void *data)
2333 struct window_frame *frame = data;
2334 enum theme_location location;
2336 location = frame_pointer_enter(frame->frame, input, x, y);
2337 if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2338 widget_schedule_redraw(frame->widget);
2340 return frame_get_pointer_image_for_location(data, location);
2344 frame_motion_handler(struct widget *widget,
2345 struct input *input, uint32_t time,
2346 float x, float y, void *data)
2348 struct window_frame *frame = data;
2349 enum theme_location location;
2351 location = frame_pointer_motion(frame->frame, input, x, y);
2352 if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2353 widget_schedule_redraw(frame->widget);
2355 return frame_get_pointer_image_for_location(data, location);
2359 frame_leave_handler(struct widget *widget,
2360 struct input *input, void *data)
2362 struct window_frame *frame = data;
2364 frame_pointer_leave(frame->frame, input);
2365 if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2366 widget_schedule_redraw(frame->widget);
2370 frame_handle_status(struct window_frame *frame, struct input *input,
2371 uint32_t time, enum theme_location location)
2373 struct window *window = frame->widget->window;
2376 status = frame_status(frame->frame);
2377 if (status & FRAME_STATUS_REPAINT)
2378 widget_schedule_redraw(frame->widget);
2380 if (status & FRAME_STATUS_MINIMIZE)
2381 fprintf(stderr,"Minimize stub\n");
2383 if (status & FRAME_STATUS_MENU) {
2384 window_show_frame_menu(window, input, time);
2385 frame_status_clear(frame->frame, FRAME_STATUS_MENU);
2388 if (status & FRAME_STATUS_MAXIMIZE) {
2389 window_set_maximized(window, window->type != TYPE_MAXIMIZED);
2390 frame_status_clear(frame->frame, FRAME_STATUS_MAXIMIZE);
2393 if (status & FRAME_STATUS_CLOSE) {
2394 if (window->close_handler)
2395 window->close_handler(window->parent,
2398 display_exit(window->display);
2402 if ((status & FRAME_STATUS_MOVE) && window->shell_surface) {
2403 input_ungrab(input);
2404 wl_shell_surface_move(window->shell_surface,
2405 input_get_seat(input),
2406 window->display->serial);
2408 frame_status_clear(frame->frame, FRAME_STATUS_MOVE);
2411 if ((status & FRAME_STATUS_RESIZE) && window->shell_surface) {
2412 input_ungrab(input);
2414 window->resizing = 1;
2415 wl_shell_surface_resize(window->shell_surface,
2416 input_get_seat(input),
2417 window->display->serial,
2420 frame_status_clear(frame->frame, FRAME_STATUS_RESIZE);
2425 frame_button_handler(struct widget *widget,
2426 struct input *input, uint32_t time,
2427 uint32_t button, enum wl_pointer_button_state state,
2431 struct window_frame *frame = data;
2432 enum theme_location location;
2434 location = frame_pointer_button(frame->frame, input, button, state);
2435 frame_handle_status(frame, input, time, location);
2439 frame_touch_down_handler(struct widget *widget, struct input *input,
2440 uint32_t serial, uint32_t time, int32_t id,
2441 float x, float y, void *data)
2443 struct window_frame *frame = data;
2445 frame_touch_down(frame->frame, input, id, x, y);
2446 frame_handle_status(frame, input, time, THEME_LOCATION_CLIENT_AREA);
2450 frame_touch_up_handler(struct widget *widget,
2451 struct input *input, uint32_t serial, uint32_t time,
2452 int32_t id, void *data)
2454 struct window_frame *frame = data;
2456 frame_touch_up(frame->frame, input, id);
2457 frame_handle_status(frame, input, time, THEME_LOCATION_CLIENT_AREA);
2461 window_frame_create(struct window *window, void *data)
2463 struct window_frame *frame;
2465 frame = xzalloc(sizeof *frame);
2466 frame->frame = frame_create(window->display->theme, 0, 0,
2467 FRAME_BUTTON_ALL, window->title);
2469 frame->widget = window_add_widget(window, frame);
2470 frame->child = widget_add_widget(frame->widget, data);
2472 widget_set_redraw_handler(frame->widget, frame_redraw_handler);
2473 widget_set_resize_handler(frame->widget, frame_resize_handler);
2474 widget_set_enter_handler(frame->widget, frame_enter_handler);
2475 widget_set_leave_handler(frame->widget, frame_leave_handler);
2476 widget_set_motion_handler(frame->widget, frame_motion_handler);
2477 widget_set_button_handler(frame->widget, frame_button_handler);
2478 widget_set_touch_down_handler(frame->widget, frame_touch_down_handler);
2479 widget_set_touch_up_handler(frame->widget, frame_touch_up_handler);
2481 window->frame = frame;
2483 return frame->child;
2487 window_frame_set_child_size(struct widget *widget, int child_width,
2490 struct display *display = widget->window->display;
2491 struct theme *t = display->theme;
2492 int decoration_width, decoration_height;
2494 int margin = widget->window->type == TYPE_MAXIMIZED ? 0 : t->margin;
2496 if (widget->window->type != TYPE_FULLSCREEN) {
2497 decoration_width = (t->width + margin) * 2;
2498 decoration_height = t->width +
2499 t->titlebar_height + margin * 2;
2501 width = child_width + decoration_width;
2502 height = child_height + decoration_height;
2504 width = child_width;
2505 height = child_height;
2508 window_schedule_resize(widget->window, width, height);
2512 window_frame_destroy(struct window_frame *frame)
2514 frame_destroy(frame->frame);
2516 /* frame->child must be destroyed by the application */
2517 widget_destroy(frame->widget);
2522 input_set_focus_widget(struct input *input, struct widget *focus,
2525 struct widget *old, *widget;
2528 if (focus == input->focus_widget)
2531 old = input->focus_widget;
2535 widget = input->grab;
2536 if (widget->leave_handler)
2537 widget->leave_handler(old, input, widget->user_data);
2538 input->focus_widget = NULL;
2544 widget = input->grab;
2545 input->focus_widget = focus;
2546 if (widget->enter_handler)
2547 cursor = widget->enter_handler(focus, input, x, y,
2550 cursor = widget->default_cursor;
2552 input_set_pointer_image(input, cursor);
2557 input_grab(struct input *input, struct widget *widget, uint32_t button)
2559 input->grab = widget;
2560 input->grab_button = button;
2564 input_ungrab(struct input *input)
2566 struct widget *widget;
2569 if (input->pointer_focus) {
2570 widget = window_find_widget(input->pointer_focus,
2571 input->sx, input->sy);
2572 input_set_focus_widget(input, widget, input->sx, input->sy);
2577 input_remove_pointer_focus(struct input *input)
2579 struct window *window = input->pointer_focus;
2584 input_set_focus_widget(input, NULL, 0, 0);
2586 input->pointer_focus = NULL;
2587 input->current_cursor = CURSOR_UNSET;
2591 pointer_handle_enter(void *data, struct wl_pointer *pointer,
2592 uint32_t serial, struct wl_surface *surface,
2593 wl_fixed_t sx_w, wl_fixed_t sy_w)
2595 struct input *input = data;
2596 struct window *window;
2597 struct widget *widget;
2598 float sx = wl_fixed_to_double(sx_w);
2599 float sy = wl_fixed_to_double(sy_w);
2602 /* enter event for a window we've just destroyed */
2606 input->display->serial = serial;
2607 input->pointer_enter_serial = serial;
2608 input->pointer_focus = wl_surface_get_user_data(surface);
2609 window = input->pointer_focus;
2611 if (window->resizing) {
2612 window->resizing = 0;
2613 /* Schedule a redraw to free the pool */
2614 window_schedule_redraw(window);
2620 widget = window_find_widget(window, sx, sy);
2621 input_set_focus_widget(input, widget, sx, sy);
2625 pointer_handle_leave(void *data, struct wl_pointer *pointer,
2626 uint32_t serial, struct wl_surface *surface)
2628 struct input *input = data;
2630 input->display->serial = serial;
2631 input_remove_pointer_focus(input);
2635 pointer_handle_motion(void *data, struct wl_pointer *pointer,
2636 uint32_t time, wl_fixed_t sx_w, wl_fixed_t sy_w)
2638 struct input *input = data;
2639 struct window *window = input->pointer_focus;
2640 struct widget *widget;
2642 float sx = wl_fixed_to_double(sx_w);
2643 float sy = wl_fixed_to_double(sy_w);
2651 /* when making the window smaller - e.g. after a unmaximise we might
2652 * still have a pending motion event that the compositor has picked
2653 * based on the old surface dimensions
2655 if (sx > window->main_surface->allocation.width ||
2656 sy > window->main_surface->allocation.height)
2659 if (!(input->grab && input->grab_button)) {
2660 widget = window_find_widget(window, sx, sy);
2661 input_set_focus_widget(input, widget, sx, sy);
2665 widget = input->grab;
2667 widget = input->focus_widget;
2669 if (widget->motion_handler)
2670 cursor = widget->motion_handler(input->focus_widget,
2671 input, time, sx, sy,
2674 cursor = widget->default_cursor;
2676 cursor = CURSOR_LEFT_PTR;
2678 input_set_pointer_image(input, cursor);
2682 pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial,
2683 uint32_t time, uint32_t button, uint32_t state_w)
2685 struct input *input = data;
2686 struct widget *widget;
2687 enum wl_pointer_button_state state = state_w;
2689 input->display->serial = serial;
2690 if (input->focus_widget && input->grab == NULL &&
2691 state == WL_POINTER_BUTTON_STATE_PRESSED)
2692 input_grab(input, input->focus_widget, button);
2694 widget = input->grab;
2695 if (widget && widget->button_handler)
2696 (*widget->button_handler)(widget,
2699 input->grab->user_data);
2701 if (input->grab && input->grab_button == button &&
2702 state == WL_POINTER_BUTTON_STATE_RELEASED)
2703 input_ungrab(input);
2707 pointer_handle_axis(void *data, struct wl_pointer *pointer,
2708 uint32_t time, uint32_t axis, wl_fixed_t value)
2710 struct input *input = data;
2711 struct widget *widget;
2713 widget = input->focus_widget;
2715 widget = input->grab;
2716 if (widget && widget->axis_handler)
2717 (*widget->axis_handler)(widget,
2723 static const struct wl_pointer_listener pointer_listener = {
2724 pointer_handle_enter,
2725 pointer_handle_leave,
2726 pointer_handle_motion,
2727 pointer_handle_button,
2728 pointer_handle_axis,
2732 input_remove_keyboard_focus(struct input *input)
2734 struct window *window = input->keyboard_focus;
2735 struct itimerspec its;
2737 its.it_interval.tv_sec = 0;
2738 its.it_interval.tv_nsec = 0;
2739 its.it_value.tv_sec = 0;
2740 its.it_value.tv_nsec = 0;
2741 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2746 window->focus_count--;
2747 if (window->keyboard_focus_handler)
2748 (*window->keyboard_focus_handler)(window, NULL,
2751 input->keyboard_focus = NULL;
2755 keyboard_repeat_func(struct task *task, uint32_t events)
2757 struct input *input =
2758 container_of(task, struct input, repeat_task);
2759 struct window *window = input->keyboard_focus;
2762 if (read(input->repeat_timer_fd, &exp, sizeof exp) != sizeof exp)
2763 /* If we change the timer between the fd becoming
2764 * readable and getting here, there'll be nothing to
2765 * read and we get EAGAIN. */
2768 if (window && window->key_handler) {
2769 (*window->key_handler)(window, input, input->repeat_time,
2770 input->repeat_key, input->repeat_sym,
2771 WL_KEYBOARD_KEY_STATE_PRESSED,
2777 keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard,
2778 uint32_t format, int fd, uint32_t size)
2780 struct input *input = data;
2781 struct xkb_keymap *keymap;
2782 struct xkb_state *state;
2790 if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
2795 map_str = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
2796 if (map_str == MAP_FAILED) {
2801 keymap = xkb_map_new_from_string(input->display->xkb_context,
2803 XKB_KEYMAP_FORMAT_TEXT_V1,
2805 munmap(map_str, size);
2809 fprintf(stderr, "failed to compile keymap\n");
2813 state = xkb_state_new(keymap);
2815 fprintf(stderr, "failed to create XKB state\n");
2816 xkb_map_unref(keymap);
2820 xkb_keymap_unref(input->xkb.keymap);
2821 xkb_state_unref(input->xkb.state);
2822 input->xkb.keymap = keymap;
2823 input->xkb.state = state;
2825 input->xkb.control_mask =
2826 1 << xkb_map_mod_get_index(input->xkb.keymap, "Control");
2827 input->xkb.alt_mask =
2828 1 << xkb_map_mod_get_index(input->xkb.keymap, "Mod1");
2829 input->xkb.shift_mask =
2830 1 << xkb_map_mod_get_index(input->xkb.keymap, "Shift");
2834 keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,
2835 uint32_t serial, struct wl_surface *surface,
2836 struct wl_array *keys)
2838 struct input *input = data;
2839 struct window *window;
2841 input->display->serial = serial;
2842 input->keyboard_focus = wl_surface_get_user_data(surface);
2844 window = input->keyboard_focus;
2845 window->focus_count++;
2846 if (window->keyboard_focus_handler)
2847 (*window->keyboard_focus_handler)(window,
2848 input, window->user_data);
2852 keyboard_handle_leave(void *data, struct wl_keyboard *keyboard,
2853 uint32_t serial, struct wl_surface *surface)
2855 struct input *input = data;
2857 input->display->serial = serial;
2858 input_remove_keyboard_focus(input);
2862 keyboard_handle_key(void *data, struct wl_keyboard *keyboard,
2863 uint32_t serial, uint32_t time, uint32_t key,
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;
2872 struct itimerspec its;
2874 input->display->serial = serial;
2876 if (!window || !input->xkb.state)
2879 num_syms = xkb_key_get_syms(input->xkb.state, code, &syms);
2881 sym = XKB_KEY_NoSymbol;
2885 if (sym == XKB_KEY_F5 && input->modifiers == MOD_ALT_MASK) {
2886 if (state == WL_KEYBOARD_KEY_STATE_PRESSED)
2887 window_set_maximized(window,
2888 window->type != TYPE_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 if (window->close_handler)
2897 window->close_handler(window->parent,
2900 display_exit(window->display);
2901 } else if (window->key_handler) {
2902 (*window->key_handler)(window, input, time, key,
2903 sym, state, window->user_data);
2906 if (state == WL_KEYBOARD_KEY_STATE_RELEASED &&
2907 key == input->repeat_key) {
2908 its.it_interval.tv_sec = 0;
2909 its.it_interval.tv_nsec = 0;
2910 its.it_value.tv_sec = 0;
2911 its.it_value.tv_nsec = 0;
2912 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2913 } else if (state == WL_KEYBOARD_KEY_STATE_PRESSED) {
2914 input->repeat_sym = sym;
2915 input->repeat_key = key;
2916 input->repeat_time = time;
2917 its.it_interval.tv_sec = 0;
2918 its.it_interval.tv_nsec = 25 * 1000 * 1000;
2919 its.it_value.tv_sec = 0;
2920 its.it_value.tv_nsec = 400 * 1000 * 1000;
2921 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2926 keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard,
2927 uint32_t serial, uint32_t mods_depressed,
2928 uint32_t mods_latched, uint32_t mods_locked,
2931 struct input *input = data;
2932 xkb_mod_mask_t mask;
2934 /* If we're not using a keymap, then we don't handle PC-style modifiers */
2935 if (!input->xkb.keymap)
2938 xkb_state_update_mask(input->xkb.state, mods_depressed, mods_latched,
2939 mods_locked, 0, 0, group);
2940 mask = xkb_state_serialize_mods(input->xkb.state,
2941 XKB_STATE_DEPRESSED |
2943 input->modifiers = 0;
2944 if (mask & input->xkb.control_mask)
2945 input->modifiers |= MOD_CONTROL_MASK;
2946 if (mask & input->xkb.alt_mask)
2947 input->modifiers |= MOD_ALT_MASK;
2948 if (mask & input->xkb.shift_mask)
2949 input->modifiers |= MOD_SHIFT_MASK;
2952 static const struct wl_keyboard_listener keyboard_listener = {
2953 keyboard_handle_keymap,
2954 keyboard_handle_enter,
2955 keyboard_handle_leave,
2956 keyboard_handle_key,
2957 keyboard_handle_modifiers,
2961 touch_handle_down(void *data, struct wl_touch *wl_touch,
2962 uint32_t serial, uint32_t time, struct wl_surface *surface,
2963 int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
2965 struct input *input = data;
2966 struct widget *widget;
2967 float sx = wl_fixed_to_double(x_w);
2968 float sy = wl_fixed_to_double(y_w);
2970 input->display->serial = serial;
2971 input->touch_focus = wl_surface_get_user_data(surface);
2972 if (!input->touch_focus) {
2973 DBG("Failed to find to touch focus for surface %p\n", surface);
2977 widget = window_find_widget(input->touch_focus,
2978 wl_fixed_to_double(x_w),
2979 wl_fixed_to_double(y_w));
2981 struct touch_point *tp = xmalloc(sizeof *tp);
2984 tp->widget = widget;
2985 wl_list_insert(&input->touch_point_list, &tp->link);
2987 if (widget->touch_down_handler)
2988 (*widget->touch_down_handler)(widget, input,
2997 touch_handle_up(void *data, struct wl_touch *wl_touch,
2998 uint32_t serial, uint32_t time, int32_t id)
3000 struct input *input = data;
3001 struct touch_point *tp, *tmp;
3003 if (!input->touch_focus) {
3004 DBG("No touch focus found for touch up event!\n");
3008 wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3012 if (tp->widget->touch_up_handler)
3013 (*tp->widget->touch_up_handler)(tp->widget, input, serial,
3015 tp->widget->user_data);
3017 wl_list_remove(&tp->link);
3025 touch_handle_motion(void *data, struct wl_touch *wl_touch,
3026 uint32_t time, int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
3028 struct input *input = data;
3029 struct touch_point *tp;
3030 float sx = wl_fixed_to_double(x_w);
3031 float sy = wl_fixed_to_double(y_w);
3033 DBG("touch_handle_motion: %i %i\n", id, wl_list_length(&input->touch_point_list));
3035 if (!input->touch_focus) {
3036 DBG("No touch focus found for touch motion event!\n");
3040 wl_list_for_each(tp, &input->touch_point_list, link) {
3044 if (tp->widget->touch_motion_handler)
3045 (*tp->widget->touch_motion_handler)(tp->widget, input, time,
3047 tp->widget->user_data);
3053 touch_handle_frame(void *data, struct wl_touch *wl_touch)
3055 struct input *input = data;
3056 struct touch_point *tp, *tmp;
3058 DBG("touch_handle_frame\n");
3060 if (!input->touch_focus) {
3061 DBG("No touch focus found for touch frame event!\n");
3065 wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3066 if (tp->widget->touch_frame_handler)
3067 (*tp->widget->touch_frame_handler)(tp->widget, input,
3068 tp->widget->user_data);
3070 wl_list_remove(&tp->link);
3076 touch_handle_cancel(void *data, struct wl_touch *wl_touch)
3078 struct input *input = data;
3079 struct touch_point *tp, *tmp;
3081 DBG("touch_handle_cancel\n");
3083 if (!input->touch_focus) {
3084 DBG("No touch focus found for touch cancel event!\n");
3088 wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3089 if (tp->widget->touch_cancel_handler)
3090 (*tp->widget->touch_cancel_handler)(tp->widget, input,
3091 tp->widget->user_data);
3093 wl_list_remove(&tp->link);
3098 static const struct wl_touch_listener touch_listener = {
3101 touch_handle_motion,
3103 touch_handle_cancel,
3107 seat_handle_capabilities(void *data, struct wl_seat *seat,
3108 enum wl_seat_capability caps)
3110 struct input *input = data;
3112 if ((caps & WL_SEAT_CAPABILITY_POINTER) && !input->pointer) {
3113 input->pointer = wl_seat_get_pointer(seat);
3114 wl_pointer_set_user_data(input->pointer, input);
3115 wl_pointer_add_listener(input->pointer, &pointer_listener,
3117 } else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && input->pointer) {
3118 wl_pointer_destroy(input->pointer);
3119 input->pointer = NULL;
3122 if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !input->keyboard) {
3123 input->keyboard = wl_seat_get_keyboard(seat);
3124 wl_keyboard_set_user_data(input->keyboard, input);
3125 wl_keyboard_add_listener(input->keyboard, &keyboard_listener,
3127 } else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && input->keyboard) {
3128 wl_keyboard_destroy(input->keyboard);
3129 input->keyboard = NULL;
3132 if ((caps & WL_SEAT_CAPABILITY_TOUCH) && !input->touch) {
3133 input->touch = wl_seat_get_touch(seat);
3134 wl_touch_set_user_data(input->touch, input);
3135 wl_touch_add_listener(input->touch, &touch_listener, input);
3136 } else if (!(caps & WL_SEAT_CAPABILITY_TOUCH) && input->touch) {
3137 wl_touch_destroy(input->touch);
3138 input->touch = NULL;
3143 seat_handle_name(void *data, struct wl_seat *seat,
3149 static const struct wl_seat_listener seat_listener = {
3150 seat_handle_capabilities,
3155 input_get_position(struct input *input, int32_t *x, int32_t *y)
3162 input_get_display(struct input *input)
3164 return input->display;
3168 input_get_seat(struct input *input)
3174 input_get_modifiers(struct input *input)
3176 return input->modifiers;
3180 input_get_focus_widget(struct input *input)
3182 return input->focus_widget;
3186 struct wl_data_offer *offer;
3187 struct input *input;
3188 struct wl_array types;
3191 struct task io_task;
3199 data_offer_offer(void *data, struct wl_data_offer *wl_data_offer, const char *type)
3201 struct data_offer *offer = data;
3204 p = wl_array_add(&offer->types, sizeof *p);
3208 static const struct wl_data_offer_listener data_offer_listener = {
3213 data_offer_destroy(struct data_offer *offer)
3218 if (offer->refcount == 0) {
3219 wl_data_offer_destroy(offer->offer);
3220 for (p = offer->types.data; *p; p++)
3222 wl_array_release(&offer->types);
3228 data_device_data_offer(void *data,
3229 struct wl_data_device *data_device,
3230 struct wl_data_offer *_offer)
3232 struct data_offer *offer;
3234 offer = xmalloc(sizeof *offer);
3236 wl_array_init(&offer->types);
3237 offer->refcount = 1;
3238 offer->input = data;
3239 offer->offer = _offer;
3240 wl_data_offer_add_listener(offer->offer,
3241 &data_offer_listener, offer);
3245 data_device_enter(void *data, struct wl_data_device *data_device,
3246 uint32_t serial, struct wl_surface *surface,
3247 wl_fixed_t x_w, wl_fixed_t y_w,
3248 struct wl_data_offer *offer)
3250 struct input *input = data;
3251 struct window *window;
3253 float x = wl_fixed_to_double(x_w);
3254 float y = wl_fixed_to_double(y_w);
3257 input->pointer_enter_serial = serial;
3258 window = wl_surface_get_user_data(surface);
3259 input->pointer_focus = window;
3262 input->drag_offer = wl_data_offer_get_user_data(offer);
3264 p = wl_array_add(&input->drag_offer->types, sizeof *p);
3267 types_data = input->drag_offer->types.data;
3269 input->drag_offer = NULL;
3273 window = input->pointer_focus;
3274 if (window->data_handler)
3275 window->data_handler(window, input, x, y, types_data,
3280 data_device_leave(void *data, struct wl_data_device *data_device)
3282 struct input *input = data;
3284 if (input->drag_offer) {
3285 data_offer_destroy(input->drag_offer);
3286 input->drag_offer = NULL;
3291 data_device_motion(void *data, struct wl_data_device *data_device,
3292 uint32_t time, wl_fixed_t x_w, wl_fixed_t y_w)
3294 struct input *input = data;
3295 struct window *window = input->pointer_focus;
3296 float x = wl_fixed_to_double(x_w);
3297 float y = wl_fixed_to_double(y_w);
3303 if (input->drag_offer)
3304 types_data = input->drag_offer->types.data;
3308 if (window->data_handler)
3309 window->data_handler(window, input, x, y, types_data,
3314 data_device_drop(void *data, struct wl_data_device *data_device)
3316 struct input *input = data;
3317 struct window *window = input->pointer_focus;
3319 if (window->drop_handler)
3320 window->drop_handler(window, input,
3321 input->sx, input->sy, window->user_data);
3325 data_device_selection(void *data,
3326 struct wl_data_device *wl_data_device,
3327 struct wl_data_offer *offer)
3329 struct input *input = data;
3332 if (input->selection_offer)
3333 data_offer_destroy(input->selection_offer);
3336 input->selection_offer = wl_data_offer_get_user_data(offer);
3337 p = wl_array_add(&input->selection_offer->types, sizeof *p);
3340 input->selection_offer = NULL;
3344 static const struct wl_data_device_listener data_device_listener = {
3345 data_device_data_offer,
3350 data_device_selection
3354 input_set_pointer_image_index(struct input *input, int index)
3356 struct wl_buffer *buffer;
3357 struct wl_cursor *cursor;
3358 struct wl_cursor_image *image;
3360 if (!input->pointer)
3363 cursor = input->display->cursors[input->current_cursor];
3367 if (index >= (int) cursor->image_count) {
3368 fprintf(stderr, "cursor index out of range\n");
3372 image = cursor->images[index];
3373 buffer = wl_cursor_image_get_buffer(image);
3377 wl_pointer_set_cursor(input->pointer, input->pointer_enter_serial,
3378 input->pointer_surface,
3379 image->hotspot_x, image->hotspot_y);
3380 wl_surface_attach(input->pointer_surface, buffer, 0, 0);
3381 wl_surface_damage(input->pointer_surface, 0, 0,
3382 image->width, image->height);
3383 wl_surface_commit(input->pointer_surface);
3386 static const struct wl_callback_listener pointer_surface_listener;
3389 pointer_surface_frame_callback(void *data, struct wl_callback *callback,
3392 struct input *input = data;
3393 struct wl_cursor *cursor;
3397 assert(callback == input->cursor_frame_cb);
3398 wl_callback_destroy(callback);
3399 input->cursor_frame_cb = NULL;
3402 if (!input->pointer)
3405 if (input->current_cursor == CURSOR_BLANK) {
3406 wl_pointer_set_cursor(input->pointer,
3407 input->pointer_enter_serial,
3412 if (input->current_cursor == CURSOR_UNSET)
3414 cursor = input->display->cursors[input->current_cursor];
3418 /* FIXME We don't have the current time on the first call so we set
3419 * the animation start to the time of the first frame callback. */
3421 input->cursor_anim_start = 0;
3422 else if (input->cursor_anim_start == 0)
3423 input->cursor_anim_start = time;
3425 if (time == 0 || input->cursor_anim_start == 0)
3428 i = wl_cursor_frame(cursor, time - input->cursor_anim_start);
3430 if (cursor->image_count > 1) {
3431 input->cursor_frame_cb =
3432 wl_surface_frame(input->pointer_surface);
3433 wl_callback_add_listener(input->cursor_frame_cb,
3434 &pointer_surface_listener, input);
3437 input_set_pointer_image_index(input, i);
3440 static const struct wl_callback_listener pointer_surface_listener = {
3441 pointer_surface_frame_callback
3445 input_set_pointer_image(struct input *input, int pointer)
3449 if (!input->pointer)
3452 if (input->pointer_enter_serial > input->cursor_serial)
3455 if (!force && pointer == input->current_cursor)
3458 input->current_cursor = pointer;
3459 input->cursor_serial = input->pointer_enter_serial;
3460 if (!input->cursor_frame_cb)
3461 pointer_surface_frame_callback(input, NULL, 0);
3463 /* The current frame callback may be stuck if, for instance,
3464 * the set cursor request was processed by the server after
3465 * this client lost the focus. In this case the cursor surface
3466 * might not be mapped and the frame callback wouldn't ever
3467 * complete. Send a set_cursor and attach to try to map the
3468 * cursor surface again so that the callback will finish */
3469 input_set_pointer_image_index(input, 0);
3473 struct wl_data_device *
3474 input_get_data_device(struct input *input)
3476 return input->data_device;
3480 input_set_selection(struct input *input,
3481 struct wl_data_source *source, uint32_t time)
3483 wl_data_device_set_selection(input->data_device, source, time);
3487 input_accept(struct input *input, const char *type)
3489 wl_data_offer_accept(input->drag_offer->offer,
3490 input->pointer_enter_serial, type);
3494 offer_io_func(struct task *task, uint32_t events)
3496 struct data_offer *offer =
3497 container_of(task, struct data_offer, io_task);
3501 len = read(offer->fd, buffer, sizeof buffer);
3502 offer->func(buffer, len,
3503 offer->x, offer->y, offer->user_data);
3507 data_offer_destroy(offer);
3512 data_offer_receive_data(struct data_offer *offer, const char *mime_type,
3513 data_func_t func, void *user_data)
3517 if (pipe2(p, O_CLOEXEC) == -1)
3520 wl_data_offer_receive(offer->offer, mime_type, p[1]);
3523 offer->io_task.run = offer_io_func;
3527 offer->user_data = user_data;
3529 display_watch_fd(offer->input->display,
3530 offer->fd, EPOLLIN, &offer->io_task);
3534 input_receive_drag_data(struct input *input, const char *mime_type,
3535 data_func_t func, void *data)
3537 data_offer_receive_data(input->drag_offer, mime_type, func, data);
3538 input->drag_offer->x = input->sx;
3539 input->drag_offer->y = input->sy;
3543 input_receive_drag_data_to_fd(struct input *input,
3544 const char *mime_type, int fd)
3546 if (input->drag_offer)
3547 wl_data_offer_receive(input->drag_offer->offer, mime_type, fd);
3553 input_receive_selection_data(struct input *input, const char *mime_type,
3554 data_func_t func, void *data)
3558 if (input->selection_offer == NULL)
3561 for (p = input->selection_offer->types.data; *p; p++)
3562 if (strcmp(mime_type, *p) == 0)
3568 data_offer_receive_data(input->selection_offer,
3569 mime_type, func, data);
3574 input_receive_selection_data_to_fd(struct input *input,
3575 const char *mime_type, int fd)
3577 if (input->selection_offer)
3578 wl_data_offer_receive(input->selection_offer->offer,
3585 window_move(struct window *window, struct input *input, uint32_t serial)
3587 if (!window->shell_surface)
3590 wl_shell_surface_move(window->shell_surface, input->seat, serial);
3594 surface_set_synchronized(struct surface *surface)
3596 if (!surface->subsurface)
3599 if (surface->synchronized)
3602 wl_subsurface_set_sync(surface->subsurface);
3603 surface->synchronized = 1;
3607 surface_set_synchronized_default(struct surface *surface)
3609 if (!surface->subsurface)
3612 if (surface->synchronized == surface->synchronized_default)
3615 if (surface->synchronized_default)
3616 wl_subsurface_set_sync(surface->subsurface);
3618 wl_subsurface_set_desync(surface->subsurface);
3620 surface->synchronized = surface->synchronized_default;
3624 surface_resize(struct surface *surface)
3626 struct widget *widget = surface->widget;
3627 struct wl_compositor *compositor = widget->window->display->compositor;
3629 if (surface->input_region) {
3630 wl_region_destroy(surface->input_region);
3631 surface->input_region = NULL;
3634 if (surface->opaque_region)
3635 wl_region_destroy(surface->opaque_region);
3637 surface->opaque_region = wl_compositor_create_region(compositor);
3639 if (widget->resize_handler)
3640 widget->resize_handler(widget,
3641 widget->allocation.width,
3642 widget->allocation.height,
3645 if (surface->subsurface &&
3646 (surface->allocation.x != widget->allocation.x ||
3647 surface->allocation.y != widget->allocation.y)) {
3648 wl_subsurface_set_position(surface->subsurface,
3649 widget->allocation.x,
3650 widget->allocation.y);
3652 if (surface->allocation.width != widget->allocation.width ||
3653 surface->allocation.height != widget->allocation.height) {
3654 window_schedule_redraw(widget->window);
3656 surface->allocation = widget->allocation;
3659 wl_region_add(surface->opaque_region, 0, 0,
3660 widget->allocation.width,
3661 widget->allocation.height);
3665 hack_prevent_EGL_sub_surface_deadlock(struct window *window)
3668 * This hack should be removed, when EGL respects
3669 * eglSwapInterval(0).
3671 * If this window has sub-surfaces, especially a free-running
3672 * EGL-widget, we need to post the parent surface once with
3673 * all the old state to guarantee, that the EGL-widget will
3674 * receive its frame callback soon. Otherwise, a forced call
3675 * to eglSwapBuffers may end up blocking, waiting for a frame
3676 * event that will never come, because we will commit the parent
3677 * surface with all new state only after eglSwapBuffers returns.
3679 * This assumes, that:
3680 * 1. When the EGL widget's resize hook is called, it pauses.
3681 * 2. When the EGL widget's redraw hook is called, it forces a
3682 * repaint and a call to eglSwapBuffers(), and maybe resumes.
3683 * In a single threaded application condition 1 is a no-op.
3685 * XXX: This should actually be after the surface_resize() calls,
3686 * but cannot, because then it would commit the incomplete state
3687 * accumulated from the widget resize hooks.
3689 if (window->subsurface_list.next != &window->main_surface->link ||
3690 window->subsurface_list.prev != &window->main_surface->link)
3691 wl_surface_commit(window->main_surface->surface);
3695 idle_resize(struct window *window)
3697 struct surface *surface;
3699 window->resize_needed = 0;
3700 window->redraw_needed = 1;
3702 DBG("from %dx%d to %dx%d\n",
3703 window->main_surface->server_allocation.width,
3704 window->main_surface->server_allocation.height,
3705 window->pending_allocation.width,
3706 window->pending_allocation.height);
3708 hack_prevent_EGL_sub_surface_deadlock(window);
3710 widget_set_allocation(window->main_surface->widget,
3711 window->pending_allocation.x,
3712 window->pending_allocation.y,
3713 window->pending_allocation.width,
3714 window->pending_allocation.height);
3716 surface_resize(window->main_surface);
3718 /* The main surface is in the list, too. Main surface's
3719 * resize_handler is responsible for calling widget_set_allocation()
3720 * on all sub-surface root widgets, so they will be resized
3723 wl_list_for_each(surface, &window->subsurface_list, link) {
3724 if (surface == window->main_surface)
3727 surface_set_synchronized(surface);
3728 surface_resize(surface);
3733 window_schedule_resize(struct window *window, int width, int height)
3735 /* We should probably get these numbers from the theme. */
3736 const int min_width = 200, min_height = 200;
3738 window->pending_allocation.x = 0;
3739 window->pending_allocation.y = 0;
3740 window->pending_allocation.width = width;
3741 window->pending_allocation.height = height;
3743 if (window->min_allocation.width == 0) {
3744 if (width < min_width && window->frame)
3745 window->min_allocation.width = min_width;
3747 window->min_allocation.width = width;
3748 if (height < min_height && window->frame)
3749 window->min_allocation.height = min_height;
3751 window->min_allocation.height = height;
3754 if (window->pending_allocation.width < window->min_allocation.width)
3755 window->pending_allocation.width = window->min_allocation.width;
3756 if (window->pending_allocation.height < window->min_allocation.height)
3757 window->pending_allocation.height = window->min_allocation.height;
3759 window->resize_needed = 1;
3760 window_schedule_redraw(window);
3764 widget_schedule_resize(struct widget *widget, int32_t width, int32_t height)
3766 window_schedule_resize(widget->window, width, height);
3770 handle_ping(void *data, struct wl_shell_surface *shell_surface,
3773 wl_shell_surface_pong(shell_surface, serial);
3777 handle_configure(void *data, struct wl_shell_surface *shell_surface,
3778 uint32_t edges, int32_t width, int32_t height)
3780 struct window *window = data;
3782 window->resize_edges = edges;
3783 window_schedule_resize(window, width, height);
3787 menu_destroy(struct menu *menu)
3789 widget_destroy(menu->widget);
3790 window_destroy(menu->window);
3791 frame_destroy(menu->frame);
3796 handle_popup_done(void *data, struct wl_shell_surface *shell_surface)
3798 struct window *window = data;
3799 struct menu *menu = window->main_surface->widget->user_data;
3801 /* FIXME: Need more context in this event, at least the input
3802 * device. Or just use wl_callback. And this really needs to
3803 * be a window vfunc that the menu can set. And we need the
3806 input_ungrab(menu->input);
3810 static const struct wl_shell_surface_listener shell_surface_listener = {
3817 window_get_allocation(struct window *window,
3818 struct rectangle *allocation)
3820 *allocation = window->main_surface->allocation;
3824 widget_redraw(struct widget *widget)
3826 struct widget *child;
3828 if (widget->redraw_handler)
3829 widget->redraw_handler(widget, widget->user_data);
3830 wl_list_for_each(child, &widget->child_list, link)
3831 widget_redraw(child);
3835 frame_callback(void *data, struct wl_callback *callback, uint32_t time)
3837 struct surface *surface = data;
3839 assert(callback == surface->frame_cb);
3840 DBG_OBJ(callback, "done\n");
3841 wl_callback_destroy(callback);
3842 surface->frame_cb = NULL;
3844 surface->last_time = time;
3846 if (surface->redraw_needed || surface->window->redraw_needed) {
3847 DBG_OBJ(surface->surface, "window_schedule_redraw_task\n");
3848 window_schedule_redraw_task(surface->window);
3852 static const struct wl_callback_listener listener = {
3857 surface_redraw(struct surface *surface)
3859 DBG_OBJ(surface->surface, "begin\n");
3861 if (!surface->window->redraw_needed && !surface->redraw_needed)
3864 /* Whole-window redraw forces a redraw even if the previous has
3865 * not yet hit the screen.
3867 if (surface->frame_cb) {
3868 if (!surface->window->redraw_needed)
3871 DBG_OBJ(surface->frame_cb, "cancelled\n");
3872 wl_callback_destroy(surface->frame_cb);
3875 surface->frame_cb = wl_surface_frame(surface->surface);
3876 wl_callback_add_listener(surface->frame_cb, &listener, surface);
3877 DBG_OBJ(surface->frame_cb, "new\n");
3879 surface->redraw_needed = 0;
3880 DBG_OBJ(surface->surface, "-> widget_redraw\n");
3881 widget_redraw(surface->widget);
3882 DBG_OBJ(surface->surface, "done\n");
3886 idle_redraw(struct task *task, uint32_t events)
3888 struct window *window = container_of(task, struct window, redraw_task);
3889 struct surface *surface;
3891 DBG(" --------- \n");
3893 wl_list_init(&window->redraw_task.link);
3894 window->redraw_task_scheduled = 0;
3896 if (window->resize_needed) {
3897 /* throttle resizing to the main surface display */
3898 if (window->main_surface->frame_cb) {
3899 DBG_OBJ(window->main_surface->frame_cb, "pending\n");
3903 idle_resize(window);
3906 wl_list_for_each(surface, &window->subsurface_list, link)
3907 surface_redraw(surface);
3909 window->redraw_needed = 0;
3910 window_flush(window);
3912 wl_list_for_each(surface, &window->subsurface_list, link)
3913 surface_set_synchronized_default(surface);
3917 window_schedule_redraw_task(struct window *window)
3919 if (window->configure_requests)
3921 if (!window->redraw_task_scheduled) {
3922 window->redraw_task.run = idle_redraw;
3923 display_defer(window->display, &window->redraw_task);
3924 window->redraw_task_scheduled = 1;
3929 window_schedule_redraw(struct window *window)
3931 struct surface *surface;
3933 DBG_OBJ(window->main_surface->surface, "window %p\n", window);
3935 wl_list_for_each(surface, &window->subsurface_list, link)
3936 surface->redraw_needed = 1;
3938 window_schedule_redraw_task(window);
3942 window_is_fullscreen(struct window *window)
3944 return window->type == TYPE_FULLSCREEN;
3948 configure_request_completed(void *data, struct wl_callback *callback, uint32_t time)
3950 struct window *window = data;
3952 wl_callback_destroy(callback);
3953 window->configure_requests--;
3955 if (!window->configure_requests)
3956 window_schedule_redraw(window);
3959 static struct wl_callback_listener configure_request_listener = {
3960 configure_request_completed,
3964 window_defer_redraw_until_configure(struct window* window)
3966 struct wl_callback *callback;
3968 if (window->redraw_task_scheduled) {
3969 wl_list_remove(&window->redraw_task.link);
3970 window->redraw_task_scheduled = 0;
3973 callback = wl_display_sync(window->display->display);
3974 wl_callback_add_listener(callback, &configure_request_listener, window);
3975 window->configure_requests++;
3979 window_set_fullscreen(struct window *window, int fullscreen)
3981 if (!window->display->shell)
3984 if ((window->type == TYPE_FULLSCREEN) == fullscreen)
3988 window->saved_type = window->type;
3989 if (window->type == TYPE_TOPLEVEL) {
3990 window->saved_allocation = window->main_surface->allocation;
3992 window->type = TYPE_FULLSCREEN;
3993 wl_shell_surface_set_fullscreen(window->shell_surface,
3994 window->fullscreen_method,
3996 window_defer_redraw_until_configure (window);
3998 if (window->saved_type == TYPE_MAXIMIZED) {
3999 window_set_maximized(window, 1);
4001 window->type = TYPE_TOPLEVEL;
4002 wl_shell_surface_set_toplevel(window->shell_surface);
4003 window_schedule_resize(window,
4004 window->saved_allocation.width,
4005 window->saved_allocation.height);
4012 window_set_fullscreen_method(struct window *window,
4013 enum wl_shell_surface_fullscreen_method method)
4015 window->fullscreen_method = method;
4019 window_is_maximized(struct window *window)
4021 return window->type == TYPE_MAXIMIZED;
4025 window_set_maximized(struct window *window, int maximized)
4027 if (!window->display->shell)
4030 if ((window->type == TYPE_MAXIMIZED) == maximized)
4033 if (window->type == TYPE_TOPLEVEL) {
4034 window->saved_allocation = window->main_surface->allocation;
4035 wl_shell_surface_set_maximized(window->shell_surface, NULL);
4036 window->type = TYPE_MAXIMIZED;
4037 window_defer_redraw_until_configure(window);
4038 } else if (window->type == TYPE_FULLSCREEN) {
4039 wl_shell_surface_set_maximized(window->shell_surface, NULL);
4040 window->type = TYPE_MAXIMIZED;
4041 window_defer_redraw_until_configure(window);
4043 wl_shell_surface_set_toplevel(window->shell_surface);
4044 window->type = TYPE_TOPLEVEL;
4045 window_schedule_resize(window,
4046 window->saved_allocation.width,
4047 window->saved_allocation.height);
4052 window_set_user_data(struct window *window, void *data)
4054 window->user_data = data;
4058 window_get_user_data(struct window *window)
4060 return window->user_data;
4064 window_set_key_handler(struct window *window,
4065 window_key_handler_t handler)
4067 window->key_handler = handler;
4071 window_set_keyboard_focus_handler(struct window *window,
4072 window_keyboard_focus_handler_t handler)
4074 window->keyboard_focus_handler = handler;
4078 window_set_data_handler(struct window *window, window_data_handler_t handler)
4080 window->data_handler = handler;
4084 window_set_drop_handler(struct window *window, window_drop_handler_t handler)
4086 window->drop_handler = handler;
4090 window_set_close_handler(struct window *window,
4091 window_close_handler_t handler)
4093 window->close_handler = handler;
4097 window_set_fullscreen_handler(struct window *window,
4098 window_fullscreen_handler_t handler)
4100 window->fullscreen_handler = handler;
4104 window_set_output_handler(struct window *window,
4105 window_output_handler_t handler)
4107 window->output_handler = handler;
4111 window_set_title(struct window *window, const char *title)
4113 free(window->title);
4114 window->title = strdup(title);
4115 if (window->frame) {
4116 frame_set_title(window->frame->frame, title);
4117 widget_schedule_redraw(window->frame->widget);
4119 if (window->shell_surface)
4120 wl_shell_surface_set_title(window->shell_surface, title);
4124 window_get_title(struct window *window)
4126 return window->title;
4130 window_set_text_cursor_position(struct window *window, int32_t x, int32_t y)
4132 struct text_cursor_position *text_cursor_position =
4133 window->display->text_cursor_position;
4135 if (!text_cursor_position)
4138 text_cursor_position_notify(text_cursor_position,
4139 window->main_surface->surface,
4140 wl_fixed_from_int(x),
4141 wl_fixed_from_int(y));
4145 window_damage(struct window *window, int32_t x, int32_t y,
4146 int32_t width, int32_t height)
4148 wl_surface_damage(window->main_surface->surface, x, y, width, height);
4152 surface_enter(void *data,
4153 struct wl_surface *wl_surface, struct wl_output *wl_output)
4155 struct window *window = data;
4156 struct output *output;
4157 struct output *output_found = NULL;
4158 struct window_output *window_output;
4160 wl_list_for_each(output, &window->display->output_list, link) {
4161 if (output->output == wl_output) {
4162 output_found = output;
4170 window_output = xmalloc(sizeof *window_output);
4171 window_output->output = output_found;
4173 wl_list_insert (&window->window_output_list, &window_output->link);
4175 if (window->output_handler)
4176 window->output_handler(window, output_found, 1,
4181 surface_leave(void *data,
4182 struct wl_surface *wl_surface, struct wl_output *output)
4184 struct window *window = data;
4185 struct window_output *window_output;
4186 struct window_output *window_output_found = NULL;
4188 wl_list_for_each(window_output, &window->window_output_list, link) {
4189 if (window_output->output->output == output) {
4190 window_output_found = window_output;
4195 if (window_output_found) {
4196 wl_list_remove(&window_output_found->link);
4198 if (window->output_handler)
4199 window->output_handler(window, window_output->output,
4200 0, window->user_data);
4202 free(window_output_found);
4206 static const struct wl_surface_listener surface_listener = {
4211 static struct surface *
4212 surface_create(struct window *window)
4214 struct display *display = window->display;
4215 struct surface *surface;
4217 surface = xmalloc(sizeof *surface);
4218 memset(surface, 0, sizeof *surface);
4222 surface->window = window;
4223 surface->surface = wl_compositor_create_surface(display->compositor);
4224 surface->buffer_scale = 1;
4225 wl_surface_add_listener(surface->surface, &surface_listener, window);
4227 wl_list_insert(&window->subsurface_list, &surface->link);
4232 static struct window *
4233 window_create_internal(struct display *display,
4234 struct window *parent, int type)
4236 struct window *window;
4237 struct surface *surface;
4239 window = xzalloc(sizeof *window);
4240 wl_list_init(&window->subsurface_list);
4241 window->display = display;
4242 window->parent = parent;
4244 surface = surface_create(window);
4245 window->main_surface = surface;
4247 if (type != TYPE_CUSTOM && display->shell) {
4248 window->shell_surface =
4249 wl_shell_get_shell_surface(display->shell,
4251 fail_on_null(window->shell_surface);
4254 window->type = type;
4255 window->fullscreen_method = WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT;
4256 window->configure_requests = 0;
4257 window->preferred_format = WINDOW_PREFERRED_FORMAT_NONE;
4259 if (display->argb_device)
4260 #ifdef HAVE_CAIRO_EGL
4261 surface->buffer_type = WINDOW_BUFFER_TYPE_EGL_WINDOW;
4263 surface->buffer_type = WINDOW_BUFFER_TYPE_SHM;
4266 surface->buffer_type = WINDOW_BUFFER_TYPE_SHM;
4268 wl_surface_set_user_data(surface->surface, window);
4269 wl_list_insert(display->window_list.prev, &window->link);
4270 wl_list_init(&window->redraw_task.link);
4272 if (window->shell_surface) {
4273 wl_shell_surface_set_user_data(window->shell_surface, window);
4274 wl_shell_surface_add_listener(window->shell_surface,
4275 &shell_surface_listener, window);
4278 wl_list_init (&window->window_output_list);
4284 window_create(struct display *display)
4286 return window_create_internal(display, NULL, TYPE_NONE);
4290 window_create_custom(struct display *display)
4292 return window_create_internal(display, NULL, TYPE_CUSTOM);
4296 window_create_transient(struct display *display, struct window *parent,
4297 int32_t x, int32_t y, uint32_t flags)
4299 struct window *window;
4301 window = window_create_internal(parent->display,
4302 parent, TYPE_TRANSIENT);
4308 wl_shell_surface_set_transient(
4309 window->shell_surface,
4310 window->parent->main_surface->surface,
4311 window->x, window->y, flags);
4317 menu_set_item(struct menu *menu, int sy)
4319 int32_t x, y, width, height;
4322 frame_interior(menu->frame, &x, &y, &width, &height);
4323 next = (sy - y) / 20;
4324 if (menu->current != next) {
4325 menu->current = next;
4326 widget_schedule_redraw(menu->widget);
4331 menu_motion_handler(struct widget *widget,
4332 struct input *input, uint32_t time,
4333 float x, float y, void *data)
4335 struct menu *menu = data;
4337 if (widget == menu->widget)
4338 menu_set_item(data, y);
4340 return CURSOR_LEFT_PTR;
4344 menu_enter_handler(struct widget *widget,
4345 struct input *input, float x, float y, void *data)
4347 struct menu *menu = data;
4349 if (widget == menu->widget)
4350 menu_set_item(data, y);
4352 return CURSOR_LEFT_PTR;
4356 menu_leave_handler(struct widget *widget, struct input *input, void *data)
4358 struct menu *menu = data;
4360 if (widget == menu->widget)
4361 menu_set_item(data, -200);
4365 menu_button_handler(struct widget *widget,
4366 struct input *input, uint32_t time,
4367 uint32_t button, enum wl_pointer_button_state state,
4371 struct menu *menu = data;
4373 if (state == WL_POINTER_BUTTON_STATE_RELEASED &&
4374 (menu->release_count > 0 || time - menu->time > 500)) {
4375 /* Either relase after press-drag-release or
4376 * click-motion-click. */
4377 menu->func(menu->window->parent, input,
4378 menu->current, menu->window->parent->user_data);
4379 input_ungrab(input);
4381 } else if (state == WL_POINTER_BUTTON_STATE_RELEASED) {
4382 menu->release_count++;
4387 menu_redraw_handler(struct widget *widget, void *data)
4390 struct menu *menu = data;
4391 int32_t x, y, width, height, i;
4393 cr = widget_cairo_create(widget);
4395 frame_repaint(menu->frame, cr);
4396 frame_interior(menu->frame, &x, &y, &width, &height);
4398 theme_set_background_source(menu->window->display->theme,
4399 cr, THEME_FRAME_ACTIVE);
4400 cairo_rectangle(cr, x, y, width, height);
4403 cairo_select_font_face(cr, "sans",
4404 CAIRO_FONT_SLANT_NORMAL,
4405 CAIRO_FONT_WEIGHT_NORMAL);
4406 cairo_set_font_size(cr, 12);
4408 for (i = 0; i < menu->count; i++) {
4409 if (i == menu->current) {
4410 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
4411 cairo_rectangle(cr, x, y + i * 20, width, 20);
4413 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
4414 cairo_move_to(cr, x + 10, y + i * 20 + 16);
4415 cairo_show_text(cr, menu->entries[i]);
4417 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
4418 cairo_move_to(cr, x + 10, y + i * 20 + 16);
4419 cairo_show_text(cr, menu->entries[i]);
4427 window_show_menu(struct display *display,
4428 struct input *input, uint32_t time, struct window *parent,
4429 int32_t x, int32_t y,
4430 menu_func_t func, const char **entries, int count)
4432 struct window *window;
4436 menu = malloc(sizeof *menu);
4440 window = window_create_internal(parent->display, parent, TYPE_MENU);
4446 menu->window = window;
4447 menu->widget = window_add_widget(menu->window, menu);
4448 window_set_buffer_scale (menu->window, window_get_buffer_scale (parent));
4449 window_set_buffer_transform (menu->window, window_get_buffer_transform (parent));
4450 menu->frame = frame_create(window->display->theme, 0, 0,
4451 FRAME_BUTTON_NONE, NULL);
4452 menu->entries = entries;
4453 menu->count = count;
4454 menu->release_count = 0;
4458 menu->input = input;
4459 window->type = TYPE_MENU;
4463 input_ungrab(input);
4465 widget_set_redraw_handler(menu->widget, menu_redraw_handler);
4466 widget_set_enter_handler(menu->widget, menu_enter_handler);
4467 widget_set_leave_handler(menu->widget, menu_leave_handler);
4468 widget_set_motion_handler(menu->widget, menu_motion_handler);
4469 widget_set_button_handler(menu->widget, menu_button_handler);
4471 input_grab(input, menu->widget, 0);
4472 frame_resize_inside(menu->frame, 200, count * 20);
4473 frame_set_flag(menu->frame, FRAME_FLAG_ACTIVE);
4474 window_schedule_resize(window, frame_width(menu->frame),
4475 frame_height(menu->frame));
4477 frame_interior(menu->frame, &ix, &iy, NULL, NULL);
4478 wl_shell_surface_set_popup(window->shell_surface, input->seat,
4479 display_get_serial(window->display),
4480 window->parent->main_surface->surface,
4481 window->x - ix, window->y - iy, 0);
4485 window_set_buffer_type(struct window *window, enum window_buffer_type type)
4487 window->main_surface->buffer_type = type;
4491 window_set_preferred_format(struct window *window,
4492 enum preferred_format format)
4494 window->preferred_format = format;
4498 window_add_subsurface(struct window *window, void *data,
4499 enum subsurface_mode default_mode)
4501 struct widget *widget;
4502 struct surface *surface;
4503 struct wl_surface *parent;
4504 struct wl_subcompositor *subcompo = window->display->subcompositor;
4506 surface = surface_create(window);
4507 widget = widget_create(window, surface, data);
4508 wl_list_init(&widget->link);
4509 surface->widget = widget;
4511 parent = window->main_surface->surface;
4512 surface->subsurface = wl_subcompositor_get_subsurface(subcompo,
4515 surface->synchronized = 1;
4517 switch (default_mode) {
4518 case SUBSURFACE_SYNCHRONIZED:
4519 surface->synchronized_default = 1;
4521 case SUBSURFACE_DESYNCHRONIZED:
4522 surface->synchronized_default = 0;
4525 assert(!"bad enum subsurface_mode");
4532 display_handle_geometry(void *data,
4533 struct wl_output *wl_output,
4536 int physical_height,
4542 struct output *output = data;
4544 output->allocation.x = x;
4545 output->allocation.y = y;
4546 output->transform = transform;
4550 display_handle_done(void *data,
4551 struct wl_output *wl_output)
4556 display_handle_scale(void *data,
4557 struct wl_output *wl_output,
4560 struct output *output = data;
4562 output->scale = scale;
4566 display_handle_mode(void *data,
4567 struct wl_output *wl_output,
4573 struct output *output = data;
4574 struct display *display = output->display;
4576 if (flags & WL_OUTPUT_MODE_CURRENT) {
4577 output->allocation.width = width;
4578 output->allocation.height = height;
4579 if (display->output_configure_handler)
4580 (*display->output_configure_handler)(
4581 output, display->user_data);
4585 static const struct wl_output_listener output_listener = {
4586 display_handle_geometry,
4587 display_handle_mode,
4588 display_handle_done,
4589 display_handle_scale
4593 display_add_output(struct display *d, uint32_t id)
4595 struct output *output;
4597 output = xzalloc(sizeof *output);
4598 output->display = d;
4601 wl_registry_bind(d->registry, id, &wl_output_interface, 2);
4602 output->server_output_id = id;
4603 wl_list_insert(d->output_list.prev, &output->link);
4605 wl_output_add_listener(output->output, &output_listener, output);
4609 output_destroy(struct output *output)
4611 if (output->destroy_handler)
4612 (*output->destroy_handler)(output, output->user_data);
4614 wl_output_destroy(output->output);
4615 wl_list_remove(&output->link);
4620 display_destroy_output(struct display *d, uint32_t id)
4622 struct output *output;
4624 wl_list_for_each(output, &d->output_list, link) {
4625 if (output->server_output_id == id) {
4626 output_destroy(output);
4633 display_set_global_handler(struct display *display,
4634 display_global_handler_t handler)
4636 struct global *global;
4638 display->global_handler = handler;
4642 wl_list_for_each(global, &display->global_list, link)
4643 display->global_handler(display,
4644 global->name, global->interface,
4645 global->version, display->user_data);
4649 display_set_global_handler_remove(struct display *display,
4650 display_global_handler_t remove_handler)
4652 display->global_handler_remove = remove_handler;
4653 if (!remove_handler)
4658 display_set_output_configure_handler(struct display *display,
4659 display_output_handler_t handler)
4661 struct output *output;
4663 display->output_configure_handler = handler;
4667 wl_list_for_each(output, &display->output_list, link) {
4668 if (output->allocation.width == 0 &&
4669 output->allocation.height == 0)
4672 (*display->output_configure_handler)(output,
4673 display->user_data);
4678 output_set_user_data(struct output *output, void *data)
4680 output->user_data = data;
4684 output_get_user_data(struct output *output)
4686 return output->user_data;
4690 output_set_destroy_handler(struct output *output,
4691 display_output_handler_t handler)
4693 output->destroy_handler = handler;
4694 /* FIXME: implement this, once we have way to remove outputs */
4698 output_get_allocation(struct output *output, struct rectangle *base)
4700 struct rectangle allocation = output->allocation;
4702 switch (output->transform) {
4703 case WL_OUTPUT_TRANSFORM_90:
4704 case WL_OUTPUT_TRANSFORM_270:
4705 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
4706 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
4707 /* Swap width and height */
4708 allocation.width = output->allocation.height;
4709 allocation.height = output->allocation.width;
4717 output_get_wl_output(struct output *output)
4719 return output->output;
4722 enum wl_output_transform
4723 output_get_transform(struct output *output)
4725 return output->transform;
4729 output_get_scale(struct output *output)
4731 return output->scale;
4735 fini_xkb(struct input *input)
4737 xkb_state_unref(input->xkb.state);
4738 xkb_map_unref(input->xkb.keymap);
4741 #define MIN(a,b) ((a) < (b) ? a : b)
4744 display_add_input(struct display *d, uint32_t id)
4746 struct input *input;
4748 input = xzalloc(sizeof *input);
4750 input->seat = wl_registry_bind(d->registry, id, &wl_seat_interface,
4751 MIN(d->seat_version, 3));
4752 input->touch_focus = NULL;
4753 input->pointer_focus = NULL;
4754 input->keyboard_focus = NULL;
4755 wl_list_init(&input->touch_point_list);
4756 wl_list_insert(d->input_list.prev, &input->link);
4758 wl_seat_add_listener(input->seat, &seat_listener, input);
4759 wl_seat_set_user_data(input->seat, input);
4761 input->data_device =
4762 wl_data_device_manager_get_data_device(d->data_device_manager,
4764 wl_data_device_add_listener(input->data_device, &data_device_listener,
4767 input->pointer_surface = wl_compositor_create_surface(d->compositor);
4769 input->repeat_timer_fd = timerfd_create(CLOCK_MONOTONIC,
4770 TFD_CLOEXEC | TFD_NONBLOCK);
4771 input->repeat_task.run = keyboard_repeat_func;
4772 display_watch_fd(d, input->repeat_timer_fd,
4773 EPOLLIN, &input->repeat_task);
4777 input_destroy(struct input *input)
4779 input_remove_keyboard_focus(input);
4780 input_remove_pointer_focus(input);
4782 if (input->drag_offer)
4783 data_offer_destroy(input->drag_offer);
4785 if (input->selection_offer)
4786 data_offer_destroy(input->selection_offer);
4788 wl_data_device_destroy(input->data_device);
4790 if (input->display->seat_version >= 3) {
4792 wl_pointer_release(input->pointer);
4793 if (input->keyboard)
4794 wl_keyboard_release(input->keyboard);
4799 wl_surface_destroy(input->pointer_surface);
4801 wl_list_remove(&input->link);
4802 wl_seat_destroy(input->seat);
4803 close(input->repeat_timer_fd);
4808 init_workspace_manager(struct display *d, uint32_t id)
4810 d->workspace_manager =
4811 wl_registry_bind(d->registry, id,
4812 &workspace_manager_interface, 1);
4813 if (d->workspace_manager != NULL)
4814 workspace_manager_add_listener(d->workspace_manager,
4815 &workspace_manager_listener,
4820 shm_format(void *data, struct wl_shm *wl_shm, uint32_t format)
4822 struct display *d = data;
4824 if (format == WL_SHM_FORMAT_RGB565)
4828 struct wl_shm_listener shm_listener = {
4833 registry_handle_global(void *data, struct wl_registry *registry, uint32_t id,
4834 const char *interface, uint32_t version)
4836 struct display *d = data;
4837 struct global *global;
4839 global = xmalloc(sizeof *global);
4841 global->interface = strdup(interface);
4842 global->version = version;
4843 wl_list_insert(d->global_list.prev, &global->link);
4845 if (strcmp(interface, "wl_compositor") == 0) {
4846 d->compositor = wl_registry_bind(registry, id,
4847 &wl_compositor_interface, 3);
4848 } else if (strcmp(interface, "wl_output") == 0) {
4849 display_add_output(d, id);
4850 } else if (strcmp(interface, "wl_seat") == 0) {
4851 d->seat_version = version;
4852 display_add_input(d, id);
4853 } else if (strcmp(interface, "wl_shell") == 0) {
4854 d->shell = wl_registry_bind(registry,
4855 id, &wl_shell_interface, 1);
4856 } else if (strcmp(interface, "wl_shm") == 0) {
4857 d->shm = wl_registry_bind(registry, id, &wl_shm_interface, 1);
4858 wl_shm_add_listener(d->shm, &shm_listener, d);
4859 } else if (strcmp(interface, "wl_data_device_manager") == 0) {
4860 d->data_device_manager =
4861 wl_registry_bind(registry, id,
4862 &wl_data_device_manager_interface, 1);
4863 } else if (strcmp(interface, "text_cursor_position") == 0) {
4864 d->text_cursor_position =
4865 wl_registry_bind(registry, id,
4866 &text_cursor_position_interface, 1);
4867 } else if (strcmp(interface, "workspace_manager") == 0) {
4868 init_workspace_manager(d, id);
4869 } else if (strcmp(interface, "wl_subcompositor") == 0) {
4871 wl_registry_bind(registry, id,
4872 &wl_subcompositor_interface, 1);
4875 if (d->global_handler)
4876 d->global_handler(d, id, interface, version, d->user_data);
4880 registry_handle_global_remove(void *data, struct wl_registry *registry,
4883 struct display *d = data;
4884 struct global *global;
4887 wl_list_for_each_safe(global, tmp, &d->global_list, link) {
4888 if (global->name != name)
4891 if (strcmp(global->interface, "wl_output") == 0)
4892 display_destroy_output(d, name);
4894 /* XXX: Should destroy remaining bound globals */
4896 if (d->global_handler_remove)
4897 d->global_handler_remove(d, name, global->interface,
4898 global->version, d->user_data);
4900 wl_list_remove(&global->link);
4901 free(global->interface);
4907 display_bind(struct display *display, uint32_t name,
4908 const struct wl_interface *interface, uint32_t version)
4910 return wl_registry_bind(display->registry, name, interface, version);
4913 static const struct wl_registry_listener registry_listener = {
4914 registry_handle_global,
4915 registry_handle_global_remove
4918 #ifdef HAVE_CAIRO_EGL
4920 init_egl(struct display *d)
4922 EGLint major, minor;
4925 #ifdef USE_CAIRO_GLESV2
4926 # define GL_BIT EGL_OPENGL_ES2_BIT
4928 # define GL_BIT EGL_OPENGL_BIT
4931 static const EGLint argb_cfg_attribs[] = {
4932 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
4938 EGL_RENDERABLE_TYPE, GL_BIT,
4942 #ifdef USE_CAIRO_GLESV2
4943 static const EGLint context_attribs[] = {
4944 EGL_CONTEXT_CLIENT_VERSION, 2,
4947 EGLint api = EGL_OPENGL_ES_API;
4949 EGLint *context_attribs = NULL;
4950 EGLint api = EGL_OPENGL_API;
4953 d->dpy = eglGetDisplay(d->display);
4954 if (!eglInitialize(d->dpy, &major, &minor)) {
4955 fprintf(stderr, "failed to initialize EGL\n");
4959 if (!eglBindAPI(api)) {
4960 fprintf(stderr, "failed to bind EGL client API\n");
4964 if (!eglChooseConfig(d->dpy, argb_cfg_attribs,
4965 &d->argb_config, 1, &n) || n != 1) {
4966 fprintf(stderr, "failed to choose argb EGL config\n");
4970 d->argb_ctx = eglCreateContext(d->dpy, d->argb_config,
4971 EGL_NO_CONTEXT, context_attribs);
4972 if (d->argb_ctx == NULL) {
4973 fprintf(stderr, "failed to create EGL context\n");
4977 d->argb_device = cairo_egl_device_create(d->dpy, d->argb_ctx);
4978 if (cairo_device_status(d->argb_device) != CAIRO_STATUS_SUCCESS) {
4979 fprintf(stderr, "failed to get cairo EGL argb device\n");
4987 fini_egl(struct display *display)
4989 cairo_device_destroy(display->argb_device);
4991 eglMakeCurrent(display->dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
4994 eglTerminate(display->dpy);
5000 init_dummy_surface(struct display *display)
5005 len = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, 1);
5007 display->dummy_surface =
5008 cairo_image_surface_create_for_data(data, CAIRO_FORMAT_ARGB32,
5010 display->dummy_surface_data = data;
5014 handle_display_data(struct task *task, uint32_t events)
5016 struct display *display =
5017 container_of(task, struct display, display_task);
5018 struct epoll_event ep;
5021 display->display_fd_events = events;
5023 if (events & EPOLLERR || events & EPOLLHUP) {
5024 display_exit(display);
5028 if (events & EPOLLIN) {
5029 ret = wl_display_dispatch(display->display);
5031 display_exit(display);
5036 if (events & EPOLLOUT) {
5037 ret = wl_display_flush(display->display);
5039 ep.events = EPOLLIN | EPOLLERR | EPOLLHUP;
5040 ep.data.ptr = &display->display_task;
5041 epoll_ctl(display->epoll_fd, EPOLL_CTL_MOD,
5042 display->display_fd, &ep);
5043 } else if (ret == -1 && errno != EAGAIN) {
5044 display_exit(display);
5051 log_handler(const char *format, va_list args)
5053 vfprintf(stderr, format, args);
5057 display_create(int *argc, char *argv[])
5061 wl_log_set_handler_client(log_handler);
5063 d = zalloc(sizeof *d);
5067 d->display = wl_display_connect(NULL);
5068 if (d->display == NULL) {
5069 fprintf(stderr, "failed to connect to Wayland display: %m\n");
5074 d->xkb_context = xkb_context_new(0);
5075 if (d->xkb_context == NULL) {
5076 fprintf(stderr, "Failed to create XKB context\n");
5081 d->epoll_fd = os_epoll_create_cloexec();
5082 d->display_fd = wl_display_get_fd(d->display);
5083 d->display_task.run = handle_display_data;
5084 display_watch_fd(d, d->display_fd, EPOLLIN | EPOLLERR | EPOLLHUP,
5087 wl_list_init(&d->deferred_list);
5088 wl_list_init(&d->input_list);
5089 wl_list_init(&d->output_list);
5090 wl_list_init(&d->global_list);
5093 d->workspace_count = 1;
5095 d->registry = wl_display_get_registry(d->display);
5096 wl_registry_add_listener(d->registry, ®istry_listener, d);
5098 if (wl_display_dispatch(d->display) < 0) {
5099 fprintf(stderr, "Failed to process Wayland connection: %m\n");
5103 #ifdef HAVE_CAIRO_EGL
5104 if (init_egl(d) < 0)
5105 fprintf(stderr, "EGL does not seem to work, "
5106 "falling back to software rendering and wl_shm.\n");
5111 d->theme = theme_create();
5113 wl_list_init(&d->window_list);
5115 init_dummy_surface(d);
5121 display_destroy_outputs(struct display *display)
5124 struct output *output;
5126 wl_list_for_each_safe(output, tmp, &display->output_list, link)
5127 output_destroy(output);
5131 display_destroy_inputs(struct display *display)
5134 struct input *input;
5136 wl_list_for_each_safe(input, tmp, &display->input_list, link)
5137 input_destroy(input);
5141 display_destroy(struct display *display)
5143 if (!wl_list_empty(&display->window_list))
5144 fprintf(stderr, "toytoolkit warning: %d windows exist.\n",
5145 wl_list_length(&display->window_list));
5147 if (!wl_list_empty(&display->deferred_list))
5148 fprintf(stderr, "toytoolkit warning: deferred tasks exist.\n");
5150 cairo_surface_destroy(display->dummy_surface);
5151 free(display->dummy_surface_data);
5153 display_destroy_outputs(display);
5154 display_destroy_inputs(display);
5156 xkb_context_unref(display->xkb_context);
5158 theme_destroy(display->theme);
5159 destroy_cursors(display);
5161 #ifdef HAVE_CAIRO_EGL
5162 if (display->argb_device)
5166 if (display->subcompositor)
5167 wl_subcompositor_destroy(display->subcompositor);
5170 wl_shell_destroy(display->shell);
5173 wl_shm_destroy(display->shm);
5175 if (display->data_device_manager)
5176 wl_data_device_manager_destroy(display->data_device_manager);
5178 wl_compositor_destroy(display->compositor);
5179 wl_registry_destroy(display->registry);
5181 close(display->epoll_fd);
5183 if (!(display->display_fd_events & EPOLLERR) &&
5184 !(display->display_fd_events & EPOLLHUP))
5185 wl_display_flush(display->display);
5187 wl_display_disconnect(display->display);
5192 display_set_user_data(struct display *display, void *data)
5194 display->user_data = data;
5198 display_get_user_data(struct display *display)
5200 return display->user_data;
5204 display_get_display(struct display *display)
5206 return display->display;
5210 display_has_subcompositor(struct display *display)
5212 if (display->subcompositor)
5215 wl_display_roundtrip(display->display);
5217 return display->subcompositor != NULL;
5221 display_get_cairo_device(struct display *display)
5223 return display->argb_device;
5227 display_get_output(struct display *display)
5229 return container_of(display->output_list.next, struct output, link);
5232 struct wl_compositor *
5233 display_get_compositor(struct display *display)
5235 return display->compositor;
5239 display_get_serial(struct display *display)
5241 return display->serial;
5245 display_get_egl_display(struct display *d)
5250 struct wl_data_source *
5251 display_create_data_source(struct display *display)
5253 return wl_data_device_manager_create_data_source(display->data_device_manager);
5257 display_get_argb_egl_config(struct display *d)
5259 return d->argb_config;
5263 display_get_shell(struct display *display)
5265 return display->shell;
5269 display_acquire_window_surface(struct display *display,
5270 struct window *window,
5273 struct surface *surface = window->main_surface;
5275 if (surface->buffer_type != WINDOW_BUFFER_TYPE_EGL_WINDOW)
5278 widget_get_cairo_surface(window->main_surface->widget);
5279 return surface->toysurface->acquire(surface->toysurface, ctx);
5283 display_release_window_surface(struct display *display,
5284 struct window *window)
5286 struct surface *surface = window->main_surface;
5288 if (surface->buffer_type != WINDOW_BUFFER_TYPE_EGL_WINDOW)
5291 surface->toysurface->release(surface->toysurface);
5295 display_defer(struct display *display, struct task *task)
5297 wl_list_insert(&display->deferred_list, &task->link);
5301 display_watch_fd(struct display *display,
5302 int fd, uint32_t events, struct task *task)
5304 struct epoll_event ep;
5308 epoll_ctl(display->epoll_fd, EPOLL_CTL_ADD, fd, &ep);
5312 display_unwatch_fd(struct display *display, int fd)
5314 epoll_ctl(display->epoll_fd, EPOLL_CTL_DEL, fd, NULL);
5318 display_run(struct display *display)
5321 struct epoll_event ep[16];
5324 display->running = 1;
5326 while (!wl_list_empty(&display->deferred_list)) {
5327 task = container_of(display->deferred_list.prev,
5329 wl_list_remove(&task->link);
5333 wl_display_dispatch_pending(display->display);
5335 if (!display->running)
5338 ret = wl_display_flush(display->display);
5339 if (ret < 0 && errno == EAGAIN) {
5341 EPOLLIN | EPOLLOUT | EPOLLERR | EPOLLHUP;
5342 ep[0].data.ptr = &display->display_task;
5344 epoll_ctl(display->epoll_fd, EPOLL_CTL_MOD,
5345 display->display_fd, &ep[0]);
5346 } else if (ret < 0) {
5350 count = epoll_wait(display->epoll_fd,
5351 ep, ARRAY_LENGTH(ep), -1);
5352 for (i = 0; i < count; i++) {
5353 task = ep[i].data.ptr;
5354 task->run(task, ep[i].events);
5360 display_exit(struct display *display)
5362 display->running = 0;
5366 keysym_modifiers_add(struct wl_array *modifiers_map,
5369 size_t len = strlen(name) + 1;
5372 p = wl_array_add(modifiers_map, len);
5377 strncpy(p, name, len);
5380 static xkb_mod_index_t
5381 keysym_modifiers_get_index(struct wl_array *modifiers_map,
5384 xkb_mod_index_t index = 0;
5385 char *p = modifiers_map->data;
5387 while ((const char *)p < (const char *)(modifiers_map->data + modifiers_map->size)) {
5388 if (strcmp(p, name) == 0)
5395 return XKB_MOD_INVALID;
5399 keysym_modifiers_get_mask(struct wl_array *modifiers_map,
5402 xkb_mod_index_t index = keysym_modifiers_get_index(modifiers_map, name);
5404 if (index == XKB_MOD_INVALID)
5405 return XKB_MOD_INVALID;
5411 fail_on_null(void *p)
5414 fprintf(stderr, "%s: out of memory\n", program_invocation_short_name);
5424 return fail_on_null(malloc(s));
5430 return fail_on_null(zalloc(s));
5434 xstrdup(const char *s)
5436 return fail_on_null(strdup(s));