blob: 762af5431c6832f0259d72df0a05cfd1dc1193f0 [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
Kristian Høgsberg8b19c642012-06-20 18:00:13 -04001918 if (read(input->repeat_timer_fd, &exp, sizeof exp) != sizeof exp)
1919 /* If we change the timer between the fd becoming
1920 * readable and getting here, there'll be nothing to
1921 * read and we get EAGAIN. */
1922 return;
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001923
Kristian Høgsbergbd0cd762012-06-20 15:17:18 -04001924 if (window && window->key_handler) {
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001925 (*window->key_handler)(window, input, input->repeat_time,
1926 input->repeat_key, input->repeat_sym,
1927 WL_KEYBOARD_KEY_STATE_PRESSED,
1928 window->user_data);
1929 }
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001930}
1931
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001932static void
Daniel Stone351eb612012-05-31 15:27:47 -04001933keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard,
1934 uint32_t serial, uint32_t mods_depressed,
1935 uint32_t mods_latched, uint32_t mods_locked,
1936 uint32_t group)
1937{
1938 struct input *input = data;
1939
Daniel Stoneb7452fe2012-06-01 12:14:06 +01001940 xkb_state_update_mask(input->xkb.state, mods_depressed, mods_latched,
1941 mods_locked, 0, 0, group);
Daniel Stone351eb612012-05-31 15:27:47 -04001942}
1943
1944static void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001945input_remove_pointer_focus(struct input *input)
Pekka Paalanene1207c72011-12-16 12:02:09 +02001946{
1947 struct window *window = input->pointer_focus;
1948
1949 if (!window)
1950 return;
1951
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001952 input_set_focus_widget(input, NULL, 0, 0);
Pekka Paalanene1207c72011-12-16 12:02:09 +02001953
Pekka Paalanene1207c72011-12-16 12:02:09 +02001954 input->pointer_focus = NULL;
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001955 input->current_cursor = CURSOR_UNSET;
Pekka Paalanene1207c72011-12-16 12:02:09 +02001956}
1957
1958static void
Daniel Stone37816df2012-05-16 18:45:18 +01001959pointer_handle_enter(void *data, struct wl_pointer *pointer,
1960 uint32_t serial, struct wl_surface *surface,
1961 wl_fixed_t sx_w, wl_fixed_t sy_w)
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001962{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001963 struct input *input = data;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001964 struct window *window;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001965 struct widget *widget;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001966 float sx = wl_fixed_to_double(sx_w);
1967 float sy = wl_fixed_to_double(sy_w);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001968
Martin Minarik1998b152012-05-10 02:04:35 +02001969 if (!surface) {
1970 /* enter event for a window we've just destroyed */
1971 return;
1972 }
1973
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001974 input->display->serial = serial;
1975 input->pointer_enter_serial = serial;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001976 input->pointer_focus = wl_surface_get_user_data(surface);
Kristian Høgsberg900b2262011-09-06 14:33:52 -04001977 window = input->pointer_focus;
Kristian Høgsberg900b2262011-09-06 14:33:52 -04001978
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001979 if (window->pool) {
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -07001980 shm_pool_destroy(window->pool);
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001981 window->pool = NULL;
1982 /* Schedule a redraw to free the pool */
1983 window_schedule_redraw(window);
1984 }
1985
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001986 input->sx = sx;
1987 input->sy = sy;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001988
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001989 widget = widget_find_widget(window->widget, sx, sy);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001990 input_set_focus_widget(input, widget, sx, sy);
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001991}
Kristian Høgsberg59826582011-01-20 11:56:57 -05001992
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001993static void
Daniel Stone37816df2012-05-16 18:45:18 +01001994pointer_handle_leave(void *data, struct wl_pointer *pointer,
1995 uint32_t serial, struct wl_surface *surface)
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001996{
1997 struct input *input = data;
1998
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001999 input->display->serial = serial;
2000 input_remove_pointer_focus(input);
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05002001}
2002
2003static void
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05002004input_remove_keyboard_focus(struct input *input)
Pekka Paalanene1207c72011-12-16 12:02:09 +02002005{
2006 struct window *window = input->keyboard_focus;
2007
2008 if (!window)
2009 return;
2010
2011 window->keyboard_device = NULL;
2012 if (window->keyboard_focus_handler)
2013 (*window->keyboard_focus_handler)(window, NULL,
2014 window->user_data);
2015
2016 input->keyboard_focus = NULL;
2017}
2018
2019static void
Daniel Stone37816df2012-05-16 18:45:18 +01002020keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,
2021 uint32_t serial, struct wl_surface *surface,
2022 struct wl_array *keys)
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05002023{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002024 struct input *input = data;
Pekka Paalanene1207c72011-12-16 12:02:09 +02002025 struct window *window;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002026
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002027 input->display->serial = serial;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002028 input->keyboard_focus = wl_surface_get_user_data(surface);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002029
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002030 window = input->keyboard_focus;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002031 window->keyboard_device = input;
2032 if (window->keyboard_focus_handler)
2033 (*window->keyboard_focus_handler)(window,
2034 window->keyboard_device,
2035 window->user_data);
2036}
2037
2038static void
Daniel Stone37816df2012-05-16 18:45:18 +01002039keyboard_handle_leave(void *data, struct wl_keyboard *keyboard,
2040 uint32_t serial, struct wl_surface *surface)
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002041{
2042 struct input *input = data;
2043
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002044 input->display->serial = serial;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002045 input_remove_keyboard_focus(input);
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05002046}
2047
Daniel Stoneb7452fe2012-06-01 12:14:06 +01002048static void
2049keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard,
2050 uint32_t format, int fd, uint32_t size)
2051{
2052 struct input *input = data;
2053 char *map_str;
2054
2055 if (!data) {
2056 close(fd);
2057 return;
2058 }
2059
2060 if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
2061 close(fd);
2062 return;
2063 }
2064
2065 map_str = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
2066 if (map_str == MAP_FAILED) {
2067 close(fd);
2068 return;
2069 }
2070
2071 input->xkb.keymap = xkb_map_new_from_string(input->display->xkb_context,
2072 map_str,
2073 XKB_KEYMAP_FORMAT_TEXT_V1,
2074 0);
2075 munmap(map_str, size);
2076 close(fd);
2077
2078 if (!input->xkb.keymap) {
2079 fprintf(stderr, "failed to compile keymap\n");
2080 return;
2081 }
2082
2083 input->xkb.state = xkb_state_new(input->xkb.keymap);
2084 if (!input->xkb.state) {
2085 fprintf(stderr, "failed to create XKB state\n");
2086 xkb_map_unref(input->xkb.keymap);
2087 input->xkb.keymap = NULL;
2088 return;
2089 }
2090
2091 input->xkb.control_mask =
2092 1 << xkb_map_mod_get_index(input->xkb.keymap, "Control");
2093 input->xkb.alt_mask =
2094 1 << xkb_map_mod_get_index(input->xkb.keymap, "Mod1");
2095 input->xkb.shift_mask =
2096 1 << xkb_map_mod_get_index(input->xkb.keymap, "Shift");
2097}
2098
Daniel Stone37816df2012-05-16 18:45:18 +01002099static const struct wl_pointer_listener pointer_listener = {
2100 pointer_handle_enter,
2101 pointer_handle_leave,
2102 pointer_handle_motion,
2103 pointer_handle_button,
2104 pointer_handle_axis,
2105};
2106
2107static const struct wl_keyboard_listener keyboard_listener = {
Daniel Stoneb7452fe2012-06-01 12:14:06 +01002108 keyboard_handle_keymap,
Daniel Stone37816df2012-05-16 18:45:18 +01002109 keyboard_handle_enter,
2110 keyboard_handle_leave,
2111 keyboard_handle_key,
Daniel Stone351eb612012-05-31 15:27:47 -04002112 keyboard_handle_modifiers,
Daniel Stone37816df2012-05-16 18:45:18 +01002113};
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002114
2115static void
Daniel Stone37816df2012-05-16 18:45:18 +01002116seat_handle_capabilities(void *data, struct wl_seat *seat,
2117 enum wl_seat_capability caps)
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002118{
Daniel Stone37816df2012-05-16 18:45:18 +01002119 struct input *input = data;
2120
2121 if ((caps & WL_SEAT_CAPABILITY_POINTER) && !input->pointer) {
2122 input->pointer = wl_seat_get_pointer(seat);
2123 wl_pointer_set_user_data(input->pointer, input);
2124 wl_pointer_add_listener(input->pointer, &pointer_listener,
2125 input);
2126 } else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && input->pointer) {
2127 wl_pointer_destroy(input->pointer);
2128 input->pointer = NULL;
2129 }
2130
2131 if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !input->keyboard) {
2132 input->keyboard = wl_seat_get_keyboard(seat);
2133 wl_keyboard_set_user_data(input->keyboard, input);
2134 wl_keyboard_add_listener(input->keyboard, &keyboard_listener,
2135 input);
2136 } else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && input->keyboard) {
2137 wl_keyboard_destroy(input->keyboard);
2138 input->keyboard = NULL;
2139 }
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002140}
2141
Daniel Stone37816df2012-05-16 18:45:18 +01002142static const struct wl_seat_listener seat_listener = {
2143 seat_handle_capabilities,
Kristian Høgsberg94448c02008-12-30 11:03:33 -05002144};
2145
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002146void
2147input_get_position(struct input *input, int32_t *x, int32_t *y)
2148{
2149 *x = input->sx;
2150 *y = input->sy;
2151}
2152
Kristian Høgsbergd56bd902012-06-05 09:58:51 -04002153struct display *
2154input_get_display(struct input *input)
2155{
2156 return input->display;
2157}
2158
Daniel Stone37816df2012-05-16 18:45:18 +01002159struct wl_seat *
2160input_get_seat(struct input *input)
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04002161{
Daniel Stone37816df2012-05-16 18:45:18 +01002162 return input->seat;
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04002163}
2164
Kristian Høgsberg67cac8a2011-01-19 14:20:33 -05002165uint32_t
2166input_get_modifiers(struct input *input)
2167{
2168 return input->modifiers;
2169}
2170
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002171struct widget *
2172input_get_focus_widget(struct input *input)
2173{
2174 return input->focus_widget;
2175}
2176
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002177struct data_offer {
2178 struct wl_data_offer *offer;
2179 struct input *input;
2180 struct wl_array types;
2181 int refcount;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002182
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002183 struct task io_task;
2184 int fd;
2185 data_func_t func;
2186 int32_t x, y;
2187 void *user_data;
2188};
2189
2190static void
2191data_offer_offer(void *data, struct wl_data_offer *wl_data_offer, const char *type)
2192{
2193 struct data_offer *offer = data;
2194 char **p;
2195
2196 p = wl_array_add(&offer->types, sizeof *p);
2197 *p = strdup(type);
2198}
2199
2200static const struct wl_data_offer_listener data_offer_listener = {
2201 data_offer_offer,
2202};
2203
2204static void
2205data_offer_destroy(struct data_offer *offer)
2206{
2207 char **p;
2208
2209 offer->refcount--;
2210 if (offer->refcount == 0) {
2211 wl_data_offer_destroy(offer->offer);
2212 for (p = offer->types.data; *p; p++)
2213 free(*p);
2214 wl_array_release(&offer->types);
2215 free(offer);
2216 }
2217}
2218
2219static void
2220data_device_data_offer(void *data,
2221 struct wl_data_device *data_device, uint32_t id)
2222{
2223 struct data_offer *offer;
2224
2225 offer = malloc(sizeof *offer);
2226
2227 wl_array_init(&offer->types);
2228 offer->refcount = 1;
2229 offer->input = data;
2230
2231 /* FIXME: Generate typesafe wrappers for this */
2232 offer->offer = (struct wl_data_offer *)
2233 wl_proxy_create_for_id((struct wl_proxy *) data_device,
2234 id, &wl_data_offer_interface);
2235
2236 wl_data_offer_add_listener(offer->offer,
2237 &data_offer_listener, offer);
2238}
2239
2240static void
2241data_device_enter(void *data, struct wl_data_device *data_device,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002242 uint32_t serial, struct wl_surface *surface,
Daniel Stone103db7f2012-05-08 17:17:55 +01002243 wl_fixed_t x_w, wl_fixed_t y_w,
2244 struct wl_data_offer *offer)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002245{
2246 struct input *input = data;
2247 struct window *window;
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002248 void *types_data;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002249 float x = wl_fixed_to_double(x_w);
2250 float y = wl_fixed_to_double(y_w);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002251 char **p;
2252
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002253 input->pointer_enter_serial = serial;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002254 window = wl_surface_get_user_data(surface);
2255 input->pointer_focus = window;
2256
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002257 if (offer) {
2258 input->drag_offer = wl_data_offer_get_user_data(offer);
2259
2260 p = wl_array_add(&input->drag_offer->types, sizeof *p);
2261 *p = NULL;
2262
2263 types_data = input->drag_offer->types.data;
2264 } else {
2265 input->drag_offer = NULL;
2266 types_data = NULL;
2267 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002268
2269 window = input->pointer_focus;
2270 if (window->data_handler)
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002271 window->data_handler(window, input, x, y, types_data,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002272 window->user_data);
2273}
2274
2275static void
2276data_device_leave(void *data, struct wl_data_device *data_device)
2277{
2278 struct input *input = data;
2279
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002280 if (input->drag_offer) {
2281 data_offer_destroy(input->drag_offer);
2282 input->drag_offer = NULL;
2283 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002284}
2285
2286static void
2287data_device_motion(void *data, struct wl_data_device *data_device,
Daniel Stone103db7f2012-05-08 17:17:55 +01002288 uint32_t time, wl_fixed_t x_w, wl_fixed_t y_w)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002289{
2290 struct input *input = data;
2291 struct window *window = input->pointer_focus;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002292 float x = wl_fixed_to_double(x_w);
2293 float y = wl_fixed_to_double(y_w);
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002294 void *types_data;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002295
2296 input->sx = x;
2297 input->sy = y;
2298
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002299 if (input->drag_offer)
2300 types_data = input->drag_offer->types.data;
2301 else
2302 types_data = NULL;
2303
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002304 if (window->data_handler)
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002305 window->data_handler(window, input, x, y, types_data,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002306 window->user_data);
2307}
2308
2309static void
2310data_device_drop(void *data, struct wl_data_device *data_device)
2311{
2312 struct input *input = data;
2313 struct window *window = input->pointer_focus;
2314
2315 if (window->drop_handler)
2316 window->drop_handler(window, input,
2317 input->sx, input->sy, window->user_data);
2318}
2319
2320static void
2321data_device_selection(void *data,
2322 struct wl_data_device *wl_data_device,
2323 struct wl_data_offer *offer)
2324{
2325 struct input *input = data;
2326 char **p;
2327
2328 if (input->selection_offer)
2329 data_offer_destroy(input->selection_offer);
2330
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05002331 if (offer) {
2332 input->selection_offer = wl_data_offer_get_user_data(offer);
2333 p = wl_array_add(&input->selection_offer->types, sizeof *p);
2334 *p = NULL;
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04002335 } else {
2336 input->selection_offer = NULL;
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05002337 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002338}
2339
2340static const struct wl_data_device_listener data_device_listener = {
2341 data_device_data_offer,
2342 data_device_enter,
2343 data_device_leave,
2344 data_device_motion,
2345 data_device_drop,
2346 data_device_selection
2347};
2348
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002349static void
2350input_set_pointer_image_index(struct input *input, int index)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002351{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002352 struct wl_buffer *buffer;
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03002353 struct wl_cursor *cursor;
2354 struct wl_cursor_image *image;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002355
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002356 cursor = input->display->cursors[input->current_cursor];
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03002357 if (!cursor)
Dima Ryazanovff1c2d72012-05-08 21:02:33 -07002358 return;
2359
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002360 if (index >= (int) cursor->image_count) {
2361 fprintf(stderr, "cursor index out of range\n");
2362 return;
2363 }
2364
2365 image = cursor->images[index];
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03002366 buffer = wl_cursor_image_get_buffer(image);
2367 if (!buffer)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002368 return;
2369
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03002370 wl_pointer_set_cursor(input->pointer, input->display->serial,
2371 input->pointer_surface,
2372 image->hotspot_x, image->hotspot_y);
2373 wl_surface_attach(input->pointer_surface, buffer, 0, 0);
2374 wl_surface_damage(input->pointer_surface, 0, 0,
2375 image->width, image->height);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002376}
2377
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002378static const struct wl_callback_listener pointer_surface_listener;
2379
2380static void
2381pointer_surface_frame_callback(void *data, struct wl_callback *callback,
2382 uint32_t time)
2383{
2384 struct input *input = data;
Daniel Stonea494f1d2012-06-18 19:31:12 +01002385 struct wl_cursor *cursor;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002386 int i;
2387
2388 if (callback) {
2389 assert(callback == input->cursor_frame_cb);
2390 wl_callback_destroy(callback);
2391 input->cursor_frame_cb = NULL;
2392 }
2393
2394 if (input->current_cursor == CURSOR_UNSET)
2395 return;
Daniel Stonea494f1d2012-06-18 19:31:12 +01002396 cursor = input->display->cursors[input->current_cursor];
2397 if (!cursor)
2398 return;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002399
2400 /* FIXME We don't have the current time on the first call so we set
2401 * the animation start to the time of the first frame callback. */
2402 if (time == 0)
2403 input->cursor_anim_start = 0;
2404 else if (input->cursor_anim_start == 0)
2405 input->cursor_anim_start = time;
2406
2407 if (time == 0 || input->cursor_anim_start == 0)
2408 i = 0;
2409 else
2410 i = wl_cursor_frame(cursor, time - input->cursor_anim_start);
2411
2412 input_set_pointer_image_index(input, i);
2413
2414 if (cursor->image_count == 1)
2415 return;
2416
2417 input->cursor_frame_cb = wl_surface_frame(input->pointer_surface);
2418 wl_callback_add_listener(input->cursor_frame_cb,
2419 &pointer_surface_listener, input);
2420}
2421
2422static const struct wl_callback_listener pointer_surface_listener = {
2423 pointer_surface_frame_callback
2424};
2425
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002426void
2427input_set_pointer_image(struct input *input, int pointer)
2428{
2429 if (pointer == input->current_cursor)
2430 return;
2431
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002432 input->current_cursor = pointer;
2433 if (!input->cursor_frame_cb)
2434 pointer_surface_frame_callback(input, NULL, 0);
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002435}
2436
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002437struct wl_data_device *
2438input_get_data_device(struct input *input)
2439{
2440 return input->data_device;
2441}
2442
2443void
2444input_set_selection(struct input *input,
2445 struct wl_data_source *source, uint32_t time)
2446{
2447 wl_data_device_set_selection(input->data_device, source, time);
2448}
2449
2450void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002451input_accept(struct input *input, const char *type)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002452{
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002453 wl_data_offer_accept(input->drag_offer->offer,
2454 input->pointer_enter_serial, type);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002455}
2456
2457static void
2458offer_io_func(struct task *task, uint32_t events)
2459{
2460 struct data_offer *offer =
2461 container_of(task, struct data_offer, io_task);
2462 unsigned int len;
2463 char buffer[4096];
2464
2465 len = read(offer->fd, buffer, sizeof buffer);
2466 offer->func(buffer, len,
2467 offer->x, offer->y, offer->user_data);
2468
2469 if (len == 0) {
2470 close(offer->fd);
2471 data_offer_destroy(offer);
2472 }
2473}
2474
2475static void
2476data_offer_receive_data(struct data_offer *offer, const char *mime_type,
2477 data_func_t func, void *user_data)
2478{
2479 int p[2];
2480
Jonas Ådahl3685c3a2012-03-30 23:10:27 +02002481 if (pipe2(p, O_CLOEXEC) == -1)
2482 return;
2483
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002484 wl_data_offer_receive(offer->offer, mime_type, p[1]);
2485 close(p[1]);
2486
2487 offer->io_task.run = offer_io_func;
2488 offer->fd = p[0];
2489 offer->func = func;
2490 offer->refcount++;
2491 offer->user_data = user_data;
2492
2493 display_watch_fd(offer->input->display,
2494 offer->fd, EPOLLIN, &offer->io_task);
2495}
2496
2497void
2498input_receive_drag_data(struct input *input, const char *mime_type,
2499 data_func_t func, void *data)
2500{
2501 data_offer_receive_data(input->drag_offer, mime_type, func, data);
2502 input->drag_offer->x = input->sx;
2503 input->drag_offer->y = input->sy;
2504}
2505
2506int
2507input_receive_selection_data(struct input *input, const char *mime_type,
2508 data_func_t func, void *data)
2509{
2510 char **p;
2511
2512 if (input->selection_offer == NULL)
2513 return -1;
2514
2515 for (p = input->selection_offer->types.data; *p; p++)
2516 if (strcmp(mime_type, *p) == 0)
2517 break;
2518
2519 if (*p == NULL)
2520 return -1;
2521
2522 data_offer_receive_data(input->selection_offer,
2523 mime_type, func, data);
2524 return 0;
Kristian Høgsberg41da9082010-11-30 14:01:07 -05002525}
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04002526
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05002527int
2528input_receive_selection_data_to_fd(struct input *input,
2529 const char *mime_type, int fd)
2530{
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04002531 if (input->selection_offer)
2532 wl_data_offer_receive(input->selection_offer->offer,
2533 mime_type, fd);
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05002534
2535 return 0;
2536}
2537
Kristian Høgsberg41da9082010-11-30 14:01:07 -05002538void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002539window_move(struct window *window, struct input *input, uint32_t serial)
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002540{
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002541 if (!window->shell_surface)
2542 return;
2543
Daniel Stone37816df2012-05-16 18:45:18 +01002544 wl_shell_surface_move(window->shell_surface, input->seat, serial);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002545}
2546
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002547static void
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002548idle_resize(struct window *window)
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002549{
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002550 struct widget *widget;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002551
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002552 window->resize_needed = 0;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002553 widget = window->widget;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002554 widget_set_allocation(widget,
2555 window->pending_allocation.x,
2556 window->pending_allocation.y,
2557 window->pending_allocation.width,
2558 window->pending_allocation.height);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002559
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002560 if (window->input_region) {
2561 wl_region_destroy(window->input_region);
2562 window->input_region = NULL;
2563 }
2564
2565 if (window->opaque_region) {
2566 wl_region_destroy(window->opaque_region);
2567 window->opaque_region = NULL;
2568 }
2569
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002570 if (widget->resize_handler)
2571 widget->resize_handler(widget,
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002572 widget->allocation.width,
2573 widget->allocation.height,
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002574 widget->user_data);
2575
Kristian Høgsberg8e054f72012-01-31 11:53:20 -05002576 if (window->allocation.width != widget->allocation.width ||
2577 window->allocation.height != widget->allocation.height) {
2578 window->allocation = widget->allocation;
2579 window_schedule_redraw(window);
2580 }
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002581}
2582
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002583void
2584window_schedule_resize(struct window *window, int width, int height)
2585{
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002586 window->pending_allocation.x = 0;
2587 window->pending_allocation.y = 0;
2588 window->pending_allocation.width = width;
2589 window->pending_allocation.height = height;
2590
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002591 window->resize_needed = 1;
2592 window_schedule_redraw(window);
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002593}
2594
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002595void
2596widget_schedule_resize(struct widget *widget, int32_t width, int32_t height)
2597{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002598 window_schedule_resize(widget->window, width, height);
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002599}
2600
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002601static void
Scott Moreauff1db4a2012-04-17 19:06:18 -06002602handle_ping(void *data, struct wl_shell_surface *shell_surface,
2603 uint32_t serial)
2604{
2605 wl_shell_surface_pong(shell_surface, serial);
2606}
2607
2608static void
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002609handle_configure(void *data, struct wl_shell_surface *shell_surface,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002610 uint32_t edges, int32_t width, int32_t height)
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002611{
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002612 struct window *window = data;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002613
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002614 if (width <= 0 || height <= 0)
Tim Wiederhake8a6f7e32011-01-17 12:40:01 +01002615 return;
2616
Tim Wiederhakeb6761dc2011-01-17 17:50:07 +01002617 window->resize_edges = edges;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002618 window_schedule_resize(window, width, height);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002619}
2620
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002621static void
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002622menu_destroy(struct menu *menu)
2623{
2624 widget_destroy(menu->widget);
2625 window_destroy(menu->window);
2626 free(menu);
2627}
2628
2629static void
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002630handle_popup_done(void *data, struct wl_shell_surface *shell_surface)
2631{
2632 struct window *window = data;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002633 struct menu *menu = window->widget->user_data;
2634
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002635 /* FIXME: Need more context in this event, at least the input
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002636 * device. Or just use wl_callback. And this really needs to
2637 * be a window vfunc that the menu can set. And we need the
2638 * time. */
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002639
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002640 menu->func(window->parent, menu->current, window->parent->user_data);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002641 input_ungrab(menu->input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002642 menu_destroy(menu);
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002643}
2644
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002645static const struct wl_shell_surface_listener shell_surface_listener = {
Scott Moreauff1db4a2012-04-17 19:06:18 -06002646 handle_ping,
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002647 handle_configure,
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002648 handle_popup_done
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002649};
2650
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002651void
Benjamin Franzkecff904e2011-02-18 23:00:55 +01002652window_get_allocation(struct window *window,
2653 struct rectangle *allocation)
2654{
2655 *allocation = window->allocation;
2656}
2657
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002658static void
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002659widget_redraw(struct widget *widget)
2660{
2661 struct widget *child;
2662
2663 if (widget->redraw_handler)
2664 widget->redraw_handler(widget, widget->user_data);
2665 wl_list_for_each(child, &widget->child_list, link)
2666 widget_redraw(child);
2667}
2668
2669static void
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002670frame_callback(void *data, struct wl_callback *callback, uint32_t time)
2671{
2672 struct window *window = data;
2673
2674 wl_callback_destroy(callback);
2675 window->redraw_scheduled = 0;
2676 if (window->redraw_needed)
2677 window_schedule_redraw(window);
2678}
2679
2680static const struct wl_callback_listener listener = {
2681 frame_callback
2682};
2683
2684static void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002685idle_redraw(struct task *task, uint32_t events)
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002686{
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002687 struct window *window = container_of(task, struct window, redraw_task);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002688 struct wl_callback *callback;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002689
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002690 if (window->resize_needed)
2691 idle_resize(window);
2692
Kristian Høgsberg5d129902012-01-10 10:49:41 -05002693 window_create_surface(window);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002694 widget_redraw(window->widget);
Kristian Høgsberg5d129902012-01-10 10:49:41 -05002695 window_flush(window);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002696 window->redraw_needed = 0;
Kristian Høgsberg84b76c72012-04-13 12:01:18 -04002697 wl_list_init(&window->redraw_task.link);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002698
2699 callback = wl_surface_frame(window->surface);
2700 wl_callback_add_listener(callback, &listener, window);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002701}
2702
2703void
2704window_schedule_redraw(struct window *window)
2705{
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002706 window->redraw_needed = 1;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002707 if (!window->redraw_scheduled) {
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002708 window->redraw_task.run = idle_redraw;
2709 display_defer(window->display, &window->redraw_task);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002710 window->redraw_scheduled = 1;
2711 }
2712}
2713
Kristian Høgsberg0ac16f02009-01-15 11:37:43 -05002714void
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002715window_set_custom(struct window *window)
2716{
2717 window->type = TYPE_CUSTOM;
2718}
2719
2720void
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002721window_set_fullscreen(struct window *window, int fullscreen)
2722{
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002723 if (!window->display->shell)
2724 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002725
Kristian Høgsberg547da5a2011-09-13 20:58:00 -04002726 if ((window->type == TYPE_FULLSCREEN) == fullscreen)
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002727 return;
2728
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002729 if (fullscreen) {
2730 window->type = TYPE_FULLSCREEN;
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002731 window->saved_allocation = window->allocation;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002732 wl_shell_surface_set_fullscreen(window->shell_surface,
2733 WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
2734 0, NULL);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002735 } else {
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002736 window->type = TYPE_TOPLEVEL;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002737 wl_shell_surface_set_toplevel(window->shell_surface);
2738 window_schedule_resize(window,
2739 window->saved_allocation.width,
2740 window->saved_allocation.height);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002741 }
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002742}
2743
2744void
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05002745window_set_maximized(struct window *window, int maximized)
2746{
2747 if (!window->display->shell)
2748 return;
2749
2750 if ((window->type == TYPE_MAXIMIZED) == maximized)
2751 return;
2752
2753 if (window->type == TYPE_TOPLEVEL) {
2754 window->saved_allocation = window->allocation;
2755 wl_shell_surface_set_maximized(window->shell_surface, NULL);
2756 window->type = TYPE_MAXIMIZED;
2757 } else {
2758 wl_shell_surface_set_toplevel(window->shell_surface);
2759 window->type = TYPE_TOPLEVEL;
2760 window_schedule_resize(window,
2761 window->saved_allocation.width,
2762 window->saved_allocation.height);
2763 }
2764}
2765
2766void
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002767window_set_user_data(struct window *window, void *data)
2768{
2769 window->user_data = data;
2770}
2771
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04002772void *
2773window_get_user_data(struct window *window)
2774{
2775 return window->user_data;
2776}
2777
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002778void
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002779window_set_key_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002780 window_key_handler_t handler)
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002781{
2782 window->key_handler = handler;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002783}
2784
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002785void
2786window_set_keyboard_focus_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002787 window_keyboard_focus_handler_t handler)
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002788{
2789 window->keyboard_focus_handler = handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002790}
2791
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002792void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002793window_set_data_handler(struct window *window, window_data_handler_t handler)
2794{
2795 window->data_handler = handler;
2796}
2797
2798void
2799window_set_drop_handler(struct window *window, window_drop_handler_t handler)
2800{
2801 window->drop_handler = handler;
2802}
2803
2804void
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002805window_set_close_handler(struct window *window,
2806 window_close_handler_t handler)
2807{
2808 window->close_handler = handler;
2809}
2810
2811void
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002812window_set_title(struct window *window, const char *title)
2813{
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -05002814 free(window->title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002815 window->title = strdup(title);
Kristian Høgsberg3e0fe5c2012-05-02 09:47:55 -04002816 if (window->shell_surface)
2817 wl_shell_surface_set_title(window->shell_surface, title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002818}
2819
2820const char *
2821window_get_title(struct window *window)
2822{
2823 return window->title;
2824}
2825
2826void
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002827window_set_text_cursor_position(struct window *window, int32_t x, int32_t y)
2828{
2829 struct text_cursor_position *text_cursor_position =
2830 window->display->text_cursor_position;
2831
Scott Moreau9295ce02012-06-01 12:46:10 -06002832 if (!text_cursor_position)
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002833 return;
2834
2835 text_cursor_position_notify(text_cursor_position,
Scott Moreauae712202012-06-01 12:46:09 -06002836 window->surface,
2837 wl_fixed_from_int(x),
2838 wl_fixed_from_int(y));
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002839}
2840
2841void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002842window_damage(struct window *window, int32_t x, int32_t y,
2843 int32_t width, int32_t height)
2844{
2845 wl_surface_damage(window->surface, x, y, width, height);
2846}
2847
Casey Dahlin9074db52012-04-19 22:50:09 -04002848static void
2849surface_enter(void *data,
Rob Bradford7507b572012-05-15 17:55:34 +01002850 struct wl_surface *wl_surface, struct wl_output *wl_output)
Casey Dahlin9074db52012-04-19 22:50:09 -04002851{
Rob Bradford7507b572012-05-15 17:55:34 +01002852 struct window *window = data;
2853 struct output *output;
2854 struct output *output_found = NULL;
2855 struct window_output *window_output;
2856
2857 wl_list_for_each(output, &window->display->output_list, link) {
2858 if (output->output == wl_output) {
2859 output_found = output;
2860 break;
2861 }
2862 }
2863
2864 if (!output_found)
2865 return;
2866
2867 window_output = malloc (sizeof *window_output);
2868 window_output->output = output_found;
2869
2870 wl_list_insert (&window->window_output_list, &window_output->link);
Casey Dahlin9074db52012-04-19 22:50:09 -04002871}
2872
2873static void
2874surface_leave(void *data,
2875 struct wl_surface *wl_surface, struct wl_output *output)
2876{
Rob Bradford7507b572012-05-15 17:55:34 +01002877 struct window *window = data;
2878 struct window_output *window_output;
2879 struct window_output *window_output_found = NULL;
2880
2881 wl_list_for_each(window_output, &window->window_output_list, link) {
2882 if (window_output->output->output == output) {
2883 window_output_found = window_output;
2884 break;
2885 }
2886 }
2887
2888 if (window_output_found) {
2889 wl_list_remove(&window_output_found->link);
2890 free(window_output_found);
2891 }
Casey Dahlin9074db52012-04-19 22:50:09 -04002892}
2893
2894static const struct wl_surface_listener surface_listener = {
2895 surface_enter,
2896 surface_leave
2897};
2898
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002899static struct window *
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002900window_create_internal(struct display *display, struct window *parent)
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002901{
Kristian Høgsberg1cbaa6a2008-11-07 15:54:48 -05002902 struct window *window;
2903
2904 window = malloc(sizeof *window);
2905 if (window == NULL)
2906 return NULL;
2907
Kristian Høgsberg78231c82008-11-08 15:06:01 -05002908 memset(window, 0, sizeof *window);
Kristian Høgsberg40979232008-11-25 22:40:39 -05002909 window->display = display;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002910 window->parent = parent;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002911 window->surface = wl_compositor_create_surface(display->compositor);
Casey Dahlin9074db52012-04-19 22:50:09 -04002912 wl_surface_add_listener(window->surface, &surface_listener, window);
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002913 if (display->shell) {
2914 window->shell_surface =
2915 wl_shell_get_shell_surface(display->shell,
2916 window->surface);
Kristian Høgsberg3e0fe5c2012-05-02 09:47:55 -04002917 if (window->title)
2918 wl_shell_surface_set_title(window->shell_surface,
2919 window->title);
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002920 }
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002921 window->allocation.x = 0;
2922 window->allocation.y = 0;
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002923 window->allocation.width = 0;
2924 window->allocation.height = 0;
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002925 window->saved_allocation = window->allocation;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -04002926 window->transparent = 1;
Kristian Høgsberg407ef642012-04-27 17:17:12 -04002927 window->type = TYPE_NONE;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002928 window->input_region = NULL;
2929 window->opaque_region = NULL;
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -05002930
Kristian Høgsberg297c6312011-02-04 14:11:33 -05002931 if (display->dpy)
Benjamin Franzke22d54812011-07-16 19:50:32 +00002932#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +01002933 window->buffer_type = WINDOW_BUFFER_TYPE_EGL_WINDOW;
Benjamin Franzke22d54812011-07-16 19:50:32 +00002934#else
2935 window->buffer_type = WINDOW_BUFFER_TYPE_SHM;
2936#endif
Yuval Fledel45568f62010-12-06 09:18:12 -05002937 else
2938 window->buffer_type = WINDOW_BUFFER_TYPE_SHM;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002939
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002940 wl_surface_set_user_data(window->surface, window);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04002941 wl_list_insert(display->window_list.prev, &window->link);
Kristian Høgsberg84b76c72012-04-13 12:01:18 -04002942 wl_list_init(&window->redraw_task.link);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002943
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002944 if (window->shell_surface) {
2945 wl_shell_surface_set_user_data(window->shell_surface, window);
2946 wl_shell_surface_add_listener(window->shell_surface,
2947 &shell_surface_listener, window);
2948 }
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002949
Rob Bradford7507b572012-05-15 17:55:34 +01002950 wl_list_init (&window->window_output_list);
2951
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002952 return window;
2953}
2954
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002955struct window *
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002956window_create(struct display *display)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002957{
2958 struct window *window;
2959
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002960 window = window_create_internal(display, NULL);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002961 if (!window)
2962 return NULL;
2963
2964 return window;
2965}
2966
2967struct window *
2968window_create_transient(struct display *display, struct window *parent,
Tiago Vignattidec76582012-05-21 16:47:46 +03002969 int32_t x, int32_t y, uint32_t flags)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002970{
2971 struct window *window;
2972
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002973 window = window_create_internal(parent->display, parent);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002974 if (!window)
2975 return NULL;
2976
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002977 window->type = TYPE_TRANSIENT;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002978 window->x = x;
2979 window->y = y;
2980
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002981 if (display->shell)
2982 wl_shell_surface_set_transient(window->shell_surface,
2983 window->parent->shell_surface,
Tiago Vignattidec76582012-05-21 16:47:46 +03002984 window->x, window->y, flags);
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002985
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002986 return window;
2987}
2988
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002989static void
Kristian Høgsberg19dd1d72012-01-09 10:42:41 -05002990menu_set_item(struct menu *menu, int sy)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002991{
2992 int next;
2993
2994 next = (sy - 8) / 20;
2995 if (menu->current != next) {
2996 menu->current = next;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002997 widget_schedule_redraw(menu->widget);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002998 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002999}
3000
3001static int
Kristian Høgsberg5f190ef2012-01-09 09:44:45 -05003002menu_motion_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003003 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003004 float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003005{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003006 struct menu *menu = data;
3007
3008 if (widget == menu->widget)
3009 menu_set_item(data, y);
3010
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03003011 return CURSOR_LEFT_PTR;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003012}
3013
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05003014static int
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003015menu_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003016 struct input *input, float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003017{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003018 struct menu *menu = data;
3019
3020 if (widget == menu->widget)
3021 menu_set_item(data, y);
3022
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03003023 return CURSOR_LEFT_PTR;
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003024}
3025
3026static void
3027menu_leave_handler(struct widget *widget, struct input *input, void *data)
3028{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003029 struct menu *menu = data;
3030
3031 if (widget == menu->widget)
3032 menu_set_item(data, -200);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003033}
3034
3035static void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05003036menu_button_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003037 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01003038 uint32_t button, enum wl_pointer_button_state state,
3039 void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003040
3041{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003042 struct menu *menu = data;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003043
Daniel Stone4dbadb12012-05-30 16:31:51 +01003044 if (state == WL_POINTER_BUTTON_STATE_PRESSED &&
3045 time - menu->time > 500) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003046 /* Either relase after press-drag-release or
3047 * click-motion-click. */
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003048 menu->func(menu->window->parent,
3049 menu->current, menu->window->parent->user_data);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003050 input_ungrab(input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003051 menu_destroy(menu);
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05003052 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003053}
3054
3055static void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003056menu_redraw_handler(struct widget *widget, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003057{
3058 cairo_t *cr;
3059 const int32_t r = 3, margin = 3;
3060 struct menu *menu = data;
3061 int32_t width, height, i;
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003062 struct window *window = widget->window;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003063
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003064 cr = cairo_create(window->cairo_surface);
3065 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
3066 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
3067 cairo_paint(cr);
3068
3069 width = window->allocation.width;
3070 height = window->allocation.height;
3071 rounded_rect(cr, 0, 0, width, height, r);
Kristian Høgsberg824c6d02012-01-19 13:54:09 -05003072
3073 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003074 cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
3075 cairo_fill(cr);
3076
3077 for (i = 0; i < menu->count; i++) {
3078 if (i == menu->current) {
3079 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
3080 cairo_rectangle(cr, margin, i * 20 + margin,
3081 width - 2 * margin, 20);
3082 cairo_fill(cr);
3083 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
3084 cairo_move_to(cr, 10, i * 20 + 16);
3085 cairo_show_text(cr, menu->entries[i]);
3086 } else {
3087 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
3088 cairo_move_to(cr, 10, i * 20 + 16);
3089 cairo_show_text(cr, menu->entries[i]);
3090 }
3091 }
3092
3093 cairo_destroy(cr);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003094}
3095
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003096void
3097window_show_menu(struct display *display,
3098 struct input *input, uint32_t time, struct window *parent,
3099 int32_t x, int32_t y,
3100 menu_func_t func, const char **entries, int count)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003101{
3102 struct window *window;
3103 struct menu *menu;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003104 const int32_t margin = 3;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003105
3106 menu = malloc(sizeof *menu);
3107 if (!menu)
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003108 return;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003109
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05003110 window = window_create_internal(parent->display, parent);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003111 if (!window)
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003112 return;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003113
3114 menu->window = window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003115 menu->widget = window_add_widget(menu->window, menu);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003116 menu->entries = entries;
3117 menu->count = count;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003118 menu->current = -1;
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003119 menu->time = time;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05003120 menu->func = func;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003121 menu->input = input;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003122 window->type = TYPE_MENU;
3123 window->x = x;
3124 window->y = y;
3125
Kristian Høgsberga6c8b002012-04-13 12:55:45 -04003126 input_ungrab(input);
Daniel Stone37816df2012-05-16 18:45:18 +01003127 wl_shell_surface_set_popup(window->shell_surface, input->seat,
Kristian Høgsbergf2eb68a2012-04-13 12:37:19 -04003128 display_get_serial(window->display),
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003129 window->parent->shell_surface,
3130 window->x, window->y, 0);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003131
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003132 widget_set_redraw_handler(menu->widget, menu_redraw_handler);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003133 widget_set_enter_handler(menu->widget, menu_enter_handler);
3134 widget_set_leave_handler(menu->widget, menu_leave_handler);
3135 widget_set_motion_handler(menu->widget, menu_motion_handler);
3136 widget_set_button_handler(menu->widget, menu_button_handler);
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003137
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003138 input_grab(input, menu->widget, 0);
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05003139 window_schedule_resize(window, 200, count * 20 + margin * 2);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003140}
3141
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05003142void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04003143window_set_buffer_type(struct window *window, enum window_buffer_type type)
3144{
3145 window->buffer_type = type;
3146}
3147
Kristian Høgsberg8357cd62011-05-13 13:24:56 -04003148
3149static void
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003150display_handle_geometry(void *data,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003151 struct wl_output *wl_output,
3152 int x, int y,
3153 int physical_width,
3154 int physical_height,
3155 int subpixel,
3156 const char *make,
3157 const char *model)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003158{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003159 struct output *output = data;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003160
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003161 output->allocation.x = x;
3162 output->allocation.y = y;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003163}
3164
3165static void
3166display_handle_mode(void *data,
3167 struct wl_output *wl_output,
3168 uint32_t flags,
3169 int width,
3170 int height,
3171 int refresh)
3172{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003173 struct output *output = data;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003174 struct display *display = output->display;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003175
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003176 if (flags & WL_OUTPUT_MODE_CURRENT) {
3177 output->allocation.width = width;
3178 output->allocation.height = height;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003179 if (display->output_configure_handler)
3180 (*display->output_configure_handler)(
3181 output, display->user_data);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003182 }
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003183}
3184
3185static const struct wl_output_listener output_listener = {
3186 display_handle_geometry,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003187 display_handle_mode
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003188};
3189
3190static void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003191display_add_output(struct display *d, uint32_t id)
3192{
3193 struct output *output;
3194
3195 output = malloc(sizeof *output);
3196 if (output == NULL)
3197 return;
3198
3199 memset(output, 0, sizeof *output);
3200 output->display = d;
3201 output->output =
3202 wl_display_bind(d->display, id, &wl_output_interface);
3203 wl_list_insert(d->output_list.prev, &output->link);
3204
3205 wl_output_add_listener(output->output, &output_listener, output);
3206}
3207
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003208static void
3209output_destroy(struct output *output)
3210{
3211 if (output->destroy_handler)
3212 (*output->destroy_handler)(output, output->user_data);
3213
3214 wl_output_destroy(output->output);
3215 wl_list_remove(&output->link);
3216 free(output);
3217}
3218
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003219void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003220display_set_output_configure_handler(struct display *display,
3221 display_output_handler_t handler)
3222{
3223 struct output *output;
3224
3225 display->output_configure_handler = handler;
3226 if (!handler)
3227 return;
3228
3229 wl_list_for_each(output, &display->output_list, link)
3230 (*display->output_configure_handler)(output,
3231 display->user_data);
3232}
3233
3234void
3235output_set_user_data(struct output *output, void *data)
3236{
3237 output->user_data = data;
3238}
3239
3240void *
3241output_get_user_data(struct output *output)
3242{
3243 return output->user_data;
3244}
3245
3246void
3247output_set_destroy_handler(struct output *output,
3248 display_output_handler_t handler)
3249{
3250 output->destroy_handler = handler;
3251 /* FIXME: implement this, once we have way to remove outputs */
3252}
3253
3254void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003255output_get_allocation(struct output *output, struct rectangle *allocation)
3256{
3257 *allocation = output->allocation;
3258}
3259
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003260struct wl_output *
3261output_get_wl_output(struct output *output)
3262{
3263 return output->output;
3264}
3265
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003266static void
Daniel Stone97f68542012-05-30 16:32:01 +01003267fini_xkb(struct input *input)
3268{
3269 xkb_state_unref(input->xkb.state);
3270 xkb_map_unref(input->xkb.keymap);
3271}
3272
3273static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003274display_add_input(struct display *d, uint32_t id)
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003275{
3276 struct input *input;
3277
3278 input = malloc(sizeof *input);
3279 if (input == NULL)
3280 return;
3281
3282 memset(input, 0, sizeof *input);
3283 input->display = d;
Daniel Stone37816df2012-05-16 18:45:18 +01003284 input->seat = wl_display_bind(d->display, id, &wl_seat_interface);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003285 input->pointer_focus = NULL;
3286 input->keyboard_focus = NULL;
3287 wl_list_insert(d->input_list.prev, &input->link);
3288
Daniel Stone37816df2012-05-16 18:45:18 +01003289 wl_seat_add_listener(input->seat, &seat_listener, input);
3290 wl_seat_set_user_data(input->seat, input);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003291
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003292 input->data_device =
3293 wl_data_device_manager_get_data_device(d->data_device_manager,
Daniel Stone37816df2012-05-16 18:45:18 +01003294 input->seat);
3295 wl_data_device_add_listener(input->data_device, &data_device_listener,
3296 input);
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03003297
3298 input->pointer_surface = wl_compositor_create_surface(d->compositor);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003299
Kristian Høgsberg8b19c642012-06-20 18:00:13 -04003300 input->repeat_timer_fd = timerfd_create(CLOCK_MONOTONIC,
3301 TFD_CLOEXEC | TFD_NONBLOCK);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003302 input->repeat_task.run = keyboard_repeat_func;
3303 display_watch_fd(d, input->repeat_timer_fd,
3304 EPOLLIN, &input->repeat_task);
Kristian Høgsberg58eec362011-01-19 14:27:42 -05003305}
3306
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003307static void
Pekka Paalanene1207c72011-12-16 12:02:09 +02003308input_destroy(struct input *input)
3309{
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05003310 input_remove_keyboard_focus(input);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003311 input_remove_pointer_focus(input);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003312
Daniel Stoneb7452fe2012-06-01 12:14:06 +01003313 if (input->xkb.state)
3314 xkb_state_unref(input->xkb.state);
3315 if (input->xkb.keymap)
3316 xkb_map_unref(input->xkb.keymap);
3317
Pekka Paalanene1207c72011-12-16 12:02:09 +02003318 if (input->drag_offer)
3319 data_offer_destroy(input->drag_offer);
3320
3321 if (input->selection_offer)
3322 data_offer_destroy(input->selection_offer);
3323
3324 wl_data_device_destroy(input->data_device);
Daniel Stone97f68542012-05-30 16:32:01 +01003325 fini_xkb(input);
3326
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03003327 wl_surface_destroy(input->pointer_surface);
3328
Pekka Paalanene1207c72011-12-16 12:02:09 +02003329 wl_list_remove(&input->link);
Daniel Stone37816df2012-05-16 18:45:18 +01003330 wl_seat_destroy(input->seat);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003331 close(input->repeat_timer_fd);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003332 free(input);
3333}
3334
3335static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003336display_handle_global(struct wl_display *display, uint32_t id,
3337 const char *interface, uint32_t version, void *data)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003338{
3339 struct display *d = data;
3340
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003341 if (strcmp(interface, "wl_compositor") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003342 d->compositor =
3343 wl_display_bind(display, id, &wl_compositor_interface);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003344 } else if (strcmp(interface, "wl_output") == 0) {
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003345 display_add_output(d, id);
Daniel Stone37816df2012-05-16 18:45:18 +01003346 } else if (strcmp(interface, "wl_seat") == 0) {
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003347 display_add_input(d, id);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003348 } else if (strcmp(interface, "wl_shell") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003349 d->shell = wl_display_bind(display, id, &wl_shell_interface);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003350 } else if (strcmp(interface, "wl_shm") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003351 d->shm = wl_display_bind(display, id, &wl_shm_interface);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003352 } else if (strcmp(interface, "wl_data_device_manager") == 0) {
3353 d->data_device_manager =
3354 wl_display_bind(display, id,
3355 &wl_data_device_manager_interface);
Scott Moreau7a1b32a2012-05-27 14:25:02 -06003356 } else if (strcmp(interface, "text_cursor_position") == 0) {
3357 d->text_cursor_position =
3358 wl_display_bind(display, id,
3359 &text_cursor_position_interface);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003360 }
3361}
3362
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003363#ifdef HAVE_CAIRO_EGL
Yuval Fledel45568f62010-12-06 09:18:12 -05003364static int
Kristian Høgsberg297c6312011-02-04 14:11:33 -05003365init_egl(struct display *d)
Yuval Fledel45568f62010-12-06 09:18:12 -05003366{
3367 EGLint major, minor;
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003368 EGLint n;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -04003369
Rob Clark6396ed32012-03-11 19:48:41 -05003370#ifdef USE_CAIRO_GLESV2
3371# define GL_BIT EGL_OPENGL_ES2_BIT
3372#else
3373# define GL_BIT EGL_OPENGL_BIT
3374#endif
3375
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003376 static const EGLint argb_cfg_attribs[] = {
3377 EGL_SURFACE_TYPE, EGL_WINDOW_BIT | EGL_PIXMAP_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003378 EGL_RED_SIZE, 1,
3379 EGL_GREEN_SIZE, 1,
3380 EGL_BLUE_SIZE, 1,
3381 EGL_ALPHA_SIZE, 1,
3382 EGL_DEPTH_SIZE, 1,
Rob Clark6396ed32012-03-11 19:48:41 -05003383 EGL_RENDERABLE_TYPE, GL_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003384 EGL_NONE
3385 };
Yuval Fledel45568f62010-12-06 09:18:12 -05003386
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003387#ifdef USE_CAIRO_GLESV2
3388 static const EGLint context_attribs[] = {
3389 EGL_CONTEXT_CLIENT_VERSION, 2,
3390 EGL_NONE
3391 };
3392 EGLint api = EGL_OPENGL_ES_API;
3393#else
3394 EGLint *context_attribs = NULL;
3395 EGLint api = EGL_OPENGL_API;
3396#endif
3397
Kristian Høgsberg91342c62011-04-14 14:44:58 -04003398 d->dpy = eglGetDisplay(d->display);
Yuval Fledel45568f62010-12-06 09:18:12 -05003399 if (!eglInitialize(d->dpy, &major, &minor)) {
3400 fprintf(stderr, "failed to initialize display\n");
3401 return -1;
3402 }
3403
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003404 if (!eglBindAPI(api)) {
Yuval Fledel45568f62010-12-06 09:18:12 -05003405 fprintf(stderr, "failed to bind api EGL_OPENGL_API\n");
3406 return -1;
3407 }
3408
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003409 if (!eglChooseConfig(d->dpy, argb_cfg_attribs,
3410 &d->argb_config, 1, &n) || n != 1) {
3411 fprintf(stderr, "failed to choose argb config\n");
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003412 return -1;
3413 }
3414
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003415 d->argb_ctx = eglCreateContext(d->dpy, d->argb_config,
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003416 EGL_NO_CONTEXT, context_attribs);
Benjamin Franzke0c991632011-09-27 21:57:31 +02003417 if (d->argb_ctx == NULL) {
Yuval Fledel45568f62010-12-06 09:18:12 -05003418 fprintf(stderr, "failed to create context\n");
3419 return -1;
3420 }
3421
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003422 if (!eglMakeCurrent(d->dpy, NULL, NULL, d->argb_ctx)) {
Tim Wiederhake9c7a8cc2011-02-11 19:37:40 +01003423 fprintf(stderr, "failed to make context current\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05003424 return -1;
3425 }
3426
Kristian Høgsberg8def2642011-01-14 17:41:33 -05003427#ifdef HAVE_CAIRO_EGL
Benjamin Franzke0c991632011-09-27 21:57:31 +02003428 d->argb_device = cairo_egl_device_create(d->dpy, d->argb_ctx);
3429 if (cairo_device_status(d->argb_device) != CAIRO_STATUS_SUCCESS) {
3430 fprintf(stderr, "failed to get cairo egl argb device\n");
3431 return -1;
3432 }
Yuval Fledel45568f62010-12-06 09:18:12 -05003433#endif
3434
3435 return 0;
3436}
3437
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003438static void
3439fini_egl(struct display *display)
3440{
3441#ifdef HAVE_CAIRO_EGL
3442 cairo_device_destroy(display->argb_device);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003443#endif
3444
3445 eglMakeCurrent(display->dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
3446 EGL_NO_CONTEXT);
3447
3448 eglTerminate(display->dpy);
3449 eglReleaseThread();
3450}
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003451#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003452
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003453static int
3454event_mask_update(uint32_t mask, void *data)
3455{
3456 struct display *d = data;
3457
3458 d->mask = mask;
3459
3460 return 0;
3461}
3462
3463static void
3464handle_display_data(struct task *task, uint32_t events)
3465{
3466 struct display *display =
3467 container_of(task, struct display, display_task);
3468
3469 wl_display_iterate(display->display, display->mask);
3470}
3471
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003472struct display *
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04003473display_create(int argc, char *argv[])
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003474{
3475 struct display *d;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04003476
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04003477 argc = parse_options(xkb_options,
3478 ARRAY_LENGTH(xkb_options), argc, argv);
Kristian Høgsbergc7c60642010-08-29 21:33:39 -04003479
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003480 d = malloc(sizeof *d);
3481 if (d == NULL)
3482 return NULL;
3483
Tim Wiederhake81bd9792011-01-23 23:25:26 +01003484 memset(d, 0, sizeof *d);
3485
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05003486 d->display = wl_display_connect(NULL);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003487 if (d->display == NULL) {
3488 fprintf(stderr, "failed to create display: %m\n");
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003489 return NULL;
3490 }
3491
Pekka Paalanen647f2bf2012-05-30 15:53:43 +03003492 d->epoll_fd = os_epoll_create_cloexec();
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003493 d->display_fd = wl_display_get_fd(d->display, event_mask_update, d);
3494 d->display_task.run = handle_display_data;
3495 display_watch_fd(d, d->display_fd, EPOLLIN, &d->display_task);
3496
3497 wl_list_init(&d->deferred_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003498 wl_list_init(&d->input_list);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003499 wl_list_init(&d->output_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003500
Daniel Stone97f68542012-05-30 16:32:01 +01003501 d->xkb_context = xkb_context_new(0);
Daniel Stoneb7452fe2012-06-01 12:14:06 +01003502 if (d->xkb_context == NULL) {
3503 fprintf(stderr, "Failed to create XKB context\n");
Daniel Stone97f68542012-05-30 16:32:01 +01003504 return NULL;
3505 }
3506
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003507 /* Set up listener so we'll catch all events. */
3508 wl_display_add_global_listener(d->display,
3509 display_handle_global, d);
3510
3511 /* Process connection events. */
3512 wl_display_iterate(d->display, WL_DISPLAY_READABLE);
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003513#ifdef HAVE_CAIRO_EGL
Kristian Høgsberg297c6312011-02-04 14:11:33 -05003514 if (init_egl(d) < 0)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003515 return NULL;
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003516#endif
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -05003517
Kristian Høgsberg0d5007a2011-02-09 10:57:44 -05003518 d->image_target_texture_2d =
3519 (void *) eglGetProcAddress("glEGLImageTargetTexture2DOES");
3520 d->create_image = (void *) eglGetProcAddress("eglCreateImageKHR");
3521 d->destroy_image = (void *) eglGetProcAddress("eglDestroyImageKHR");
3522
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03003523 create_cursors(d);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04003524
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04003525 d->theme = theme_create();
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04003526
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003527 wl_list_init(&d->window_list);
3528
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003529 return d;
3530}
3531
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003532static void
3533display_destroy_outputs(struct display *display)
3534{
3535 struct output *tmp;
3536 struct output *output;
3537
3538 wl_list_for_each_safe(output, tmp, &display->output_list, link)
3539 output_destroy(output);
3540}
3541
Pekka Paalanene1207c72011-12-16 12:02:09 +02003542static void
3543display_destroy_inputs(struct display *display)
3544{
3545 struct input *tmp;
3546 struct input *input;
3547
3548 wl_list_for_each_safe(input, tmp, &display->input_list, link)
3549 input_destroy(input);
3550}
3551
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003552void
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003553display_destroy(struct display *display)
3554{
Pekka Paalanenc2052982011-12-16 11:41:32 +02003555 if (!wl_list_empty(&display->window_list))
3556 fprintf(stderr, "toytoolkit warning: windows exist.\n");
3557
3558 if (!wl_list_empty(&display->deferred_list))
3559 fprintf(stderr, "toytoolkit warning: deferred tasks exist.\n");
3560
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003561 display_destroy_outputs(display);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003562 display_destroy_inputs(display);
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003563
Daniel Stone97f68542012-05-30 16:32:01 +01003564 xkb_context_unref(display->xkb_context);
Pekka Paalanen325bb602011-12-19 10:31:45 +02003565
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04003566 theme_destroy(display->theme);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03003567 destroy_cursors(display);
Pekka Paalanen325bb602011-12-19 10:31:45 +02003568
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003569#ifdef HAVE_CAIRO_EGL
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003570 fini_egl(display);
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003571#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003572
Pekka Paalanenc2052982011-12-16 11:41:32 +02003573 if (display->shell)
3574 wl_shell_destroy(display->shell);
3575
3576 if (display->shm)
3577 wl_shm_destroy(display->shm);
3578
3579 if (display->data_device_manager)
3580 wl_data_device_manager_destroy(display->data_device_manager);
3581
3582 wl_compositor_destroy(display->compositor);
3583
3584 close(display->epoll_fd);
3585
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003586 wl_display_flush(display->display);
Kristian Høgsbergfcfc83f2012-02-28 14:29:19 -05003587 wl_display_disconnect(display->display);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003588 free(display);
3589}
3590
3591void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003592display_set_user_data(struct display *display, void *data)
3593{
3594 display->user_data = data;
3595}
3596
3597void *
3598display_get_user_data(struct display *display)
3599{
3600 return display->user_data;
3601}
3602
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -04003603struct wl_display *
3604display_get_display(struct display *display)
3605{
3606 return display->display;
3607}
3608
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003609struct output *
3610display_get_output(struct display *display)
3611{
3612 return container_of(display->output_list.next, struct output, link);
3613}
3614
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003615struct wl_compositor *
3616display_get_compositor(struct display *display)
3617{
3618 return display->compositor;
Kristian Høgsberg61017b12008-11-02 18:51:48 -05003619}
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003620
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003621uint32_t
3622display_get_serial(struct display *display)
3623{
3624 return display->serial;
3625}
3626
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003627EGLDisplay
3628display_get_egl_display(struct display *d)
3629{
3630 return d->dpy;
3631}
3632
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003633struct wl_data_source *
3634display_create_data_source(struct display *display)
3635{
3636 return wl_data_device_manager_create_data_source(display->data_device_manager);
3637}
3638
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003639EGLConfig
Benjamin Franzke0c991632011-09-27 21:57:31 +02003640display_get_argb_egl_config(struct display *d)
3641{
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003642 return d->argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003643}
3644
Kristian Høgsberg58eec362011-01-19 14:27:42 -05003645struct wl_shell *
3646display_get_shell(struct display *display)
3647{
3648 return display->shell;
3649}
3650
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003651int
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003652display_acquire_window_surface(struct display *display,
3653 struct window *window,
3654 EGLContext ctx)
3655{
Benjamin Franzke22d54812011-07-16 19:50:32 +00003656#ifdef HAVE_CAIRO_EGL
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003657 struct egl_window_surface_data *data;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003658 cairo_device_t *device;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003659
3660 if (!window->cairo_surface)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003661 return -1;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003662 device = cairo_surface_get_device(window->cairo_surface);
3663 if (!device)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003664 return -1;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003665
Benjamin Franzke0c991632011-09-27 21:57:31 +02003666 if (!ctx) {
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003667 if (device == display->argb_device)
Benjamin Franzke0c991632011-09-27 21:57:31 +02003668 ctx = display->argb_ctx;
3669 else
3670 assert(0);
3671 }
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003672
3673 data = cairo_surface_get_user_data(window->cairo_surface,
3674 &surface_data_key);
3675
Pekka Paalanen9015ead2011-12-19 13:57:59 +02003676 cairo_device_flush(device);
Benjamin Franzke0c991632011-09-27 21:57:31 +02003677 cairo_device_acquire(device);
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003678 if (!eglMakeCurrent(display->dpy, data->surf, data->surf, ctx))
3679 fprintf(stderr, "failed to make surface current\n");
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003680
3681 return 0;
3682#else
3683 return -1;
Benjamin Franzke22d54812011-07-16 19:50:32 +00003684#endif
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003685}
3686
3687void
Benjamin Franzke0c991632011-09-27 21:57:31 +02003688display_release_window_surface(struct display *display,
3689 struct window *window)
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003690{
Benjamin Franzke0c991632011-09-27 21:57:31 +02003691#ifdef HAVE_CAIRO_EGL
3692 cairo_device_t *device;
3693
3694 device = cairo_surface_get_device(window->cairo_surface);
3695 if (!device)
3696 return;
3697
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003698 if (!eglMakeCurrent(display->dpy, NULL, NULL, display->argb_ctx))
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003699 fprintf(stderr, "failed to make context current\n");
Benjamin Franzke0c991632011-09-27 21:57:31 +02003700 cairo_device_release(device);
3701#endif
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003702}
3703
3704void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003705display_defer(struct display *display, struct task *task)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003706{
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003707 wl_list_insert(&display->deferred_list, &task->link);
3708}
3709
3710void
3711display_watch_fd(struct display *display,
3712 int fd, uint32_t events, struct task *task)
3713{
3714 struct epoll_event ep;
3715
3716 ep.events = events;
3717 ep.data.ptr = task;
3718 epoll_ctl(display->epoll_fd, EPOLL_CTL_ADD, fd, &ep);
3719}
3720
3721void
3722display_run(struct display *display)
3723{
3724 struct task *task;
3725 struct epoll_event ep[16];
3726 int i, count;
3727
Pekka Paalanen826d7952011-12-15 10:14:07 +02003728 display->running = 1;
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003729 while (1) {
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05003730 wl_display_flush(display->display);
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003731
3732 while (!wl_list_empty(&display->deferred_list)) {
3733 task = container_of(display->deferred_list.next,
3734 struct task, link);
3735 wl_list_remove(&task->link);
3736 task->run(task, 0);
3737 }
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05003738
3739 if (!display->running)
3740 break;
3741
3742 wl_display_flush(display->display);
3743
3744 count = epoll_wait(display->epoll_fd,
3745 ep, ARRAY_LENGTH(ep), -1);
3746 for (i = 0; i < count; i++) {
3747 task = ep[i].data.ptr;
3748 task->run(task, ep[i].events);
3749 }
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003750 }
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003751}
Pekka Paalanen826d7952011-12-15 10:14:07 +02003752
3753void
3754display_exit(struct display *display)
3755{
3756 display->running = 0;
3757}