blob: cb4bc84200a4396d6b7db0b526d75f5b2b106f7c [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øgsberg11f600d2012-06-22 10:52:58 -0400197 uint32_t cursor_serial;
Kristian Høgsberg80680c72012-05-10 12:21:37 -0400198 float sx, sy;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400199 struct wl_list link;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400200
Kristian Høgsbergb6323512012-01-11 00:04:42 -0500201 struct widget *focus_widget;
Kristian Høgsberg831dd522012-01-10 23:46:33 -0500202 struct widget *grab;
203 uint32_t grab_button;
204
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400205 struct wl_data_device *data_device;
206 struct data_offer *drag_offer;
207 struct data_offer *selection_offer;
Daniel Stone97f68542012-05-30 16:32:01 +0100208
209 struct {
Daniel Stone97f68542012-05-30 16:32:01 +0100210 struct xkb_keymap *keymap;
211 struct xkb_state *state;
212 xkb_mod_mask_t control_mask;
213 xkb_mod_mask_t alt_mask;
214 xkb_mod_mask_t shift_mask;
215 } xkb;
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -0400216
217 struct task repeat_task;
218 int repeat_timer_fd;
219 uint32_t repeat_sym;
220 uint32_t repeat_key;
221 uint32_t repeat_time;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400222};
223
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500224struct output {
225 struct display *display;
226 struct wl_output *output;
227 struct rectangle allocation;
228 struct wl_list link;
Pekka Paalanen999c5b52011-11-30 10:52:38 +0200229
230 display_output_handler_t destroy_handler;
231 void *user_data;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500232};
233
Martin Minarik1998b152012-05-10 02:04:35 +0200234enum frame_button_action {
235 FRAME_BUTTON_NULL = 0,
236 FRAME_BUTTON_ICON = 1,
237 FRAME_BUTTON_CLOSE = 2,
238 FRAME_BUTTON_MINIMIZE = 3,
239 FRAME_BUTTON_MAXIMIZE = 4,
240};
241
242enum frame_button_pointer {
243 FRAME_BUTTON_DEFAULT = 0,
244 FRAME_BUTTON_OVER = 1,
245 FRAME_BUTTON_ACTIVE = 2,
246};
247
248enum frame_button_align {
249 FRAME_BUTTON_RIGHT = 0,
250 FRAME_BUTTON_LEFT = 1,
251};
252
253enum frame_button_decoration {
254 FRAME_BUTTON_NONE = 0,
255 FRAME_BUTTON_FANCY = 1,
256};
257
258struct frame_button {
259 struct widget *widget;
260 struct frame *frame;
261 cairo_surface_t *icon;
262 enum frame_button_action type;
263 enum frame_button_pointer state;
264 struct wl_list link; /* buttons_list */
265 enum frame_button_align align;
266 enum frame_button_decoration decoration;
267};
268
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500269struct frame {
270 struct widget *widget;
271 struct widget *child;
Martin Minarik1998b152012-05-10 02:04:35 +0200272 struct wl_list buttons_list;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500273};
274
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500275struct menu {
276 struct window *window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500277 struct widget *widget;
Kristian Høgsberg831dd522012-01-10 23:46:33 -0500278 struct input *input;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500279 const char **entries;
280 uint32_t time;
281 int current;
282 int count;
283 menu_func_t func;
284};
285
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300286struct tooltip {
287 struct widget *parent;
288 struct window *window;
289 struct widget *widget;
290 char *entry;
291 struct task tooltip_task;
292 int tooltip_fd;
293 float x, y;
294};
295
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700296struct shm_pool {
297 struct wl_shm_pool *pool;
298 size_t size;
299 size_t used;
300 void *data;
301};
302
Kristian Høgsberg7d804062010-09-07 21:50:06 -0400303enum {
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +0300304 CURSOR_DEFAULT = 100,
305 CURSOR_UNSET
Kristian Høgsberg7d804062010-09-07 21:50:06 -0400306};
307
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500308enum window_location {
309 WINDOW_INTERIOR = 0,
310 WINDOW_RESIZING_TOP = 1,
311 WINDOW_RESIZING_BOTTOM = 2,
312 WINDOW_RESIZING_LEFT = 4,
313 WINDOW_RESIZING_TOP_LEFT = 5,
314 WINDOW_RESIZING_BOTTOM_LEFT = 6,
315 WINDOW_RESIZING_RIGHT = 8,
316 WINDOW_RESIZING_TOP_RIGHT = 9,
317 WINDOW_RESIZING_BOTTOM_RIGHT = 10,
318 WINDOW_RESIZING_MASK = 15,
319 WINDOW_EXTERIOR = 16,
320 WINDOW_TITLEBAR = 17,
321 WINDOW_CLIENT_AREA = 18,
322};
323
Kristian Høgsbergc7c60642010-08-29 21:33:39 -0400324const char *option_xkb_layout = "us";
325const char *option_xkb_variant = "";
326const char *option_xkb_options = "";
327
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400328static const struct weston_option xkb_options[] = {
329 { WESTON_OPTION_STRING, "xkb-layout", 0, &option_xkb_layout },
330 { WESTON_OPTION_STRING, "xkb-variant", 0, &option_xkb_variant },
331 { WESTON_OPTION_STRING, "xkb-options", 0, &option_xkb_options },
Kristian Høgsbergc7c60642010-08-29 21:33:39 -0400332};
333
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400334static const cairo_user_data_key_t surface_data_key;
335struct surface_data {
336 struct wl_buffer *buffer;
337};
338
Kristian Høgsberg1f5d5072010-11-29 08:13:35 -0500339#define MULT(_d,c,a,t) \
340 do { t = c * a + 0x7f; _d = ((t >> 8) + t) >> 8; } while (0)
341
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500342#ifdef HAVE_CAIRO_EGL
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400343
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100344struct egl_window_surface_data {
345 struct display *display;
346 struct wl_surface *surface;
347 struct wl_egl_window *window;
348 EGLSurface surf;
349};
350
351static void
352egl_window_surface_data_destroy(void *p)
353{
354 struct egl_window_surface_data *data = p;
355 struct display *d = data->display;
356
357 eglDestroySurface(d->dpy, data->surf);
358 wl_egl_window_destroy(data->window);
359 data->surface = NULL;
360
361 free(p);
362}
363
364static cairo_surface_t *
365display_create_egl_window_surface(struct display *display,
366 struct wl_surface *surface,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400367 uint32_t flags,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100368 struct rectangle *rectangle)
369{
370 cairo_surface_t *cairo_surface;
371 struct egl_window_surface_data *data;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400372 EGLConfig config;
Benjamin Franzke0c991632011-09-27 21:57:31 +0200373 cairo_device_t *device;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100374
375 data = malloc(sizeof *data);
376 if (data == NULL)
377 return NULL;
378
379 data->display = display;
380 data->surface = surface;
381
Kristian Høgsberg067fd602012-02-29 16:15:53 -0500382 config = display->argb_config;
383 device = display->argb_device;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400384
Kristian Høgsberg91342c62011-04-14 14:44:58 -0400385 data->window = wl_egl_window_create(surface,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100386 rectangle->width,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400387 rectangle->height);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100388
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400389 data->surf = eglCreateWindowSurface(display->dpy, config,
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500390 data->window, NULL);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100391
Benjamin Franzke0c991632011-09-27 21:57:31 +0200392 cairo_surface = cairo_gl_surface_create_for_egl(device,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100393 data->surf,
394 rectangle->width,
395 rectangle->height);
396
397 cairo_surface_set_user_data(cairo_surface, &surface_data_key,
398 data, egl_window_surface_data_destroy);
399
400 return cairo_surface;
401}
402
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400403#endif
404
405struct wl_buffer *
406display_get_buffer_for_surface(struct display *display,
407 cairo_surface_t *surface)
408{
409 struct surface_data *data;
410
411 data = cairo_surface_get_user_data (surface, &surface_data_key);
412
413 return data->buffer;
414}
415
416struct shm_surface_data {
417 struct surface_data data;
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700418 struct shm_pool *pool;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400419};
420
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500421static void
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700422shm_pool_destroy(struct shm_pool *pool);
423
424static void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400425shm_surface_data_destroy(void *p)
426{
427 struct shm_surface_data *data = p;
428
429 wl_buffer_destroy(data->data.buffer);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700430 if (data->pool)
431 shm_pool_destroy(data->pool);
Ander Conselvan de Oliveira2a3cd282012-06-19 13:45:55 +0300432
433 free(data);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400434}
435
Kristian Høgsberg16626282012-04-03 11:21:27 -0400436static struct wl_shm_pool *
437make_shm_pool(struct display *display, int size, void **data)
438{
Kristian Høgsberg16626282012-04-03 11:21:27 -0400439 struct wl_shm_pool *pool;
440 int fd;
441
Pekka Paalanen1da1b8f2012-06-06 16:59:43 +0300442 fd = os_create_anonymous_file(size);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400443 if (fd < 0) {
Pekka Paalanen1da1b8f2012-06-06 16:59:43 +0300444 fprintf(stderr, "creating a buffer file for %d B failed: %m\n",
445 size);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400446 return NULL;
447 }
448
449 *data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400450 if (*data == MAP_FAILED) {
451 fprintf(stderr, "mmap failed: %m\n");
452 close(fd);
453 return NULL;
454 }
455
456 pool = wl_shm_create_pool(display->shm, fd, size);
457
458 close(fd);
459
460 return pool;
461}
462
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700463static struct shm_pool *
464shm_pool_create(struct display *display, size_t size)
465{
466 struct shm_pool *pool = malloc(sizeof *pool);
467
468 if (!pool)
469 return NULL;
470
471 pool->pool = make_shm_pool(display, size, &pool->data);
472 if (!pool->pool) {
473 free(pool);
474 return NULL;
475 }
476
477 pool->size = size;
478 pool->used = 0;
479
480 return pool;
481}
482
483static void *
484shm_pool_allocate(struct shm_pool *pool, size_t size, int *offset)
485{
486 if (pool->used + size > pool->size)
487 return NULL;
488
489 *offset = pool->used;
490 pool->used += size;
491
492 return (char *) pool->data + *offset;
493}
494
495/* destroy the pool. this does not unmap the memory though */
496static void
497shm_pool_destroy(struct shm_pool *pool)
498{
499 munmap(pool->data, pool->size);
500 wl_shm_pool_destroy(pool->pool);
501 free(pool);
502}
503
504/* Start allocating from the beginning of the pool again */
505static void
506shm_pool_reset(struct shm_pool *pool)
507{
508 pool->used = 0;
509}
510
511static int
512data_length_for_shm_surface(struct rectangle *rect)
513{
514 int stride;
515
516 stride = cairo_format_stride_for_width (CAIRO_FORMAT_ARGB32,
517 rect->width);
518 return stride * rect->height;
519}
520
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500521static cairo_surface_t *
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700522display_create_shm_surface_from_pool(struct display *display,
523 struct rectangle *rectangle,
524 uint32_t flags, struct shm_pool *pool)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400525{
526 struct shm_surface_data *data;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400527 uint32_t format;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400528 cairo_surface_t *surface;
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700529 int stride, length, offset;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400530 void *map;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400531
532 data = malloc(sizeof *data);
533 if (data == NULL)
534 return NULL;
535
536 stride = cairo_format_stride_for_width (CAIRO_FORMAT_ARGB32,
537 rectangle->width);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700538 length = stride * rectangle->height;
539 data->pool = NULL;
540 map = shm_pool_allocate(pool, length, &offset);
541
542 if (!map) {
543 free(data);
544 return NULL;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400545 }
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400546
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400547 surface = cairo_image_surface_create_for_data (map,
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400548 CAIRO_FORMAT_ARGB32,
549 rectangle->width,
550 rectangle->height,
551 stride);
552
553 cairo_surface_set_user_data (surface, &surface_data_key,
554 data, shm_surface_data_destroy);
555
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400556 if (flags & SURFACE_OPAQUE)
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500557 format = WL_SHM_FORMAT_XRGB8888;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400558 else
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500559 format = WL_SHM_FORMAT_ARGB8888;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400560
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700561 data->data.buffer = wl_shm_pool_create_buffer(pool->pool, offset,
Kristian Høgsberg16626282012-04-03 11:21:27 -0400562 rectangle->width,
563 rectangle->height,
564 stride, format);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400565
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700566 return surface;
567}
568
569static cairo_surface_t *
570display_create_shm_surface(struct display *display,
571 struct rectangle *rectangle, uint32_t flags,
572 struct window *window)
573{
574 struct shm_surface_data *data;
575 struct shm_pool *pool;
576 cairo_surface_t *surface;
577
578 if (window && window->pool) {
579 shm_pool_reset(window->pool);
580 surface = display_create_shm_surface_from_pool(display,
581 rectangle,
582 flags,
583 window->pool);
584 if (surface)
585 return surface;
586 }
587
588 pool = shm_pool_create(display,
589 data_length_for_shm_surface(rectangle));
590 if (!pool)
591 return NULL;
592
593 surface =
594 display_create_shm_surface_from_pool(display, rectangle,
595 flags, pool);
596
597 if (!surface) {
598 shm_pool_destroy(pool);
599 return NULL;
600 }
601
602 /* make sure we destroy the pool when the surface is destroyed */
603 data = cairo_surface_get_user_data(surface, &surface_data_key);
604 data->pool = pool;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400605
606 return surface;
607}
608
nobled7b87cb02011-02-01 18:51:47 +0000609static int
610check_size(struct rectangle *rect)
611{
612 if (rect->width && rect->height)
613 return 0;
614
615 fprintf(stderr, "tried to create surface of "
616 "width: %d, height: %d\n", rect->width, rect->height);
617 return -1;
618}
619
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400620cairo_surface_t *
621display_create_surface(struct display *display,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100622 struct wl_surface *surface,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400623 struct rectangle *rectangle,
624 uint32_t flags)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400625{
nobled7b87cb02011-02-01 18:51:47 +0000626 if (check_size(rectangle) < 0)
627 return NULL;
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500628#ifdef HAVE_CAIRO_EGL
Ander Conselvan de Oliveira210eb9d2012-05-25 16:03:06 +0300629 if (display->dpy && !(flags & SURFACE_SHM))
Kristian Høgsberg5990fbb2012-04-10 16:55:11 -0400630 return display_create_egl_window_surface(display,
631 surface,
632 flags,
633 rectangle);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400634#endif
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400635 return display_create_shm_surface(display, rectangle, flags, NULL);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400636}
637
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300638static const char *cursors[] = {
639 "bottom_left_corner",
640 "bottom_right_corner",
641 "bottom_side",
642 "grabbing",
643 "left_ptr",
644 "left_side",
645 "right_side",
646 "top_left_corner",
647 "top_right_corner",
648 "top_side",
649 "xterm",
650 "hand1",
Kristian Høgsberg8591dbf2012-06-04 16:10:40 -0400651 "watch",
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300652};
653
654static void
655create_cursors(struct display *display)
656{
657 unsigned int i;
658
659 display->cursor_theme = wl_cursor_theme_load(NULL, 32, display->shm);
660 display->cursors =
661 malloc(ARRAY_LENGTH(cursors) * sizeof display->cursors[0]);
662
663 for (i = 0; i < ARRAY_LENGTH(cursors); i++)
664 display->cursors[i] =
665 wl_cursor_theme_get_cursor(display->cursor_theme,
666 cursors[i]);
667}
668
669static void
670destroy_cursors(struct display *display)
671{
672 wl_cursor_theme_destroy(display->cursor_theme);
Yan Wanga261f7e2012-05-28 14:07:25 +0800673 free(display->cursors);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300674}
675
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300676struct wl_cursor_image *
677display_get_pointer_image(struct display *display, int pointer)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400678{
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300679 struct wl_cursor *cursor =
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300680 wl_cursor_theme_get_cursor(display->cursor_theme,
681 cursors[pointer]);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400682
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300683 return cursor ? cursor->images[0] : NULL;
Kristian Høgsberg9a686242010-08-18 15:28:04 -0400684}
685
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400686static void
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200687window_get_resize_dx_dy(struct window *window, int *x, int *y)
688{
689 if (window->resize_edges & WINDOW_RESIZING_LEFT)
690 *x = window->server_allocation.width - window->allocation.width;
691 else
692 *x = 0;
693
694 if (window->resize_edges & WINDOW_RESIZING_TOP)
695 *y = window->server_allocation.height -
696 window->allocation.height;
697 else
698 *y = 0;
699
700 window->resize_edges = 0;
701}
702
703static void
Kristian Høgsberg6a1b2012009-12-16 14:43:37 -0500704window_attach_surface(struct window *window)
705{
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400706 struct display *display = window->display;
707 struct wl_buffer *buffer;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000708#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100709 struct egl_window_surface_data *data;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000710#endif
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500711 int32_t x, y;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100712
Kristian Høgsberg407ef642012-04-27 17:17:12 -0400713 if (window->type == TYPE_NONE) {
714 window->type = TYPE_TOPLEVEL;
715 if (display->shell)
716 wl_shell_surface_set_toplevel(window->shell_surface);
717 }
718
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100719 switch (window->buffer_type) {
Benjamin Franzke22d54812011-07-16 19:50:32 +0000720#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100721 case WINDOW_BUFFER_TYPE_EGL_WINDOW:
722 data = cairo_surface_get_user_data(window->cairo_surface,
723 &surface_data_key);
724
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100725 cairo_gl_surface_swapbuffers(window->cairo_surface);
726 wl_egl_window_get_attached_size(data->window,
727 &window->server_allocation.width,
728 &window->server_allocation.height);
729 break;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000730#endif
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100731 case WINDOW_BUFFER_TYPE_SHM:
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100732 buffer =
733 display_get_buffer_for_surface(display,
Kristian Høgsberg6e2a8d72012-04-10 11:23:13 -0400734 window->cairo_surface);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100735
Ander Conselvan de Oliveirae018b042012-01-27 17:17:39 +0200736 window_get_resize_dx_dy(window, &x, &y);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100737 wl_surface_attach(window->surface, buffer, x, y);
Kristian Høgsberg6e2a8d72012-04-10 11:23:13 -0400738 wl_surface_damage(window->surface, 0, 0,
739 window->allocation.width,
740 window->allocation.height);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100741 window->server_allocation = window->allocation;
Kristian Høgsberg6e2a8d72012-04-10 11:23:13 -0400742 cairo_surface_destroy(window->cairo_surface);
743 window->cairo_surface = NULL;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100744 break;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000745 default:
746 return;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100747 }
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500748
Kristian Høgsberg63e5e062012-03-04 23:47:56 -0500749 if (window->input_region) {
750 wl_surface_set_input_region(window->surface,
751 window->input_region);
752 wl_region_destroy(window->input_region);
753 window->input_region = NULL;
754 }
755
756 if (window->opaque_region) {
757 wl_surface_set_opaque_region(window->surface,
758 window->opaque_region);
759 wl_region_destroy(window->opaque_region);
760 window->opaque_region = NULL;
761 }
Kristian Høgsberg6a1b2012009-12-16 14:43:37 -0500762}
763
Kristian Høgsberga341fa02010-01-24 18:10:15 -0500764void
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400765window_flush(struct window *window)
Kristian Høgsberga341fa02010-01-24 18:10:15 -0500766{
Kristian Høgsberg9629fe32012-03-26 15:56:39 -0400767 if (window->cairo_surface)
Benjamin Franzkebde55ec2011-03-07 15:08:09 +0100768 window_attach_surface(window);
Kristian Høgsberga341fa02010-01-24 18:10:15 -0500769}
770
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400771void
772window_set_surface(struct window *window, cairo_surface_t *surface)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400773{
Kristian Høgsberg2b43bd72010-11-08 15:45:55 -0500774 cairo_surface_reference(surface);
775
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400776 if (window->cairo_surface != NULL)
777 cairo_surface_destroy(window->cairo_surface);
778
Kristian Høgsberg2b43bd72010-11-08 15:45:55 -0500779 window->cairo_surface = surface;
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400780}
781
Benjamin Franzke22d54812011-07-16 19:50:32 +0000782#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100783static void
784window_resize_cairo_window_surface(struct window *window)
785{
786 struct egl_window_surface_data *data;
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200787 int x, y;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100788
789 data = cairo_surface_get_user_data(window->cairo_surface,
790 &surface_data_key);
791
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200792 window_get_resize_dx_dy(window, &x, &y),
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100793 wl_egl_window_resize(data->window,
794 window->allocation.width,
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200795 window->allocation.height,
796 x,y);
797
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100798 cairo_gl_surface_set_size(window->cairo_surface,
799 window->allocation.width,
800 window->allocation.height);
801}
Benjamin Franzke22d54812011-07-16 19:50:32 +0000802#endif
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100803
Kristian Høgsbergbcee9a42011-10-12 00:36:16 -0400804struct display *
805window_get_display(struct window *window)
806{
807 return window->display;
808}
809
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400810void
811window_create_surface(struct window *window)
812{
813 cairo_surface_t *surface;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400814 uint32_t flags = 0;
815
816 if (!window->transparent)
817 flags = SURFACE_OPAQUE;
818
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400819 switch (window->buffer_type) {
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500820#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100821 case WINDOW_BUFFER_TYPE_EGL_WINDOW:
822 if (window->cairo_surface) {
823 window_resize_cairo_window_surface(window);
824 return;
825 }
826 surface = display_create_surface(window->display,
827 window->surface,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400828 &window->allocation, flags);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100829 break;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400830#endif
831 case WINDOW_BUFFER_TYPE_SHM:
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400832 surface = display_create_shm_surface(window->display,
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400833 &window->allocation,
834 flags, window);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400835 break;
Bryce Harrington515f63a2010-11-19 12:14:55 -0800836 default:
837 surface = NULL;
838 break;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400839 }
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400840
841 window_set_surface(window, surface);
842 cairo_surface_destroy(surface);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400843}
844
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +0200845static void frame_destroy(struct frame *frame);
846
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400847void
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500848window_destroy(struct window *window)
849{
Pekka Paalanen77cbc952011-11-15 13:34:55 +0200850 struct display *display = window->display;
851 struct input *input;
Rob Bradford7507b572012-05-15 17:55:34 +0100852 struct window_output *window_output;
853 struct window_output *window_output_tmp;
Pekka Paalanen77cbc952011-11-15 13:34:55 +0200854
855 if (window->redraw_scheduled)
856 wl_list_remove(&window->redraw_task.link);
857
858 wl_list_for_each(input, &display->input_list, link) {
859 if (input->pointer_focus == window)
860 input->pointer_focus = NULL;
861 if (input->keyboard_focus == window)
862 input->keyboard_focus = NULL;
Kristian Høgsbergae6e2712012-01-26 11:09:20 -0500863 if (input->focus_widget &&
864 input->focus_widget->window == window)
865 input->focus_widget = NULL;
Pekka Paalanen77cbc952011-11-15 13:34:55 +0200866 }
867
Rob Bradford7507b572012-05-15 17:55:34 +0100868 wl_list_for_each_safe(window_output, window_output_tmp,
869 &window->window_output_list, link) {
870 free (window_output);
871 }
872
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500873 if (window->input_region)
874 wl_region_destroy(window->input_region);
875 if (window->opaque_region)
876 wl_region_destroy(window->opaque_region);
877
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +0200878 if (window->frame)
879 frame_destroy(window->frame);
880
Pekka Paalanen6b2dc912011-11-29 10:25:08 +0200881 if (window->shell_surface)
882 wl_shell_surface_destroy(window->shell_surface);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500883 wl_surface_destroy(window->surface);
884 wl_list_remove(&window->link);
Pekka Paalanen5ec65852011-12-16 10:09:29 +0200885
886 if (window->cairo_surface != NULL)
887 cairo_surface_destroy(window->cairo_surface);
Pekka Paalanen5ec65852011-12-16 10:09:29 +0200888
889 free(window->title);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500890 free(window);
891}
892
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500893static struct widget *
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500894widget_find_widget(struct widget *widget, int32_t x, int32_t y)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400895{
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500896 struct widget *child, *target;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400897
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500898 wl_list_for_each(child, &widget->child_list, link) {
899 target = widget_find_widget(child, x, y);
900 if (target)
901 return target;
902 }
903
904 if (widget->allocation.x <= x &&
905 x < widget->allocation.x + widget->allocation.width &&
906 widget->allocation.y <= y &&
907 y < widget->allocation.y + widget->allocation.height) {
908 return widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400909 }
910
911 return NULL;
912}
913
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500914static struct widget *
915widget_create(struct window *window, void *data)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400916{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500917 struct widget *widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400918
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500919 widget = malloc(sizeof *widget);
920 memset(widget, 0, sizeof *widget);
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -0500921 widget->window = window;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500922 widget->user_data = data;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500923 widget->allocation = window->allocation;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500924 wl_list_init(&widget->child_list);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500925 widget->opaque = 0;
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300926 widget->tooltip = NULL;
927 widget->tooltip_count = 0;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500928
929 return widget;
930}
931
932struct widget *
933window_add_widget(struct window *window, void *data)
934{
935 window->widget = widget_create(window, data);
936 wl_list_init(&window->widget->link);
937
938 return window->widget;
939}
940
941struct widget *
942widget_add_widget(struct widget *parent, void *data)
943{
944 struct widget *widget;
945
946 widget = widget_create(parent->window, data);
947 wl_list_insert(parent->child_list.prev, &widget->link);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400948
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500949 return widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400950}
951
952void
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500953widget_destroy(struct widget *widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400954{
Pekka Paalanene156fb62012-01-19 13:51:38 +0200955 struct display *display = widget->window->display;
956 struct input *input;
957
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300958 if (widget->tooltip) {
959 free(widget->tooltip);
960 widget->tooltip = NULL;
961 }
962
Pekka Paalanene156fb62012-01-19 13:51:38 +0200963 wl_list_for_each(input, &display->input_list, link) {
964 if (input->focus_widget == widget)
965 input->focus_widget = NULL;
966 }
967
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500968 wl_list_remove(&widget->link);
969 free(widget);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400970}
971
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400972void
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500973widget_get_allocation(struct widget *widget, struct rectangle *allocation)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400974{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500975 *allocation = widget->allocation;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400976}
977
978void
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500979widget_set_size(struct widget *widget, int32_t width, int32_t height)
980{
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500981 widget->allocation.width = width;
982 widget->allocation.height = height;
Kristian Høgsbergbb977002012-01-10 19:11:42 -0500983}
984
985void
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500986widget_set_allocation(struct widget *widget,
987 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400988{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500989 widget->allocation.x = x;
990 widget->allocation.y = y;
Tiago Vignattic5528d82012-02-09 19:06:55 +0200991 widget_set_size(widget, width, height);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400992}
993
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500994void
995widget_set_transparent(struct widget *widget, int transparent)
996{
997 widget->opaque = !transparent;
998}
999
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001000void *
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001001widget_get_user_data(struct widget *widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001002{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001003 return widget->user_data;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001004}
1005
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001006void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05001007widget_set_resize_handler(struct widget *widget,
1008 widget_resize_handler_t handler)
1009{
1010 widget->resize_handler = handler;
1011}
1012
1013void
1014widget_set_redraw_handler(struct widget *widget,
1015 widget_redraw_handler_t handler)
1016{
1017 widget->redraw_handler = handler;
1018}
1019
1020void
Kristian Høgsbergee143232012-01-09 08:42:24 -05001021widget_set_enter_handler(struct widget *widget, widget_enter_handler_t handler)
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001022{
Kristian Høgsbergee143232012-01-09 08:42:24 -05001023 widget->enter_handler = handler;
1024}
1025
1026void
1027widget_set_leave_handler(struct widget *widget, widget_leave_handler_t handler)
1028{
1029 widget->leave_handler = handler;
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001030}
1031
1032void
Kristian Høgsberg04e98342012-01-09 09:36:16 -05001033widget_set_motion_handler(struct widget *widget,
1034 widget_motion_handler_t handler)
1035{
1036 widget->motion_handler = handler;
1037}
1038
1039void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05001040widget_set_button_handler(struct widget *widget,
1041 widget_button_handler_t handler)
1042{
1043 widget->button_handler = handler;
1044}
1045
1046void
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001047widget_schedule_redraw(struct widget *widget)
1048{
1049 window_schedule_redraw(widget->window);
1050}
1051
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04001052cairo_surface_t *
1053window_get_surface(struct window *window)
1054{
Kristian Høgsberg012a0072010-10-26 00:02:20 -04001055 return cairo_surface_reference(window->cairo_surface);
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04001056}
1057
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001058struct wl_surface *
1059window_get_wl_surface(struct window *window)
1060{
1061 return window->surface;
1062}
1063
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02001064struct wl_shell_surface *
1065window_get_wl_shell_surface(struct window *window)
1066{
1067 return window->shell_surface;
1068}
1069
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001070static void
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001071tooltip_redraw_handler(struct widget *widget, void *data)
1072{
1073 cairo_t *cr;
1074 const int32_t r = 3;
1075 struct tooltip *tooltip = data;
1076 int32_t width, height;
1077 struct window *window = widget->window;
1078
1079 cr = cairo_create(window->cairo_surface);
1080 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
1081 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
1082 cairo_paint(cr);
1083
1084 width = window->allocation.width;
1085 height = window->allocation.height;
1086 rounded_rect(cr, 0, 0, width, height, r);
1087
1088 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
1089 cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
1090 cairo_fill(cr);
1091
1092 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
1093 cairo_move_to(cr, 10, 16);
1094 cairo_show_text(cr, tooltip->entry);
1095 cairo_destroy(cr);
1096}
1097
1098static cairo_text_extents_t
1099get_text_extents(struct tooltip *tooltip)
1100{
1101 struct window *window;
1102 cairo_t *cr;
1103 cairo_text_extents_t extents;
1104
1105 /* we borrow cairo_surface from the parent cause tooltip's wasn't
1106 * created yet */
1107 window = tooltip->widget->window->parent;
1108 cr = cairo_create(window->cairo_surface);
1109 cairo_text_extents(cr, tooltip->entry, &extents);
1110 cairo_destroy(cr);
1111
1112 return extents;
1113}
1114
1115static int
1116window_create_tooltip(struct tooltip *tooltip)
1117{
1118 struct widget *parent = tooltip->parent;
1119 struct display *display = parent->window->display;
1120 struct window *window;
1121 const int offset_y = 27;
1122 const int margin = 3;
1123 cairo_text_extents_t extents;
1124
1125 if (tooltip->widget)
1126 return 0;
1127
1128 window = window_create_transient(display, parent->window, tooltip->x,
1129 tooltip->y + offset_y,
1130 WL_SHELL_SURFACE_TRANSIENT_INACTIVE);
1131 if (!window)
1132 return -1;
1133
1134 tooltip->window = window;
1135 tooltip->widget = window_add_widget(tooltip->window, tooltip);
1136
1137 extents = get_text_extents(tooltip);
1138 widget_set_redraw_handler(tooltip->widget, tooltip_redraw_handler);
1139 window_schedule_resize(window, extents.width + 20, 20 + margin * 2);
1140
1141 return 0;
1142}
1143
1144void
1145widget_destroy_tooltip(struct widget *parent)
1146{
1147 struct tooltip *tooltip = parent->tooltip;
1148
1149 parent->tooltip_count = 0;
1150 if (!tooltip)
1151 return;
1152
1153 if (tooltip->widget) {
1154 widget_destroy(tooltip->widget);
1155 window_destroy(tooltip->window);
1156 tooltip->widget = NULL;
1157 tooltip->window = NULL;
1158 }
1159
1160 close(tooltip->tooltip_fd);
1161 free(tooltip->entry);
1162 free(tooltip);
1163 parent->tooltip = NULL;
1164}
1165
1166static void
1167tooltip_func(struct task *task, uint32_t events)
1168{
1169 struct tooltip *tooltip =
1170 container_of(task, struct tooltip, tooltip_task);
1171 uint64_t exp;
1172
Martin Olsson8df662a2012-07-08 03:03:47 +02001173 if (read(tooltip->tooltip_fd, &exp, sizeof (uint64_t)) != sizeof (uint64_t))
1174 abort();
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001175 window_create_tooltip(tooltip);
1176}
1177
1178#define TOOLTIP_TIMEOUT 500
1179static int
1180tooltip_timer_reset(struct tooltip *tooltip)
1181{
1182 struct itimerspec its;
1183
1184 its.it_interval.tv_sec = 0;
1185 its.it_interval.tv_nsec = 0;
1186 its.it_value.tv_sec = TOOLTIP_TIMEOUT / 1000;
1187 its.it_value.tv_nsec = (TOOLTIP_TIMEOUT % 1000) * 1000 * 1000;
1188 if (timerfd_settime(tooltip->tooltip_fd, 0, &its, NULL) < 0) {
1189 fprintf(stderr, "could not set timerfd\n: %m");
1190 return -1;
1191 }
1192
1193 return 0;
1194}
1195
1196int
1197widget_set_tooltip(struct widget *parent, char *entry, float x, float y)
1198{
1199 struct tooltip *tooltip = parent->tooltip;
1200
1201 parent->tooltip_count++;
1202 if (tooltip) {
1203 tooltip->x = x;
1204 tooltip->y = y;
1205 tooltip_timer_reset(tooltip);
1206 return 0;
1207 }
1208
1209 /* the handler might be triggered too fast via input device motion, so
1210 * we need this check here to make sure tooltip is fully initialized */
1211 if (parent->tooltip_count > 1)
1212 return 0;
1213
1214 tooltip = malloc(sizeof *tooltip);
1215 if (!tooltip)
1216 return -1;
1217
1218 parent->tooltip = tooltip;
1219 tooltip->parent = parent;
1220 tooltip->widget = NULL;
1221 tooltip->window = NULL;
1222 tooltip->x = x;
1223 tooltip->y = y;
1224 tooltip->entry = strdup(entry);
1225 tooltip->tooltip_fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
1226 if (tooltip->tooltip_fd < 0) {
1227 fprintf(stderr, "could not create timerfd\n: %m");
1228 return -1;
1229 }
1230
1231 tooltip->tooltip_task.run = tooltip_func;
1232 display_watch_fd(parent->window->display, tooltip->tooltip_fd,
1233 EPOLLIN, &tooltip->tooltip_task);
1234 tooltip_timer_reset(tooltip);
1235
1236 return 0;
1237}
1238
1239static void
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001240frame_resize_handler(struct widget *widget,
1241 int32_t width, int32_t height, void *data)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001242{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001243 struct frame *frame = data;
1244 struct widget *child = frame->child;
1245 struct rectangle allocation;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001246 struct display *display = widget->window->display;
Martin Minarik1998b152012-05-10 02:04:35 +02001247 struct frame_button * button;
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04001248 struct theme *t = display->theme;
Martin Minarik1998b152012-05-10 02:04:35 +02001249 int x_l, x_r, y, w, h;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001250 int decoration_width, decoration_height;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001251 int opaque_margin;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001252
Kristian Høgsbergb435e842012-03-05 20:38:08 -05001253 if (widget->window->type != TYPE_FULLSCREEN) {
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001254 decoration_width = (t->width + t->margin) * 2;
1255 decoration_height = t->width +
1256 t->titlebar_height + t->margin * 2;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001257
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001258 allocation.x = t->width + t->margin;
1259 allocation.y = t->titlebar_height + t->margin;
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05001260 allocation.width = width - decoration_width;
1261 allocation.height = height - decoration_height;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001262
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001263 opaque_margin = t->margin + t->frame_radius;
Martin Minarik1998b152012-05-10 02:04:35 +02001264
1265 wl_list_for_each(button, &frame->buttons_list, link)
1266 button->widget->opaque = 0;
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05001267 } else {
1268 decoration_width = 0;
1269 decoration_height = 0;
1270
1271 allocation.x = 0;
1272 allocation.y = 0;
1273 allocation.width = width;
1274 allocation.height = height;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001275 opaque_margin = 0;
Martin Minarik1998b152012-05-10 02:04:35 +02001276
1277 wl_list_for_each(button, &frame->buttons_list, link)
1278 button->widget->opaque = 1;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001279 }
1280
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001281 widget_set_allocation(child, allocation.x, allocation.y,
1282 allocation.width, allocation.height);
1283
1284 if (child->resize_handler)
1285 child->resize_handler(child,
1286 allocation.width,
1287 allocation.height,
1288 child->user_data);
1289
Scott Moreauf7e498c2012-05-14 11:39:29 -06001290 width = child->allocation.width + decoration_width;
1291 height = child->allocation.height + decoration_height;
1292
1293 widget->window->input_region =
1294 wl_compositor_create_region(display->compositor);
1295 wl_region_add(widget->window->input_region,
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001296 t->margin, t->margin,
1297 width - 2 * t->margin,
1298 height - 2 * t->margin);
Scott Moreauf7e498c2012-05-14 11:39:29 -06001299
1300 widget_set_allocation(widget, 0, 0, width, height);
Kristian Høgsbergf10df852012-02-28 21:52:12 -05001301
1302 if (child->opaque) {
1303 widget->window->opaque_region =
1304 wl_compositor_create_region(display->compositor);
1305 wl_region_add(widget->window->opaque_region,
1306 opaque_margin, opaque_margin,
1307 widget->allocation.width - 2 * opaque_margin,
1308 widget->allocation.height - 2 * opaque_margin);
1309 }
Martin Minarik1998b152012-05-10 02:04:35 +02001310
1311 /* frame internal buttons */
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001312 x_r = frame->widget->allocation.width - t->width - t->margin;
1313 x_l = t->width + t->margin;
1314 y = t->width + t->margin;
Martin Minarik1998b152012-05-10 02:04:35 +02001315 wl_list_for_each(button, &frame->buttons_list, link) {
1316 const int button_padding = 4;
1317 w = cairo_image_surface_get_width(button->icon);
1318 h = cairo_image_surface_get_height(button->icon);
1319
1320 if (button->decoration == FRAME_BUTTON_FANCY)
1321 w += 10;
1322
1323 if (button->align == FRAME_BUTTON_LEFT) {
1324 widget_set_allocation(button->widget,
1325 x_l, y , w + 1, h + 1);
1326 x_l += w;
1327 x_l += button_padding;
1328 } else {
1329 x_r -= w;
1330 widget_set_allocation(button->widget,
1331 x_r, y , w + 1, h + 1);
1332 x_r -= button_padding;
1333 }
1334 }
1335}
1336
1337static int
1338frame_button_enter_handler(struct widget *widget,
1339 struct input *input, float x, float y, void *data)
1340{
1341 struct frame_button *frame_button = data;
1342
1343 widget_schedule_redraw(frame_button->widget);
1344 frame_button->state = FRAME_BUTTON_OVER;
1345
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001346 return CURSOR_LEFT_PTR;
Martin Minarik1998b152012-05-10 02:04:35 +02001347}
1348
1349static void
1350frame_button_leave_handler(struct widget *widget, struct input *input, void *data)
1351{
1352 struct frame_button *frame_button = data;
1353
1354 widget_schedule_redraw(frame_button->widget);
1355 frame_button->state = FRAME_BUTTON_DEFAULT;
1356}
1357
1358static void
1359frame_button_button_handler(struct widget *widget,
1360 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01001361 uint32_t button,
1362 enum wl_pointer_button_state state, void *data)
Martin Minarik1998b152012-05-10 02:04:35 +02001363{
1364 struct frame_button *frame_button = data;
1365 struct window *window = widget->window;
1366
1367 if (button != BTN_LEFT)
1368 return;
1369
1370 switch (state) {
Daniel Stone4dbadb12012-05-30 16:31:51 +01001371 case WL_POINTER_BUTTON_STATE_PRESSED:
Martin Minarik1998b152012-05-10 02:04:35 +02001372 frame_button->state = FRAME_BUTTON_ACTIVE;
1373 widget_schedule_redraw(frame_button->widget);
1374
1375 if (frame_button->type == FRAME_BUTTON_ICON)
1376 window_show_frame_menu(window, input, time);
1377 return;
Daniel Stone4dbadb12012-05-30 16:31:51 +01001378 case WL_POINTER_BUTTON_STATE_RELEASED:
Martin Minarik1998b152012-05-10 02:04:35 +02001379 frame_button->state = FRAME_BUTTON_DEFAULT;
1380 widget_schedule_redraw(frame_button->widget);
1381 break;
1382 }
1383
1384 switch (frame_button->type) {
1385 case FRAME_BUTTON_CLOSE:
1386 if (window->close_handler)
1387 window->close_handler(window->parent,
1388 window->user_data);
1389 else
1390 display_exit(window->display);
1391 break;
1392 case FRAME_BUTTON_MINIMIZE:
1393 fprintf(stderr,"Minimize stub\n");
1394 break;
1395 case FRAME_BUTTON_MAXIMIZE:
1396 window_set_maximized(window, window->type != TYPE_MAXIMIZED);
1397 break;
1398 default:
1399 /* Unknown operation */
1400 break;
1401 }
1402}
1403
1404static void
1405frame_button_redraw_handler(struct widget *widget, void *data)
1406{
1407 struct frame_button *frame_button = data;
1408 cairo_t *cr;
1409 int width, height, x, y;
1410 struct window *window = widget->window;
1411
1412 x = widget->allocation.x;
1413 y = widget->allocation.y;
1414 width = widget->allocation.width;
1415 height = widget->allocation.height;
1416
1417 if (!width)
1418 return;
1419 if (!height)
1420 return;
1421 if (widget->opaque)
1422 return;
1423
1424 cr = cairo_create(window->cairo_surface);
1425
1426 if (frame_button->decoration == FRAME_BUTTON_FANCY) {
1427 cairo_set_line_width(cr, 1);
1428
1429 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
1430 cairo_rectangle (cr, x, y, 25, 16);
1431
1432 cairo_stroke_preserve(cr);
1433
1434 switch (frame_button->state) {
1435 case FRAME_BUTTON_DEFAULT:
1436 cairo_set_source_rgb(cr, 0.88, 0.88, 0.88);
1437 break;
1438 case FRAME_BUTTON_OVER:
1439 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
1440 break;
1441 case FRAME_BUTTON_ACTIVE:
1442 cairo_set_source_rgb(cr, 0.7, 0.7, 0.7);
1443 break;
1444 }
1445
1446 cairo_fill (cr);
1447
1448 x += 4;
1449 }
1450
1451 cairo_set_source_surface(cr, frame_button->icon, x, y);
1452 cairo_paint(cr);
1453
1454 cairo_destroy(cr);
1455}
1456
1457static struct widget *
1458frame_button_create(struct frame *frame, void *data, enum frame_button_action type,
1459 enum frame_button_align align, enum frame_button_decoration style)
1460{
1461 struct frame_button *frame_button;
1462 const char *icon = data;
1463
1464 frame_button = malloc (sizeof *frame_button);
1465 memset(frame_button, 0, sizeof *frame_button);
1466
1467 frame_button->icon = cairo_image_surface_create_from_png(icon);
1468 frame_button->widget = widget_add_widget(frame->widget, frame_button);
1469 frame_button->frame = frame;
1470 frame_button->type = type;
1471 frame_button->align = align;
1472 frame_button->decoration = style;
1473
1474 wl_list_insert(frame->buttons_list.prev, &frame_button->link);
1475
1476 widget_set_redraw_handler(frame_button->widget, frame_button_redraw_handler);
1477 widget_set_enter_handler(frame_button->widget, frame_button_enter_handler);
1478 widget_set_leave_handler(frame_button->widget, frame_button_leave_handler);
1479 widget_set_button_handler(frame_button->widget, frame_button_button_handler);
1480 return frame_button->widget;
1481}
1482
1483static void
1484frame_button_destroy(struct frame_button *frame_button)
1485{
1486 widget_destroy(frame_button->widget);
1487 wl_list_remove(&frame_button->link);
1488 cairo_surface_destroy(frame_button->icon);
1489 free(frame_button);
1490
1491 return;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001492}
1493
1494static void
1495frame_redraw_handler(struct widget *widget, void *data)
1496{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001497 cairo_t *cr;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001498 struct window *window = widget->window;
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04001499 struct theme *t = window->display->theme;
1500 uint32_t flags = 0;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001501
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05001502 if (window->type == TYPE_FULLSCREEN)
1503 return;
1504
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001505 cr = cairo_create(window->cairo_surface);
1506
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001507 if (window->keyboard_device)
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04001508 flags |= THEME_FRAME_ACTIVE;
1509 theme_render_frame(t, cr, widget->allocation.width,
1510 widget->allocation.height, window->title, flags);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001511
1512 cairo_destroy(cr);
1513}
1514
1515static int
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001516frame_get_pointer_image_for_location(struct frame *frame, struct input *input)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001517{
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001518 struct theme *t = frame->widget->window->display->theme;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001519 int location;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001520
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001521 location = theme_get_location(t, input->sx, input->sy,
1522 frame->widget->allocation.width,
1523 frame->widget->allocation.height);
1524
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001525 switch (location) {
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001526 case THEME_LOCATION_RESIZING_TOP:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001527 return CURSOR_TOP;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001528 case THEME_LOCATION_RESIZING_BOTTOM:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001529 return CURSOR_BOTTOM;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001530 case THEME_LOCATION_RESIZING_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001531 return CURSOR_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001532 case THEME_LOCATION_RESIZING_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001533 return CURSOR_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001534 case THEME_LOCATION_RESIZING_TOP_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001535 return CURSOR_TOP_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001536 case THEME_LOCATION_RESIZING_TOP_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001537 return CURSOR_TOP_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001538 case THEME_LOCATION_RESIZING_BOTTOM_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001539 return CURSOR_BOTTOM_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001540 case THEME_LOCATION_RESIZING_BOTTOM_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001541 return CURSOR_BOTTOM_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001542 case THEME_LOCATION_EXTERIOR:
1543 case THEME_LOCATION_TITLEBAR:
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001544 default:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001545 return CURSOR_LEFT_PTR;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001546 }
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001547}
1548
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001549static void
1550frame_menu_func(struct window *window, int index, void *data)
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001551{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001552 switch (index) {
1553 case 0: /* close */
1554 if (window->close_handler)
1555 window->close_handler(window->parent,
1556 window->user_data);
1557 else
1558 display_exit(window->display);
1559 break;
1560 case 1: /* fullscreen */
1561 /* we don't have a way to get out of fullscreen for now */
1562 window_set_fullscreen(window, 1);
1563 break;
1564 case 2: /* rotate */
1565 case 3: /* scale */
1566 break;
1567 }
1568}
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001569
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05001570void
1571window_show_frame_menu(struct window *window,
1572 struct input *input, uint32_t time)
1573{
1574 int32_t x, y;
1575
1576 static const char *entries[] = {
1577 "Close", "Fullscreen", "Rotate", "Scale"
1578 };
1579
1580 input_get_position(input, &x, &y);
1581 window_show_menu(window->display, input, time, window,
1582 x - 10, y - 10, frame_menu_func, entries, 4);
1583}
1584
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001585static int
1586frame_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001587 struct input *input, float x, float y, void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001588{
1589 return frame_get_pointer_image_for_location(data, input);
1590}
Kristian Høgsberg7d804062010-09-07 21:50:06 -04001591
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001592static int
1593frame_motion_handler(struct widget *widget,
1594 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001595 float x, float y, void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001596{
1597 return frame_get_pointer_image_for_location(data, input);
1598}
Rob Bradford8bd35c72011-10-25 12:20:51 +01001599
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001600static void
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001601frame_button_handler(struct widget *widget,
1602 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01001603 uint32_t button, enum wl_pointer_button_state state,
1604 void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001605
1606{
1607 struct frame *frame = data;
1608 struct window *window = widget->window;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001609 struct display *display = window->display;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001610 int location;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001611
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001612 location = theme_get_location(display->theme, input->sx, input->sy,
1613 frame->widget->allocation.width,
1614 frame->widget->allocation.height);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001615
Daniel Stone4dbadb12012-05-30 16:31:51 +01001616 if (window->display->shell && button == BTN_LEFT &&
1617 state == WL_POINTER_BUTTON_STATE_PRESSED) {
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001618 switch (location) {
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001619 case THEME_LOCATION_TITLEBAR:
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001620 if (!window->shell_surface)
1621 break;
Kristian Høgsberg5a4e9ff2012-06-04 16:04:07 -04001622 input_set_pointer_image(input, CURSOR_DRAGGING);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001623 input_ungrab(input);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001624 wl_shell_surface_move(window->shell_surface,
Daniel Stone37816df2012-05-16 18:45:18 +01001625 input_get_seat(input),
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001626 display->serial);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001627 break;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04001628 case THEME_LOCATION_RESIZING_TOP:
1629 case THEME_LOCATION_RESIZING_BOTTOM:
1630 case THEME_LOCATION_RESIZING_LEFT:
1631 case THEME_LOCATION_RESIZING_RIGHT:
1632 case THEME_LOCATION_RESIZING_TOP_LEFT:
1633 case THEME_LOCATION_RESIZING_TOP_RIGHT:
1634 case THEME_LOCATION_RESIZING_BOTTOM_LEFT:
1635 case THEME_LOCATION_RESIZING_BOTTOM_RIGHT:
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001636 if (!window->shell_surface)
1637 break;
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001638 input_ungrab(input);
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001639
1640 if (!display->dpy) {
1641 /* If we're using shm, allocate a big
1642 pool to create buffers out of while
1643 we resize. We should probably base
1644 this number on the size of the output. */
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -07001645 window->pool =
1646 shm_pool_create(display, 6 * 1024 * 1024);
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001647 }
1648
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001649 wl_shell_surface_resize(window->shell_surface,
Daniel Stone37816df2012-05-16 18:45:18 +01001650 input_get_seat(input),
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001651 display->serial, location);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001652 break;
1653 }
Daniel Stone4dbadb12012-05-30 16:31:51 +01001654 } else if (button == BTN_RIGHT &&
1655 state == WL_POINTER_BUTTON_STATE_PRESSED) {
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05001656 window_show_frame_menu(window, input, time);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001657 }
1658}
1659
1660struct widget *
1661frame_create(struct window *window, void *data)
1662{
1663 struct frame *frame;
1664
1665 frame = malloc(sizeof *frame);
1666 memset(frame, 0, sizeof *frame);
1667
1668 frame->widget = window_add_widget(window, frame);
1669 frame->child = widget_add_widget(frame->widget, data);
Martin Minarik1998b152012-05-10 02:04:35 +02001670
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001671 widget_set_redraw_handler(frame->widget, frame_redraw_handler);
1672 widget_set_resize_handler(frame->widget, frame_resize_handler);
1673 widget_set_enter_handler(frame->widget, frame_enter_handler);
1674 widget_set_motion_handler(frame->widget, frame_motion_handler);
1675 widget_set_button_handler(frame->widget, frame_button_handler);
1676
Martin Minarik1998b152012-05-10 02:04:35 +02001677 /* Create empty list for frame buttons */
1678 wl_list_init(&frame->buttons_list);
1679
1680 frame_button_create(frame, DATADIR "/weston/icon_window.png",
1681 FRAME_BUTTON_ICON, FRAME_BUTTON_LEFT, FRAME_BUTTON_NONE);
1682
1683 frame_button_create(frame, DATADIR "/weston/sign_close.png",
1684 FRAME_BUTTON_CLOSE, FRAME_BUTTON_RIGHT, FRAME_BUTTON_FANCY);
1685
1686 frame_button_create(frame, DATADIR "/weston/sign_maximize.png",
1687 FRAME_BUTTON_MAXIMIZE, FRAME_BUTTON_RIGHT, FRAME_BUTTON_FANCY);
1688
1689 frame_button_create(frame, DATADIR "/weston/sign_minimize.png",
1690 FRAME_BUTTON_MINIMIZE, FRAME_BUTTON_RIGHT, FRAME_BUTTON_FANCY);
1691
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001692 window->frame = frame;
1693
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001694 return frame->child;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001695}
1696
Kristian Høgsberga1627922012-06-20 17:30:03 -04001697void
1698frame_set_child_size(struct widget *widget, int child_width, int child_height)
1699{
1700 struct display *display = widget->window->display;
1701 struct theme *t = display->theme;
1702 int decoration_width, decoration_height;
1703 int width, height;
1704
1705 if (widget->window->type != TYPE_FULLSCREEN) {
1706 decoration_width = (t->width + t->margin) * 2;
1707 decoration_height = t->width +
1708 t->titlebar_height + t->margin * 2;
1709
1710 width = child_width + decoration_width;
1711 height = child_height + decoration_height;
1712 } else {
1713 width = child_width;
1714 height = child_height;
1715 }
1716
1717 window_schedule_resize(widget->window, width, height);
1718}
1719
Kristian Høgsberge4feb562008-11-08 18:53:37 -05001720static void
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001721frame_destroy(struct frame *frame)
1722{
Martin Minarik1998b152012-05-10 02:04:35 +02001723 struct frame_button *button, *tmp;
1724
1725 wl_list_for_each_safe(button, tmp, &frame->buttons_list, link)
1726 frame_button_destroy(button);
1727
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001728 /* frame->child must be destroyed by the application */
1729 widget_destroy(frame->widget);
1730 free(frame);
1731}
1732
1733static void
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001734input_set_focus_widget(struct input *input, struct widget *focus,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001735 float x, float y)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001736{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001737 struct widget *old, *widget;
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001738 int pointer = CURSOR_LEFT_PTR;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001739
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001740 if (focus == input->focus_widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001741 return;
1742
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001743 old = input->focus_widget;
Kristian Høgsbergee143232012-01-09 08:42:24 -05001744 if (old) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001745 widget = old;
1746 if (input->grab)
1747 widget = input->grab;
1748 if (widget->leave_handler)
1749 widget->leave_handler(old, input, widget->user_data);
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001750 input->focus_widget = NULL;
Kristian Høgsbergee143232012-01-09 08:42:24 -05001751 }
1752
1753 if (focus) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001754 widget = focus;
1755 if (input->grab)
1756 widget = input->grab;
Kristian Høgsbergf33984e2012-06-04 23:36:32 -04001757 input->focus_widget = focus;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001758 if (widget->enter_handler)
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001759 pointer = widget->enter_handler(focus, input, x, y,
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001760 widget->user_data);
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05001761
Kristian Høgsberg5a4e9ff2012-06-04 16:04:07 -04001762 input_set_pointer_image(input, pointer);
Kristian Høgsbergee143232012-01-09 08:42:24 -05001763 }
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001764}
1765
1766static void
Daniel Stone37816df2012-05-16 18:45:18 +01001767pointer_handle_motion(void *data, struct wl_pointer *pointer,
1768 uint32_t time, wl_fixed_t sx_w, wl_fixed_t sy_w)
Kristian Høgsberg61017b12008-11-02 18:51:48 -05001769{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001770 struct input *input = data;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001771 struct window *window = input->pointer_focus;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001772 struct widget *widget;
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001773 int cursor = CURSOR_LEFT_PTR;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001774 float sx = wl_fixed_to_double(sx_w);
1775 float sy = wl_fixed_to_double(sy_w);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001776
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001777 input->sx = sx;
1778 input->sy = sy;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001779
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001780 if (!(input->grab && input->grab_button)) {
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001781 widget = widget_find_widget(window->widget, sx, sy);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001782 input_set_focus_widget(input, widget, sx, sy);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001783 }
1784
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001785 if (input->grab)
1786 widget = input->grab;
1787 else
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001788 widget = input->focus_widget;
Kristian Høgsberg04e98342012-01-09 09:36:16 -05001789 if (widget && widget->motion_handler)
Daniel Stone37816df2012-05-16 18:45:18 +01001790 cursor = widget->motion_handler(input->focus_widget,
1791 input, time, sx, sy,
1792 widget->user_data);
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001793
Kristian Høgsberg5a4e9ff2012-06-04 16:04:07 -04001794 input_set_pointer_image(input, cursor);
Kristian Høgsberg61017b12008-11-02 18:51:48 -05001795}
1796
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001797void
1798input_grab(struct input *input, struct widget *widget, uint32_t button)
1799{
1800 input->grab = widget;
1801 input->grab_button = button;
1802}
1803
1804void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001805input_ungrab(struct input *input)
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001806{
1807 struct widget *widget;
1808
1809 input->grab = NULL;
1810 if (input->pointer_focus) {
1811 widget = widget_find_widget(input->pointer_focus->widget,
1812 input->sx, input->sy);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001813 input_set_focus_widget(input, widget, input->sx, input->sy);
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001814 }
1815}
1816
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04001817static void
Daniel Stone37816df2012-05-16 18:45:18 +01001818pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial,
Daniel Stone4dbadb12012-05-30 16:31:51 +01001819 uint32_t time, uint32_t button, uint32_t state_w)
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001820{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001821 struct input *input = data;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001822 struct widget *widget;
Daniel Stone4dbadb12012-05-30 16:31:51 +01001823 enum wl_pointer_button_state state = state_w;
Kristian Høgsbergbf6ceda2010-06-14 20:25:06 -04001824
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001825 input->display->serial = serial;
Daniel Stone4dbadb12012-05-30 16:31:51 +01001826 if (input->focus_widget && input->grab == NULL &&
1827 state == WL_POINTER_BUTTON_STATE_PRESSED)
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001828 input_grab(input, input->focus_widget, button);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001829
Neil Roberts6b28aad2012-01-23 19:11:18 +00001830 widget = input->grab;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001831 if (widget && widget->button_handler)
Neil Roberts6b28aad2012-01-23 19:11:18 +00001832 (*widget->button_handler)(widget,
1833 input, time,
1834 button, state,
1835 input->grab->user_data);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001836
Daniel Stone4dbadb12012-05-30 16:31:51 +01001837 if (input->grab && input->grab_button == button &&
1838 state == WL_POINTER_BUTTON_STATE_RELEASED)
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001839 input_ungrab(input);
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001840}
1841
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001842static void
Daniel Stone37816df2012-05-16 18:45:18 +01001843pointer_handle_axis(void *data, struct wl_pointer *pointer,
Daniel Stone2fce4022012-05-30 16:32:00 +01001844 uint32_t time, uint32_t axis, wl_fixed_t value)
Scott Moreau210d0792012-03-22 10:47:01 -06001845{
1846}
1847
1848static void
Daniel Stone37816df2012-05-16 18:45:18 +01001849keyboard_handle_key(void *data, struct wl_keyboard *keyboard,
Daniel Stonec9785ea2012-05-30 16:31:52 +01001850 uint32_t serial, uint32_t time, uint32_t key,
1851 uint32_t state_w)
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001852{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001853 struct input *input = data;
1854 struct window *window = input->keyboard_focus;
Kristian Høgsberg70163132012-05-08 15:55:39 -04001855 uint32_t code, num_syms;
Daniel Stonec9785ea2012-05-30 16:31:52 +01001856 enum wl_keyboard_key_state state = state_w;
Kristian Høgsberg70163132012-05-08 15:55:39 -04001857 const xkb_keysym_t *syms;
1858 xkb_keysym_t sym;
1859 xkb_mod_mask_t mask;
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001860 struct itimerspec its;
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001861
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001862 input->display->serial = serial;
Daniel Stone0d5a5092012-02-16 12:48:00 +00001863 code = key + 8;
Daniel Stoneb7452fe2012-06-01 12:14:06 +01001864 if (!window || window->keyboard_device != input || !input->xkb.state)
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001865 return;
1866
Daniel Stone97f68542012-05-30 16:32:01 +01001867 num_syms = xkb_key_get_syms(input->xkb.state, code, &syms);
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001868
Daniel Stone97f68542012-05-30 16:32:01 +01001869 mask = xkb_state_serialize_mods(input->xkb.state,
Daniel Stone351eb612012-05-31 15:27:47 -04001870 XKB_STATE_DEPRESSED |
Kristian Høgsberg70163132012-05-08 15:55:39 -04001871 XKB_STATE_LATCHED);
1872 input->modifiers = 0;
Daniel Stone97f68542012-05-30 16:32:01 +01001873 if (mask & input->xkb.control_mask)
Kristian Høgsberg70163132012-05-08 15:55:39 -04001874 input->modifiers |= MOD_CONTROL_MASK;
Daniel Stone97f68542012-05-30 16:32:01 +01001875 if (mask & input->xkb.alt_mask)
Kristian Høgsberg70163132012-05-08 15:55:39 -04001876 input->modifiers |= MOD_ALT_MASK;
Daniel Stone97f68542012-05-30 16:32:01 +01001877 if (mask & input->xkb.shift_mask)
Kristian Høgsberg70163132012-05-08 15:55:39 -04001878 input->modifiers |= MOD_SHIFT_MASK;
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04001879
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001880 sym = XKB_KEY_NoSymbol;
1881 if (num_syms == 1)
1882 sym = syms[0];
1883
1884 if (sym == XKB_KEY_F5 && input->modifiers == MOD_ALT_MASK) {
Daniel Stonec9785ea2012-05-30 16:31:52 +01001885 if (state == WL_KEYBOARD_KEY_STATE_PRESSED)
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05001886 window_set_maximized(window,
1887 window->type != TYPE_MAXIMIZED);
1888 } else if (window->key_handler) {
1889 (*window->key_handler)(window, input, time, key,
1890 sym, state, window->user_data);
1891 }
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001892
1893 if (state == WL_KEYBOARD_KEY_STATE_RELEASED &&
1894 key == input->repeat_key) {
1895 its.it_interval.tv_sec = 0;
1896 its.it_interval.tv_nsec = 0;
1897 its.it_value.tv_sec = 0;
1898 its.it_value.tv_nsec = 0;
1899 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
1900 } else if (state == WL_KEYBOARD_KEY_STATE_PRESSED) {
1901 input->repeat_sym = sym;
1902 input->repeat_key = key;
1903 input->repeat_time = time;
1904 its.it_interval.tv_sec = 0;
1905 its.it_interval.tv_nsec = 25 * 1000 * 1000;
1906 its.it_value.tv_sec = 0;
1907 its.it_value.tv_nsec = 400 * 1000 * 1000;
1908 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
1909 }
1910}
1911
1912static void
1913keyboard_repeat_func(struct task *task, uint32_t events)
1914{
1915 struct input *input =
1916 container_of(task, struct input, repeat_task);
1917 struct window *window = input->keyboard_focus;
1918 uint64_t exp;
1919
Kristian Høgsberg8b19c642012-06-20 18:00:13 -04001920 if (read(input->repeat_timer_fd, &exp, sizeof exp) != sizeof exp)
1921 /* If we change the timer between the fd becoming
1922 * readable and getting here, there'll be nothing to
1923 * read and we get EAGAIN. */
1924 return;
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001925
Kristian Høgsbergbd0cd762012-06-20 15:17:18 -04001926 if (window && window->key_handler) {
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04001927 (*window->key_handler)(window, input, input->repeat_time,
1928 input->repeat_key, input->repeat_sym,
1929 WL_KEYBOARD_KEY_STATE_PRESSED,
1930 window->user_data);
1931 }
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001932}
1933
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001934static void
Daniel Stone351eb612012-05-31 15:27:47 -04001935keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard,
1936 uint32_t serial, uint32_t mods_depressed,
1937 uint32_t mods_latched, uint32_t mods_locked,
1938 uint32_t group)
1939{
1940 struct input *input = data;
1941
Daniel Stoneb7452fe2012-06-01 12:14:06 +01001942 xkb_state_update_mask(input->xkb.state, mods_depressed, mods_latched,
1943 mods_locked, 0, 0, group);
Daniel Stone351eb612012-05-31 15:27:47 -04001944}
1945
1946static void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001947input_remove_pointer_focus(struct input *input)
Pekka Paalanene1207c72011-12-16 12:02:09 +02001948{
1949 struct window *window = input->pointer_focus;
1950
1951 if (!window)
1952 return;
1953
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001954 input_set_focus_widget(input, NULL, 0, 0);
Pekka Paalanene1207c72011-12-16 12:02:09 +02001955
Pekka Paalanene1207c72011-12-16 12:02:09 +02001956 input->pointer_focus = NULL;
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03001957 input->current_cursor = CURSOR_UNSET;
Pekka Paalanene1207c72011-12-16 12:02:09 +02001958}
1959
1960static void
Daniel Stone37816df2012-05-16 18:45:18 +01001961pointer_handle_enter(void *data, struct wl_pointer *pointer,
1962 uint32_t serial, struct wl_surface *surface,
1963 wl_fixed_t sx_w, wl_fixed_t sy_w)
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001964{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001965 struct input *input = data;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001966 struct window *window;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001967 struct widget *widget;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04001968 float sx = wl_fixed_to_double(sx_w);
1969 float sy = wl_fixed_to_double(sy_w);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001970
Martin Minarik1998b152012-05-10 02:04:35 +02001971 if (!surface) {
1972 /* enter event for a window we've just destroyed */
1973 return;
1974 }
1975
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001976 input->display->serial = serial;
1977 input->pointer_enter_serial = serial;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001978 input->pointer_focus = wl_surface_get_user_data(surface);
Kristian Høgsberg900b2262011-09-06 14:33:52 -04001979 window = input->pointer_focus;
Kristian Høgsberg900b2262011-09-06 14:33:52 -04001980
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001981 if (window->pool) {
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -07001982 shm_pool_destroy(window->pool);
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04001983 window->pool = NULL;
1984 /* Schedule a redraw to free the pool */
1985 window_schedule_redraw(window);
1986 }
1987
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001988 input->sx = sx;
1989 input->sy = sy;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001990
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001991 widget = widget_find_widget(window->widget, sx, sy);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04001992 input_set_focus_widget(input, widget, sx, sy);
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001993}
Kristian Høgsberg59826582011-01-20 11:56:57 -05001994
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001995static void
Daniel Stone37816df2012-05-16 18:45:18 +01001996pointer_handle_leave(void *data, struct wl_pointer *pointer,
1997 uint32_t serial, struct wl_surface *surface)
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001998{
1999 struct input *input = data;
2000
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002001 input->display->serial = serial;
2002 input_remove_pointer_focus(input);
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05002003}
2004
2005static void
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05002006input_remove_keyboard_focus(struct input *input)
Pekka Paalanene1207c72011-12-16 12:02:09 +02002007{
2008 struct window *window = input->keyboard_focus;
Kristian Høgsbergd3c69c22012-06-20 22:41:59 -04002009 struct itimerspec its;
2010
2011 its.it_interval.tv_sec = 0;
2012 its.it_interval.tv_nsec = 0;
2013 its.it_value.tv_sec = 0;
2014 its.it_value.tv_nsec = 0;
2015 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
Pekka Paalanene1207c72011-12-16 12:02:09 +02002016
2017 if (!window)
2018 return;
2019
2020 window->keyboard_device = NULL;
2021 if (window->keyboard_focus_handler)
2022 (*window->keyboard_focus_handler)(window, NULL,
2023 window->user_data);
2024
2025 input->keyboard_focus = NULL;
2026}
2027
2028static void
Daniel Stone37816df2012-05-16 18:45:18 +01002029keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,
2030 uint32_t serial, struct wl_surface *surface,
2031 struct wl_array *keys)
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05002032{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002033 struct input *input = data;
Pekka Paalanene1207c72011-12-16 12:02:09 +02002034 struct window *window;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002035
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002036 input->display->serial = serial;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002037 input->keyboard_focus = wl_surface_get_user_data(surface);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002038
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002039 window = input->keyboard_focus;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002040 window->keyboard_device = input;
2041 if (window->keyboard_focus_handler)
2042 (*window->keyboard_focus_handler)(window,
2043 window->keyboard_device,
2044 window->user_data);
2045}
2046
2047static void
Daniel Stone37816df2012-05-16 18:45:18 +01002048keyboard_handle_leave(void *data, struct wl_keyboard *keyboard,
2049 uint32_t serial, struct wl_surface *surface)
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002050{
2051 struct input *input = data;
2052
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002053 input->display->serial = serial;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05002054 input_remove_keyboard_focus(input);
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05002055}
2056
Daniel Stoneb7452fe2012-06-01 12:14:06 +01002057static void
2058keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard,
2059 uint32_t format, int fd, uint32_t size)
2060{
2061 struct input *input = data;
2062 char *map_str;
2063
2064 if (!data) {
2065 close(fd);
2066 return;
2067 }
2068
2069 if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
2070 close(fd);
2071 return;
2072 }
2073
2074 map_str = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
2075 if (map_str == MAP_FAILED) {
2076 close(fd);
2077 return;
2078 }
2079
2080 input->xkb.keymap = xkb_map_new_from_string(input->display->xkb_context,
2081 map_str,
2082 XKB_KEYMAP_FORMAT_TEXT_V1,
2083 0);
2084 munmap(map_str, size);
2085 close(fd);
2086
2087 if (!input->xkb.keymap) {
2088 fprintf(stderr, "failed to compile keymap\n");
2089 return;
2090 }
2091
2092 input->xkb.state = xkb_state_new(input->xkb.keymap);
2093 if (!input->xkb.state) {
2094 fprintf(stderr, "failed to create XKB state\n");
2095 xkb_map_unref(input->xkb.keymap);
2096 input->xkb.keymap = NULL;
2097 return;
2098 }
2099
2100 input->xkb.control_mask =
2101 1 << xkb_map_mod_get_index(input->xkb.keymap, "Control");
2102 input->xkb.alt_mask =
2103 1 << xkb_map_mod_get_index(input->xkb.keymap, "Mod1");
2104 input->xkb.shift_mask =
2105 1 << xkb_map_mod_get_index(input->xkb.keymap, "Shift");
2106}
2107
Daniel Stone37816df2012-05-16 18:45:18 +01002108static const struct wl_pointer_listener pointer_listener = {
2109 pointer_handle_enter,
2110 pointer_handle_leave,
2111 pointer_handle_motion,
2112 pointer_handle_button,
2113 pointer_handle_axis,
2114};
2115
2116static const struct wl_keyboard_listener keyboard_listener = {
Daniel Stoneb7452fe2012-06-01 12:14:06 +01002117 keyboard_handle_keymap,
Daniel Stone37816df2012-05-16 18:45:18 +01002118 keyboard_handle_enter,
2119 keyboard_handle_leave,
2120 keyboard_handle_key,
Daniel Stone351eb612012-05-31 15:27:47 -04002121 keyboard_handle_modifiers,
Daniel Stone37816df2012-05-16 18:45:18 +01002122};
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002123
2124static void
Daniel Stone37816df2012-05-16 18:45:18 +01002125seat_handle_capabilities(void *data, struct wl_seat *seat,
2126 enum wl_seat_capability caps)
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002127{
Daniel Stone37816df2012-05-16 18:45:18 +01002128 struct input *input = data;
2129
2130 if ((caps & WL_SEAT_CAPABILITY_POINTER) && !input->pointer) {
2131 input->pointer = wl_seat_get_pointer(seat);
2132 wl_pointer_set_user_data(input->pointer, input);
2133 wl_pointer_add_listener(input->pointer, &pointer_listener,
2134 input);
2135 } else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && input->pointer) {
2136 wl_pointer_destroy(input->pointer);
2137 input->pointer = NULL;
2138 }
2139
2140 if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !input->keyboard) {
2141 input->keyboard = wl_seat_get_keyboard(seat);
2142 wl_keyboard_set_user_data(input->keyboard, input);
2143 wl_keyboard_add_listener(input->keyboard, &keyboard_listener,
2144 input);
2145 } else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && input->keyboard) {
2146 wl_keyboard_destroy(input->keyboard);
2147 input->keyboard = NULL;
2148 }
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002149}
2150
Daniel Stone37816df2012-05-16 18:45:18 +01002151static const struct wl_seat_listener seat_listener = {
2152 seat_handle_capabilities,
Kristian Høgsberg94448c02008-12-30 11:03:33 -05002153};
2154
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002155void
2156input_get_position(struct input *input, int32_t *x, int32_t *y)
2157{
2158 *x = input->sx;
2159 *y = input->sy;
2160}
2161
Kristian Høgsbergd56bd902012-06-05 09:58:51 -04002162struct display *
2163input_get_display(struct input *input)
2164{
2165 return input->display;
2166}
2167
Daniel Stone37816df2012-05-16 18:45:18 +01002168struct wl_seat *
2169input_get_seat(struct input *input)
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04002170{
Daniel Stone37816df2012-05-16 18:45:18 +01002171 return input->seat;
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04002172}
2173
Kristian Høgsberg67cac8a2011-01-19 14:20:33 -05002174uint32_t
2175input_get_modifiers(struct input *input)
2176{
2177 return input->modifiers;
2178}
2179
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002180struct widget *
2181input_get_focus_widget(struct input *input)
2182{
2183 return input->focus_widget;
2184}
2185
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002186struct data_offer {
2187 struct wl_data_offer *offer;
2188 struct input *input;
2189 struct wl_array types;
2190 int refcount;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002191
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002192 struct task io_task;
2193 int fd;
2194 data_func_t func;
2195 int32_t x, y;
2196 void *user_data;
2197};
2198
2199static void
2200data_offer_offer(void *data, struct wl_data_offer *wl_data_offer, const char *type)
2201{
2202 struct data_offer *offer = data;
2203 char **p;
2204
2205 p = wl_array_add(&offer->types, sizeof *p);
2206 *p = strdup(type);
2207}
2208
2209static const struct wl_data_offer_listener data_offer_listener = {
2210 data_offer_offer,
2211};
2212
2213static void
2214data_offer_destroy(struct data_offer *offer)
2215{
2216 char **p;
2217
2218 offer->refcount--;
2219 if (offer->refcount == 0) {
2220 wl_data_offer_destroy(offer->offer);
2221 for (p = offer->types.data; *p; p++)
2222 free(*p);
2223 wl_array_release(&offer->types);
2224 free(offer);
2225 }
2226}
2227
2228static void
2229data_device_data_offer(void *data,
Kristian Høgsberg8733b332012-06-28 22:04:06 -04002230 struct wl_data_device *data_device,
2231 struct wl_data_offer *_offer)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002232{
2233 struct data_offer *offer;
2234
2235 offer = malloc(sizeof *offer);
2236
2237 wl_array_init(&offer->types);
2238 offer->refcount = 1;
2239 offer->input = data;
Kristian Høgsberg8733b332012-06-28 22:04:06 -04002240 offer->offer = _offer;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002241 wl_data_offer_add_listener(offer->offer,
2242 &data_offer_listener, offer);
2243}
2244
2245static void
2246data_device_enter(void *data, struct wl_data_device *data_device,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002247 uint32_t serial, struct wl_surface *surface,
Daniel Stone103db7f2012-05-08 17:17:55 +01002248 wl_fixed_t x_w, wl_fixed_t y_w,
2249 struct wl_data_offer *offer)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002250{
2251 struct input *input = data;
2252 struct window *window;
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002253 void *types_data;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002254 float x = wl_fixed_to_double(x_w);
2255 float y = wl_fixed_to_double(y_w);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002256 char **p;
2257
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002258 input->pointer_enter_serial = serial;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002259 window = wl_surface_get_user_data(surface);
2260 input->pointer_focus = window;
2261
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002262 if (offer) {
2263 input->drag_offer = wl_data_offer_get_user_data(offer);
2264
2265 p = wl_array_add(&input->drag_offer->types, sizeof *p);
2266 *p = NULL;
2267
2268 types_data = input->drag_offer->types.data;
2269 } else {
2270 input->drag_offer = NULL;
2271 types_data = NULL;
2272 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002273
2274 window = input->pointer_focus;
2275 if (window->data_handler)
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002276 window->data_handler(window, input, x, y, types_data,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002277 window->user_data);
2278}
2279
2280static void
2281data_device_leave(void *data, struct wl_data_device *data_device)
2282{
2283 struct input *input = data;
2284
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002285 if (input->drag_offer) {
2286 data_offer_destroy(input->drag_offer);
2287 input->drag_offer = NULL;
2288 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002289}
2290
2291static void
2292data_device_motion(void *data, struct wl_data_device *data_device,
Daniel Stone103db7f2012-05-08 17:17:55 +01002293 uint32_t time, wl_fixed_t x_w, wl_fixed_t y_w)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002294{
2295 struct input *input = data;
2296 struct window *window = input->pointer_focus;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002297 float x = wl_fixed_to_double(x_w);
2298 float y = wl_fixed_to_double(y_w);
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002299 void *types_data;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002300
2301 input->sx = x;
2302 input->sy = y;
2303
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002304 if (input->drag_offer)
2305 types_data = input->drag_offer->types.data;
2306 else
2307 types_data = NULL;
2308
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002309 if (window->data_handler)
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03002310 window->data_handler(window, input, x, y, types_data,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002311 window->user_data);
2312}
2313
2314static void
2315data_device_drop(void *data, struct wl_data_device *data_device)
2316{
2317 struct input *input = data;
2318 struct window *window = input->pointer_focus;
2319
2320 if (window->drop_handler)
2321 window->drop_handler(window, input,
2322 input->sx, input->sy, window->user_data);
2323}
2324
2325static void
2326data_device_selection(void *data,
2327 struct wl_data_device *wl_data_device,
2328 struct wl_data_offer *offer)
2329{
2330 struct input *input = data;
2331 char **p;
2332
2333 if (input->selection_offer)
2334 data_offer_destroy(input->selection_offer);
2335
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05002336 if (offer) {
2337 input->selection_offer = wl_data_offer_get_user_data(offer);
2338 p = wl_array_add(&input->selection_offer->types, sizeof *p);
2339 *p = NULL;
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04002340 } else {
2341 input->selection_offer = NULL;
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05002342 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002343}
2344
2345static const struct wl_data_device_listener data_device_listener = {
2346 data_device_data_offer,
2347 data_device_enter,
2348 data_device_leave,
2349 data_device_motion,
2350 data_device_drop,
2351 data_device_selection
2352};
2353
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002354static void
2355input_set_pointer_image_index(struct input *input, int index)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002356{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002357 struct wl_buffer *buffer;
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03002358 struct wl_cursor *cursor;
2359 struct wl_cursor_image *image;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002360
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002361 cursor = input->display->cursors[input->current_cursor];
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03002362 if (!cursor)
Dima Ryazanovff1c2d72012-05-08 21:02:33 -07002363 return;
2364
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002365 if (index >= (int) cursor->image_count) {
2366 fprintf(stderr, "cursor index out of range\n");
2367 return;
2368 }
2369
2370 image = cursor->images[index];
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03002371 buffer = wl_cursor_image_get_buffer(image);
2372 if (!buffer)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002373 return;
2374
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03002375 wl_pointer_set_cursor(input->pointer, input->display->serial,
2376 input->pointer_surface,
2377 image->hotspot_x, image->hotspot_y);
2378 wl_surface_attach(input->pointer_surface, buffer, 0, 0);
2379 wl_surface_damage(input->pointer_surface, 0, 0,
2380 image->width, image->height);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002381}
2382
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002383static const struct wl_callback_listener pointer_surface_listener;
2384
2385static void
2386pointer_surface_frame_callback(void *data, struct wl_callback *callback,
2387 uint32_t time)
2388{
2389 struct input *input = data;
Daniel Stonea494f1d2012-06-18 19:31:12 +01002390 struct wl_cursor *cursor;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002391 int i;
2392
2393 if (callback) {
2394 assert(callback == input->cursor_frame_cb);
2395 wl_callback_destroy(callback);
2396 input->cursor_frame_cb = NULL;
2397 }
2398
Kristian Høgsbergf3370522012-06-20 23:04:41 -04002399 if (input->current_cursor == CURSOR_BLANK) {
2400 wl_pointer_set_cursor(input->pointer, input->display->serial,
2401 NULL, 0, 0);
2402 return;
2403 }
2404
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002405 if (input->current_cursor == CURSOR_UNSET)
2406 return;
Daniel Stonea494f1d2012-06-18 19:31:12 +01002407 cursor = input->display->cursors[input->current_cursor];
2408 if (!cursor)
2409 return;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002410
2411 /* FIXME We don't have the current time on the first call so we set
2412 * the animation start to the time of the first frame callback. */
2413 if (time == 0)
2414 input->cursor_anim_start = 0;
2415 else if (input->cursor_anim_start == 0)
2416 input->cursor_anim_start = time;
2417
2418 if (time == 0 || input->cursor_anim_start == 0)
2419 i = 0;
2420 else
2421 i = wl_cursor_frame(cursor, time - input->cursor_anim_start);
2422
2423 input_set_pointer_image_index(input, i);
2424
2425 if (cursor->image_count == 1)
2426 return;
2427
2428 input->cursor_frame_cb = wl_surface_frame(input->pointer_surface);
2429 wl_callback_add_listener(input->cursor_frame_cb,
2430 &pointer_surface_listener, input);
2431}
2432
2433static const struct wl_callback_listener pointer_surface_listener = {
2434 pointer_surface_frame_callback
2435};
2436
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002437void
2438input_set_pointer_image(struct input *input, int pointer)
2439{
Kristian Høgsberg11f600d2012-06-22 10:52:58 -04002440 if (pointer == input->current_cursor &&
2441 input->pointer_enter_serial == input->cursor_serial)
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002442 return;
2443
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002444 input->current_cursor = pointer;
Kristian Høgsberg11f600d2012-06-22 10:52:58 -04002445 input->cursor_serial = input->pointer_enter_serial;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002446 if (!input->cursor_frame_cb)
2447 pointer_surface_frame_callback(input, NULL, 0);
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002448}
2449
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002450struct wl_data_device *
2451input_get_data_device(struct input *input)
2452{
2453 return input->data_device;
2454}
2455
2456void
2457input_set_selection(struct input *input,
2458 struct wl_data_source *source, uint32_t time)
2459{
2460 wl_data_device_set_selection(input->data_device, source, time);
2461}
2462
2463void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002464input_accept(struct input *input, const char *type)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002465{
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002466 wl_data_offer_accept(input->drag_offer->offer,
2467 input->pointer_enter_serial, type);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002468}
2469
2470static void
2471offer_io_func(struct task *task, uint32_t events)
2472{
2473 struct data_offer *offer =
2474 container_of(task, struct data_offer, io_task);
2475 unsigned int len;
2476 char buffer[4096];
2477
2478 len = read(offer->fd, buffer, sizeof buffer);
2479 offer->func(buffer, len,
2480 offer->x, offer->y, offer->user_data);
2481
2482 if (len == 0) {
2483 close(offer->fd);
2484 data_offer_destroy(offer);
2485 }
2486}
2487
2488static void
2489data_offer_receive_data(struct data_offer *offer, const char *mime_type,
2490 data_func_t func, void *user_data)
2491{
2492 int p[2];
2493
Jonas Ådahl3685c3a2012-03-30 23:10:27 +02002494 if (pipe2(p, O_CLOEXEC) == -1)
2495 return;
2496
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002497 wl_data_offer_receive(offer->offer, mime_type, p[1]);
2498 close(p[1]);
2499
2500 offer->io_task.run = offer_io_func;
2501 offer->fd = p[0];
2502 offer->func = func;
2503 offer->refcount++;
2504 offer->user_data = user_data;
2505
2506 display_watch_fd(offer->input->display,
2507 offer->fd, EPOLLIN, &offer->io_task);
2508}
2509
2510void
2511input_receive_drag_data(struct input *input, const char *mime_type,
2512 data_func_t func, void *data)
2513{
2514 data_offer_receive_data(input->drag_offer, mime_type, func, data);
2515 input->drag_offer->x = input->sx;
2516 input->drag_offer->y = input->sy;
2517}
2518
2519int
2520input_receive_selection_data(struct input *input, const char *mime_type,
2521 data_func_t func, void *data)
2522{
2523 char **p;
2524
2525 if (input->selection_offer == NULL)
2526 return -1;
2527
2528 for (p = input->selection_offer->types.data; *p; p++)
2529 if (strcmp(mime_type, *p) == 0)
2530 break;
2531
2532 if (*p == NULL)
2533 return -1;
2534
2535 data_offer_receive_data(input->selection_offer,
2536 mime_type, func, data);
2537 return 0;
Kristian Høgsberg41da9082010-11-30 14:01:07 -05002538}
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04002539
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05002540int
2541input_receive_selection_data_to_fd(struct input *input,
2542 const char *mime_type, int fd)
2543{
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04002544 if (input->selection_offer)
2545 wl_data_offer_receive(input->selection_offer->offer,
2546 mime_type, fd);
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05002547
2548 return 0;
2549}
2550
Kristian Høgsberg41da9082010-11-30 14:01:07 -05002551void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002552window_move(struct window *window, struct input *input, uint32_t serial)
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002553{
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002554 if (!window->shell_surface)
2555 return;
2556
Daniel Stone37816df2012-05-16 18:45:18 +01002557 wl_shell_surface_move(window->shell_surface, input->seat, serial);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002558}
2559
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002560static void
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002561idle_resize(struct window *window)
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002562{
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002563 struct widget *widget;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002564
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002565 window->resize_needed = 0;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002566 widget = window->widget;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002567 widget_set_allocation(widget,
2568 window->pending_allocation.x,
2569 window->pending_allocation.y,
2570 window->pending_allocation.width,
2571 window->pending_allocation.height);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002572
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002573 if (window->input_region) {
2574 wl_region_destroy(window->input_region);
2575 window->input_region = NULL;
2576 }
2577
2578 if (window->opaque_region) {
2579 wl_region_destroy(window->opaque_region);
2580 window->opaque_region = NULL;
2581 }
2582
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002583 if (widget->resize_handler)
2584 widget->resize_handler(widget,
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002585 widget->allocation.width,
2586 widget->allocation.height,
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002587 widget->user_data);
2588
Kristian Høgsberg8e054f72012-01-31 11:53:20 -05002589 if (window->allocation.width != widget->allocation.width ||
2590 window->allocation.height != widget->allocation.height) {
2591 window->allocation = widget->allocation;
2592 window_schedule_redraw(window);
2593 }
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002594}
2595
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002596void
2597window_schedule_resize(struct window *window, int width, int height)
2598{
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002599 window->pending_allocation.x = 0;
2600 window->pending_allocation.y = 0;
2601 window->pending_allocation.width = width;
2602 window->pending_allocation.height = height;
2603
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002604 window->resize_needed = 1;
2605 window_schedule_redraw(window);
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002606}
2607
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002608void
2609widget_schedule_resize(struct widget *widget, int32_t width, int32_t height)
2610{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002611 window_schedule_resize(widget->window, width, height);
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002612}
2613
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002614static void
Scott Moreauff1db4a2012-04-17 19:06:18 -06002615handle_ping(void *data, struct wl_shell_surface *shell_surface,
2616 uint32_t serial)
2617{
2618 wl_shell_surface_pong(shell_surface, serial);
2619}
2620
2621static void
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002622handle_configure(void *data, struct wl_shell_surface *shell_surface,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002623 uint32_t edges, int32_t width, int32_t height)
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002624{
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002625 struct window *window = data;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002626
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002627 if (width <= 0 || height <= 0)
Tim Wiederhake8a6f7e32011-01-17 12:40:01 +01002628 return;
2629
Tim Wiederhakeb6761dc2011-01-17 17:50:07 +01002630 window->resize_edges = edges;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002631 window_schedule_resize(window, width, height);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002632}
2633
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002634static void
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002635menu_destroy(struct menu *menu)
2636{
2637 widget_destroy(menu->widget);
2638 window_destroy(menu->window);
2639 free(menu);
2640}
2641
2642static void
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002643handle_popup_done(void *data, struct wl_shell_surface *shell_surface)
2644{
2645 struct window *window = data;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002646 struct menu *menu = window->widget->user_data;
2647
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002648 /* FIXME: Need more context in this event, at least the input
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002649 * device. Or just use wl_callback. And this really needs to
2650 * be a window vfunc that the menu can set. And we need the
2651 * time. */
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002652
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002653 menu->func(window->parent, menu->current, window->parent->user_data);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002654 input_ungrab(menu->input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002655 menu_destroy(menu);
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002656}
2657
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002658static const struct wl_shell_surface_listener shell_surface_listener = {
Scott Moreauff1db4a2012-04-17 19:06:18 -06002659 handle_ping,
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002660 handle_configure,
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002661 handle_popup_done
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002662};
2663
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002664void
Benjamin Franzkecff904e2011-02-18 23:00:55 +01002665window_get_allocation(struct window *window,
2666 struct rectangle *allocation)
2667{
2668 *allocation = window->allocation;
2669}
2670
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002671static void
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002672widget_redraw(struct widget *widget)
2673{
2674 struct widget *child;
2675
2676 if (widget->redraw_handler)
2677 widget->redraw_handler(widget, widget->user_data);
2678 wl_list_for_each(child, &widget->child_list, link)
2679 widget_redraw(child);
2680}
2681
2682static void
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002683frame_callback(void *data, struct wl_callback *callback, uint32_t time)
2684{
2685 struct window *window = data;
2686
2687 wl_callback_destroy(callback);
2688 window->redraw_scheduled = 0;
2689 if (window->redraw_needed)
2690 window_schedule_redraw(window);
2691}
2692
2693static const struct wl_callback_listener listener = {
2694 frame_callback
2695};
2696
2697static void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002698idle_redraw(struct task *task, uint32_t events)
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002699{
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002700 struct window *window = container_of(task, struct window, redraw_task);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002701 struct wl_callback *callback;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002702
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002703 if (window->resize_needed)
2704 idle_resize(window);
2705
Kristian Høgsberg5d129902012-01-10 10:49:41 -05002706 window_create_surface(window);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002707 widget_redraw(window->widget);
Kristian Høgsberg5d129902012-01-10 10:49:41 -05002708 window_flush(window);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002709 window->redraw_needed = 0;
Kristian Høgsberg84b76c72012-04-13 12:01:18 -04002710 wl_list_init(&window->redraw_task.link);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002711
2712 callback = wl_surface_frame(window->surface);
2713 wl_callback_add_listener(callback, &listener, window);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002714}
2715
2716void
2717window_schedule_redraw(struct window *window)
2718{
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002719 window->redraw_needed = 1;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002720 if (!window->redraw_scheduled) {
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002721 window->redraw_task.run = idle_redraw;
2722 display_defer(window->display, &window->redraw_task);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002723 window->redraw_scheduled = 1;
2724 }
2725}
2726
Kristian Høgsberg0ac16f02009-01-15 11:37:43 -05002727void
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002728window_set_custom(struct window *window)
2729{
2730 window->type = TYPE_CUSTOM;
2731}
2732
2733void
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002734window_set_fullscreen(struct window *window, int fullscreen)
2735{
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002736 if (!window->display->shell)
2737 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002738
Kristian Høgsberg547da5a2011-09-13 20:58:00 -04002739 if ((window->type == TYPE_FULLSCREEN) == fullscreen)
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002740 return;
2741
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002742 if (fullscreen) {
2743 window->type = TYPE_FULLSCREEN;
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002744 window->saved_allocation = window->allocation;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002745 wl_shell_surface_set_fullscreen(window->shell_surface,
2746 WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
2747 0, NULL);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002748 } else {
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002749 window->type = TYPE_TOPLEVEL;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002750 wl_shell_surface_set_toplevel(window->shell_surface);
2751 window_schedule_resize(window,
2752 window->saved_allocation.width,
2753 window->saved_allocation.height);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002754 }
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002755}
2756
2757void
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05002758window_set_maximized(struct window *window, int maximized)
2759{
2760 if (!window->display->shell)
2761 return;
2762
2763 if ((window->type == TYPE_MAXIMIZED) == maximized)
2764 return;
2765
2766 if (window->type == TYPE_TOPLEVEL) {
2767 window->saved_allocation = window->allocation;
2768 wl_shell_surface_set_maximized(window->shell_surface, NULL);
2769 window->type = TYPE_MAXIMIZED;
2770 } else {
2771 wl_shell_surface_set_toplevel(window->shell_surface);
2772 window->type = TYPE_TOPLEVEL;
2773 window_schedule_resize(window,
2774 window->saved_allocation.width,
2775 window->saved_allocation.height);
2776 }
2777}
2778
2779void
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002780window_set_user_data(struct window *window, void *data)
2781{
2782 window->user_data = data;
2783}
2784
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04002785void *
2786window_get_user_data(struct window *window)
2787{
2788 return window->user_data;
2789}
2790
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002791void
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002792window_set_key_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002793 window_key_handler_t handler)
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002794{
2795 window->key_handler = handler;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002796}
2797
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002798void
2799window_set_keyboard_focus_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002800 window_keyboard_focus_handler_t handler)
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002801{
2802 window->keyboard_focus_handler = handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002803}
2804
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002805void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002806window_set_data_handler(struct window *window, window_data_handler_t handler)
2807{
2808 window->data_handler = handler;
2809}
2810
2811void
2812window_set_drop_handler(struct window *window, window_drop_handler_t handler)
2813{
2814 window->drop_handler = handler;
2815}
2816
2817void
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002818window_set_close_handler(struct window *window,
2819 window_close_handler_t handler)
2820{
2821 window->close_handler = handler;
2822}
2823
2824void
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002825window_set_title(struct window *window, const char *title)
2826{
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -05002827 free(window->title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002828 window->title = strdup(title);
Kristian Høgsberg3e0fe5c2012-05-02 09:47:55 -04002829 if (window->shell_surface)
2830 wl_shell_surface_set_title(window->shell_surface, title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002831}
2832
2833const char *
2834window_get_title(struct window *window)
2835{
2836 return window->title;
2837}
2838
2839void
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002840window_set_text_cursor_position(struct window *window, int32_t x, int32_t y)
2841{
2842 struct text_cursor_position *text_cursor_position =
2843 window->display->text_cursor_position;
2844
Scott Moreau9295ce02012-06-01 12:46:10 -06002845 if (!text_cursor_position)
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002846 return;
2847
2848 text_cursor_position_notify(text_cursor_position,
Scott Moreauae712202012-06-01 12:46:09 -06002849 window->surface,
2850 wl_fixed_from_int(x),
2851 wl_fixed_from_int(y));
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002852}
2853
2854void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002855window_damage(struct window *window, int32_t x, int32_t y,
2856 int32_t width, int32_t height)
2857{
2858 wl_surface_damage(window->surface, x, y, width, height);
2859}
2860
Casey Dahlin9074db52012-04-19 22:50:09 -04002861static void
2862surface_enter(void *data,
Rob Bradford7507b572012-05-15 17:55:34 +01002863 struct wl_surface *wl_surface, struct wl_output *wl_output)
Casey Dahlin9074db52012-04-19 22:50:09 -04002864{
Rob Bradford7507b572012-05-15 17:55:34 +01002865 struct window *window = data;
2866 struct output *output;
2867 struct output *output_found = NULL;
2868 struct window_output *window_output;
2869
2870 wl_list_for_each(output, &window->display->output_list, link) {
2871 if (output->output == wl_output) {
2872 output_found = output;
2873 break;
2874 }
2875 }
2876
2877 if (!output_found)
2878 return;
2879
2880 window_output = malloc (sizeof *window_output);
2881 window_output->output = output_found;
2882
2883 wl_list_insert (&window->window_output_list, &window_output->link);
Casey Dahlin9074db52012-04-19 22:50:09 -04002884}
2885
2886static void
2887surface_leave(void *data,
2888 struct wl_surface *wl_surface, struct wl_output *output)
2889{
Rob Bradford7507b572012-05-15 17:55:34 +01002890 struct window *window = data;
2891 struct window_output *window_output;
2892 struct window_output *window_output_found = NULL;
2893
2894 wl_list_for_each(window_output, &window->window_output_list, link) {
2895 if (window_output->output->output == output) {
2896 window_output_found = window_output;
2897 break;
2898 }
2899 }
2900
2901 if (window_output_found) {
2902 wl_list_remove(&window_output_found->link);
2903 free(window_output_found);
2904 }
Casey Dahlin9074db52012-04-19 22:50:09 -04002905}
2906
2907static const struct wl_surface_listener surface_listener = {
2908 surface_enter,
2909 surface_leave
2910};
2911
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002912static struct window *
Kristian Høgsberg962342c2012-06-26 16:29:50 -04002913window_create_internal(struct display *display,
2914 struct window *parent, int type)
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002915{
Kristian Høgsberg1cbaa6a2008-11-07 15:54:48 -05002916 struct window *window;
2917
2918 window = malloc(sizeof *window);
2919 if (window == NULL)
2920 return NULL;
2921
Kristian Høgsberg78231c82008-11-08 15:06:01 -05002922 memset(window, 0, sizeof *window);
Kristian Høgsberg40979232008-11-25 22:40:39 -05002923 window->display = display;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002924 window->parent = parent;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002925 window->surface = wl_compositor_create_surface(display->compositor);
Casey Dahlin9074db52012-04-19 22:50:09 -04002926 wl_surface_add_listener(window->surface, &surface_listener, window);
Kristian Høgsberg962342c2012-06-26 16:29:50 -04002927 if (type != TYPE_CUSTOM && display->shell) {
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002928 window->shell_surface =
2929 wl_shell_get_shell_surface(display->shell,
2930 window->surface);
Kristian Høgsberg3e0fe5c2012-05-02 09:47:55 -04002931 if (window->title)
2932 wl_shell_surface_set_title(window->shell_surface,
2933 window->title);
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002934 }
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002935 window->allocation.x = 0;
2936 window->allocation.y = 0;
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002937 window->allocation.width = 0;
2938 window->allocation.height = 0;
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002939 window->saved_allocation = window->allocation;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -04002940 window->transparent = 1;
Kristian Høgsberg962342c2012-06-26 16:29:50 -04002941 window->type = type;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002942 window->input_region = NULL;
2943 window->opaque_region = NULL;
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -05002944
Kristian Høgsberg297c6312011-02-04 14:11:33 -05002945 if (display->dpy)
Benjamin Franzke22d54812011-07-16 19:50:32 +00002946#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +01002947 window->buffer_type = WINDOW_BUFFER_TYPE_EGL_WINDOW;
Benjamin Franzke22d54812011-07-16 19:50:32 +00002948#else
2949 window->buffer_type = WINDOW_BUFFER_TYPE_SHM;
2950#endif
Yuval Fledel45568f62010-12-06 09:18:12 -05002951 else
2952 window->buffer_type = WINDOW_BUFFER_TYPE_SHM;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002953
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002954 wl_surface_set_user_data(window->surface, window);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04002955 wl_list_insert(display->window_list.prev, &window->link);
Kristian Høgsberg84b76c72012-04-13 12:01:18 -04002956 wl_list_init(&window->redraw_task.link);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002957
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002958 if (window->shell_surface) {
2959 wl_shell_surface_set_user_data(window->shell_surface, window);
2960 wl_shell_surface_add_listener(window->shell_surface,
2961 &shell_surface_listener, window);
2962 }
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002963
Rob Bradford7507b572012-05-15 17:55:34 +01002964 wl_list_init (&window->window_output_list);
2965
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002966 return window;
2967}
2968
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002969struct window *
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002970window_create(struct display *display)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002971{
2972 struct window *window;
2973
Kristian Høgsberg962342c2012-06-26 16:29:50 -04002974 window = window_create_internal(display, NULL, TYPE_NONE);
2975 if (!window)
2976 return NULL;
2977
2978 return window;
2979}
2980
2981struct window *
2982window_create_custom(struct display *display)
2983{
2984 struct window *window;
2985
2986 window = window_create_internal(display, NULL, TYPE_CUSTOM);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002987 if (!window)
2988 return NULL;
2989
2990 return window;
2991}
2992
2993struct window *
2994window_create_transient(struct display *display, struct window *parent,
Tiago Vignattidec76582012-05-21 16:47:46 +03002995 int32_t x, int32_t y, uint32_t flags)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002996{
2997 struct window *window;
2998
Kristian Høgsberg962342c2012-06-26 16:29:50 -04002999 window = window_create_internal(parent->display,
3000 parent, TYPE_TRANSIENT);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05003001 if (!window)
3002 return NULL;
3003
3004 window->x = x;
3005 window->y = y;
3006
Kristian Høgsberg1517def2012-02-16 22:56:12 -05003007 if (display->shell)
3008 wl_shell_surface_set_transient(window->shell_surface,
Kristian Høgsberg8150b192012-06-27 10:22:58 -04003009 window->parent->surface,
Tiago Vignattidec76582012-05-21 16:47:46 +03003010 window->x, window->y, flags);
Kristian Høgsberg1517def2012-02-16 22:56:12 -05003011
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05003012 return window;
3013}
3014
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003015static void
Kristian Høgsberg19dd1d72012-01-09 10:42:41 -05003016menu_set_item(struct menu *menu, int sy)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003017{
3018 int next;
3019
3020 next = (sy - 8) / 20;
3021 if (menu->current != next) {
3022 menu->current = next;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003023 widget_schedule_redraw(menu->widget);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003024 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003025}
3026
3027static int
Kristian Høgsberg5f190ef2012-01-09 09:44:45 -05003028menu_motion_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003029 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003030 float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003031{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003032 struct menu *menu = data;
3033
3034 if (widget == menu->widget)
3035 menu_set_item(data, y);
3036
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03003037 return CURSOR_LEFT_PTR;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003038}
3039
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05003040static int
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003041menu_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003042 struct input *input, float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003043{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003044 struct menu *menu = data;
3045
3046 if (widget == menu->widget)
3047 menu_set_item(data, y);
3048
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03003049 return CURSOR_LEFT_PTR;
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003050}
3051
3052static void
3053menu_leave_handler(struct widget *widget, struct input *input, void *data)
3054{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003055 struct menu *menu = data;
3056
3057 if (widget == menu->widget)
3058 menu_set_item(data, -200);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003059}
3060
3061static void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05003062menu_button_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003063 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01003064 uint32_t button, enum wl_pointer_button_state state,
3065 void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003066
3067{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003068 struct menu *menu = data;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003069
Daniel Stone4dbadb12012-05-30 16:31:51 +01003070 if (state == WL_POINTER_BUTTON_STATE_PRESSED &&
3071 time - menu->time > 500) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003072 /* Either relase after press-drag-release or
3073 * click-motion-click. */
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003074 menu->func(menu->window->parent,
3075 menu->current, menu->window->parent->user_data);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003076 input_ungrab(input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003077 menu_destroy(menu);
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05003078 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003079}
3080
3081static void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003082menu_redraw_handler(struct widget *widget, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003083{
3084 cairo_t *cr;
3085 const int32_t r = 3, margin = 3;
3086 struct menu *menu = data;
3087 int32_t width, height, i;
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003088 struct window *window = widget->window;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003089
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003090 cr = cairo_create(window->cairo_surface);
3091 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
3092 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
3093 cairo_paint(cr);
3094
3095 width = window->allocation.width;
3096 height = window->allocation.height;
3097 rounded_rect(cr, 0, 0, width, height, r);
Kristian Høgsberg824c6d02012-01-19 13:54:09 -05003098
3099 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003100 cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
3101 cairo_fill(cr);
3102
3103 for (i = 0; i < menu->count; i++) {
3104 if (i == menu->current) {
3105 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
3106 cairo_rectangle(cr, margin, i * 20 + margin,
3107 width - 2 * margin, 20);
3108 cairo_fill(cr);
3109 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
3110 cairo_move_to(cr, 10, i * 20 + 16);
3111 cairo_show_text(cr, menu->entries[i]);
3112 } else {
3113 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
3114 cairo_move_to(cr, 10, i * 20 + 16);
3115 cairo_show_text(cr, menu->entries[i]);
3116 }
3117 }
3118
3119 cairo_destroy(cr);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003120}
3121
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003122void
3123window_show_menu(struct display *display,
3124 struct input *input, uint32_t time, struct window *parent,
3125 int32_t x, int32_t y,
3126 menu_func_t func, const char **entries, int count)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003127{
3128 struct window *window;
3129 struct menu *menu;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003130 const int32_t margin = 3;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003131
3132 menu = malloc(sizeof *menu);
3133 if (!menu)
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003134 return;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003135
Kristian Høgsberg962342c2012-06-26 16:29:50 -04003136 window = window_create_internal(parent->display, parent, TYPE_MENU);
Martin Olsson444799a2012-07-08 03:03:40 +02003137 if (!window) {
3138 free(menu);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003139 return;
Martin Olsson444799a2012-07-08 03:03:40 +02003140 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003141
3142 menu->window = window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003143 menu->widget = window_add_widget(menu->window, menu);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003144 menu->entries = entries;
3145 menu->count = count;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003146 menu->current = -1;
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003147 menu->time = time;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05003148 menu->func = func;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003149 menu->input = input;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003150 window->type = TYPE_MENU;
3151 window->x = x;
3152 window->y = y;
3153
Kristian Høgsberga6c8b002012-04-13 12:55:45 -04003154 input_ungrab(input);
Daniel Stone37816df2012-05-16 18:45:18 +01003155 wl_shell_surface_set_popup(window->shell_surface, input->seat,
Kristian Høgsbergf2eb68a2012-04-13 12:37:19 -04003156 display_get_serial(window->display),
Kristian Høgsberg8150b192012-06-27 10:22:58 -04003157 window->parent->surface,
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003158 window->x, window->y, 0);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003159
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003160 widget_set_redraw_handler(menu->widget, menu_redraw_handler);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003161 widget_set_enter_handler(menu->widget, menu_enter_handler);
3162 widget_set_leave_handler(menu->widget, menu_leave_handler);
3163 widget_set_motion_handler(menu->widget, menu_motion_handler);
3164 widget_set_button_handler(menu->widget, menu_button_handler);
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003165
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003166 input_grab(input, menu->widget, 0);
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05003167 window_schedule_resize(window, 200, count * 20 + margin * 2);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003168}
3169
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05003170void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04003171window_set_buffer_type(struct window *window, enum window_buffer_type type)
3172{
3173 window->buffer_type = type;
3174}
3175
Kristian Høgsberg8357cd62011-05-13 13:24:56 -04003176
3177static void
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003178display_handle_geometry(void *data,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003179 struct wl_output *wl_output,
3180 int x, int y,
3181 int physical_width,
3182 int physical_height,
3183 int subpixel,
3184 const char *make,
3185 const char *model)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003186{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003187 struct output *output = data;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003188
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003189 output->allocation.x = x;
3190 output->allocation.y = y;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003191}
3192
3193static void
3194display_handle_mode(void *data,
3195 struct wl_output *wl_output,
3196 uint32_t flags,
3197 int width,
3198 int height,
3199 int refresh)
3200{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003201 struct output *output = data;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003202 struct display *display = output->display;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003203
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003204 if (flags & WL_OUTPUT_MODE_CURRENT) {
3205 output->allocation.width = width;
3206 output->allocation.height = height;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003207 if (display->output_configure_handler)
3208 (*display->output_configure_handler)(
3209 output, display->user_data);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003210 }
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003211}
3212
3213static const struct wl_output_listener output_listener = {
3214 display_handle_geometry,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003215 display_handle_mode
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003216};
3217
3218static void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003219display_add_output(struct display *d, uint32_t id)
3220{
3221 struct output *output;
3222
3223 output = malloc(sizeof *output);
3224 if (output == NULL)
3225 return;
3226
3227 memset(output, 0, sizeof *output);
3228 output->display = d;
3229 output->output =
3230 wl_display_bind(d->display, id, &wl_output_interface);
3231 wl_list_insert(d->output_list.prev, &output->link);
3232
3233 wl_output_add_listener(output->output, &output_listener, output);
3234}
3235
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003236static void
3237output_destroy(struct output *output)
3238{
3239 if (output->destroy_handler)
3240 (*output->destroy_handler)(output, output->user_data);
3241
3242 wl_output_destroy(output->output);
3243 wl_list_remove(&output->link);
3244 free(output);
3245}
3246
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003247void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003248display_set_output_configure_handler(struct display *display,
3249 display_output_handler_t handler)
3250{
3251 struct output *output;
3252
3253 display->output_configure_handler = handler;
3254 if (!handler)
3255 return;
3256
3257 wl_list_for_each(output, &display->output_list, link)
3258 (*display->output_configure_handler)(output,
3259 display->user_data);
3260}
3261
3262void
3263output_set_user_data(struct output *output, void *data)
3264{
3265 output->user_data = data;
3266}
3267
3268void *
3269output_get_user_data(struct output *output)
3270{
3271 return output->user_data;
3272}
3273
3274void
3275output_set_destroy_handler(struct output *output,
3276 display_output_handler_t handler)
3277{
3278 output->destroy_handler = handler;
3279 /* FIXME: implement this, once we have way to remove outputs */
3280}
3281
3282void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003283output_get_allocation(struct output *output, struct rectangle *allocation)
3284{
3285 *allocation = output->allocation;
3286}
3287
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003288struct wl_output *
3289output_get_wl_output(struct output *output)
3290{
3291 return output->output;
3292}
3293
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003294static void
Daniel Stone97f68542012-05-30 16:32:01 +01003295fini_xkb(struct input *input)
3296{
3297 xkb_state_unref(input->xkb.state);
3298 xkb_map_unref(input->xkb.keymap);
3299}
3300
3301static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003302display_add_input(struct display *d, uint32_t id)
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003303{
3304 struct input *input;
3305
3306 input = malloc(sizeof *input);
3307 if (input == NULL)
3308 return;
3309
3310 memset(input, 0, sizeof *input);
3311 input->display = d;
Daniel Stone37816df2012-05-16 18:45:18 +01003312 input->seat = wl_display_bind(d->display, id, &wl_seat_interface);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003313 input->pointer_focus = NULL;
3314 input->keyboard_focus = NULL;
3315 wl_list_insert(d->input_list.prev, &input->link);
3316
Daniel Stone37816df2012-05-16 18:45:18 +01003317 wl_seat_add_listener(input->seat, &seat_listener, input);
3318 wl_seat_set_user_data(input->seat, input);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003319
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003320 input->data_device =
3321 wl_data_device_manager_get_data_device(d->data_device_manager,
Daniel Stone37816df2012-05-16 18:45:18 +01003322 input->seat);
3323 wl_data_device_add_listener(input->data_device, &data_device_listener,
3324 input);
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03003325
3326 input->pointer_surface = wl_compositor_create_surface(d->compositor);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003327
Kristian Høgsberg8b19c642012-06-20 18:00:13 -04003328 input->repeat_timer_fd = timerfd_create(CLOCK_MONOTONIC,
3329 TFD_CLOEXEC | TFD_NONBLOCK);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003330 input->repeat_task.run = keyboard_repeat_func;
3331 display_watch_fd(d, input->repeat_timer_fd,
3332 EPOLLIN, &input->repeat_task);
Kristian Høgsberg58eec362011-01-19 14:27:42 -05003333}
3334
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003335static void
Pekka Paalanene1207c72011-12-16 12:02:09 +02003336input_destroy(struct input *input)
3337{
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05003338 input_remove_keyboard_focus(input);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003339 input_remove_pointer_focus(input);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003340
3341 if (input->drag_offer)
3342 data_offer_destroy(input->drag_offer);
3343
3344 if (input->selection_offer)
3345 data_offer_destroy(input->selection_offer);
3346
3347 wl_data_device_destroy(input->data_device);
Daniel Stone97f68542012-05-30 16:32:01 +01003348 fini_xkb(input);
3349
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03003350 wl_surface_destroy(input->pointer_surface);
3351
Pekka Paalanene1207c72011-12-16 12:02:09 +02003352 wl_list_remove(&input->link);
Daniel Stone37816df2012-05-16 18:45:18 +01003353 wl_seat_destroy(input->seat);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003354 close(input->repeat_timer_fd);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003355 free(input);
3356}
3357
3358static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003359display_handle_global(struct wl_display *display, uint32_t id,
3360 const char *interface, uint32_t version, void *data)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003361{
3362 struct display *d = data;
3363
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003364 if (strcmp(interface, "wl_compositor") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003365 d->compositor =
3366 wl_display_bind(display, id, &wl_compositor_interface);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003367 } else if (strcmp(interface, "wl_output") == 0) {
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003368 display_add_output(d, id);
Daniel Stone37816df2012-05-16 18:45:18 +01003369 } else if (strcmp(interface, "wl_seat") == 0) {
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003370 display_add_input(d, id);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003371 } else if (strcmp(interface, "wl_shell") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003372 d->shell = wl_display_bind(display, id, &wl_shell_interface);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003373 } else if (strcmp(interface, "wl_shm") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003374 d->shm = wl_display_bind(display, id, &wl_shm_interface);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003375 } else if (strcmp(interface, "wl_data_device_manager") == 0) {
3376 d->data_device_manager =
3377 wl_display_bind(display, id,
3378 &wl_data_device_manager_interface);
Scott Moreau7a1b32a2012-05-27 14:25:02 -06003379 } else if (strcmp(interface, "text_cursor_position") == 0) {
3380 d->text_cursor_position =
3381 wl_display_bind(display, id,
3382 &text_cursor_position_interface);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003383 }
3384}
3385
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003386#ifdef HAVE_CAIRO_EGL
Yuval Fledel45568f62010-12-06 09:18:12 -05003387static int
Kristian Høgsberg297c6312011-02-04 14:11:33 -05003388init_egl(struct display *d)
Yuval Fledel45568f62010-12-06 09:18:12 -05003389{
3390 EGLint major, minor;
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003391 EGLint n;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -04003392
Rob Clark6396ed32012-03-11 19:48:41 -05003393#ifdef USE_CAIRO_GLESV2
3394# define GL_BIT EGL_OPENGL_ES2_BIT
3395#else
3396# define GL_BIT EGL_OPENGL_BIT
3397#endif
3398
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003399 static const EGLint argb_cfg_attribs[] = {
3400 EGL_SURFACE_TYPE, EGL_WINDOW_BIT | EGL_PIXMAP_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003401 EGL_RED_SIZE, 1,
3402 EGL_GREEN_SIZE, 1,
3403 EGL_BLUE_SIZE, 1,
3404 EGL_ALPHA_SIZE, 1,
3405 EGL_DEPTH_SIZE, 1,
Rob Clark6396ed32012-03-11 19:48:41 -05003406 EGL_RENDERABLE_TYPE, GL_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003407 EGL_NONE
3408 };
Yuval Fledel45568f62010-12-06 09:18:12 -05003409
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003410#ifdef USE_CAIRO_GLESV2
3411 static const EGLint context_attribs[] = {
3412 EGL_CONTEXT_CLIENT_VERSION, 2,
3413 EGL_NONE
3414 };
3415 EGLint api = EGL_OPENGL_ES_API;
3416#else
3417 EGLint *context_attribs = NULL;
3418 EGLint api = EGL_OPENGL_API;
3419#endif
3420
Kristian Høgsberg91342c62011-04-14 14:44:58 -04003421 d->dpy = eglGetDisplay(d->display);
Yuval Fledel45568f62010-12-06 09:18:12 -05003422 if (!eglInitialize(d->dpy, &major, &minor)) {
3423 fprintf(stderr, "failed to initialize display\n");
3424 return -1;
3425 }
3426
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003427 if (!eglBindAPI(api)) {
Yuval Fledel45568f62010-12-06 09:18:12 -05003428 fprintf(stderr, "failed to bind api EGL_OPENGL_API\n");
3429 return -1;
3430 }
3431
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003432 if (!eglChooseConfig(d->dpy, argb_cfg_attribs,
3433 &d->argb_config, 1, &n) || n != 1) {
3434 fprintf(stderr, "failed to choose argb config\n");
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003435 return -1;
3436 }
3437
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003438 d->argb_ctx = eglCreateContext(d->dpy, d->argb_config,
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003439 EGL_NO_CONTEXT, context_attribs);
Benjamin Franzke0c991632011-09-27 21:57:31 +02003440 if (d->argb_ctx == NULL) {
Yuval Fledel45568f62010-12-06 09:18:12 -05003441 fprintf(stderr, "failed to create context\n");
3442 return -1;
3443 }
3444
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003445 if (!eglMakeCurrent(d->dpy, NULL, NULL, d->argb_ctx)) {
Tim Wiederhake9c7a8cc2011-02-11 19:37:40 +01003446 fprintf(stderr, "failed to make context current\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05003447 return -1;
3448 }
3449
Kristian Høgsberg8def2642011-01-14 17:41:33 -05003450#ifdef HAVE_CAIRO_EGL
Benjamin Franzke0c991632011-09-27 21:57:31 +02003451 d->argb_device = cairo_egl_device_create(d->dpy, d->argb_ctx);
3452 if (cairo_device_status(d->argb_device) != CAIRO_STATUS_SUCCESS) {
3453 fprintf(stderr, "failed to get cairo egl argb device\n");
3454 return -1;
3455 }
Yuval Fledel45568f62010-12-06 09:18:12 -05003456#endif
3457
3458 return 0;
3459}
3460
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003461static void
3462fini_egl(struct display *display)
3463{
3464#ifdef HAVE_CAIRO_EGL
3465 cairo_device_destroy(display->argb_device);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003466#endif
3467
3468 eglMakeCurrent(display->dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
3469 EGL_NO_CONTEXT);
3470
3471 eglTerminate(display->dpy);
3472 eglReleaseThread();
3473}
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003474#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003475
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003476static int
3477event_mask_update(uint32_t mask, void *data)
3478{
3479 struct display *d = data;
3480
3481 d->mask = mask;
3482
3483 return 0;
3484}
3485
3486static void
3487handle_display_data(struct task *task, uint32_t events)
3488{
3489 struct display *display =
3490 container_of(task, struct display, display_task);
3491
3492 wl_display_iterate(display->display, display->mask);
3493}
3494
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003495struct display *
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04003496display_create(int argc, char *argv[])
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003497{
3498 struct display *d;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04003499
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04003500 argc = parse_options(xkb_options,
3501 ARRAY_LENGTH(xkb_options), argc, argv);
Kristian Høgsbergc7c60642010-08-29 21:33:39 -04003502
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003503 d = malloc(sizeof *d);
3504 if (d == NULL)
3505 return NULL;
3506
Tim Wiederhake81bd9792011-01-23 23:25:26 +01003507 memset(d, 0, sizeof *d);
3508
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05003509 d->display = wl_display_connect(NULL);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003510 if (d->display == NULL) {
3511 fprintf(stderr, "failed to create display: %m\n");
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003512 return NULL;
3513 }
3514
Pekka Paalanen647f2bf2012-05-30 15:53:43 +03003515 d->epoll_fd = os_epoll_create_cloexec();
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003516 d->display_fd = wl_display_get_fd(d->display, event_mask_update, d);
3517 d->display_task.run = handle_display_data;
3518 display_watch_fd(d, d->display_fd, EPOLLIN, &d->display_task);
3519
3520 wl_list_init(&d->deferred_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003521 wl_list_init(&d->input_list);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003522 wl_list_init(&d->output_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003523
Daniel Stone97f68542012-05-30 16:32:01 +01003524 d->xkb_context = xkb_context_new(0);
Daniel Stoneb7452fe2012-06-01 12:14:06 +01003525 if (d->xkb_context == NULL) {
3526 fprintf(stderr, "Failed to create XKB context\n");
Daniel Stone97f68542012-05-30 16:32:01 +01003527 return NULL;
3528 }
3529
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003530 /* Set up listener so we'll catch all events. */
3531 wl_display_add_global_listener(d->display,
3532 display_handle_global, d);
3533
3534 /* Process connection events. */
3535 wl_display_iterate(d->display, WL_DISPLAY_READABLE);
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003536#ifdef HAVE_CAIRO_EGL
Kristian Høgsberg297c6312011-02-04 14:11:33 -05003537 if (init_egl(d) < 0)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003538 return NULL;
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003539#endif
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -05003540
Kristian Høgsberg0d5007a2011-02-09 10:57:44 -05003541 d->image_target_texture_2d =
3542 (void *) eglGetProcAddress("glEGLImageTargetTexture2DOES");
3543 d->create_image = (void *) eglGetProcAddress("eglCreateImageKHR");
3544 d->destroy_image = (void *) eglGetProcAddress("eglDestroyImageKHR");
3545
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03003546 create_cursors(d);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04003547
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04003548 d->theme = theme_create();
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04003549
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003550 wl_list_init(&d->window_list);
3551
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003552 return d;
3553}
3554
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003555static void
3556display_destroy_outputs(struct display *display)
3557{
3558 struct output *tmp;
3559 struct output *output;
3560
3561 wl_list_for_each_safe(output, tmp, &display->output_list, link)
3562 output_destroy(output);
3563}
3564
Pekka Paalanene1207c72011-12-16 12:02:09 +02003565static void
3566display_destroy_inputs(struct display *display)
3567{
3568 struct input *tmp;
3569 struct input *input;
3570
3571 wl_list_for_each_safe(input, tmp, &display->input_list, link)
3572 input_destroy(input);
3573}
3574
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003575void
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003576display_destroy(struct display *display)
3577{
Pekka Paalanenc2052982011-12-16 11:41:32 +02003578 if (!wl_list_empty(&display->window_list))
3579 fprintf(stderr, "toytoolkit warning: windows exist.\n");
3580
3581 if (!wl_list_empty(&display->deferred_list))
3582 fprintf(stderr, "toytoolkit warning: deferred tasks exist.\n");
3583
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003584 display_destroy_outputs(display);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003585 display_destroy_inputs(display);
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003586
Daniel Stone97f68542012-05-30 16:32:01 +01003587 xkb_context_unref(display->xkb_context);
Pekka Paalanen325bb602011-12-19 10:31:45 +02003588
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04003589 theme_destroy(display->theme);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03003590 destroy_cursors(display);
Pekka Paalanen325bb602011-12-19 10:31:45 +02003591
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003592#ifdef HAVE_CAIRO_EGL
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003593 fini_egl(display);
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003594#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003595
Pekka Paalanenc2052982011-12-16 11:41:32 +02003596 if (display->shell)
3597 wl_shell_destroy(display->shell);
3598
3599 if (display->shm)
3600 wl_shm_destroy(display->shm);
3601
3602 if (display->data_device_manager)
3603 wl_data_device_manager_destroy(display->data_device_manager);
3604
3605 wl_compositor_destroy(display->compositor);
3606
3607 close(display->epoll_fd);
3608
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003609 wl_display_flush(display->display);
Kristian Høgsbergfcfc83f2012-02-28 14:29:19 -05003610 wl_display_disconnect(display->display);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003611 free(display);
3612}
3613
3614void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003615display_set_user_data(struct display *display, void *data)
3616{
3617 display->user_data = data;
3618}
3619
3620void *
3621display_get_user_data(struct display *display)
3622{
3623 return display->user_data;
3624}
3625
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -04003626struct wl_display *
3627display_get_display(struct display *display)
3628{
3629 return display->display;
3630}
3631
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003632struct output *
3633display_get_output(struct display *display)
3634{
3635 return container_of(display->output_list.next, struct output, link);
3636}
3637
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003638struct wl_compositor *
3639display_get_compositor(struct display *display)
3640{
3641 return display->compositor;
Kristian Høgsberg61017b12008-11-02 18:51:48 -05003642}
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003643
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003644uint32_t
3645display_get_serial(struct display *display)
3646{
3647 return display->serial;
3648}
3649
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003650EGLDisplay
3651display_get_egl_display(struct display *d)
3652{
3653 return d->dpy;
3654}
3655
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003656struct wl_data_source *
3657display_create_data_source(struct display *display)
3658{
3659 return wl_data_device_manager_create_data_source(display->data_device_manager);
3660}
3661
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003662EGLConfig
Benjamin Franzke0c991632011-09-27 21:57:31 +02003663display_get_argb_egl_config(struct display *d)
3664{
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003665 return d->argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003666}
3667
Kristian Høgsberg58eec362011-01-19 14:27:42 -05003668struct wl_shell *
3669display_get_shell(struct display *display)
3670{
3671 return display->shell;
3672}
3673
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003674int
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003675display_acquire_window_surface(struct display *display,
3676 struct window *window,
3677 EGLContext ctx)
3678{
Benjamin Franzke22d54812011-07-16 19:50:32 +00003679#ifdef HAVE_CAIRO_EGL
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003680 struct egl_window_surface_data *data;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003681 cairo_device_t *device;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003682
3683 if (!window->cairo_surface)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003684 return -1;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003685 device = cairo_surface_get_device(window->cairo_surface);
3686 if (!device)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003687 return -1;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003688
Benjamin Franzke0c991632011-09-27 21:57:31 +02003689 if (!ctx) {
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003690 if (device == display->argb_device)
Benjamin Franzke0c991632011-09-27 21:57:31 +02003691 ctx = display->argb_ctx;
3692 else
3693 assert(0);
3694 }
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003695
3696 data = cairo_surface_get_user_data(window->cairo_surface,
3697 &surface_data_key);
3698
Pekka Paalanen9015ead2011-12-19 13:57:59 +02003699 cairo_device_flush(device);
Benjamin Franzke0c991632011-09-27 21:57:31 +02003700 cairo_device_acquire(device);
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003701 if (!eglMakeCurrent(display->dpy, data->surf, data->surf, ctx))
3702 fprintf(stderr, "failed to make surface current\n");
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003703
3704 return 0;
3705#else
3706 return -1;
Benjamin Franzke22d54812011-07-16 19:50:32 +00003707#endif
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003708}
3709
3710void
Benjamin Franzke0c991632011-09-27 21:57:31 +02003711display_release_window_surface(struct display *display,
3712 struct window *window)
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003713{
Benjamin Franzke0c991632011-09-27 21:57:31 +02003714#ifdef HAVE_CAIRO_EGL
3715 cairo_device_t *device;
3716
3717 device = cairo_surface_get_device(window->cairo_surface);
3718 if (!device)
3719 return;
3720
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003721 if (!eglMakeCurrent(display->dpy, NULL, NULL, display->argb_ctx))
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003722 fprintf(stderr, "failed to make context current\n");
Benjamin Franzke0c991632011-09-27 21:57:31 +02003723 cairo_device_release(device);
3724#endif
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003725}
3726
3727void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003728display_defer(struct display *display, struct task *task)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003729{
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003730 wl_list_insert(&display->deferred_list, &task->link);
3731}
3732
3733void
3734display_watch_fd(struct display *display,
3735 int fd, uint32_t events, struct task *task)
3736{
3737 struct epoll_event ep;
3738
3739 ep.events = events;
3740 ep.data.ptr = task;
3741 epoll_ctl(display->epoll_fd, EPOLL_CTL_ADD, fd, &ep);
3742}
3743
3744void
3745display_run(struct display *display)
3746{
3747 struct task *task;
3748 struct epoll_event ep[16];
3749 int i, count;
3750
Pekka Paalanen826d7952011-12-15 10:14:07 +02003751 display->running = 1;
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003752 while (1) {
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05003753 wl_display_flush(display->display);
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003754
3755 while (!wl_list_empty(&display->deferred_list)) {
3756 task = container_of(display->deferred_list.next,
3757 struct task, link);
3758 wl_list_remove(&task->link);
3759 task->run(task, 0);
3760 }
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05003761
3762 if (!display->running)
3763 break;
3764
3765 wl_display_flush(display->display);
3766
3767 count = epoll_wait(display->epoll_fd,
3768 ep, ARRAY_LENGTH(ep), -1);
3769 for (i = 0; i < count; i++) {
3770 task = ep[i].data.ptr;
3771 task->run(task, ep[i].events);
3772 }
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003773 }
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003774}
Pekka Paalanen826d7952011-12-15 10:14:07 +02003775
3776void
3777display_exit(struct display *display)
3778{
3779 display->running = 0;
3780}