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