blob: fffc23134ea8c6c58f83363a5a2e04367847f9b5 [file] [log] [blame]
Kristian Høgsbergffd710e2008-12-02 15:15:01 -05001/*
2 * Copyright © 2008 Kristian Høgsberg
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -040023#define _GNU_SOURCE
24
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -040025#include "../config.h"
26
Kristian Høgsberg61017b12008-11-02 18:51:48 -050027#include <stdint.h>
28#include <stdio.h>
29#include <stdlib.h>
30#include <string.h>
Kristian Høgsberg61017b12008-11-02 18:51:48 -050031#include <fcntl.h>
32#include <unistd.h>
33#include <math.h>
Benjamin Franzke0c991632011-09-27 21:57:31 +020034#include <assert.h>
Kristian Høgsberg61017b12008-11-02 18:51:48 -050035#include <time.h>
36#include <cairo.h>
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -040037#include <sys/mman.h>
Kristian Høgsberg3a696272011-09-14 17:33:48 -040038#include <sys/epoll.h>
Tiago Vignatti82db9d82012-05-23 22:06:27 +030039#include <sys/timerfd.h>
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -040040
Kristian Høgsbergf02a6492012-03-12 01:05:25 -040041#include <pixman.h>
42
Kristian Høgsberg297d6dd2011-02-09 10:51:15 -050043#include <wayland-egl.h>
44
Rob Clark6396ed32012-03-11 19:48:41 -050045#ifdef USE_CAIRO_GLESV2
46#include <GLES2/gl2.h>
47#include <GLES2/gl2ext.h>
48#else
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -040049#include <GL/gl.h>
Rob Clark6396ed32012-03-11 19:48:41 -050050#endif
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -040051#include <EGL/egl.h>
52#include <EGL/eglext.h>
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -040053
Kristian Høgsberg8def2642011-01-14 17:41:33 -050054#ifdef HAVE_CAIRO_EGL
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -040055#include <cairo-gl.h>
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -040056#endif
Kristian Høgsberg61017b12008-11-02 18:51:48 -050057
Daniel Stone9d4f0302012-02-15 16:33:21 +000058#include <xkbcommon/xkbcommon.h>
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +030059#include <wayland-cursor.h>
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -040060
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -050061#include <linux/input.h>
Pekka Paalanen50719bc2011-11-22 14:18:50 +020062#include <wayland-client.h>
Kristian Høgsberg5a315bc2012-05-15 22:33:43 -040063#include "../shared/cairo-util.h"
Scott Moreau7a1b32a2012-05-27 14:25:02 -060064#include "text-cursor-position-client-protocol.h"
Pekka Paalanen647f2bf2012-05-30 15:53:43 +030065#include "../shared/os-compatibility.h"
Kristian Høgsberg2f2cfae2008-11-08 22:46:30 -050066
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -050067#include "window.h"
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -050068
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -070069struct shm_pool;
Ander Conselvan de Oliveira1493d2a2012-05-03 12:29:46 +030070
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -050071struct display {
Kristian Høgsberg40979232008-11-25 22:40:39 -050072 struct wl_display *display;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -050073 struct wl_compositor *compositor;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -040074 struct wl_shell *shell;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -040075 struct wl_shm *shm;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -040076 struct wl_data_device_manager *data_device_manager;
Scott Moreau7a1b32a2012-05-27 14:25:02 -060077 struct text_cursor_position *text_cursor_position;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -040078 EGLDisplay dpy;
Kristian Høgsberg8e81df42012-01-11 14:24:46 -050079 EGLConfig argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +020080 EGLContext argb_ctx;
Benjamin Franzke0c991632011-09-27 21:57:31 +020081 cairo_device_t *argb_device;
Kristian Høgsbergeae5de72012-04-11 22:42:15 -040082 uint32_t serial;
Kristian Høgsberg3a696272011-09-14 17:33:48 -040083
84 int display_fd;
85 uint32_t mask;
86 struct task display_task;
87
88 int epoll_fd;
89 struct wl_list deferred_list;
90
Pekka Paalanen826d7952011-12-15 10:14:07 +020091 int running;
92
Kristian Høgsberg478d9262010-06-08 20:34:11 -040093 struct wl_list window_list;
Kristian Høgsberg808fd412010-07-20 17:06:19 -040094 struct wl_list input_list;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -050095 struct wl_list output_list;
Kristian Høgsberg291c69c2012-05-15 22:12:54 -040096
Kristian Høgsberg5adb4802012-05-15 22:25:28 -040097 struct theme *theme;
Kristian Høgsberg70163132012-05-08 15:55:39 -040098
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +030099 struct wl_cursor_theme *cursor_theme;
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300100 struct wl_cursor **cursors;
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400101
Kristian Høgsberg0d5007a2011-02-09 10:57:44 -0500102 PFNGLEGLIMAGETARGETTEXTURE2DOESPROC image_target_texture_2d;
103 PFNEGLCREATEIMAGEKHRPROC create_image;
104 PFNEGLDESTROYIMAGEKHRPROC destroy_image;
Pekka Paalanen999c5b52011-11-30 10:52:38 +0200105
106 display_output_handler_t output_configure_handler;
107
108 void *user_data;
Daniel Stone97f68542012-05-30 16:32:01 +0100109
110 struct xkb_context *xkb_context;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -0500111};
112
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400113enum {
Kristian Høgsberg407ef642012-04-27 17:17:12 -0400114 TYPE_NONE,
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400115 TYPE_TOPLEVEL,
Kristian Høgsbergf8ab46e2011-09-08 16:56:38 -0400116 TYPE_FULLSCREEN,
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -0500117 TYPE_MAXIMIZED,
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400118 TYPE_TRANSIENT,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -0500119 TYPE_MENU,
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400120 TYPE_CUSTOM
121};
Rob Bradford7507b572012-05-15 17:55:34 +0100122
123struct window_output {
124 struct output *output;
125 struct wl_list link;
126};
127
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -0500128struct window {
129 struct display *display;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500130 struct window *parent;
Rob Bradford7507b572012-05-15 17:55:34 +0100131 struct wl_list window_output_list;
Kristian Høgsberg61017b12008-11-02 18:51:48 -0500132 struct wl_surface *surface;
Pekka Paalanen9d1613e2011-11-25 12:09:16 +0200133 struct wl_shell_surface *shell_surface;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500134 struct wl_region *input_region;
135 struct wl_region *opaque_region;
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -0500136 char *title;
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500137 struct rectangle allocation, saved_allocation, server_allocation;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -0500138 struct rectangle pending_allocation;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500139 int x, y;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400140 int resize_edges;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -0400141 int redraw_scheduled;
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -0400142 int redraw_needed;
Kristian Høgsberg3a696272011-09-14 17:33:48 -0400143 struct task redraw_task;
Kristian Høgsberg42b4f802012-03-26 13:49:29 -0400144 int resize_needed;
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400145 int type;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400146 int transparent;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400147 struct input *keyboard_device;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400148 enum window_buffer_type buffer_type;
Kristian Høgsberg78231c82008-11-08 15:06:01 -0500149
Kristian Høgsberg6e2a8d72012-04-10 11:23:13 -0400150 cairo_surface_t *cairo_surface;
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -0500151
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700152 struct shm_pool *pool;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400153
Kristian Høgsberg6e83d582008-12-08 00:01:36 -0500154 window_key_handler_t key_handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -0500155 window_keyboard_focus_handler_t keyboard_focus_handler;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400156 window_data_handler_t data_handler;
157 window_drop_handler_t drop_handler;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500158 window_close_handler_t close_handler;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400159
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +0200160 struct frame *frame;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500161 struct widget *widget;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500162
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -0500163 void *user_data;
Kristian Høgsberg478d9262010-06-08 20:34:11 -0400164 struct wl_list link;
Kristian Høgsberg61017b12008-11-02 18:51:48 -0500165};
166
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500167struct widget {
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -0500168 struct window *window;
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300169 struct tooltip *tooltip;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500170 struct wl_list child_list;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400171 struct wl_list link;
172 struct rectangle allocation;
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500173 widget_resize_handler_t resize_handler;
174 widget_redraw_handler_t redraw_handler;
Kristian Høgsbergee143232012-01-09 08:42:24 -0500175 widget_enter_handler_t enter_handler;
176 widget_leave_handler_t leave_handler;
Kristian Høgsberg04e98342012-01-09 09:36:16 -0500177 widget_motion_handler_t motion_handler;
Kristian Høgsberga8a0db32012-01-09 11:12:05 -0500178 widget_button_handler_t button_handler;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400179 void *user_data;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500180 int opaque;
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300181 int tooltip_count;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400182};
183
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400184struct input {
185 struct display *display;
Daniel Stone37816df2012-05-16 18:45:18 +0100186 struct wl_seat *seat;
187 struct wl_pointer *pointer;
188 struct wl_keyboard *keyboard;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400189 struct window *pointer_focus;
190 struct window *keyboard_focus;
Ander Conselvan de Oliveira1493d2a2012-05-03 12:29:46 +0300191 int current_cursor;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +0300192 uint32_t cursor_anim_start;
193 struct wl_callback *cursor_frame_cb;
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +0300194 struct wl_surface *pointer_surface;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400195 uint32_t modifiers;
Kristian Høgsbergeae5de72012-04-11 22:42:15 -0400196 uint32_t pointer_enter_serial;
Kristian Høgsberg80680c72012-05-10 12:21:37 -0400197 float sx, sy;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400198 struct wl_list link;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400199
Kristian Høgsbergb6323512012-01-11 00:04:42 -0500200 struct widget *focus_widget;
Kristian Høgsberg831dd522012-01-10 23:46:33 -0500201 struct widget *grab;
202 uint32_t grab_button;
203
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400204 struct wl_data_device *data_device;
205 struct data_offer *drag_offer;
206 struct data_offer *selection_offer;
Daniel Stone97f68542012-05-30 16:32:01 +0100207
208 struct {
Daniel Stone97f68542012-05-30 16:32:01 +0100209 struct xkb_keymap *keymap;
210 struct xkb_state *state;
211 xkb_mod_mask_t control_mask;
212 xkb_mod_mask_t alt_mask;
213 xkb_mod_mask_t shift_mask;
214 } xkb;
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -0400215
216 struct task repeat_task;
217 int repeat_timer_fd;
218 uint32_t repeat_sym;
219 uint32_t repeat_key;
220 uint32_t repeat_time;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400221};
222
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500223struct output {
224 struct display *display;
225 struct wl_output *output;
226 struct rectangle allocation;
227 struct wl_list link;
Pekka Paalanen999c5b52011-11-30 10:52:38 +0200228
229 display_output_handler_t destroy_handler;
230 void *user_data;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500231};
232
Martin Minarik1998b152012-05-10 02:04:35 +0200233enum frame_button_action {
234 FRAME_BUTTON_NULL = 0,
235 FRAME_BUTTON_ICON = 1,
236 FRAME_BUTTON_CLOSE = 2,
237 FRAME_BUTTON_MINIMIZE = 3,
238 FRAME_BUTTON_MAXIMIZE = 4,
239};
240
241enum frame_button_pointer {
242 FRAME_BUTTON_DEFAULT = 0,
243 FRAME_BUTTON_OVER = 1,
244 FRAME_BUTTON_ACTIVE = 2,
245};
246
247enum frame_button_align {
248 FRAME_BUTTON_RIGHT = 0,
249 FRAME_BUTTON_LEFT = 1,
250};
251
252enum frame_button_decoration {
253 FRAME_BUTTON_NONE = 0,
254 FRAME_BUTTON_FANCY = 1,
255};
256
257struct frame_button {
258 struct widget *widget;
259 struct frame *frame;
260 cairo_surface_t *icon;
261 enum frame_button_action type;
262 enum frame_button_pointer state;
263 struct wl_list link; /* buttons_list */
264 enum frame_button_align align;
265 enum frame_button_decoration decoration;
266};
267
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500268struct frame {
269 struct widget *widget;
270 struct widget *child;
Martin Minarik1998b152012-05-10 02:04:35 +0200271 struct wl_list buttons_list;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500272};
273
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500274struct menu {
275 struct window *window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500276 struct widget *widget;
Kristian Høgsberg831dd522012-01-10 23:46:33 -0500277 struct input *input;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500278 const char **entries;
279 uint32_t time;
280 int current;
281 int count;
282 menu_func_t func;
283};
284
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300285struct tooltip {
286 struct widget *parent;
287 struct window *window;
288 struct widget *widget;
289 char *entry;
290 struct task tooltip_task;
291 int tooltip_fd;
292 float x, y;
293};
294
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700295struct shm_pool {
296 struct wl_shm_pool *pool;
297 size_t size;
298 size_t used;
299 void *data;
300};
301
Kristian Høgsberg7d804062010-09-07 21:50:06 -0400302enum {
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +0300303 CURSOR_DEFAULT = 100,
304 CURSOR_UNSET
Kristian Høgsberg7d804062010-09-07 21:50:06 -0400305};
306
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500307enum window_location {
308 WINDOW_INTERIOR = 0,
309 WINDOW_RESIZING_TOP = 1,
310 WINDOW_RESIZING_BOTTOM = 2,
311 WINDOW_RESIZING_LEFT = 4,
312 WINDOW_RESIZING_TOP_LEFT = 5,
313 WINDOW_RESIZING_BOTTOM_LEFT = 6,
314 WINDOW_RESIZING_RIGHT = 8,
315 WINDOW_RESIZING_TOP_RIGHT = 9,
316 WINDOW_RESIZING_BOTTOM_RIGHT = 10,
317 WINDOW_RESIZING_MASK = 15,
318 WINDOW_EXTERIOR = 16,
319 WINDOW_TITLEBAR = 17,
320 WINDOW_CLIENT_AREA = 18,
321};
322
Kristian Høgsbergc7c60642010-08-29 21:33:39 -0400323const char *option_xkb_layout = "us";
324const char *option_xkb_variant = "";
325const char *option_xkb_options = "";
326
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400327static const struct weston_option xkb_options[] = {
328 { WESTON_OPTION_STRING, "xkb-layout", 0, &option_xkb_layout },
329 { WESTON_OPTION_STRING, "xkb-variant", 0, &option_xkb_variant },
330 { WESTON_OPTION_STRING, "xkb-options", 0, &option_xkb_options },
Kristian Høgsbergc7c60642010-08-29 21:33:39 -0400331};
332
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400333static const cairo_user_data_key_t surface_data_key;
334struct surface_data {
335 struct wl_buffer *buffer;
336};
337
Kristian Høgsberg1f5d5072010-11-29 08:13:35 -0500338#define MULT(_d,c,a,t) \
339 do { t = c * a + 0x7f; _d = ((t >> 8) + t) >> 8; } while (0)
340
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500341#ifdef HAVE_CAIRO_EGL
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400342
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100343struct egl_window_surface_data {
344 struct display *display;
345 struct wl_surface *surface;
346 struct wl_egl_window *window;
347 EGLSurface surf;
348};
349
350static void
351egl_window_surface_data_destroy(void *p)
352{
353 struct egl_window_surface_data *data = p;
354 struct display *d = data->display;
355
356 eglDestroySurface(d->dpy, data->surf);
357 wl_egl_window_destroy(data->window);
358 data->surface = NULL;
359
360 free(p);
361}
362
363static cairo_surface_t *
364display_create_egl_window_surface(struct display *display,
365 struct wl_surface *surface,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400366 uint32_t flags,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100367 struct rectangle *rectangle)
368{
369 cairo_surface_t *cairo_surface;
370 struct egl_window_surface_data *data;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400371 EGLConfig config;
Benjamin Franzke0c991632011-09-27 21:57:31 +0200372 cairo_device_t *device;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100373
374 data = malloc(sizeof *data);
375 if (data == NULL)
376 return NULL;
377
378 data->display = display;
379 data->surface = surface;
380
Kristian Høgsberg067fd602012-02-29 16:15:53 -0500381 config = display->argb_config;
382 device = display->argb_device;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400383
Kristian Høgsberg91342c62011-04-14 14:44:58 -0400384 data->window = wl_egl_window_create(surface,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100385 rectangle->width,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400386 rectangle->height);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100387
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400388 data->surf = eglCreateWindowSurface(display->dpy, config,
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500389 data->window, NULL);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100390
Benjamin Franzke0c991632011-09-27 21:57:31 +0200391 cairo_surface = cairo_gl_surface_create_for_egl(device,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100392 data->surf,
393 rectangle->width,
394 rectangle->height);
395
396 cairo_surface_set_user_data(cairo_surface, &surface_data_key,
397 data, egl_window_surface_data_destroy);
398
399 return cairo_surface;
400}
401
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400402#endif
403
404struct wl_buffer *
405display_get_buffer_for_surface(struct display *display,
406 cairo_surface_t *surface)
407{
408 struct surface_data *data;
409
410 data = cairo_surface_get_user_data (surface, &surface_data_key);
411
412 return data->buffer;
413}
414
415struct shm_surface_data {
416 struct surface_data data;
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700417 struct shm_pool *pool;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400418};
419
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500420static void
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700421shm_pool_destroy(struct shm_pool *pool);
422
423static void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400424shm_surface_data_destroy(void *p)
425{
426 struct shm_surface_data *data = p;
427
428 wl_buffer_destroy(data->data.buffer);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700429 if (data->pool)
430 shm_pool_destroy(data->pool);
Ander Conselvan de Oliveira2a3cd282012-06-19 13:45:55 +0300431
432 free(data);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400433}
434
Kristian Høgsberg16626282012-04-03 11:21:27 -0400435static struct wl_shm_pool *
436make_shm_pool(struct display *display, int size, void **data)
437{
Kristian Høgsberg16626282012-04-03 11:21:27 -0400438 struct wl_shm_pool *pool;
439 int fd;
440
Pekka Paalanen1da1b8f2012-06-06 16:59:43 +0300441 fd = os_create_anonymous_file(size);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400442 if (fd < 0) {
Pekka Paalanen1da1b8f2012-06-06 16:59:43 +0300443 fprintf(stderr, "creating a buffer file for %d B failed: %m\n",
444 size);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400445 return NULL;
446 }
447
448 *data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400449 if (*data == MAP_FAILED) {
450 fprintf(stderr, "mmap failed: %m\n");
451 close(fd);
452 return NULL;
453 }
454
455 pool = wl_shm_create_pool(display->shm, fd, size);
456
457 close(fd);
458
459 return pool;
460}
461
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700462static struct shm_pool *
463shm_pool_create(struct display *display, size_t size)
464{
465 struct shm_pool *pool = malloc(sizeof *pool);
466
467 if (!pool)
468 return NULL;
469
470 pool->pool = make_shm_pool(display, size, &pool->data);
471 if (!pool->pool) {
472 free(pool);
473 return NULL;
474 }
475
476 pool->size = size;
477 pool->used = 0;
478
479 return pool;
480}
481
482static void *
483shm_pool_allocate(struct shm_pool *pool, size_t size, int *offset)
484{
485 if (pool->used + size > pool->size)
486 return NULL;
487
488 *offset = pool->used;
489 pool->used += size;
490
491 return (char *) pool->data + *offset;
492}
493
494/* destroy the pool. this does not unmap the memory though */
495static void
496shm_pool_destroy(struct shm_pool *pool)
497{
498 munmap(pool->data, pool->size);
499 wl_shm_pool_destroy(pool->pool);
500 free(pool);
501}
502
503/* Start allocating from the beginning of the pool again */
504static void
505shm_pool_reset(struct shm_pool *pool)
506{
507 pool->used = 0;
508}
509
510static int
511data_length_for_shm_surface(struct rectangle *rect)
512{
513 int stride;
514
515 stride = cairo_format_stride_for_width (CAIRO_FORMAT_ARGB32,
516 rect->width);
517 return stride * rect->height;
518}
519
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500520static cairo_surface_t *
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700521display_create_shm_surface_from_pool(struct display *display,
522 struct rectangle *rectangle,
523 uint32_t flags, struct shm_pool *pool)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400524{
525 struct shm_surface_data *data;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400526 uint32_t format;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400527 cairo_surface_t *surface;
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700528 int stride, length, offset;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400529 void *map;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400530
531 data = malloc(sizeof *data);
532 if (data == NULL)
533 return NULL;
534
535 stride = cairo_format_stride_for_width (CAIRO_FORMAT_ARGB32,
536 rectangle->width);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700537 length = stride * rectangle->height;
538 data->pool = NULL;
539 map = shm_pool_allocate(pool, length, &offset);
540
541 if (!map) {
542 free(data);
543 return NULL;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400544 }
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400545
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400546 surface = cairo_image_surface_create_for_data (map,
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400547 CAIRO_FORMAT_ARGB32,
548 rectangle->width,
549 rectangle->height,
550 stride);
551
552 cairo_surface_set_user_data (surface, &surface_data_key,
553 data, shm_surface_data_destroy);
554
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400555 if (flags & SURFACE_OPAQUE)
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500556 format = WL_SHM_FORMAT_XRGB8888;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400557 else
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500558 format = WL_SHM_FORMAT_ARGB8888;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400559
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700560 data->data.buffer = wl_shm_pool_create_buffer(pool->pool, offset,
Kristian Høgsberg16626282012-04-03 11:21:27 -0400561 rectangle->width,
562 rectangle->height,
563 stride, format);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400564
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700565 return surface;
566}
567
568static cairo_surface_t *
569display_create_shm_surface(struct display *display,
570 struct rectangle *rectangle, uint32_t flags,
571 struct window *window)
572{
573 struct shm_surface_data *data;
574 struct shm_pool *pool;
575 cairo_surface_t *surface;
576
577 if (window && window->pool) {
578 shm_pool_reset(window->pool);
579 surface = display_create_shm_surface_from_pool(display,
580 rectangle,
581 flags,
582 window->pool);
583 if (surface)
584 return surface;
585 }
586
587 pool = shm_pool_create(display,
588 data_length_for_shm_surface(rectangle));
589 if (!pool)
590 return NULL;
591
592 surface =
593 display_create_shm_surface_from_pool(display, rectangle,
594 flags, pool);
595
596 if (!surface) {
597 shm_pool_destroy(pool);
598 return NULL;
599 }
600
601 /* make sure we destroy the pool when the surface is destroyed */
602 data = cairo_surface_get_user_data(surface, &surface_data_key);
603 data->pool = pool;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400604
605 return surface;
606}
607
nobled7b87cb02011-02-01 18:51:47 +0000608static int
609check_size(struct rectangle *rect)
610{
611 if (rect->width && rect->height)
612 return 0;
613
614 fprintf(stderr, "tried to create surface of "
615 "width: %d, height: %d\n", rect->width, rect->height);
616 return -1;
617}
618
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400619cairo_surface_t *
620display_create_surface(struct display *display,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100621 struct wl_surface *surface,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400622 struct rectangle *rectangle,
623 uint32_t flags)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400624{
nobled7b87cb02011-02-01 18:51:47 +0000625 if (check_size(rectangle) < 0)
626 return NULL;
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500627#ifdef HAVE_CAIRO_EGL
Ander Conselvan de Oliveira210eb9d2012-05-25 16:03:06 +0300628 if (display->dpy && !(flags & SURFACE_SHM))
Kristian Høgsberg5990fbb2012-04-10 16:55:11 -0400629 return display_create_egl_window_surface(display,
630 surface,
631 flags,
632 rectangle);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400633#endif
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400634 return display_create_shm_surface(display, rectangle, flags, NULL);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400635}
636
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300637static const char *cursors[] = {
638 "bottom_left_corner",
639 "bottom_right_corner",
640 "bottom_side",
641 "grabbing",
642 "left_ptr",
643 "left_side",
644 "right_side",
645 "top_left_corner",
646 "top_right_corner",
647 "top_side",
648 "xterm",
649 "hand1",
Kristian Høgsberg8591dbf2012-06-04 16:10:40 -0400650 "watch",
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300651};
652
653static void
654create_cursors(struct display *display)
655{
656 unsigned int i;
657
658 display->cursor_theme = wl_cursor_theme_load(NULL, 32, display->shm);
659 display->cursors =
660 malloc(ARRAY_LENGTH(cursors) * sizeof display->cursors[0]);
661
662 for (i = 0; i < ARRAY_LENGTH(cursors); i++)
663 display->cursors[i] =
664 wl_cursor_theme_get_cursor(display->cursor_theme,
665 cursors[i]);
666}
667
668static void
669destroy_cursors(struct display *display)
670{
671 wl_cursor_theme_destroy(display->cursor_theme);
Yan Wanga261f7e2012-05-28 14:07:25 +0800672 free(display->cursors);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300673}
674
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300675struct wl_cursor_image *
676display_get_pointer_image(struct display *display, int pointer)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400677{
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300678 struct wl_cursor *cursor =
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300679 wl_cursor_theme_get_cursor(display->cursor_theme,
680 cursors[pointer]);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400681
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300682 return cursor ? cursor->images[0] : NULL;
Kristian Høgsberg9a686242010-08-18 15:28:04 -0400683}
684
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400685static void
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200686window_get_resize_dx_dy(struct window *window, int *x, int *y)
687{
688 if (window->resize_edges & WINDOW_RESIZING_LEFT)
689 *x = window->server_allocation.width - window->allocation.width;
690 else
691 *x = 0;
692
693 if (window->resize_edges & WINDOW_RESIZING_TOP)
694 *y = window->server_allocation.height -
695 window->allocation.height;
696 else
697 *y = 0;
698
699 window->resize_edges = 0;
700}
701
702static void
Kristian Høgsberg6a1b2012009-12-16 14:43:37 -0500703window_attach_surface(struct window *window)
704{
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400705 struct display *display = window->display;
706 struct wl_buffer *buffer;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000707#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100708 struct egl_window_surface_data *data;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000709#endif
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500710 int32_t x, y;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100711
Kristian Høgsberg407ef642012-04-27 17:17:12 -0400712 if (window->type == TYPE_NONE) {
713 window->type = TYPE_TOPLEVEL;
714 if (display->shell)
715 wl_shell_surface_set_toplevel(window->shell_surface);
716 }
717
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100718 switch (window->buffer_type) {
Benjamin Franzke22d54812011-07-16 19:50:32 +0000719#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100720 case WINDOW_BUFFER_TYPE_EGL_WINDOW:
721 data = cairo_surface_get_user_data(window->cairo_surface,
722 &surface_data_key);
723
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100724 cairo_gl_surface_swapbuffers(window->cairo_surface);
725 wl_egl_window_get_attached_size(data->window,
726 &window->server_allocation.width,
727 &window->server_allocation.height);
728 break;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000729#endif
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100730 case WINDOW_BUFFER_TYPE_SHM:
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100731 buffer =
732 display_get_buffer_for_surface(display,
Kristian Høgsberg6e2a8d72012-04-10 11:23:13 -0400733 window->cairo_surface);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100734
Ander Conselvan de Oliveirae018b042012-01-27 17:17:39 +0200735 window_get_resize_dx_dy(window, &x, &y);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100736 wl_surface_attach(window->surface, buffer, x, y);
Kristian Høgsberg6e2a8d72012-04-10 11:23:13 -0400737 wl_surface_damage(window->surface, 0, 0,
738 window->allocation.width,
739 window->allocation.height);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100740 window->server_allocation = window->allocation;
Kristian Høgsberg6e2a8d72012-04-10 11:23:13 -0400741 cairo_surface_destroy(window->cairo_surface);
742 window->cairo_surface = NULL;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100743 break;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000744 default:
745 return;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100746 }
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500747
Kristian Høgsberg63e5e062012-03-04 23:47:56 -0500748 if (window->input_region) {
749 wl_surface_set_input_region(window->surface,
750 window->input_region);
751 wl_region_destroy(window->input_region);
752 window->input_region = NULL;
753 }
754
755 if (window->opaque_region) {
756 wl_surface_set_opaque_region(window->surface,
757 window->opaque_region);
758 wl_region_destroy(window->opaque_region);
759 window->opaque_region = NULL;
760 }
Kristian Høgsberg6a1b2012009-12-16 14:43:37 -0500761}
762
Kristian Høgsberga341fa02010-01-24 18:10:15 -0500763void
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400764window_flush(struct window *window)
Kristian Høgsberga341fa02010-01-24 18:10:15 -0500765{
Kristian Høgsberg9629fe32012-03-26 15:56:39 -0400766 if (window->cairo_surface)
Benjamin Franzkebde55ec2011-03-07 15:08:09 +0100767 window_attach_surface(window);
Kristian Høgsberga341fa02010-01-24 18:10:15 -0500768}
769
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400770void
771window_set_surface(struct window *window, cairo_surface_t *surface)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400772{
Kristian Høgsberg2b43bd72010-11-08 15:45:55 -0500773 cairo_surface_reference(surface);
774
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400775 if (window->cairo_surface != NULL)
776 cairo_surface_destroy(window->cairo_surface);
777
Kristian Høgsberg2b43bd72010-11-08 15:45:55 -0500778 window->cairo_surface = surface;
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400779}
780
Benjamin Franzke22d54812011-07-16 19:50:32 +0000781#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100782static void
783window_resize_cairo_window_surface(struct window *window)
784{
785 struct egl_window_surface_data *data;
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200786 int x, y;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100787
788 data = cairo_surface_get_user_data(window->cairo_surface,
789 &surface_data_key);
790
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200791 window_get_resize_dx_dy(window, &x, &y),
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100792 wl_egl_window_resize(data->window,
793 window->allocation.width,
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200794 window->allocation.height,
795 x,y);
796
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100797 cairo_gl_surface_set_size(window->cairo_surface,
798 window->allocation.width,
799 window->allocation.height);
800}
Benjamin Franzke22d54812011-07-16 19:50:32 +0000801#endif
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100802
Kristian Høgsbergbcee9a42011-10-12 00:36:16 -0400803struct display *
804window_get_display(struct window *window)
805{
806 return window->display;
807}
808
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400809void
810window_create_surface(struct window *window)
811{
812 cairo_surface_t *surface;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400813 uint32_t flags = 0;
814
815 if (!window->transparent)
816 flags = SURFACE_OPAQUE;
817
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400818 switch (window->buffer_type) {
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500819#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100820 case WINDOW_BUFFER_TYPE_EGL_WINDOW:
821 if (window->cairo_surface) {
822 window_resize_cairo_window_surface(window);
823 return;
824 }
825 surface = display_create_surface(window->display,
826 window->surface,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400827 &window->allocation, flags);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100828 break;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400829#endif
830 case WINDOW_BUFFER_TYPE_SHM:
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400831 surface = display_create_shm_surface(window->display,
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400832 &window->allocation,
833 flags, window);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400834 break;
Bryce Harrington515f63a2010-11-19 12:14:55 -0800835 default:
836 surface = NULL;
837 break;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400838 }
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400839
840 window_set_surface(window, surface);
841 cairo_surface_destroy(surface);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400842}
843
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +0200844static void frame_destroy(struct frame *frame);
845
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400846void
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500847window_destroy(struct window *window)
848{
Pekka Paalanen77cbc952011-11-15 13:34:55 +0200849 struct display *display = window->display;
850 struct input *input;
Rob Bradford7507b572012-05-15 17:55:34 +0100851 struct window_output *window_output;
852 struct window_output *window_output_tmp;
Pekka Paalanen77cbc952011-11-15 13:34:55 +0200853
854 if (window->redraw_scheduled)
855 wl_list_remove(&window->redraw_task.link);
856
857 wl_list_for_each(input, &display->input_list, link) {
858 if (input->pointer_focus == window)
859 input->pointer_focus = NULL;
860 if (input->keyboard_focus == window)
861 input->keyboard_focus = NULL;
Kristian Høgsbergae6e2712012-01-26 11:09:20 -0500862 if (input->focus_widget &&
863 input->focus_widget->window == window)
864 input->focus_widget = NULL;
Pekka Paalanen77cbc952011-11-15 13:34:55 +0200865 }
866
Rob Bradford7507b572012-05-15 17:55:34 +0100867 wl_list_for_each_safe(window_output, window_output_tmp,
868 &window->window_output_list, link) {
869 free (window_output);
870 }
871
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500872 if (window->input_region)
873 wl_region_destroy(window->input_region);
874 if (window->opaque_region)
875 wl_region_destroy(window->opaque_region);
876
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +0200877 if (window->frame)
878 frame_destroy(window->frame);
879
Pekka Paalanen6b2dc912011-11-29 10:25:08 +0200880 if (window->shell_surface)
881 wl_shell_surface_destroy(window->shell_surface);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500882 wl_surface_destroy(window->surface);
883 wl_list_remove(&window->link);
Pekka Paalanen5ec65852011-12-16 10:09:29 +0200884
885 if (window->cairo_surface != NULL)
886 cairo_surface_destroy(window->cairo_surface);
Pekka Paalanen5ec65852011-12-16 10:09:29 +0200887
888 free(window->title);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500889 free(window);
890}
891
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500892static struct widget *
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500893widget_find_widget(struct widget *widget, int32_t x, int32_t y)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400894{
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500895 struct widget *child, *target;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400896
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500897 wl_list_for_each(child, &widget->child_list, link) {
898 target = widget_find_widget(child, x, y);
899 if (target)
900 return target;
901 }
902
903 if (widget->allocation.x <= x &&
904 x < widget->allocation.x + widget->allocation.width &&
905 widget->allocation.y <= y &&
906 y < widget->allocation.y + widget->allocation.height) {
907 return widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400908 }
909
910 return NULL;
911}
912
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500913static struct widget *
914widget_create(struct window *window, void *data)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400915{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500916 struct widget *widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400917
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500918 widget = malloc(sizeof *widget);
919 memset(widget, 0, sizeof *widget);
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -0500920 widget->window = window;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500921 widget->user_data = data;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500922 widget->allocation = window->allocation;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500923 wl_list_init(&widget->child_list);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500924 widget->opaque = 0;
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300925 widget->tooltip = NULL;
926 widget->tooltip_count = 0;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500927
928 return widget;
929}
930
931struct widget *
932window_add_widget(struct window *window, void *data)
933{
934 window->widget = widget_create(window, data);
935 wl_list_init(&window->widget->link);
936
937 return window->widget;
938}
939
940struct widget *
941widget_add_widget(struct widget *parent, void *data)
942{
943 struct widget *widget;
944
945 widget = widget_create(parent->window, data);
946 wl_list_insert(parent->child_list.prev, &widget->link);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400947
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500948 return widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400949}
950
951void
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500952widget_destroy(struct widget *widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400953{
Pekka Paalanene156fb62012-01-19 13:51:38 +0200954 struct display *display = widget->window->display;
955 struct input *input;
956
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300957 if (widget->tooltip) {
958 free(widget->tooltip);
959 widget->tooltip = NULL;
960 }
961
Pekka Paalanene156fb62012-01-19 13:51:38 +0200962 wl_list_for_each(input, &display->input_list, link) {
963 if (input->focus_widget == widget)
964 input->focus_widget = NULL;
965 }
966
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500967 wl_list_remove(&widget->link);
968 free(widget);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400969}
970
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400971void
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500972widget_get_allocation(struct widget *widget, struct rectangle *allocation)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400973{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500974 *allocation = widget->allocation;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400975}
976
977void
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500978widget_set_size(struct widget *widget, int32_t width, int32_t height)
979{
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500980 widget->allocation.width = width;
981 widget->allocation.height = height;
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500982}
983
984void
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500985widget_set_allocation(struct widget *widget,
986 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400987{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500988 widget->allocation.x = x;
989 widget->allocation.y = y;
Tiago Vignattic5528d82012-02-09 19:06:55 +0200990 widget_set_size(widget, width, height);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400991}
992
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500993void
994widget_set_transparent(struct widget *widget, int transparent)
995{
996 widget->opaque = !transparent;
997}
998
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400999void *
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001000widget_get_user_data(struct widget *widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001001{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001002 return widget->user_data;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001003}
1004
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001005void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05001006widget_set_resize_handler(struct widget *widget,
1007 widget_resize_handler_t handler)
1008{
1009 widget->resize_handler = handler;
1010}
1011
1012void
1013widget_set_redraw_handler(struct widget *widget,
1014 widget_redraw_handler_t handler)
1015{
1016 widget->redraw_handler = handler;
1017}
1018
1019void
Kristian Høgsbergee143232012-01-09 08:42:24 -05001020widget_set_enter_handler(struct widget *widget, widget_enter_handler_t handler)
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001021{
Kristian Høgsbergee143232012-01-09 08:42:24 -05001022 widget->enter_handler = handler;
1023}
1024
1025void
1026widget_set_leave_handler(struct widget *widget, widget_leave_handler_t handler)
1027{
1028 widget->leave_handler = handler;
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001029}
1030
1031void
Kristian Høgsberg04e98342012-01-09 09:36:16 -05001032widget_set_motion_handler(struct widget *widget,
1033 widget_motion_handler_t handler)
1034{
1035 widget->motion_handler = handler;
1036}
1037
1038void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05001039widget_set_button_handler(struct widget *widget,
1040 widget_button_handler_t handler)
1041{
1042 widget->button_handler = handler;
1043}
1044
1045void
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001046widget_schedule_redraw(struct widget *widget)
1047{
1048 window_schedule_redraw(widget->window);
1049}
1050
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04001051cairo_surface_t *
1052window_get_surface(struct window *window)
1053{
Kristian Høgsberg012a0072010-10-26 00:02:20 -04001054 return cairo_surface_reference(window->cairo_surface);
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04001055}
1056
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001057struct wl_surface *
1058window_get_wl_surface(struct window *window)
1059{
1060 return window->surface;
1061}
1062
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02001063struct wl_shell_surface *
1064window_get_wl_shell_surface(struct window *window)
1065{
1066 return window->shell_surface;
1067}
1068
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001069static void
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001070tooltip_redraw_handler(struct widget *widget, void *data)
1071{
1072 cairo_t *cr;
1073 const int32_t r = 3;
1074 struct tooltip *tooltip = data;
1075 int32_t width, height;
1076 struct window *window = widget->window;
1077
1078 cr = cairo_create(window->cairo_surface);
1079 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
1080 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
1081 cairo_paint(cr);
1082
1083 width = window->allocation.width;
1084 height = window->allocation.height;
1085 rounded_rect(cr, 0, 0, width, height, r);
1086
1087 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
1088 cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
1089 cairo_fill(cr);
1090
1091 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
1092 cairo_move_to(cr, 10, 16);
1093 cairo_show_text(cr, tooltip->entry);
1094 cairo_destroy(cr);
1095}
1096
1097static cairo_text_extents_t
1098get_text_extents(struct tooltip *tooltip)
1099{
1100 struct window *window;
1101 cairo_t *cr;
1102 cairo_text_extents_t extents;
1103
1104 /* we borrow cairo_surface from the parent cause tooltip's wasn't
1105 * created yet */
1106 window = tooltip->widget->window->parent;
1107 cr = cairo_create(window->cairo_surface);
1108 cairo_text_extents(cr, tooltip->entry, &extents);
1109 cairo_destroy(cr);
1110
1111 return extents;
1112}
1113
1114static int
1115window_create_tooltip(struct tooltip *tooltip)
1116{
1117 struct widget *parent = tooltip->parent;
1118 struct display *display = parent->window->display;
1119 struct window *window;
1120 const int offset_y = 27;
1121 const int margin = 3;
1122 cairo_text_extents_t extents;
1123
1124 if (tooltip->widget)
1125 return 0;
1126
1127 window = window_create_transient(display, parent->window, tooltip->x,
1128 tooltip->y + offset_y,
1129 WL_SHELL_SURFACE_TRANSIENT_INACTIVE);
1130 if (!window)
1131 return -1;
1132
1133 tooltip->window = window;
1134 tooltip->widget = window_add_widget(tooltip->window, tooltip);
1135
1136 extents = get_text_extents(tooltip);
1137 widget_set_redraw_handler(tooltip->widget, tooltip_redraw_handler);
1138 window_schedule_resize(window, extents.width + 20, 20 + margin * 2);
1139
1140 return 0;
1141}
1142
1143void
1144widget_destroy_tooltip(struct widget *parent)
1145{
1146 struct tooltip *tooltip = parent->tooltip;
1147
1148 parent->tooltip_count = 0;
1149 if (!tooltip)
1150 return;
1151
1152 if (tooltip->widget) {
1153 widget_destroy(tooltip->widget);
1154 window_destroy(tooltip->window);
1155 tooltip->widget = NULL;
1156 tooltip->window = NULL;
1157 }
1158
1159 close(tooltip->tooltip_fd);
1160 free(tooltip->entry);
1161 free(tooltip);
1162 parent->tooltip = NULL;
1163}
1164
1165static void
1166tooltip_func(struct task *task, uint32_t events)
1167{
1168 struct tooltip *tooltip =
1169 container_of(task, struct tooltip, tooltip_task);
1170 uint64_t exp;
1171
1172 read(tooltip->tooltip_fd, &exp, sizeof (uint64_t));
1173 window_create_tooltip(tooltip);
1174}
1175
1176#define TOOLTIP_TIMEOUT 500
1177static int
1178tooltip_timer_reset(struct tooltip *tooltip)
1179{
1180 struct itimerspec its;
1181
1182 its.it_interval.tv_sec = 0;
1183 its.it_interval.tv_nsec = 0;
1184 its.it_value.tv_sec = TOOLTIP_TIMEOUT / 1000;
1185 its.it_value.tv_nsec = (TOOLTIP_TIMEOUT % 1000) * 1000 * 1000;
1186 if (timerfd_settime(tooltip->tooltip_fd, 0, &its, NULL) < 0) {
1187 fprintf(stderr, "could not set timerfd\n: %m");
1188 return -1;
1189 }
1190
1191 return 0;
1192}
1193
1194int
1195widget_set_tooltip(struct widget *parent, char *entry, float x, float y)
1196{
1197 struct tooltip *tooltip = parent->tooltip;
1198
1199 parent->tooltip_count++;
1200 if (tooltip) {
1201 tooltip->x = x;
1202 tooltip->y = y;
1203 tooltip_timer_reset(tooltip);
1204 return 0;
1205 }
1206
1207 /* the handler might be triggered too fast via input device motion, so
1208 * we need this check here to make sure tooltip is fully initialized */
1209 if (parent->tooltip_count > 1)
1210 return 0;
1211
1212 tooltip = malloc(sizeof *tooltip);
1213 if (!tooltip)
1214 return -1;
1215
1216 parent->tooltip = tooltip;
1217 tooltip->parent = parent;
1218 tooltip->widget = NULL;
1219 tooltip->window = NULL;
1220 tooltip->x = x;
1221 tooltip->y = y;
1222 tooltip->entry = strdup(entry);
1223 tooltip->tooltip_fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
1224 if (tooltip->tooltip_fd < 0) {
1225 fprintf(stderr, "could not create timerfd\n: %m");
1226 return -1;
1227 }
1228
1229 tooltip->tooltip_task.run = tooltip_func;
1230 display_watch_fd(parent->window->display, tooltip->tooltip_fd,
1231 EPOLLIN, &tooltip->tooltip_task);
1232 tooltip_timer_reset(tooltip);
1233
1234 return 0;
1235}
1236
1237static void
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001238frame_resize_handler(struct widget *widget,
1239 int32_t width, int32_t height, void *data)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001240{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001241 struct frame *frame = data;
1242 struct widget *child = frame->child;
1243 struct rectangle allocation;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001244 struct display *display = widget->window->display;
Martin Minarik1998b152012-05-10 02:04:35 +02001245 struct frame_button * button;
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04001246 struct theme *t = display->theme;
Martin Minarik1998b152012-05-10 02:04:35 +02001247 int x_l, x_r, y, w, h;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001248 int decoration_width, decoration_height;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001249 int opaque_margin;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001250
Kristian Høgsbergb435e842012-03-05 20:38:08 -05001251 if (widget->window->type != TYPE_FULLSCREEN) {
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001252 decoration_width = (t->width + t->margin) * 2;
1253 decoration_height = t->width +
1254 t->titlebar_height + t->margin * 2;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001255
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001256 allocation.x = t->width + t->margin;
1257 allocation.y = t->titlebar_height + t->margin;
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05001258 allocation.width = width - decoration_width;
1259 allocation.height = height - decoration_height;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001260
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001261 opaque_margin = t->margin + t->frame_radius;
Martin Minarik1998b152012-05-10 02:04:35 +02001262
1263 wl_list_for_each(button, &frame->buttons_list, link)
1264 button->widget->opaque = 0;
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05001265 } else {
1266 decoration_width = 0;
1267 decoration_height = 0;
1268
1269 allocation.x = 0;
1270 allocation.y = 0;
1271 allocation.width = width;
1272 allocation.height = height;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001273 opaque_margin = 0;
Martin Minarik1998b152012-05-10 02:04:35 +02001274
1275 wl_list_for_each(button, &frame->buttons_list, link)
1276 button->widget->opaque = 1;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001277 }
1278
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001279 widget_set_allocation(child, allocation.x, allocation.y,
1280 allocation.width, allocation.height);
1281
1282 if (child->resize_handler)
1283 child->resize_handler(child,
1284 allocation.width,
1285 allocation.height,
1286 child->user_data);
1287
Scott Moreauf7e498c2012-05-14 11:39:29 -06001288 width = child->allocation.width + decoration_width;
1289 height = child->allocation.height + decoration_height;
1290
1291 widget->window->input_region =
1292 wl_compositor_create_region(display->compositor);
1293 wl_region_add(widget->window->input_region,
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001294 t->margin, t->margin,
1295 width - 2 * t->margin,
1296 height - 2 * t->margin);
Scott Moreauf7e498c2012-05-14 11:39:29 -06001297
1298 widget_set_allocation(widget, 0, 0, width, height);
Kristian Høgsbergf10df852012-02-28 21:52:12 -05001299
1300 if (child->opaque) {
1301 widget->window->opaque_region =
1302 wl_compositor_create_region(display->compositor);
1303 wl_region_add(widget->window->opaque_region,
1304 opaque_margin, opaque_margin,
1305 widget->allocation.width - 2 * opaque_margin,
1306 widget->allocation.height - 2 * opaque_margin);
1307 }
Martin Minarik1998b152012-05-10 02:04:35 +02001308
1309 /* frame internal buttons */
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001310 x_r = frame->widget->allocation.width - t->width - t->margin;
1311 x_l = t->width + t->margin;
1312 y = t->width + t->margin;
Martin Minarik1998b152012-05-10 02:04:35 +02001313 wl_list_for_each(button, &frame->buttons_list, link) {
1314 const int button_padding = 4;
1315 w = cairo_image_surface_get_width(button->icon);
1316 h = cairo_image_surface_get_height(button->icon);
1317
1318 if (button->decoration == FRAME_BUTTON_FANCY)
1319 w += 10;
1320
1321 if (button->align == FRAME_BUTTON_LEFT) {
1322 widget_set_allocation(button->widget,
1323 x_l, y , w + 1, h + 1);
1324 x_l += w;
1325 x_l += button_padding;
1326 } else {
1327 x_r -= w;
1328 widget_set_allocation(button->widget,
1329 x_r, y , w + 1, h + 1);
1330 x_r -= button_padding;
1331 }
1332 }
1333}
1334
1335static int
1336frame_button_enter_handler(struct widget *widget,
1337 struct input *input, float x, float y, void *data)
1338{
1339 struct frame_button *frame_button = data;
1340
1341 widget_schedule_redraw(frame_button->widget);
1342 frame_button->state = FRAME_BUTTON_OVER;
1343
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001344 return CURSOR_LEFT_PTR;
Martin Minarik1998b152012-05-10 02:04:35 +02001345}
1346
1347static void
1348frame_button_leave_handler(struct widget *widget, struct input *input, void *data)
1349{
1350 struct frame_button *frame_button = data;
1351
1352 widget_schedule_redraw(frame_button->widget);
1353 frame_button->state = FRAME_BUTTON_DEFAULT;
1354}
1355
1356static void
1357frame_button_button_handler(struct widget *widget,
1358 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01001359 uint32_t button,
1360 enum wl_pointer_button_state state, void *data)
Martin Minarik1998b152012-05-10 02:04:35 +02001361{
1362 struct frame_button *frame_button = data;
1363 struct window *window = widget->window;
1364
1365 if (button != BTN_LEFT)
1366 return;
1367
1368 switch (state) {
Daniel Stone4dbadb12012-05-30 16:31:51 +01001369 case WL_POINTER_BUTTON_STATE_PRESSED:
Martin Minarik1998b152012-05-10 02:04:35 +02001370 frame_button->state = FRAME_BUTTON_ACTIVE;
1371 widget_schedule_redraw(frame_button->widget);
1372
1373 if (frame_button->type == FRAME_BUTTON_ICON)
1374 window_show_frame_menu(window, input, time);
1375 return;
Daniel Stone4dbadb12012-05-30 16:31:51 +01001376 case WL_POINTER_BUTTON_STATE_RELEASED:
Martin Minarik1998b152012-05-10 02:04:35 +02001377 frame_button->state = FRAME_BUTTON_DEFAULT;
1378 widget_schedule_redraw(frame_button->widget);
1379 break;
1380 }
1381
1382 switch (frame_button->type) {
1383 case FRAME_BUTTON_CLOSE:
1384 if (window->close_handler)
1385 window->close_handler(window->parent,
1386 window->user_data);
1387 else
1388 display_exit(window->display);
1389 break;
1390 case FRAME_BUTTON_MINIMIZE:
1391 fprintf(stderr,"Minimize stub\n");
1392 break;
1393 case FRAME_BUTTON_MAXIMIZE:
1394 window_set_maximized(window, window->type != TYPE_MAXIMIZED);
1395 break;
1396 default:
1397 /* Unknown operation */
1398 break;
1399 }
1400}
1401
1402static void
1403frame_button_redraw_handler(struct widget *widget, void *data)
1404{
1405 struct frame_button *frame_button = data;
1406 cairo_t *cr;
1407 int width, height, x, y;
1408 struct window *window = widget->window;
1409
1410 x = widget->allocation.x;
1411 y = widget->allocation.y;
1412 width = widget->allocation.width;
1413 height = widget->allocation.height;
1414
1415 if (!width)
1416 return;
1417 if (!height)
1418 return;
1419 if (widget->opaque)
1420 return;
1421
1422 cr = cairo_create(window->cairo_surface);
1423
1424 if (frame_button->decoration == FRAME_BUTTON_FANCY) {
1425 cairo_set_line_width(cr, 1);
1426
1427 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
1428 cairo_rectangle (cr, x, y, 25, 16);
1429
1430 cairo_stroke_preserve(cr);
1431
1432 switch (frame_button->state) {
1433 case FRAME_BUTTON_DEFAULT:
1434 cairo_set_source_rgb(cr, 0.88, 0.88, 0.88);
1435 break;
1436 case FRAME_BUTTON_OVER:
1437 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
1438 break;
1439 case FRAME_BUTTON_ACTIVE:
1440 cairo_set_source_rgb(cr, 0.7, 0.7, 0.7);
1441 break;
1442 }
1443
1444 cairo_fill (cr);
1445
1446 x += 4;
1447 }
1448
1449 cairo_set_source_surface(cr, frame_button->icon, x, y);
1450 cairo_paint(cr);
1451
1452 cairo_destroy(cr);
1453}
1454
1455static struct widget *
1456frame_button_create(struct frame *frame, void *data, enum frame_button_action type,
1457 enum frame_button_align align, enum frame_button_decoration style)
1458{
1459 struct frame_button *frame_button;
1460 const char *icon = data;
1461
1462 frame_button = malloc (sizeof *frame_button);
1463 memset(frame_button, 0, sizeof *frame_button);
1464
1465 frame_button->icon = cairo_image_surface_create_from_png(icon);
1466 frame_button->widget = widget_add_widget(frame->widget, frame_button);
1467 frame_button->frame = frame;
1468 frame_button->type = type;
1469 frame_button->align = align;
1470 frame_button->decoration = style;
1471
1472 wl_list_insert(frame->buttons_list.prev, &frame_button->link);
1473
1474 widget_set_redraw_handler(frame_button->widget, frame_button_redraw_handler);
1475 widget_set_enter_handler(frame_button->widget, frame_button_enter_handler);
1476 widget_set_leave_handler(frame_button->widget, frame_button_leave_handler);
1477 widget_set_button_handler(frame_button->widget, frame_button_button_handler);
1478 return frame_button->widget;
1479}
1480
1481static void
1482frame_button_destroy(struct frame_button *frame_button)
1483{
1484 widget_destroy(frame_button->widget);
1485 wl_list_remove(&frame_button->link);
1486 cairo_surface_destroy(frame_button->icon);
1487 free(frame_button);
1488
1489 return;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001490}
1491
1492static void
1493frame_redraw_handler(struct widget *widget, void *data)
1494{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001495 cairo_t *cr;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001496 struct window *window = widget->window;
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04001497 struct theme *t = window->display->theme;
1498 uint32_t flags = 0;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001499
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05001500 if (window->type == TYPE_FULLSCREEN)
1501 return;
1502
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001503 cr = cairo_create(window->cairo_surface);
1504
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001505 if (window->keyboard_device)
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04001506 flags |= THEME_FRAME_ACTIVE;
1507 theme_render_frame(t, cr, widget->allocation.width,
1508 widget->allocation.height, window->title, flags);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001509
1510 cairo_destroy(cr);
1511}
1512
1513static int
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001514frame_get_pointer_image_for_location(struct frame *frame, struct input *input)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001515{
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001516 struct theme *t = frame->widget->window->display->theme;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001517 int location;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001518
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001519 location = theme_get_location(t, input->sx, input->sy,
1520 frame->widget->allocation.width,
1521 frame->widget->allocation.height);
1522
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001523 switch (location) {
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001524 case THEME_LOCATION_RESIZING_TOP:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001525 return CURSOR_TOP;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001526 case THEME_LOCATION_RESIZING_BOTTOM:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001527 return CURSOR_BOTTOM;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001528 case THEME_LOCATION_RESIZING_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001529 return CURSOR_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001530 case THEME_LOCATION_RESIZING_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001531 return CURSOR_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001532 case THEME_LOCATION_RESIZING_TOP_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001533 return CURSOR_TOP_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001534 case THEME_LOCATION_RESIZING_TOP_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001535 return CURSOR_TOP_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001536 case THEME_LOCATION_RESIZING_BOTTOM_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001537 return CURSOR_BOTTOM_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001538 case THEME_LOCATION_RESIZING_BOTTOM_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001539 return CURSOR_BOTTOM_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001540 case THEME_LOCATION_EXTERIOR:
1541 case THEME_LOCATION_TITLEBAR:
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001542 default:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001543 return CURSOR_LEFT_PTR;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001544 }
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001545}
1546
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001547static void
1548frame_menu_func(struct window *window, int index, void *data)
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001549{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001550 switch (index) {
1551 case 0: /* close */
1552 if (window->close_handler)
1553 window->close_handler(window->parent,
1554 window->user_data);
1555 else
1556 display_exit(window->display);
1557 break;
1558 case 1: /* fullscreen */
1559 /* we don't have a way to get out of fullscreen for now */
1560 window_set_fullscreen(window, 1);
1561 break;
1562 case 2: /* rotate */
1563 case 3: /* scale */
1564 break;
1565 }
1566}
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001567
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05001568void
1569window_show_frame_menu(struct window *window,
1570 struct input *input, uint32_t time)
1571{
1572 int32_t x, y;
1573
1574 static const char *entries[] = {
1575 "Close", "Fullscreen", "Rotate", "Scale"
1576 };
1577
1578 input_get_position(input, &x, &y);
1579 window_show_menu(window->display, input, time, window,
1580 x - 10, y - 10, frame_menu_func, entries, 4);
1581}
1582
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001583static int
1584frame_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001585 struct input *input, float x, float y, void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001586{
1587 return frame_get_pointer_image_for_location(data, input);
1588}
Kristian Høgsberg7d804062010-09-07 21:50:06 -04001589
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001590static int
1591frame_motion_handler(struct widget *widget,
1592 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001593 float x, float y, void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001594{
1595 return frame_get_pointer_image_for_location(data, input);
1596}
Rob Bradford8bd35c72011-10-25 12:20:51 +01001597
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001598static void
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001599frame_button_handler(struct widget *widget,
1600 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01001601 uint32_t button, enum wl_pointer_button_state state,
1602 void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001603
1604{
1605 struct frame *frame = data;
1606 struct window *window = widget->window;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001607 struct display *display = window->display;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001608 int location;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001609
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001610 location = theme_get_location(display->theme, input->sx, input->sy,
1611 frame->widget->allocation.width,
1612 frame->widget->allocation.height);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001613
Daniel Stone4dbadb12012-05-30 16:31:51 +01001614 if (window->display->shell && button == BTN_LEFT &&
1615 state == WL_POINTER_BUTTON_STATE_PRESSED) {
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001616 switch (location) {
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001617 case THEME_LOCATION_TITLEBAR:
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001618 if (!window->shell_surface)
1619 break;
Kristian Høgsberg5a4e9ff2012-06-04 16:04:07 -04001620 input_set_pointer_image(input, CURSOR_DRAGGING);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001621 input_ungrab(input);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001622 wl_shell_surface_move(window->shell_surface,
Daniel Stone37816df2012-05-16 18:45:18 +01001623 input_get_seat(input),
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001624 display->serial);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001625 break;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001626 case THEME_LOCATION_RESIZING_TOP:
1627 case THEME_LOCATION_RESIZING_BOTTOM:
1628 case THEME_LOCATION_RESIZING_LEFT:
1629 case THEME_LOCATION_RESIZING_RIGHT:
1630 case THEME_LOCATION_RESIZING_TOP_LEFT:
1631 case THEME_LOCATION_RESIZING_TOP_RIGHT:
1632 case THEME_LOCATION_RESIZING_BOTTOM_LEFT:
1633 case THEME_LOCATION_RESIZING_BOTTOM_RIGHT:
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001634 if (!window->shell_surface)
1635 break;
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001636 input_ungrab(input);
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001637
1638 if (!display->dpy) {
1639 /* If we're using shm, allocate a big
1640 pool to create buffers out of while
1641 we resize. We should probably base
1642 this number on the size of the output. */
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -07001643 window->pool =
1644 shm_pool_create(display, 6 * 1024 * 1024);
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001645 }
1646
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001647 wl_shell_surface_resize(window->shell_surface,
Daniel Stone37816df2012-05-16 18:45:18 +01001648 input_get_seat(input),
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001649 display->serial, location);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001650 break;
1651 }
Daniel Stone4dbadb12012-05-30 16:31:51 +01001652 } else if (button == BTN_RIGHT &&
1653 state == WL_POINTER_BUTTON_STATE_PRESSED) {
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05001654 window_show_frame_menu(window, input, time);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001655 }
1656}
1657
1658struct widget *
1659frame_create(struct window *window, void *data)
1660{
1661 struct frame *frame;
1662
1663 frame = malloc(sizeof *frame);
1664 memset(frame, 0, sizeof *frame);
1665
1666 frame->widget = window_add_widget(window, frame);
1667 frame->child = widget_add_widget(frame->widget, data);
Martin Minarik1998b152012-05-10 02:04:35 +02001668
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001669 widget_set_redraw_handler(frame->widget, frame_redraw_handler);
1670 widget_set_resize_handler(frame->widget, frame_resize_handler);
1671 widget_set_enter_handler(frame->widget, frame_enter_handler);
1672 widget_set_motion_handler(frame->widget, frame_motion_handler);
1673 widget_set_button_handler(frame->widget, frame_button_handler);
1674
Martin Minarik1998b152012-05-10 02:04:35 +02001675 /* Create empty list for frame buttons */
1676 wl_list_init(&frame->buttons_list);
1677
1678 frame_button_create(frame, DATADIR "/weston/icon_window.png",
1679 FRAME_BUTTON_ICON, FRAME_BUTTON_LEFT, FRAME_BUTTON_NONE);
1680
1681 frame_button_create(frame, DATADIR "/weston/sign_close.png",
1682 FRAME_BUTTON_CLOSE, FRAME_BUTTON_RIGHT, FRAME_BUTTON_FANCY);
1683
1684 frame_button_create(frame, DATADIR "/weston/sign_maximize.png",
1685 FRAME_BUTTON_MAXIMIZE, FRAME_BUTTON_RIGHT, FRAME_BUTTON_FANCY);
1686
1687 frame_button_create(frame, DATADIR "/weston/sign_minimize.png",
1688 FRAME_BUTTON_MINIMIZE, FRAME_BUTTON_RIGHT, FRAME_BUTTON_FANCY);
1689
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001690 window->frame = frame;
1691
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001692 return frame->child;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001693}
1694
Kristian Høgsberga1627922012-06-20 17:30:03 -04001695void
1696frame_set_child_size(struct widget *widget, int child_width, int child_height)
1697{
1698 struct display *display = widget->window->display;
1699 struct theme *t = display->theme;
1700 int decoration_width, decoration_height;
1701 int width, height;
1702
1703 if (widget->window->type != TYPE_FULLSCREEN) {
1704 decoration_width = (t->width + t->margin) * 2;
1705 decoration_height = t->width +
1706 t->titlebar_height + t->margin * 2;
1707
1708 width = child_width + decoration_width;
1709 height = child_height + decoration_height;
1710 } else {
1711 width = child_width;
1712 height = child_height;
1713 }
1714
1715 window_schedule_resize(widget->window, width, height);
1716}
1717
Kristian Høgsberge4feb562008-11-08 18:53:37 -05001718static void
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001719frame_destroy(struct frame *frame)
1720{
Martin Minarik1998b152012-05-10 02:04:35 +02001721 struct frame_button *button, *tmp;
1722
1723 wl_list_for_each_safe(button, tmp, &frame->buttons_list, link)
1724 frame_button_destroy(button);
1725
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001726 /* frame->child must be destroyed by the application */
1727 widget_destroy(frame->widget);
1728 free(frame);
1729}
1730
1731static void
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001732input_set_focus_widget(struct input *input, struct widget *focus,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001733 float x, float y)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001734{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001735 struct widget *old, *widget;
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001736 int pointer = CURSOR_LEFT_PTR;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001737
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001738 if (focus == input->focus_widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001739 return;
1740
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001741 old = input->focus_widget;
Kristian Høgsbergee143232012-01-09 08:42:24 -05001742 if (old) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001743 widget = old;
1744 if (input->grab)
1745 widget = input->grab;
1746 if (widget->leave_handler)
1747 widget->leave_handler(old, input, widget->user_data);
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001748 input->focus_widget = NULL;
Kristian Høgsbergee143232012-01-09 08:42:24 -05001749 }
1750
1751 if (focus) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001752 widget = focus;
1753 if (input->grab)
1754 widget = input->grab;
Kristian Høgsbergf33984e2012-06-04 23:36:32 -04001755 input->focus_widget = focus;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001756 if (widget->enter_handler)
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001757 pointer = widget->enter_handler(focus, input, x, y,
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001758 widget->user_data);
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05001759
Kristian Høgsberg5a4e9ff2012-06-04 16:04:07 -04001760 input_set_pointer_image(input, pointer);
Kristian Høgsbergee143232012-01-09 08:42:24 -05001761 }
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001762}
1763
1764static void
Daniel Stone37816df2012-05-16 18:45:18 +01001765pointer_handle_motion(void *data, struct wl_pointer *pointer,
1766 uint32_t time, wl_fixed_t sx_w, wl_fixed_t sy_w)
Kristian Høgsberg61017b12008-11-02 18:51:48 -05001767{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001768 struct input *input = data;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001769 struct window *window = input->pointer_focus;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001770 struct widget *widget;
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001771 int cursor = CURSOR_LEFT_PTR;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001772 float sx = wl_fixed_to_double(sx_w);
1773 float sy = wl_fixed_to_double(sy_w);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001774
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001775 input->sx = sx;
1776 input->sy = sy;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001777
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001778 if (!(input->grab && input->grab_button)) {
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001779 widget = widget_find_widget(window->widget, sx, sy);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001780 input_set_focus_widget(input, widget, sx, sy);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001781 }
1782
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001783 if (input->grab)
1784 widget = input->grab;
1785 else
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001786 widget = input->focus_widget;
Kristian Høgsberg04e98342012-01-09 09:36:16 -05001787 if (widget && widget->motion_handler)
Daniel Stone37816df2012-05-16 18:45:18 +01001788 cursor = widget->motion_handler(input->focus_widget,
1789 input, time, sx, sy,
1790 widget->user_data);
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001791
Kristian Høgsberg5a4e9ff2012-06-04 16:04:07 -04001792 input_set_pointer_image(input, cursor);
Kristian Høgsberg61017b12008-11-02 18:51:48 -05001793}
1794
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001795void
1796input_grab(struct input *input, struct widget *widget, uint32_t button)
1797{
1798 input->grab = widget;
1799 input->grab_button = button;
1800}
1801
1802void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001803input_ungrab(struct input *input)
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001804{
1805 struct widget *widget;
1806
1807 input->grab = NULL;
1808 if (input->pointer_focus) {
1809 widget = widget_find_widget(input->pointer_focus->widget,
1810 input->sx, input->sy);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001811 input_set_focus_widget(input, widget, input->sx, input->sy);
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001812 }
1813}
1814
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04001815static void
Daniel Stone37816df2012-05-16 18:45:18 +01001816pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial,
Daniel Stone4dbadb12012-05-30 16:31:51 +01001817 uint32_t time, uint32_t button, uint32_t state_w)
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001818{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001819 struct input *input = data;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001820 struct widget *widget;
Daniel Stone4dbadb12012-05-30 16:31:51 +01001821 enum wl_pointer_button_state state = state_w;
Kristian Høgsbergbf6ceda2010-06-14 20:25:06 -04001822
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001823 input->display->serial = serial;
Daniel Stone4dbadb12012-05-30 16:31:51 +01001824 if (input->focus_widget && input->grab == NULL &&
1825 state == WL_POINTER_BUTTON_STATE_PRESSED)
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001826 input_grab(input, input->focus_widget, button);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001827
Neil Roberts6b28aad2012-01-23 19:11:18 +00001828 widget = input->grab;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001829 if (widget && widget->button_handler)
Neil Roberts6b28aad2012-01-23 19:11:18 +00001830 (*widget->button_handler)(widget,
1831 input, time,
1832 button, state,
1833 input->grab->user_data);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001834
Daniel Stone4dbadb12012-05-30 16:31:51 +01001835 if (input->grab && input->grab_button == button &&
1836 state == WL_POINTER_BUTTON_STATE_RELEASED)
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001837 input_ungrab(input);
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001838}
1839
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001840static void
Daniel Stone37816df2012-05-16 18:45:18 +01001841pointer_handle_axis(void *data, struct wl_pointer *pointer,
Daniel Stone2fce4022012-05-30 16:32:00 +01001842 uint32_t time, uint32_t axis, wl_fixed_t value)
Scott Moreau210d0792012-03-22 10:47:01 -06001843{
1844}
1845
1846static void
Daniel Stone37816df2012-05-16 18:45:18 +01001847keyboard_handle_key(void *data, struct wl_keyboard *keyboard,
Daniel Stonec9785ea2012-05-30 16:31:52 +01001848 uint32_t serial, uint32_t time, uint32_t key,
1849 uint32_t state_w)
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001850{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001851 struct input *input = data;
1852 struct window *window = input->keyboard_focus;
Kristian Høgsberg70163132012-05-08 15:55:39 -04001853 uint32_t code, num_syms;
Daniel Stonec9785ea2012-05-30 16:31:52 +01001854 enum wl_keyboard_key_state state = state_w;
Kristian Høgsberg70163132012-05-08 15:55:39 -04001855 const xkb_keysym_t *syms;
1856 xkb_keysym_t sym;
1857 xkb_mod_mask_t mask;
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001858 struct itimerspec its;
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001859
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001860 input->display->serial = serial;
Daniel Stone0d5a5092012-02-16 12:48:00 +00001861 code = key + 8;
Daniel Stoneb7452fe2012-06-01 12:14:06 +01001862 if (!window || window->keyboard_device != input || !input->xkb.state)
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001863 return;
1864
Daniel Stone97f68542012-05-30 16:32:01 +01001865 num_syms = xkb_key_get_syms(input->xkb.state, code, &syms);
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001866
Daniel Stone97f68542012-05-30 16:32:01 +01001867 mask = xkb_state_serialize_mods(input->xkb.state,
Daniel Stone351eb612012-05-31 15:27:47 -04001868 XKB_STATE_DEPRESSED |
Kristian Høgsberg70163132012-05-08 15:55:39 -04001869 XKB_STATE_LATCHED);
1870 input->modifiers = 0;
Daniel Stone97f68542012-05-30 16:32:01 +01001871 if (mask & input->xkb.control_mask)
Kristian Høgsberg70163132012-05-08 15:55:39 -04001872 input->modifiers |= MOD_CONTROL_MASK;
Daniel Stone97f68542012-05-30 16:32:01 +01001873 if (mask & input->xkb.alt_mask)
Kristian Høgsberg70163132012-05-08 15:55:39 -04001874 input->modifiers |= MOD_ALT_MASK;
Daniel Stone97f68542012-05-30 16:32:01 +01001875 if (mask & input->xkb.shift_mask)
Kristian Høgsberg70163132012-05-08 15:55:39 -04001876 input->modifiers |= MOD_SHIFT_MASK;
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04001877
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001878 sym = XKB_KEY_NoSymbol;
1879 if (num_syms == 1)
1880 sym = syms[0];
1881
1882 if (sym == XKB_KEY_F5 && input->modifiers == MOD_ALT_MASK) {
Daniel Stonec9785ea2012-05-30 16:31:52 +01001883 if (state == WL_KEYBOARD_KEY_STATE_PRESSED)
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05001884 window_set_maximized(window,
1885 window->type != TYPE_MAXIMIZED);
1886 } else if (window->key_handler) {
1887 (*window->key_handler)(window, input, time, key,
1888 sym, state, window->user_data);
1889 }
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001890
1891 if (state == WL_KEYBOARD_KEY_STATE_RELEASED &&
1892 key == input->repeat_key) {
1893 its.it_interval.tv_sec = 0;
1894 its.it_interval.tv_nsec = 0;
1895 its.it_value.tv_sec = 0;
1896 its.it_value.tv_nsec = 0;
1897 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
1898 } else if (state == WL_KEYBOARD_KEY_STATE_PRESSED) {
1899 input->repeat_sym = sym;
1900 input->repeat_key = key;
1901 input->repeat_time = time;
1902 its.it_interval.tv_sec = 0;
1903 its.it_interval.tv_nsec = 25 * 1000 * 1000;
1904 its.it_value.tv_sec = 0;
1905 its.it_value.tv_nsec = 400 * 1000 * 1000;
1906 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
1907 }
1908}
1909
1910static void
1911keyboard_repeat_func(struct task *task, uint32_t events)
1912{
1913 struct input *input =
1914 container_of(task, struct input, repeat_task);
1915 struct window *window = input->keyboard_focus;
1916 uint64_t exp;
1917
1918 read(input->repeat_timer_fd, &exp, sizeof (uint64_t));
1919
Kristian Høgsbergbd0cd762012-06-20 15:17:18 -04001920 if (window && window->key_handler) {
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001921 (*window->key_handler)(window, input, input->repeat_time,
1922 input->repeat_key, input->repeat_sym,
1923 WL_KEYBOARD_KEY_STATE_PRESSED,
1924 window->user_data);
1925 }
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001926}
1927
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001928static void
Daniel Stone351eb612012-05-31 15:27:47 -04001929keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard,
1930 uint32_t serial, uint32_t mods_depressed,
1931 uint32_t mods_latched, uint32_t mods_locked,
1932 uint32_t group)
1933{
1934 struct input *input = data;
1935
Daniel Stoneb7452fe2012-06-01 12:14:06 +01001936 xkb_state_update_mask(input->xkb.state, mods_depressed, mods_latched,
1937 mods_locked, 0, 0, group);
Daniel Stone351eb612012-05-31 15:27:47 -04001938}
1939
1940static void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001941input_remove_pointer_focus(struct input *input)
Pekka Paalanene1207c72011-12-16 12:02:09 +02001942{
1943 struct window *window = input->pointer_focus;
1944
1945 if (!window)
1946 return;
1947
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001948 input_set_focus_widget(input, NULL, 0, 0);
Pekka Paalanene1207c72011-12-16 12:02:09 +02001949
Pekka Paalanene1207c72011-12-16 12:02:09 +02001950 input->pointer_focus = NULL;
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001951 input->current_cursor = CURSOR_UNSET;
Pekka Paalanene1207c72011-12-16 12:02:09 +02001952}
1953
1954static void
Daniel Stone37816df2012-05-16 18:45:18 +01001955pointer_handle_enter(void *data, struct wl_pointer *pointer,
1956 uint32_t serial, struct wl_surface *surface,
1957 wl_fixed_t sx_w, wl_fixed_t sy_w)
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001958{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001959 struct input *input = data;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001960 struct window *window;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001961 struct widget *widget;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001962 float sx = wl_fixed_to_double(sx_w);
1963 float sy = wl_fixed_to_double(sy_w);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001964
Martin Minarik1998b152012-05-10 02:04:35 +02001965 if (!surface) {
1966 /* enter event for a window we've just destroyed */
1967 return;
1968 }
1969
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001970 input->display->serial = serial;
1971 input->pointer_enter_serial = serial;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001972 input->pointer_focus = wl_surface_get_user_data(surface);
Kristian Høgsberg900b2262011-09-06 14:33:52 -04001973 window = input->pointer_focus;
Kristian Høgsberg900b2262011-09-06 14:33:52 -04001974
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001975 if (window->pool) {
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -07001976 shm_pool_destroy(window->pool);
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001977 window->pool = NULL;
1978 /* Schedule a redraw to free the pool */
1979 window_schedule_redraw(window);
1980 }
1981
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001982 input->sx = sx;
1983 input->sy = sy;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001984
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001985 widget = widget_find_widget(window->widget, sx, sy);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001986 input_set_focus_widget(input, widget, sx, sy);
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001987}
Kristian Høgsberg59826582011-01-20 11:56:57 -05001988
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001989static void
Daniel Stone37816df2012-05-16 18:45:18 +01001990pointer_handle_leave(void *data, struct wl_pointer *pointer,
1991 uint32_t serial, struct wl_surface *surface)
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001992{
1993 struct input *input = data;
1994
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001995 input->display->serial = serial;
1996 input_remove_pointer_focus(input);
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001997}
1998
1999static void
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05002000input_remove_keyboard_focus(struct input *input)
Pekka Paalanene1207c72011-12-16 12:02:09 +02002001{
2002 struct window *window = input->keyboard_focus;
2003
2004 if (!window)
2005 return;
2006
2007 window->keyboard_device = NULL;
2008 if (window->keyboard_focus_handler)
2009 (*window->keyboard_focus_handler)(window, NULL,
2010 window->user_data);
2011
2012 input->keyboard_focus = NULL;
2013}
2014
2015static void
Daniel Stone37816df2012-05-16 18:45:18 +01002016keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,
2017 uint32_t serial, struct wl_surface *surface,
2018 struct wl_array *keys)
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05002019{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002020 struct input *input = data;
Pekka Paalanene1207c72011-12-16 12:02:09 +02002021 struct window *window;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002022
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002023 input->display->serial = serial;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002024 input->keyboard_focus = wl_surface_get_user_data(surface);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002025
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002026 window = input->keyboard_focus;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002027 window->keyboard_device = input;
2028 if (window->keyboard_focus_handler)
2029 (*window->keyboard_focus_handler)(window,
2030 window->keyboard_device,
2031 window->user_data);
2032}
2033
2034static void
Daniel Stone37816df2012-05-16 18:45:18 +01002035keyboard_handle_leave(void *data, struct wl_keyboard *keyboard,
2036 uint32_t serial, struct wl_surface *surface)
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002037{
2038 struct input *input = data;
2039
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002040 input->display->serial = serial;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002041 input_remove_keyboard_focus(input);
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05002042}
2043
Daniel Stoneb7452fe2012-06-01 12:14:06 +01002044static void
2045keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard,
2046 uint32_t format, int fd, uint32_t size)
2047{
2048 struct input *input = data;
2049 char *map_str;
2050
2051 if (!data) {
2052 close(fd);
2053 return;
2054 }
2055
2056 if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
2057 close(fd);
2058 return;
2059 }
2060
2061 map_str = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
2062 if (map_str == MAP_FAILED) {
2063 close(fd);
2064 return;
2065 }
2066
2067 input->xkb.keymap = xkb_map_new_from_string(input->display->xkb_context,
2068 map_str,
2069 XKB_KEYMAP_FORMAT_TEXT_V1,
2070 0);
2071 munmap(map_str, size);
2072 close(fd);
2073
2074 if (!input->xkb.keymap) {
2075 fprintf(stderr, "failed to compile keymap\n");
2076 return;
2077 }
2078
2079 input->xkb.state = xkb_state_new(input->xkb.keymap);
2080 if (!input->xkb.state) {
2081 fprintf(stderr, "failed to create XKB state\n");
2082 xkb_map_unref(input->xkb.keymap);
2083 input->xkb.keymap = NULL;
2084 return;
2085 }
2086
2087 input->xkb.control_mask =
2088 1 << xkb_map_mod_get_index(input->xkb.keymap, "Control");
2089 input->xkb.alt_mask =
2090 1 << xkb_map_mod_get_index(input->xkb.keymap, "Mod1");
2091 input->xkb.shift_mask =
2092 1 << xkb_map_mod_get_index(input->xkb.keymap, "Shift");
2093}
2094
Daniel Stone37816df2012-05-16 18:45:18 +01002095static const struct wl_pointer_listener pointer_listener = {
2096 pointer_handle_enter,
2097 pointer_handle_leave,
2098 pointer_handle_motion,
2099 pointer_handle_button,
2100 pointer_handle_axis,
2101};
2102
2103static const struct wl_keyboard_listener keyboard_listener = {
Daniel Stoneb7452fe2012-06-01 12:14:06 +01002104 keyboard_handle_keymap,
Daniel Stone37816df2012-05-16 18:45:18 +01002105 keyboard_handle_enter,
2106 keyboard_handle_leave,
2107 keyboard_handle_key,
Daniel Stone351eb612012-05-31 15:27:47 -04002108 keyboard_handle_modifiers,
Daniel Stone37816df2012-05-16 18:45:18 +01002109};
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002110
2111static void
Daniel Stone37816df2012-05-16 18:45:18 +01002112seat_handle_capabilities(void *data, struct wl_seat *seat,
2113 enum wl_seat_capability caps)
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002114{
Daniel Stone37816df2012-05-16 18:45:18 +01002115 struct input *input = data;
2116
2117 if ((caps & WL_SEAT_CAPABILITY_POINTER) && !input->pointer) {
2118 input->pointer = wl_seat_get_pointer(seat);
2119 wl_pointer_set_user_data(input->pointer, input);
2120 wl_pointer_add_listener(input->pointer, &pointer_listener,
2121 input);
2122 } else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && input->pointer) {
2123 wl_pointer_destroy(input->pointer);
2124 input->pointer = NULL;
2125 }
2126
2127 if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !input->keyboard) {
2128 input->keyboard = wl_seat_get_keyboard(seat);
2129 wl_keyboard_set_user_data(input->keyboard, input);
2130 wl_keyboard_add_listener(input->keyboard, &keyboard_listener,
2131 input);
2132 } else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && input->keyboard) {
2133 wl_keyboard_destroy(input->keyboard);
2134 input->keyboard = NULL;
2135 }
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002136}
2137
Daniel Stone37816df2012-05-16 18:45:18 +01002138static const struct wl_seat_listener seat_listener = {
2139 seat_handle_capabilities,
Kristian Høgsberg94448c02008-12-30 11:03:33 -05002140};
2141
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002142void
2143input_get_position(struct input *input, int32_t *x, int32_t *y)
2144{
2145 *x = input->sx;
2146 *y = input->sy;
2147}
2148
Kristian Høgsbergd56bd902012-06-05 09:58:51 -04002149struct display *
2150input_get_display(struct input *input)
2151{
2152 return input->display;
2153}
2154
Daniel Stone37816df2012-05-16 18:45:18 +01002155struct wl_seat *
2156input_get_seat(struct input *input)
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04002157{
Daniel Stone37816df2012-05-16 18:45:18 +01002158 return input->seat;
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04002159}
2160
Kristian Høgsberg67cac8a2011-01-19 14:20:33 -05002161uint32_t
2162input_get_modifiers(struct input *input)
2163{
2164 return input->modifiers;
2165}
2166
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002167struct widget *
2168input_get_focus_widget(struct input *input)
2169{
2170 return input->focus_widget;
2171}
2172
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002173struct data_offer {
2174 struct wl_data_offer *offer;
2175 struct input *input;
2176 struct wl_array types;
2177 int refcount;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002178
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002179 struct task io_task;
2180 int fd;
2181 data_func_t func;
2182 int32_t x, y;
2183 void *user_data;
2184};
2185
2186static void
2187data_offer_offer(void *data, struct wl_data_offer *wl_data_offer, const char *type)
2188{
2189 struct data_offer *offer = data;
2190 char **p;
2191
2192 p = wl_array_add(&offer->types, sizeof *p);
2193 *p = strdup(type);
2194}
2195
2196static const struct wl_data_offer_listener data_offer_listener = {
2197 data_offer_offer,
2198};
2199
2200static void
2201data_offer_destroy(struct data_offer *offer)
2202{
2203 char **p;
2204
2205 offer->refcount--;
2206 if (offer->refcount == 0) {
2207 wl_data_offer_destroy(offer->offer);
2208 for (p = offer->types.data; *p; p++)
2209 free(*p);
2210 wl_array_release(&offer->types);
2211 free(offer);
2212 }
2213}
2214
2215static void
2216data_device_data_offer(void *data,
2217 struct wl_data_device *data_device, uint32_t id)
2218{
2219 struct data_offer *offer;
2220
2221 offer = malloc(sizeof *offer);
2222
2223 wl_array_init(&offer->types);
2224 offer->refcount = 1;
2225 offer->input = data;
2226
2227 /* FIXME: Generate typesafe wrappers for this */
2228 offer->offer = (struct wl_data_offer *)
2229 wl_proxy_create_for_id((struct wl_proxy *) data_device,
2230 id, &wl_data_offer_interface);
2231
2232 wl_data_offer_add_listener(offer->offer,
2233 &data_offer_listener, offer);
2234}
2235
2236static void
2237data_device_enter(void *data, struct wl_data_device *data_device,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002238 uint32_t serial, struct wl_surface *surface,
Daniel Stone103db7f2012-05-08 17:17:55 +01002239 wl_fixed_t x_w, wl_fixed_t y_w,
2240 struct wl_data_offer *offer)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002241{
2242 struct input *input = data;
2243 struct window *window;
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002244 void *types_data;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002245 float x = wl_fixed_to_double(x_w);
2246 float y = wl_fixed_to_double(y_w);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002247 char **p;
2248
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002249 input->pointer_enter_serial = serial;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002250 window = wl_surface_get_user_data(surface);
2251 input->pointer_focus = window;
2252
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002253 if (offer) {
2254 input->drag_offer = wl_data_offer_get_user_data(offer);
2255
2256 p = wl_array_add(&input->drag_offer->types, sizeof *p);
2257 *p = NULL;
2258
2259 types_data = input->drag_offer->types.data;
2260 } else {
2261 input->drag_offer = NULL;
2262 types_data = NULL;
2263 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002264
2265 window = input->pointer_focus;
2266 if (window->data_handler)
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002267 window->data_handler(window, input, x, y, types_data,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002268 window->user_data);
2269}
2270
2271static void
2272data_device_leave(void *data, struct wl_data_device *data_device)
2273{
2274 struct input *input = data;
2275
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002276 if (input->drag_offer) {
2277 data_offer_destroy(input->drag_offer);
2278 input->drag_offer = NULL;
2279 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002280}
2281
2282static void
2283data_device_motion(void *data, struct wl_data_device *data_device,
Daniel Stone103db7f2012-05-08 17:17:55 +01002284 uint32_t time, wl_fixed_t x_w, wl_fixed_t y_w)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002285{
2286 struct input *input = data;
2287 struct window *window = input->pointer_focus;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002288 float x = wl_fixed_to_double(x_w);
2289 float y = wl_fixed_to_double(y_w);
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002290 void *types_data;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002291
2292 input->sx = x;
2293 input->sy = y;
2294
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002295 if (input->drag_offer)
2296 types_data = input->drag_offer->types.data;
2297 else
2298 types_data = NULL;
2299
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002300 if (window->data_handler)
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002301 window->data_handler(window, input, x, y, types_data,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002302 window->user_data);
2303}
2304
2305static void
2306data_device_drop(void *data, struct wl_data_device *data_device)
2307{
2308 struct input *input = data;
2309 struct window *window = input->pointer_focus;
2310
2311 if (window->drop_handler)
2312 window->drop_handler(window, input,
2313 input->sx, input->sy, window->user_data);
2314}
2315
2316static void
2317data_device_selection(void *data,
2318 struct wl_data_device *wl_data_device,
2319 struct wl_data_offer *offer)
2320{
2321 struct input *input = data;
2322 char **p;
2323
2324 if (input->selection_offer)
2325 data_offer_destroy(input->selection_offer);
2326
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05002327 if (offer) {
2328 input->selection_offer = wl_data_offer_get_user_data(offer);
2329 p = wl_array_add(&input->selection_offer->types, sizeof *p);
2330 *p = NULL;
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04002331 } else {
2332 input->selection_offer = NULL;
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05002333 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002334}
2335
2336static const struct wl_data_device_listener data_device_listener = {
2337 data_device_data_offer,
2338 data_device_enter,
2339 data_device_leave,
2340 data_device_motion,
2341 data_device_drop,
2342 data_device_selection
2343};
2344
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002345static void
2346input_set_pointer_image_index(struct input *input, int index)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002347{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002348 struct wl_buffer *buffer;
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03002349 struct wl_cursor *cursor;
2350 struct wl_cursor_image *image;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002351
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002352 cursor = input->display->cursors[input->current_cursor];
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03002353 if (!cursor)
Dima Ryazanovff1c2d72012-05-08 21:02:33 -07002354 return;
2355
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002356 if (index >= (int) cursor->image_count) {
2357 fprintf(stderr, "cursor index out of range\n");
2358 return;
2359 }
2360
2361 image = cursor->images[index];
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03002362 buffer = wl_cursor_image_get_buffer(image);
2363 if (!buffer)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002364 return;
2365
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03002366 wl_pointer_set_cursor(input->pointer, input->display->serial,
2367 input->pointer_surface,
2368 image->hotspot_x, image->hotspot_y);
2369 wl_surface_attach(input->pointer_surface, buffer, 0, 0);
2370 wl_surface_damage(input->pointer_surface, 0, 0,
2371 image->width, image->height);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002372}
2373
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002374static const struct wl_callback_listener pointer_surface_listener;
2375
2376static void
2377pointer_surface_frame_callback(void *data, struct wl_callback *callback,
2378 uint32_t time)
2379{
2380 struct input *input = data;
Daniel Stonea494f1d2012-06-18 19:31:12 +01002381 struct wl_cursor *cursor;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002382 int i;
2383
2384 if (callback) {
2385 assert(callback == input->cursor_frame_cb);
2386 wl_callback_destroy(callback);
2387 input->cursor_frame_cb = NULL;
2388 }
2389
2390 if (input->current_cursor == CURSOR_UNSET)
2391 return;
Daniel Stonea494f1d2012-06-18 19:31:12 +01002392 cursor = input->display->cursors[input->current_cursor];
2393 if (!cursor)
2394 return;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002395
2396 /* FIXME We don't have the current time on the first call so we set
2397 * the animation start to the time of the first frame callback. */
2398 if (time == 0)
2399 input->cursor_anim_start = 0;
2400 else if (input->cursor_anim_start == 0)
2401 input->cursor_anim_start = time;
2402
2403 if (time == 0 || input->cursor_anim_start == 0)
2404 i = 0;
2405 else
2406 i = wl_cursor_frame(cursor, time - input->cursor_anim_start);
2407
2408 input_set_pointer_image_index(input, i);
2409
2410 if (cursor->image_count == 1)
2411 return;
2412
2413 input->cursor_frame_cb = wl_surface_frame(input->pointer_surface);
2414 wl_callback_add_listener(input->cursor_frame_cb,
2415 &pointer_surface_listener, input);
2416}
2417
2418static const struct wl_callback_listener pointer_surface_listener = {
2419 pointer_surface_frame_callback
2420};
2421
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002422void
2423input_set_pointer_image(struct input *input, int pointer)
2424{
2425 if (pointer == input->current_cursor)
2426 return;
2427
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002428 input->current_cursor = pointer;
2429 if (!input->cursor_frame_cb)
2430 pointer_surface_frame_callback(input, NULL, 0);
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002431}
2432
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002433struct wl_data_device *
2434input_get_data_device(struct input *input)
2435{
2436 return input->data_device;
2437}
2438
2439void
2440input_set_selection(struct input *input,
2441 struct wl_data_source *source, uint32_t time)
2442{
2443 wl_data_device_set_selection(input->data_device, source, time);
2444}
2445
2446void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002447input_accept(struct input *input, const char *type)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002448{
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002449 wl_data_offer_accept(input->drag_offer->offer,
2450 input->pointer_enter_serial, type);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002451}
2452
2453static void
2454offer_io_func(struct task *task, uint32_t events)
2455{
2456 struct data_offer *offer =
2457 container_of(task, struct data_offer, io_task);
2458 unsigned int len;
2459 char buffer[4096];
2460
2461 len = read(offer->fd, buffer, sizeof buffer);
2462 offer->func(buffer, len,
2463 offer->x, offer->y, offer->user_data);
2464
2465 if (len == 0) {
2466 close(offer->fd);
2467 data_offer_destroy(offer);
2468 }
2469}
2470
2471static void
2472data_offer_receive_data(struct data_offer *offer, const char *mime_type,
2473 data_func_t func, void *user_data)
2474{
2475 int p[2];
2476
Jonas Ådahl3685c3a2012-03-30 23:10:27 +02002477 if (pipe2(p, O_CLOEXEC) == -1)
2478 return;
2479
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002480 wl_data_offer_receive(offer->offer, mime_type, p[1]);
2481 close(p[1]);
2482
2483 offer->io_task.run = offer_io_func;
2484 offer->fd = p[0];
2485 offer->func = func;
2486 offer->refcount++;
2487 offer->user_data = user_data;
2488
2489 display_watch_fd(offer->input->display,
2490 offer->fd, EPOLLIN, &offer->io_task);
2491}
2492
2493void
2494input_receive_drag_data(struct input *input, const char *mime_type,
2495 data_func_t func, void *data)
2496{
2497 data_offer_receive_data(input->drag_offer, mime_type, func, data);
2498 input->drag_offer->x = input->sx;
2499 input->drag_offer->y = input->sy;
2500}
2501
2502int
2503input_receive_selection_data(struct input *input, const char *mime_type,
2504 data_func_t func, void *data)
2505{
2506 char **p;
2507
2508 if (input->selection_offer == NULL)
2509 return -1;
2510
2511 for (p = input->selection_offer->types.data; *p; p++)
2512 if (strcmp(mime_type, *p) == 0)
2513 break;
2514
2515 if (*p == NULL)
2516 return -1;
2517
2518 data_offer_receive_data(input->selection_offer,
2519 mime_type, func, data);
2520 return 0;
Kristian Høgsberg41da9082010-11-30 14:01:07 -05002521}
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04002522
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05002523int
2524input_receive_selection_data_to_fd(struct input *input,
2525 const char *mime_type, int fd)
2526{
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04002527 if (input->selection_offer)
2528 wl_data_offer_receive(input->selection_offer->offer,
2529 mime_type, fd);
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05002530
2531 return 0;
2532}
2533
Kristian Høgsberg41da9082010-11-30 14:01:07 -05002534void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002535window_move(struct window *window, struct input *input, uint32_t serial)
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002536{
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002537 if (!window->shell_surface)
2538 return;
2539
Daniel Stone37816df2012-05-16 18:45:18 +01002540 wl_shell_surface_move(window->shell_surface, input->seat, serial);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002541}
2542
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002543static void
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002544idle_resize(struct window *window)
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002545{
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002546 struct widget *widget;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002547
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002548 window->resize_needed = 0;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002549 widget = window->widget;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002550 widget_set_allocation(widget,
2551 window->pending_allocation.x,
2552 window->pending_allocation.y,
2553 window->pending_allocation.width,
2554 window->pending_allocation.height);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002555
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002556 if (window->input_region) {
2557 wl_region_destroy(window->input_region);
2558 window->input_region = NULL;
2559 }
2560
2561 if (window->opaque_region) {
2562 wl_region_destroy(window->opaque_region);
2563 window->opaque_region = NULL;
2564 }
2565
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002566 if (widget->resize_handler)
2567 widget->resize_handler(widget,
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002568 widget->allocation.width,
2569 widget->allocation.height,
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002570 widget->user_data);
2571
Kristian Høgsberg8e054f72012-01-31 11:53:20 -05002572 if (window->allocation.width != widget->allocation.width ||
2573 window->allocation.height != widget->allocation.height) {
2574 window->allocation = widget->allocation;
2575 window_schedule_redraw(window);
2576 }
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002577}
2578
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002579void
2580window_schedule_resize(struct window *window, int width, int height)
2581{
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002582 window->pending_allocation.x = 0;
2583 window->pending_allocation.y = 0;
2584 window->pending_allocation.width = width;
2585 window->pending_allocation.height = height;
2586
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002587 window->resize_needed = 1;
2588 window_schedule_redraw(window);
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002589}
2590
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002591void
2592widget_schedule_resize(struct widget *widget, int32_t width, int32_t height)
2593{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002594 window_schedule_resize(widget->window, width, height);
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002595}
2596
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002597static void
Scott Moreauff1db4a2012-04-17 19:06:18 -06002598handle_ping(void *data, struct wl_shell_surface *shell_surface,
2599 uint32_t serial)
2600{
2601 wl_shell_surface_pong(shell_surface, serial);
2602}
2603
2604static void
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002605handle_configure(void *data, struct wl_shell_surface *shell_surface,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002606 uint32_t edges, int32_t width, int32_t height)
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002607{
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002608 struct window *window = data;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002609
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002610 if (width <= 0 || height <= 0)
Tim Wiederhake8a6f7e32011-01-17 12:40:01 +01002611 return;
2612
Tim Wiederhakeb6761dc2011-01-17 17:50:07 +01002613 window->resize_edges = edges;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002614 window_schedule_resize(window, width, height);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002615}
2616
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002617static void
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002618menu_destroy(struct menu *menu)
2619{
2620 widget_destroy(menu->widget);
2621 window_destroy(menu->window);
2622 free(menu);
2623}
2624
2625static void
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002626handle_popup_done(void *data, struct wl_shell_surface *shell_surface)
2627{
2628 struct window *window = data;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002629 struct menu *menu = window->widget->user_data;
2630
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002631 /* FIXME: Need more context in this event, at least the input
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002632 * device. Or just use wl_callback. And this really needs to
2633 * be a window vfunc that the menu can set. And we need the
2634 * time. */
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002635
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002636 menu->func(window->parent, menu->current, window->parent->user_data);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002637 input_ungrab(menu->input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002638 menu_destroy(menu);
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002639}
2640
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002641static const struct wl_shell_surface_listener shell_surface_listener = {
Scott Moreauff1db4a2012-04-17 19:06:18 -06002642 handle_ping,
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002643 handle_configure,
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002644 handle_popup_done
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002645};
2646
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002647void
Benjamin Franzkecff904e2011-02-18 23:00:55 +01002648window_get_allocation(struct window *window,
2649 struct rectangle *allocation)
2650{
2651 *allocation = window->allocation;
2652}
2653
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002654static void
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002655widget_redraw(struct widget *widget)
2656{
2657 struct widget *child;
2658
2659 if (widget->redraw_handler)
2660 widget->redraw_handler(widget, widget->user_data);
2661 wl_list_for_each(child, &widget->child_list, link)
2662 widget_redraw(child);
2663}
2664
2665static void
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002666frame_callback(void *data, struct wl_callback *callback, uint32_t time)
2667{
2668 struct window *window = data;
2669
2670 wl_callback_destroy(callback);
2671 window->redraw_scheduled = 0;
2672 if (window->redraw_needed)
2673 window_schedule_redraw(window);
2674}
2675
2676static const struct wl_callback_listener listener = {
2677 frame_callback
2678};
2679
2680static void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002681idle_redraw(struct task *task, uint32_t events)
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002682{
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002683 struct window *window = container_of(task, struct window, redraw_task);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002684 struct wl_callback *callback;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002685
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002686 if (window->resize_needed)
2687 idle_resize(window);
2688
Kristian Høgsberg5d129902012-01-10 10:49:41 -05002689 window_create_surface(window);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002690 widget_redraw(window->widget);
Kristian Høgsberg5d129902012-01-10 10:49:41 -05002691 window_flush(window);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002692 window->redraw_needed = 0;
Kristian Høgsberg84b76c72012-04-13 12:01:18 -04002693 wl_list_init(&window->redraw_task.link);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002694
2695 callback = wl_surface_frame(window->surface);
2696 wl_callback_add_listener(callback, &listener, window);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002697}
2698
2699void
2700window_schedule_redraw(struct window *window)
2701{
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002702 window->redraw_needed = 1;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002703 if (!window->redraw_scheduled) {
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002704 window->redraw_task.run = idle_redraw;
2705 display_defer(window->display, &window->redraw_task);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002706 window->redraw_scheduled = 1;
2707 }
2708}
2709
Kristian Høgsberg0ac16f02009-01-15 11:37:43 -05002710void
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002711window_set_custom(struct window *window)
2712{
2713 window->type = TYPE_CUSTOM;
2714}
2715
2716void
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002717window_set_fullscreen(struct window *window, int fullscreen)
2718{
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002719 if (!window->display->shell)
2720 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002721
Kristian Høgsberg547da5a2011-09-13 20:58:00 -04002722 if ((window->type == TYPE_FULLSCREEN) == fullscreen)
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002723 return;
2724
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002725 if (fullscreen) {
2726 window->type = TYPE_FULLSCREEN;
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002727 window->saved_allocation = window->allocation;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002728 wl_shell_surface_set_fullscreen(window->shell_surface,
2729 WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
2730 0, NULL);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002731 } else {
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002732 window->type = TYPE_TOPLEVEL;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002733 wl_shell_surface_set_toplevel(window->shell_surface);
2734 window_schedule_resize(window,
2735 window->saved_allocation.width,
2736 window->saved_allocation.height);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002737 }
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002738}
2739
2740void
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05002741window_set_maximized(struct window *window, int maximized)
2742{
2743 if (!window->display->shell)
2744 return;
2745
2746 if ((window->type == TYPE_MAXIMIZED) == maximized)
2747 return;
2748
2749 if (window->type == TYPE_TOPLEVEL) {
2750 window->saved_allocation = window->allocation;
2751 wl_shell_surface_set_maximized(window->shell_surface, NULL);
2752 window->type = TYPE_MAXIMIZED;
2753 } else {
2754 wl_shell_surface_set_toplevel(window->shell_surface);
2755 window->type = TYPE_TOPLEVEL;
2756 window_schedule_resize(window,
2757 window->saved_allocation.width,
2758 window->saved_allocation.height);
2759 }
2760}
2761
2762void
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002763window_set_user_data(struct window *window, void *data)
2764{
2765 window->user_data = data;
2766}
2767
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04002768void *
2769window_get_user_data(struct window *window)
2770{
2771 return window->user_data;
2772}
2773
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002774void
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002775window_set_key_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002776 window_key_handler_t handler)
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002777{
2778 window->key_handler = handler;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002779}
2780
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002781void
2782window_set_keyboard_focus_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002783 window_keyboard_focus_handler_t handler)
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002784{
2785 window->keyboard_focus_handler = handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002786}
2787
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002788void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002789window_set_data_handler(struct window *window, window_data_handler_t handler)
2790{
2791 window->data_handler = handler;
2792}
2793
2794void
2795window_set_drop_handler(struct window *window, window_drop_handler_t handler)
2796{
2797 window->drop_handler = handler;
2798}
2799
2800void
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002801window_set_close_handler(struct window *window,
2802 window_close_handler_t handler)
2803{
2804 window->close_handler = handler;
2805}
2806
2807void
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002808window_set_title(struct window *window, const char *title)
2809{
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -05002810 free(window->title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002811 window->title = strdup(title);
Kristian Høgsberg3e0fe5c2012-05-02 09:47:55 -04002812 if (window->shell_surface)
2813 wl_shell_surface_set_title(window->shell_surface, title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002814}
2815
2816const char *
2817window_get_title(struct window *window)
2818{
2819 return window->title;
2820}
2821
2822void
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002823window_set_text_cursor_position(struct window *window, int32_t x, int32_t y)
2824{
2825 struct text_cursor_position *text_cursor_position =
2826 window->display->text_cursor_position;
2827
Scott Moreau9295ce02012-06-01 12:46:10 -06002828 if (!text_cursor_position)
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002829 return;
2830
2831 text_cursor_position_notify(text_cursor_position,
Scott Moreauae712202012-06-01 12:46:09 -06002832 window->surface,
2833 wl_fixed_from_int(x),
2834 wl_fixed_from_int(y));
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002835}
2836
2837void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002838window_damage(struct window *window, int32_t x, int32_t y,
2839 int32_t width, int32_t height)
2840{
2841 wl_surface_damage(window->surface, x, y, width, height);
2842}
2843
Casey Dahlin9074db52012-04-19 22:50:09 -04002844static void
2845surface_enter(void *data,
Rob Bradford7507b572012-05-15 17:55:34 +01002846 struct wl_surface *wl_surface, struct wl_output *wl_output)
Casey Dahlin9074db52012-04-19 22:50:09 -04002847{
Rob Bradford7507b572012-05-15 17:55:34 +01002848 struct window *window = data;
2849 struct output *output;
2850 struct output *output_found = NULL;
2851 struct window_output *window_output;
2852
2853 wl_list_for_each(output, &window->display->output_list, link) {
2854 if (output->output == wl_output) {
2855 output_found = output;
2856 break;
2857 }
2858 }
2859
2860 if (!output_found)
2861 return;
2862
2863 window_output = malloc (sizeof *window_output);
2864 window_output->output = output_found;
2865
2866 wl_list_insert (&window->window_output_list, &window_output->link);
Casey Dahlin9074db52012-04-19 22:50:09 -04002867}
2868
2869static void
2870surface_leave(void *data,
2871 struct wl_surface *wl_surface, struct wl_output *output)
2872{
Rob Bradford7507b572012-05-15 17:55:34 +01002873 struct window *window = data;
2874 struct window_output *window_output;
2875 struct window_output *window_output_found = NULL;
2876
2877 wl_list_for_each(window_output, &window->window_output_list, link) {
2878 if (window_output->output->output == output) {
2879 window_output_found = window_output;
2880 break;
2881 }
2882 }
2883
2884 if (window_output_found) {
2885 wl_list_remove(&window_output_found->link);
2886 free(window_output_found);
2887 }
Casey Dahlin9074db52012-04-19 22:50:09 -04002888}
2889
2890static const struct wl_surface_listener surface_listener = {
2891 surface_enter,
2892 surface_leave
2893};
2894
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002895static struct window *
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002896window_create_internal(struct display *display, struct window *parent)
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002897{
Kristian Høgsberg1cbaa6a2008-11-07 15:54:48 -05002898 struct window *window;
2899
2900 window = malloc(sizeof *window);
2901 if (window == NULL)
2902 return NULL;
2903
Kristian Høgsberg78231c82008-11-08 15:06:01 -05002904 memset(window, 0, sizeof *window);
Kristian Høgsberg40979232008-11-25 22:40:39 -05002905 window->display = display;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002906 window->parent = parent;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002907 window->surface = wl_compositor_create_surface(display->compositor);
Casey Dahlin9074db52012-04-19 22:50:09 -04002908 wl_surface_add_listener(window->surface, &surface_listener, window);
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002909 if (display->shell) {
2910 window->shell_surface =
2911 wl_shell_get_shell_surface(display->shell,
2912 window->surface);
Kristian Høgsberg3e0fe5c2012-05-02 09:47:55 -04002913 if (window->title)
2914 wl_shell_surface_set_title(window->shell_surface,
2915 window->title);
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002916 }
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002917 window->allocation.x = 0;
2918 window->allocation.y = 0;
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002919 window->allocation.width = 0;
2920 window->allocation.height = 0;
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002921 window->saved_allocation = window->allocation;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -04002922 window->transparent = 1;
Kristian Høgsberg407ef642012-04-27 17:17:12 -04002923 window->type = TYPE_NONE;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002924 window->input_region = NULL;
2925 window->opaque_region = NULL;
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -05002926
Kristian Høgsberg297c6312011-02-04 14:11:33 -05002927 if (display->dpy)
Benjamin Franzke22d54812011-07-16 19:50:32 +00002928#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +01002929 window->buffer_type = WINDOW_BUFFER_TYPE_EGL_WINDOW;
Benjamin Franzke22d54812011-07-16 19:50:32 +00002930#else
2931 window->buffer_type = WINDOW_BUFFER_TYPE_SHM;
2932#endif
Yuval Fledel45568f62010-12-06 09:18:12 -05002933 else
2934 window->buffer_type = WINDOW_BUFFER_TYPE_SHM;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002935
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002936 wl_surface_set_user_data(window->surface, window);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04002937 wl_list_insert(display->window_list.prev, &window->link);
Kristian Høgsberg84b76c72012-04-13 12:01:18 -04002938 wl_list_init(&window->redraw_task.link);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002939
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002940 if (window->shell_surface) {
2941 wl_shell_surface_set_user_data(window->shell_surface, window);
2942 wl_shell_surface_add_listener(window->shell_surface,
2943 &shell_surface_listener, window);
2944 }
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002945
Rob Bradford7507b572012-05-15 17:55:34 +01002946 wl_list_init (&window->window_output_list);
2947
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002948 return window;
2949}
2950
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002951struct window *
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002952window_create(struct display *display)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002953{
2954 struct window *window;
2955
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002956 window = window_create_internal(display, NULL);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002957 if (!window)
2958 return NULL;
2959
2960 return window;
2961}
2962
2963struct window *
2964window_create_transient(struct display *display, struct window *parent,
Tiago Vignattidec76582012-05-21 16:47:46 +03002965 int32_t x, int32_t y, uint32_t flags)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002966{
2967 struct window *window;
2968
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002969 window = window_create_internal(parent->display, parent);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002970 if (!window)
2971 return NULL;
2972
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002973 window->type = TYPE_TRANSIENT;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002974 window->x = x;
2975 window->y = y;
2976
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002977 if (display->shell)
2978 wl_shell_surface_set_transient(window->shell_surface,
2979 window->parent->shell_surface,
Tiago Vignattidec76582012-05-21 16:47:46 +03002980 window->x, window->y, flags);
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002981
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002982 return window;
2983}
2984
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002985static void
Kristian Høgsberg19dd1d72012-01-09 10:42:41 -05002986menu_set_item(struct menu *menu, int sy)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002987{
2988 int next;
2989
2990 next = (sy - 8) / 20;
2991 if (menu->current != next) {
2992 menu->current = next;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002993 widget_schedule_redraw(menu->widget);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002994 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002995}
2996
2997static int
Kristian Høgsberg5f190ef2012-01-09 09:44:45 -05002998menu_motion_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002999 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003000 float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003001{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003002 struct menu *menu = data;
3003
3004 if (widget == menu->widget)
3005 menu_set_item(data, y);
3006
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03003007 return CURSOR_LEFT_PTR;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003008}
3009
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05003010static int
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003011menu_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003012 struct input *input, float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003013{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003014 struct menu *menu = data;
3015
3016 if (widget == menu->widget)
3017 menu_set_item(data, y);
3018
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03003019 return CURSOR_LEFT_PTR;
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003020}
3021
3022static void
3023menu_leave_handler(struct widget *widget, struct input *input, void *data)
3024{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003025 struct menu *menu = data;
3026
3027 if (widget == menu->widget)
3028 menu_set_item(data, -200);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003029}
3030
3031static void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05003032menu_button_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003033 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01003034 uint32_t button, enum wl_pointer_button_state state,
3035 void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003036
3037{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003038 struct menu *menu = data;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003039
Daniel Stone4dbadb12012-05-30 16:31:51 +01003040 if (state == WL_POINTER_BUTTON_STATE_PRESSED &&
3041 time - menu->time > 500) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003042 /* Either relase after press-drag-release or
3043 * click-motion-click. */
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003044 menu->func(menu->window->parent,
3045 menu->current, menu->window->parent->user_data);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003046 input_ungrab(input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003047 menu_destroy(menu);
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05003048 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003049}
3050
3051static void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003052menu_redraw_handler(struct widget *widget, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003053{
3054 cairo_t *cr;
3055 const int32_t r = 3, margin = 3;
3056 struct menu *menu = data;
3057 int32_t width, height, i;
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003058 struct window *window = widget->window;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003059
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003060 cr = cairo_create(window->cairo_surface);
3061 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
3062 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
3063 cairo_paint(cr);
3064
3065 width = window->allocation.width;
3066 height = window->allocation.height;
3067 rounded_rect(cr, 0, 0, width, height, r);
Kristian Høgsberg824c6d02012-01-19 13:54:09 -05003068
3069 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003070 cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
3071 cairo_fill(cr);
3072
3073 for (i = 0; i < menu->count; i++) {
3074 if (i == menu->current) {
3075 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
3076 cairo_rectangle(cr, margin, i * 20 + margin,
3077 width - 2 * margin, 20);
3078 cairo_fill(cr);
3079 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
3080 cairo_move_to(cr, 10, i * 20 + 16);
3081 cairo_show_text(cr, menu->entries[i]);
3082 } else {
3083 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
3084 cairo_move_to(cr, 10, i * 20 + 16);
3085 cairo_show_text(cr, menu->entries[i]);
3086 }
3087 }
3088
3089 cairo_destroy(cr);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003090}
3091
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003092void
3093window_show_menu(struct display *display,
3094 struct input *input, uint32_t time, struct window *parent,
3095 int32_t x, int32_t y,
3096 menu_func_t func, const char **entries, int count)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003097{
3098 struct window *window;
3099 struct menu *menu;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003100 const int32_t margin = 3;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003101
3102 menu = malloc(sizeof *menu);
3103 if (!menu)
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003104 return;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003105
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05003106 window = window_create_internal(parent->display, parent);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003107 if (!window)
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003108 return;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003109
3110 menu->window = window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003111 menu->widget = window_add_widget(menu->window, menu);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003112 menu->entries = entries;
3113 menu->count = count;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003114 menu->current = -1;
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003115 menu->time = time;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05003116 menu->func = func;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003117 menu->input = input;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003118 window->type = TYPE_MENU;
3119 window->x = x;
3120 window->y = y;
3121
Kristian Høgsberga6c8b002012-04-13 12:55:45 -04003122 input_ungrab(input);
Daniel Stone37816df2012-05-16 18:45:18 +01003123 wl_shell_surface_set_popup(window->shell_surface, input->seat,
Kristian Høgsbergf2eb68a2012-04-13 12:37:19 -04003124 display_get_serial(window->display),
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003125 window->parent->shell_surface,
3126 window->x, window->y, 0);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003127
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003128 widget_set_redraw_handler(menu->widget, menu_redraw_handler);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003129 widget_set_enter_handler(menu->widget, menu_enter_handler);
3130 widget_set_leave_handler(menu->widget, menu_leave_handler);
3131 widget_set_motion_handler(menu->widget, menu_motion_handler);
3132 widget_set_button_handler(menu->widget, menu_button_handler);
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003133
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003134 input_grab(input, menu->widget, 0);
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05003135 window_schedule_resize(window, 200, count * 20 + margin * 2);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003136}
3137
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05003138void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04003139window_set_buffer_type(struct window *window, enum window_buffer_type type)
3140{
3141 window->buffer_type = type;
3142}
3143
Kristian Høgsberg8357cd62011-05-13 13:24:56 -04003144
3145static void
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003146display_handle_geometry(void *data,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003147 struct wl_output *wl_output,
3148 int x, int y,
3149 int physical_width,
3150 int physical_height,
3151 int subpixel,
3152 const char *make,
3153 const char *model)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003154{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003155 struct output *output = data;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003156
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003157 output->allocation.x = x;
3158 output->allocation.y = y;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003159}
3160
3161static void
3162display_handle_mode(void *data,
3163 struct wl_output *wl_output,
3164 uint32_t flags,
3165 int width,
3166 int height,
3167 int refresh)
3168{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003169 struct output *output = data;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003170 struct display *display = output->display;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003171
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003172 if (flags & WL_OUTPUT_MODE_CURRENT) {
3173 output->allocation.width = width;
3174 output->allocation.height = height;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003175 if (display->output_configure_handler)
3176 (*display->output_configure_handler)(
3177 output, display->user_data);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003178 }
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003179}
3180
3181static const struct wl_output_listener output_listener = {
3182 display_handle_geometry,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003183 display_handle_mode
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003184};
3185
3186static void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003187display_add_output(struct display *d, uint32_t id)
3188{
3189 struct output *output;
3190
3191 output = malloc(sizeof *output);
3192 if (output == NULL)
3193 return;
3194
3195 memset(output, 0, sizeof *output);
3196 output->display = d;
3197 output->output =
3198 wl_display_bind(d->display, id, &wl_output_interface);
3199 wl_list_insert(d->output_list.prev, &output->link);
3200
3201 wl_output_add_listener(output->output, &output_listener, output);
3202}
3203
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003204static void
3205output_destroy(struct output *output)
3206{
3207 if (output->destroy_handler)
3208 (*output->destroy_handler)(output, output->user_data);
3209
3210 wl_output_destroy(output->output);
3211 wl_list_remove(&output->link);
3212 free(output);
3213}
3214
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003215void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003216display_set_output_configure_handler(struct display *display,
3217 display_output_handler_t handler)
3218{
3219 struct output *output;
3220
3221 display->output_configure_handler = handler;
3222 if (!handler)
3223 return;
3224
3225 wl_list_for_each(output, &display->output_list, link)
3226 (*display->output_configure_handler)(output,
3227 display->user_data);
3228}
3229
3230void
3231output_set_user_data(struct output *output, void *data)
3232{
3233 output->user_data = data;
3234}
3235
3236void *
3237output_get_user_data(struct output *output)
3238{
3239 return output->user_data;
3240}
3241
3242void
3243output_set_destroy_handler(struct output *output,
3244 display_output_handler_t handler)
3245{
3246 output->destroy_handler = handler;
3247 /* FIXME: implement this, once we have way to remove outputs */
3248}
3249
3250void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003251output_get_allocation(struct output *output, struct rectangle *allocation)
3252{
3253 *allocation = output->allocation;
3254}
3255
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003256struct wl_output *
3257output_get_wl_output(struct output *output)
3258{
3259 return output->output;
3260}
3261
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003262static void
Daniel Stone97f68542012-05-30 16:32:01 +01003263fini_xkb(struct input *input)
3264{
3265 xkb_state_unref(input->xkb.state);
3266 xkb_map_unref(input->xkb.keymap);
3267}
3268
3269static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003270display_add_input(struct display *d, uint32_t id)
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003271{
3272 struct input *input;
3273
3274 input = malloc(sizeof *input);
3275 if (input == NULL)
3276 return;
3277
3278 memset(input, 0, sizeof *input);
3279 input->display = d;
Daniel Stone37816df2012-05-16 18:45:18 +01003280 input->seat = wl_display_bind(d->display, id, &wl_seat_interface);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003281 input->pointer_focus = NULL;
3282 input->keyboard_focus = NULL;
3283 wl_list_insert(d->input_list.prev, &input->link);
3284
Daniel Stone37816df2012-05-16 18:45:18 +01003285 wl_seat_add_listener(input->seat, &seat_listener, input);
3286 wl_seat_set_user_data(input->seat, input);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003287
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003288 input->data_device =
3289 wl_data_device_manager_get_data_device(d->data_device_manager,
Daniel Stone37816df2012-05-16 18:45:18 +01003290 input->seat);
3291 wl_data_device_add_listener(input->data_device, &data_device_listener,
3292 input);
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03003293
3294 input->pointer_surface = wl_compositor_create_surface(d->compositor);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003295
3296 input->repeat_timer_fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
3297 input->repeat_task.run = keyboard_repeat_func;
3298 display_watch_fd(d, input->repeat_timer_fd,
3299 EPOLLIN, &input->repeat_task);
Kristian Høgsberg58eec362011-01-19 14:27:42 -05003300}
3301
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003302static void
Pekka Paalanene1207c72011-12-16 12:02:09 +02003303input_destroy(struct input *input)
3304{
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05003305 input_remove_keyboard_focus(input);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003306 input_remove_pointer_focus(input);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003307
Daniel Stoneb7452fe2012-06-01 12:14:06 +01003308 if (input->xkb.state)
3309 xkb_state_unref(input->xkb.state);
3310 if (input->xkb.keymap)
3311 xkb_map_unref(input->xkb.keymap);
3312
Pekka Paalanene1207c72011-12-16 12:02:09 +02003313 if (input->drag_offer)
3314 data_offer_destroy(input->drag_offer);
3315
3316 if (input->selection_offer)
3317 data_offer_destroy(input->selection_offer);
3318
3319 wl_data_device_destroy(input->data_device);
Daniel Stone97f68542012-05-30 16:32:01 +01003320 fini_xkb(input);
3321
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03003322 wl_surface_destroy(input->pointer_surface);
3323
Pekka Paalanene1207c72011-12-16 12:02:09 +02003324 wl_list_remove(&input->link);
Daniel Stone37816df2012-05-16 18:45:18 +01003325 wl_seat_destroy(input->seat);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003326 close(input->repeat_timer_fd);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003327 free(input);
3328}
3329
3330static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003331display_handle_global(struct wl_display *display, uint32_t id,
3332 const char *interface, uint32_t version, void *data)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003333{
3334 struct display *d = data;
3335
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003336 if (strcmp(interface, "wl_compositor") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003337 d->compositor =
3338 wl_display_bind(display, id, &wl_compositor_interface);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003339 } else if (strcmp(interface, "wl_output") == 0) {
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003340 display_add_output(d, id);
Daniel Stone37816df2012-05-16 18:45:18 +01003341 } else if (strcmp(interface, "wl_seat") == 0) {
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003342 display_add_input(d, id);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003343 } else if (strcmp(interface, "wl_shell") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003344 d->shell = wl_display_bind(display, id, &wl_shell_interface);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003345 } else if (strcmp(interface, "wl_shm") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003346 d->shm = wl_display_bind(display, id, &wl_shm_interface);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003347 } else if (strcmp(interface, "wl_data_device_manager") == 0) {
3348 d->data_device_manager =
3349 wl_display_bind(display, id,
3350 &wl_data_device_manager_interface);
Scott Moreau7a1b32a2012-05-27 14:25:02 -06003351 } else if (strcmp(interface, "text_cursor_position") == 0) {
3352 d->text_cursor_position =
3353 wl_display_bind(display, id,
3354 &text_cursor_position_interface);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003355 }
3356}
3357
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003358#ifdef HAVE_CAIRO_EGL
Yuval Fledel45568f62010-12-06 09:18:12 -05003359static int
Kristian Høgsberg297c6312011-02-04 14:11:33 -05003360init_egl(struct display *d)
Yuval Fledel45568f62010-12-06 09:18:12 -05003361{
3362 EGLint major, minor;
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003363 EGLint n;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -04003364
Rob Clark6396ed32012-03-11 19:48:41 -05003365#ifdef USE_CAIRO_GLESV2
3366# define GL_BIT EGL_OPENGL_ES2_BIT
3367#else
3368# define GL_BIT EGL_OPENGL_BIT
3369#endif
3370
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003371 static const EGLint argb_cfg_attribs[] = {
3372 EGL_SURFACE_TYPE, EGL_WINDOW_BIT | EGL_PIXMAP_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003373 EGL_RED_SIZE, 1,
3374 EGL_GREEN_SIZE, 1,
3375 EGL_BLUE_SIZE, 1,
3376 EGL_ALPHA_SIZE, 1,
3377 EGL_DEPTH_SIZE, 1,
Rob Clark6396ed32012-03-11 19:48:41 -05003378 EGL_RENDERABLE_TYPE, GL_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003379 EGL_NONE
3380 };
Yuval Fledel45568f62010-12-06 09:18:12 -05003381
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003382#ifdef USE_CAIRO_GLESV2
3383 static const EGLint context_attribs[] = {
3384 EGL_CONTEXT_CLIENT_VERSION, 2,
3385 EGL_NONE
3386 };
3387 EGLint api = EGL_OPENGL_ES_API;
3388#else
3389 EGLint *context_attribs = NULL;
3390 EGLint api = EGL_OPENGL_API;
3391#endif
3392
Kristian Høgsberg91342c62011-04-14 14:44:58 -04003393 d->dpy = eglGetDisplay(d->display);
Yuval Fledel45568f62010-12-06 09:18:12 -05003394 if (!eglInitialize(d->dpy, &major, &minor)) {
3395 fprintf(stderr, "failed to initialize display\n");
3396 return -1;
3397 }
3398
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003399 if (!eglBindAPI(api)) {
Yuval Fledel45568f62010-12-06 09:18:12 -05003400 fprintf(stderr, "failed to bind api EGL_OPENGL_API\n");
3401 return -1;
3402 }
3403
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003404 if (!eglChooseConfig(d->dpy, argb_cfg_attribs,
3405 &d->argb_config, 1, &n) || n != 1) {
3406 fprintf(stderr, "failed to choose argb config\n");
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003407 return -1;
3408 }
3409
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003410 d->argb_ctx = eglCreateContext(d->dpy, d->argb_config,
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003411 EGL_NO_CONTEXT, context_attribs);
Benjamin Franzke0c991632011-09-27 21:57:31 +02003412 if (d->argb_ctx == NULL) {
Yuval Fledel45568f62010-12-06 09:18:12 -05003413 fprintf(stderr, "failed to create context\n");
3414 return -1;
3415 }
3416
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003417 if (!eglMakeCurrent(d->dpy, NULL, NULL, d->argb_ctx)) {
Tim Wiederhake9c7a8cc2011-02-11 19:37:40 +01003418 fprintf(stderr, "failed to make context current\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05003419 return -1;
3420 }
3421
Kristian Høgsberg8def2642011-01-14 17:41:33 -05003422#ifdef HAVE_CAIRO_EGL
Benjamin Franzke0c991632011-09-27 21:57:31 +02003423 d->argb_device = cairo_egl_device_create(d->dpy, d->argb_ctx);
3424 if (cairo_device_status(d->argb_device) != CAIRO_STATUS_SUCCESS) {
3425 fprintf(stderr, "failed to get cairo egl argb device\n");
3426 return -1;
3427 }
Yuval Fledel45568f62010-12-06 09:18:12 -05003428#endif
3429
3430 return 0;
3431}
3432
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003433static void
3434fini_egl(struct display *display)
3435{
3436#ifdef HAVE_CAIRO_EGL
3437 cairo_device_destroy(display->argb_device);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003438#endif
3439
3440 eglMakeCurrent(display->dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
3441 EGL_NO_CONTEXT);
3442
3443 eglTerminate(display->dpy);
3444 eglReleaseThread();
3445}
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003446#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003447
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003448static int
3449event_mask_update(uint32_t mask, void *data)
3450{
3451 struct display *d = data;
3452
3453 d->mask = mask;
3454
3455 return 0;
3456}
3457
3458static void
3459handle_display_data(struct task *task, uint32_t events)
3460{
3461 struct display *display =
3462 container_of(task, struct display, display_task);
3463
3464 wl_display_iterate(display->display, display->mask);
3465}
3466
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003467struct display *
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04003468display_create(int argc, char *argv[])
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003469{
3470 struct display *d;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04003471
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04003472 argc = parse_options(xkb_options,
3473 ARRAY_LENGTH(xkb_options), argc, argv);
Kristian Høgsbergc7c60642010-08-29 21:33:39 -04003474
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003475 d = malloc(sizeof *d);
3476 if (d == NULL)
3477 return NULL;
3478
Tim Wiederhake81bd9792011-01-23 23:25:26 +01003479 memset(d, 0, sizeof *d);
3480
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05003481 d->display = wl_display_connect(NULL);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003482 if (d->display == NULL) {
3483 fprintf(stderr, "failed to create display: %m\n");
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003484 return NULL;
3485 }
3486
Pekka Paalanen647f2bf2012-05-30 15:53:43 +03003487 d->epoll_fd = os_epoll_create_cloexec();
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003488 d->display_fd = wl_display_get_fd(d->display, event_mask_update, d);
3489 d->display_task.run = handle_display_data;
3490 display_watch_fd(d, d->display_fd, EPOLLIN, &d->display_task);
3491
3492 wl_list_init(&d->deferred_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003493 wl_list_init(&d->input_list);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003494 wl_list_init(&d->output_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003495
Daniel Stone97f68542012-05-30 16:32:01 +01003496 d->xkb_context = xkb_context_new(0);
Daniel Stoneb7452fe2012-06-01 12:14:06 +01003497 if (d->xkb_context == NULL) {
3498 fprintf(stderr, "Failed to create XKB context\n");
Daniel Stone97f68542012-05-30 16:32:01 +01003499 return NULL;
3500 }
3501
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003502 /* Set up listener so we'll catch all events. */
3503 wl_display_add_global_listener(d->display,
3504 display_handle_global, d);
3505
3506 /* Process connection events. */
3507 wl_display_iterate(d->display, WL_DISPLAY_READABLE);
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003508#ifdef HAVE_CAIRO_EGL
Kristian Høgsberg297c6312011-02-04 14:11:33 -05003509 if (init_egl(d) < 0)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003510 return NULL;
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003511#endif
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -05003512
Kristian Høgsberg0d5007a2011-02-09 10:57:44 -05003513 d->image_target_texture_2d =
3514 (void *) eglGetProcAddress("glEGLImageTargetTexture2DOES");
3515 d->create_image = (void *) eglGetProcAddress("eglCreateImageKHR");
3516 d->destroy_image = (void *) eglGetProcAddress("eglDestroyImageKHR");
3517
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03003518 create_cursors(d);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04003519
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04003520 d->theme = theme_create();
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04003521
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003522 wl_list_init(&d->window_list);
3523
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003524 return d;
3525}
3526
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003527static void
3528display_destroy_outputs(struct display *display)
3529{
3530 struct output *tmp;
3531 struct output *output;
3532
3533 wl_list_for_each_safe(output, tmp, &display->output_list, link)
3534 output_destroy(output);
3535}
3536
Pekka Paalanene1207c72011-12-16 12:02:09 +02003537static void
3538display_destroy_inputs(struct display *display)
3539{
3540 struct input *tmp;
3541 struct input *input;
3542
3543 wl_list_for_each_safe(input, tmp, &display->input_list, link)
3544 input_destroy(input);
3545}
3546
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003547void
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003548display_destroy(struct display *display)
3549{
Pekka Paalanenc2052982011-12-16 11:41:32 +02003550 if (!wl_list_empty(&display->window_list))
3551 fprintf(stderr, "toytoolkit warning: windows exist.\n");
3552
3553 if (!wl_list_empty(&display->deferred_list))
3554 fprintf(stderr, "toytoolkit warning: deferred tasks exist.\n");
3555
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003556 display_destroy_outputs(display);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003557 display_destroy_inputs(display);
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003558
Daniel Stone97f68542012-05-30 16:32:01 +01003559 xkb_context_unref(display->xkb_context);
Pekka Paalanen325bb602011-12-19 10:31:45 +02003560
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04003561 theme_destroy(display->theme);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03003562 destroy_cursors(display);
Pekka Paalanen325bb602011-12-19 10:31:45 +02003563
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003564#ifdef HAVE_CAIRO_EGL
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003565 fini_egl(display);
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003566#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003567
Pekka Paalanenc2052982011-12-16 11:41:32 +02003568 if (display->shell)
3569 wl_shell_destroy(display->shell);
3570
3571 if (display->shm)
3572 wl_shm_destroy(display->shm);
3573
3574 if (display->data_device_manager)
3575 wl_data_device_manager_destroy(display->data_device_manager);
3576
3577 wl_compositor_destroy(display->compositor);
3578
3579 close(display->epoll_fd);
3580
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003581 wl_display_flush(display->display);
Kristian Høgsbergfcfc83f2012-02-28 14:29:19 -05003582 wl_display_disconnect(display->display);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003583 free(display);
3584}
3585
3586void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003587display_set_user_data(struct display *display, void *data)
3588{
3589 display->user_data = data;
3590}
3591
3592void *
3593display_get_user_data(struct display *display)
3594{
3595 return display->user_data;
3596}
3597
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -04003598struct wl_display *
3599display_get_display(struct display *display)
3600{
3601 return display->display;
3602}
3603
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003604struct output *
3605display_get_output(struct display *display)
3606{
3607 return container_of(display->output_list.next, struct output, link);
3608}
3609
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003610struct wl_compositor *
3611display_get_compositor(struct display *display)
3612{
3613 return display->compositor;
Kristian Høgsberg61017b12008-11-02 18:51:48 -05003614}
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003615
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003616uint32_t
3617display_get_serial(struct display *display)
3618{
3619 return display->serial;
3620}
3621
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003622EGLDisplay
3623display_get_egl_display(struct display *d)
3624{
3625 return d->dpy;
3626}
3627
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003628struct wl_data_source *
3629display_create_data_source(struct display *display)
3630{
3631 return wl_data_device_manager_create_data_source(display->data_device_manager);
3632}
3633
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003634EGLConfig
Benjamin Franzke0c991632011-09-27 21:57:31 +02003635display_get_argb_egl_config(struct display *d)
3636{
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003637 return d->argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003638}
3639
Kristian Høgsberg58eec362011-01-19 14:27:42 -05003640struct wl_shell *
3641display_get_shell(struct display *display)
3642{
3643 return display->shell;
3644}
3645
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003646int
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003647display_acquire_window_surface(struct display *display,
3648 struct window *window,
3649 EGLContext ctx)
3650{
Benjamin Franzke22d54812011-07-16 19:50:32 +00003651#ifdef HAVE_CAIRO_EGL
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003652 struct egl_window_surface_data *data;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003653 cairo_device_t *device;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003654
3655 if (!window->cairo_surface)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003656 return -1;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003657 device = cairo_surface_get_device(window->cairo_surface);
3658 if (!device)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003659 return -1;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003660
Benjamin Franzke0c991632011-09-27 21:57:31 +02003661 if (!ctx) {
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003662 if (device == display->argb_device)
Benjamin Franzke0c991632011-09-27 21:57:31 +02003663 ctx = display->argb_ctx;
3664 else
3665 assert(0);
3666 }
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003667
3668 data = cairo_surface_get_user_data(window->cairo_surface,
3669 &surface_data_key);
3670
Pekka Paalanen9015ead2011-12-19 13:57:59 +02003671 cairo_device_flush(device);
Benjamin Franzke0c991632011-09-27 21:57:31 +02003672 cairo_device_acquire(device);
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003673 if (!eglMakeCurrent(display->dpy, data->surf, data->surf, ctx))
3674 fprintf(stderr, "failed to make surface current\n");
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003675
3676 return 0;
3677#else
3678 return -1;
Benjamin Franzke22d54812011-07-16 19:50:32 +00003679#endif
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003680}
3681
3682void
Benjamin Franzke0c991632011-09-27 21:57:31 +02003683display_release_window_surface(struct display *display,
3684 struct window *window)
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003685{
Benjamin Franzke0c991632011-09-27 21:57:31 +02003686#ifdef HAVE_CAIRO_EGL
3687 cairo_device_t *device;
3688
3689 device = cairo_surface_get_device(window->cairo_surface);
3690 if (!device)
3691 return;
3692
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003693 if (!eglMakeCurrent(display->dpy, NULL, NULL, display->argb_ctx))
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003694 fprintf(stderr, "failed to make context current\n");
Benjamin Franzke0c991632011-09-27 21:57:31 +02003695 cairo_device_release(device);
3696#endif
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003697}
3698
3699void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003700display_defer(struct display *display, struct task *task)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003701{
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003702 wl_list_insert(&display->deferred_list, &task->link);
3703}
3704
3705void
3706display_watch_fd(struct display *display,
3707 int fd, uint32_t events, struct task *task)
3708{
3709 struct epoll_event ep;
3710
3711 ep.events = events;
3712 ep.data.ptr = task;
3713 epoll_ctl(display->epoll_fd, EPOLL_CTL_ADD, fd, &ep);
3714}
3715
3716void
3717display_run(struct display *display)
3718{
3719 struct task *task;
3720 struct epoll_event ep[16];
3721 int i, count;
3722
Pekka Paalanen826d7952011-12-15 10:14:07 +02003723 display->running = 1;
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003724 while (1) {
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05003725 wl_display_flush(display->display);
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003726
3727 while (!wl_list_empty(&display->deferred_list)) {
3728 task = container_of(display->deferred_list.next,
3729 struct task, link);
3730 wl_list_remove(&task->link);
3731 task->run(task, 0);
3732 }
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05003733
3734 if (!display->running)
3735 break;
3736
3737 wl_display_flush(display->display);
3738
3739 count = epoll_wait(display->epoll_fd,
3740 ep, ARRAY_LENGTH(ep), -1);
3741 for (i = 0; i < count; i++) {
3742 task = ep[i].data.ptr;
3743 task->run(task, ep[i].events);
3744 }
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003745 }
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003746}
Pekka Paalanen826d7952011-12-15 10:14:07 +02003747
3748void
3749display_exit(struct display *display)
3750{
3751 display->running = 0;
3752}