blob: 93299e176ef501c310797c47016d2a0b9ed234d5 [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øgsbergdd263e52012-07-09 22:22:37 -04001263 widget->window->input_region =
1264 wl_compositor_create_region(display->compositor);
1265 wl_region_add(widget->window->input_region,
1266 t->margin, t->margin,
1267 width - 2 * t->margin,
1268 height - 2 * t->margin);
1269
Kristian Høgsberg291c69c2012-05-15 22:12:54 -04001270 opaque_margin = t->margin + t->frame_radius;
Martin Minarik1998b152012-05-10 02:04:35 +02001271
1272 wl_list_for_each(button, &frame->buttons_list, link)
1273 button->widget->opaque = 0;
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05001274 } else {
1275 decoration_width = 0;
1276 decoration_height = 0;
1277
1278 allocation.x = 0;
1279 allocation.y = 0;
1280 allocation.width = width;
1281 allocation.height = height;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001282 opaque_margin = 0;
Martin Minarik1998b152012-05-10 02:04:35 +02001283
1284 wl_list_for_each(button, &frame->buttons_list, link)
1285 button->widget->opaque = 1;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001286 }
1287
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001288 widget_set_allocation(child, allocation.x, allocation.y,
1289 allocation.width, allocation.height);
1290
1291 if (child->resize_handler)
1292 child->resize_handler(child,
1293 allocation.width,
1294 allocation.height,
1295 child->user_data);
1296
Scott Moreauf7e498c2012-05-14 11:39:29 -06001297 width = child->allocation.width + decoration_width;
1298 height = child->allocation.height + decoration_height;
1299
Scott Moreauf7e498c2012-05-14 11:39:29 -06001300 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{
Ander Conselvan de Oliveiraddca4962012-07-16 14:15:49 +03002440 int force = 0;
2441
2442 if (input->pointer_enter_serial > input->cursor_serial)
2443 force = 1;
2444
2445 if (!force && pointer == input->current_cursor)
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002446 return;
2447
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002448 input->current_cursor = pointer;
Kristian Høgsberg11f600d2012-06-22 10:52:58 -04002449 input->cursor_serial = input->pointer_enter_serial;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03002450 if (!input->cursor_frame_cb)
2451 pointer_surface_frame_callback(input, NULL, 0);
Ander Conselvan de Oliveiraddca4962012-07-16 14:15:49 +03002452 else if (force) {
2453 /* The current frame callback may be stuck if, for instance,
2454 * the set cursor request was processed by the server after
2455 * this client lost the focus. In this case the cursor surface
2456 * might not be mapped and the frame callback wouldn't ever
2457 * complete. Send a set_cursor and attach to try to map the
2458 * cursor surface again so that the callback will finish */
2459 input_set_pointer_image_index(input, 0);
2460 }
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04002461}
2462
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002463struct wl_data_device *
2464input_get_data_device(struct input *input)
2465{
2466 return input->data_device;
2467}
2468
2469void
2470input_set_selection(struct input *input,
2471 struct wl_data_source *source, uint32_t time)
2472{
2473 wl_data_device_set_selection(input->data_device, source, time);
2474}
2475
2476void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002477input_accept(struct input *input, const char *type)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002478{
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002479 wl_data_offer_accept(input->drag_offer->offer,
2480 input->pointer_enter_serial, type);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002481}
2482
2483static void
2484offer_io_func(struct task *task, uint32_t events)
2485{
2486 struct data_offer *offer =
2487 container_of(task, struct data_offer, io_task);
2488 unsigned int len;
2489 char buffer[4096];
2490
2491 len = read(offer->fd, buffer, sizeof buffer);
2492 offer->func(buffer, len,
2493 offer->x, offer->y, offer->user_data);
2494
2495 if (len == 0) {
2496 close(offer->fd);
2497 data_offer_destroy(offer);
2498 }
2499}
2500
2501static void
2502data_offer_receive_data(struct data_offer *offer, const char *mime_type,
2503 data_func_t func, void *user_data)
2504{
2505 int p[2];
2506
Jonas Ådahl3685c3a2012-03-30 23:10:27 +02002507 if (pipe2(p, O_CLOEXEC) == -1)
2508 return;
2509
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002510 wl_data_offer_receive(offer->offer, mime_type, p[1]);
2511 close(p[1]);
2512
2513 offer->io_task.run = offer_io_func;
2514 offer->fd = p[0];
2515 offer->func = func;
2516 offer->refcount++;
2517 offer->user_data = user_data;
2518
2519 display_watch_fd(offer->input->display,
2520 offer->fd, EPOLLIN, &offer->io_task);
2521}
2522
2523void
2524input_receive_drag_data(struct input *input, const char *mime_type,
2525 data_func_t func, void *data)
2526{
2527 data_offer_receive_data(input->drag_offer, mime_type, func, data);
2528 input->drag_offer->x = input->sx;
2529 input->drag_offer->y = input->sy;
2530}
2531
2532int
2533input_receive_selection_data(struct input *input, const char *mime_type,
2534 data_func_t func, void *data)
2535{
2536 char **p;
2537
2538 if (input->selection_offer == NULL)
2539 return -1;
2540
2541 for (p = input->selection_offer->types.data; *p; p++)
2542 if (strcmp(mime_type, *p) == 0)
2543 break;
2544
2545 if (*p == NULL)
2546 return -1;
2547
2548 data_offer_receive_data(input->selection_offer,
2549 mime_type, func, data);
2550 return 0;
Kristian Høgsberg41da9082010-11-30 14:01:07 -05002551}
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04002552
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05002553int
2554input_receive_selection_data_to_fd(struct input *input,
2555 const char *mime_type, int fd)
2556{
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04002557 if (input->selection_offer)
2558 wl_data_offer_receive(input->selection_offer->offer,
2559 mime_type, fd);
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05002560
2561 return 0;
2562}
2563
Kristian Høgsberg41da9082010-11-30 14:01:07 -05002564void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002565window_move(struct window *window, struct input *input, uint32_t serial)
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002566{
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002567 if (!window->shell_surface)
2568 return;
2569
Daniel Stone37816df2012-05-16 18:45:18 +01002570 wl_shell_surface_move(window->shell_surface, input->seat, serial);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002571}
2572
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002573static void
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002574idle_resize(struct window *window)
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002575{
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002576 struct widget *widget;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002577
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002578 window->resize_needed = 0;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002579 widget = window->widget;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002580 widget_set_allocation(widget,
2581 window->pending_allocation.x,
2582 window->pending_allocation.y,
2583 window->pending_allocation.width,
2584 window->pending_allocation.height);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002585
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002586 if (window->input_region) {
2587 wl_region_destroy(window->input_region);
2588 window->input_region = NULL;
2589 }
2590
2591 if (window->opaque_region) {
2592 wl_region_destroy(window->opaque_region);
2593 window->opaque_region = NULL;
2594 }
2595
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002596 if (widget->resize_handler)
2597 widget->resize_handler(widget,
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002598 widget->allocation.width,
2599 widget->allocation.height,
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002600 widget->user_data);
2601
Kristian Høgsberg8e054f72012-01-31 11:53:20 -05002602 if (window->allocation.width != widget->allocation.width ||
2603 window->allocation.height != widget->allocation.height) {
2604 window->allocation = widget->allocation;
2605 window_schedule_redraw(window);
2606 }
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002607}
2608
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002609void
2610window_schedule_resize(struct window *window, int width, int height)
2611{
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002612 window->pending_allocation.x = 0;
2613 window->pending_allocation.y = 0;
2614 window->pending_allocation.width = width;
2615 window->pending_allocation.height = height;
2616
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002617 window->resize_needed = 1;
2618 window_schedule_redraw(window);
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002619}
2620
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002621void
2622widget_schedule_resize(struct widget *widget, int32_t width, int32_t height)
2623{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002624 window_schedule_resize(widget->window, width, height);
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002625}
2626
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002627static void
Scott Moreauff1db4a2012-04-17 19:06:18 -06002628handle_ping(void *data, struct wl_shell_surface *shell_surface,
2629 uint32_t serial)
2630{
2631 wl_shell_surface_pong(shell_surface, serial);
2632}
2633
2634static void
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002635handle_configure(void *data, struct wl_shell_surface *shell_surface,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002636 uint32_t edges, int32_t width, int32_t height)
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002637{
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002638 struct window *window = data;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002639
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002640 if (width <= 0 || height <= 0)
Tim Wiederhake8a6f7e32011-01-17 12:40:01 +01002641 return;
2642
Tim Wiederhakeb6761dc2011-01-17 17:50:07 +01002643 window->resize_edges = edges;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002644 window_schedule_resize(window, width, height);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002645}
2646
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002647static void
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002648menu_destroy(struct menu *menu)
2649{
2650 widget_destroy(menu->widget);
2651 window_destroy(menu->window);
2652 free(menu);
2653}
2654
2655static void
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002656handle_popup_done(void *data, struct wl_shell_surface *shell_surface)
2657{
2658 struct window *window = data;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002659 struct menu *menu = window->widget->user_data;
2660
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002661 /* FIXME: Need more context in this event, at least the input
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002662 * device. Or just use wl_callback. And this really needs to
2663 * be a window vfunc that the menu can set. And we need the
2664 * time. */
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002665
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002666 menu->func(window->parent, menu->current, window->parent->user_data);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002667 input_ungrab(menu->input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002668 menu_destroy(menu);
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002669}
2670
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002671static const struct wl_shell_surface_listener shell_surface_listener = {
Scott Moreauff1db4a2012-04-17 19:06:18 -06002672 handle_ping,
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002673 handle_configure,
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002674 handle_popup_done
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002675};
2676
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002677void
Benjamin Franzkecff904e2011-02-18 23:00:55 +01002678window_get_allocation(struct window *window,
2679 struct rectangle *allocation)
2680{
2681 *allocation = window->allocation;
2682}
2683
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002684static void
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002685widget_redraw(struct widget *widget)
2686{
2687 struct widget *child;
2688
2689 if (widget->redraw_handler)
2690 widget->redraw_handler(widget, widget->user_data);
2691 wl_list_for_each(child, &widget->child_list, link)
2692 widget_redraw(child);
2693}
2694
2695static void
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002696frame_callback(void *data, struct wl_callback *callback, uint32_t time)
2697{
2698 struct window *window = data;
2699
2700 wl_callback_destroy(callback);
2701 window->redraw_scheduled = 0;
2702 if (window->redraw_needed)
2703 window_schedule_redraw(window);
2704}
2705
2706static const struct wl_callback_listener listener = {
2707 frame_callback
2708};
2709
2710static void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002711idle_redraw(struct task *task, uint32_t events)
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002712{
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002713 struct window *window = container_of(task, struct window, redraw_task);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002714 struct wl_callback *callback;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002715
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04002716 if (window->resize_needed)
2717 idle_resize(window);
2718
Kristian Høgsberg5d129902012-01-10 10:49:41 -05002719 window_create_surface(window);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002720 widget_redraw(window->widget);
Kristian Høgsberg5d129902012-01-10 10:49:41 -05002721 window_flush(window);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002722 window->redraw_needed = 0;
Kristian Høgsberg84b76c72012-04-13 12:01:18 -04002723 wl_list_init(&window->redraw_task.link);
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002724
2725 callback = wl_surface_frame(window->surface);
2726 wl_callback_add_listener(callback, &listener, window);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002727}
2728
2729void
2730window_schedule_redraw(struct window *window)
2731{
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04002732 window->redraw_needed = 1;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002733 if (!window->redraw_scheduled) {
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002734 window->redraw_task.run = idle_redraw;
2735 display_defer(window->display, &window->redraw_task);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002736 window->redraw_scheduled = 1;
2737 }
2738}
2739
Kristian Høgsberg0ac16f02009-01-15 11:37:43 -05002740void
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002741window_set_fullscreen(struct window *window, int fullscreen)
2742{
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002743 if (!window->display->shell)
2744 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002745
Kristian Høgsberg547da5a2011-09-13 20:58:00 -04002746 if ((window->type == TYPE_FULLSCREEN) == fullscreen)
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002747 return;
2748
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002749 if (fullscreen) {
2750 window->type = TYPE_FULLSCREEN;
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002751 window->saved_allocation = window->allocation;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002752 wl_shell_surface_set_fullscreen(window->shell_surface,
2753 WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
2754 0, NULL);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002755 } else {
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002756 window->type = TYPE_TOPLEVEL;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002757 wl_shell_surface_set_toplevel(window->shell_surface);
2758 window_schedule_resize(window,
2759 window->saved_allocation.width,
2760 window->saved_allocation.height);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002761 }
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002762}
2763
2764void
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05002765window_set_maximized(struct window *window, int maximized)
2766{
2767 if (!window->display->shell)
2768 return;
2769
2770 if ((window->type == TYPE_MAXIMIZED) == maximized)
2771 return;
2772
2773 if (window->type == TYPE_TOPLEVEL) {
2774 window->saved_allocation = window->allocation;
2775 wl_shell_surface_set_maximized(window->shell_surface, NULL);
2776 window->type = TYPE_MAXIMIZED;
2777 } else {
2778 wl_shell_surface_set_toplevel(window->shell_surface);
2779 window->type = TYPE_TOPLEVEL;
2780 window_schedule_resize(window,
2781 window->saved_allocation.width,
2782 window->saved_allocation.height);
2783 }
2784}
2785
2786void
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002787window_set_user_data(struct window *window, void *data)
2788{
2789 window->user_data = data;
2790}
2791
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04002792void *
2793window_get_user_data(struct window *window)
2794{
2795 return window->user_data;
2796}
2797
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002798void
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002799window_set_key_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002800 window_key_handler_t handler)
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002801{
2802 window->key_handler = handler;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002803}
2804
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002805void
2806window_set_keyboard_focus_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002807 window_keyboard_focus_handler_t handler)
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002808{
2809 window->keyboard_focus_handler = handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002810}
2811
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002812void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002813window_set_data_handler(struct window *window, window_data_handler_t handler)
2814{
2815 window->data_handler = handler;
2816}
2817
2818void
2819window_set_drop_handler(struct window *window, window_drop_handler_t handler)
2820{
2821 window->drop_handler = handler;
2822}
2823
2824void
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002825window_set_close_handler(struct window *window,
2826 window_close_handler_t handler)
2827{
2828 window->close_handler = handler;
2829}
2830
2831void
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002832window_set_title(struct window *window, const char *title)
2833{
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -05002834 free(window->title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002835 window->title = strdup(title);
Kristian Høgsberg3e0fe5c2012-05-02 09:47:55 -04002836 if (window->shell_surface)
2837 wl_shell_surface_set_title(window->shell_surface, title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002838}
2839
2840const char *
2841window_get_title(struct window *window)
2842{
2843 return window->title;
2844}
2845
2846void
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002847window_set_text_cursor_position(struct window *window, int32_t x, int32_t y)
2848{
2849 struct text_cursor_position *text_cursor_position =
2850 window->display->text_cursor_position;
2851
Scott Moreau9295ce02012-06-01 12:46:10 -06002852 if (!text_cursor_position)
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002853 return;
2854
2855 text_cursor_position_notify(text_cursor_position,
Scott Moreauae712202012-06-01 12:46:09 -06002856 window->surface,
2857 wl_fixed_from_int(x),
2858 wl_fixed_from_int(y));
Scott Moreau7a1b32a2012-05-27 14:25:02 -06002859}
2860
2861void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002862window_damage(struct window *window, int32_t x, int32_t y,
2863 int32_t width, int32_t height)
2864{
2865 wl_surface_damage(window->surface, x, y, width, height);
2866}
2867
Casey Dahlin9074db52012-04-19 22:50:09 -04002868static void
2869surface_enter(void *data,
Rob Bradford7507b572012-05-15 17:55:34 +01002870 struct wl_surface *wl_surface, struct wl_output *wl_output)
Casey Dahlin9074db52012-04-19 22:50:09 -04002871{
Rob Bradford7507b572012-05-15 17:55:34 +01002872 struct window *window = data;
2873 struct output *output;
2874 struct output *output_found = NULL;
2875 struct window_output *window_output;
2876
2877 wl_list_for_each(output, &window->display->output_list, link) {
2878 if (output->output == wl_output) {
2879 output_found = output;
2880 break;
2881 }
2882 }
2883
2884 if (!output_found)
2885 return;
2886
2887 window_output = malloc (sizeof *window_output);
2888 window_output->output = output_found;
2889
2890 wl_list_insert (&window->window_output_list, &window_output->link);
Casey Dahlin9074db52012-04-19 22:50:09 -04002891}
2892
2893static void
2894surface_leave(void *data,
2895 struct wl_surface *wl_surface, struct wl_output *output)
2896{
Rob Bradford7507b572012-05-15 17:55:34 +01002897 struct window *window = data;
2898 struct window_output *window_output;
2899 struct window_output *window_output_found = NULL;
2900
2901 wl_list_for_each(window_output, &window->window_output_list, link) {
2902 if (window_output->output->output == output) {
2903 window_output_found = window_output;
2904 break;
2905 }
2906 }
2907
2908 if (window_output_found) {
2909 wl_list_remove(&window_output_found->link);
2910 free(window_output_found);
2911 }
Casey Dahlin9074db52012-04-19 22:50:09 -04002912}
2913
2914static const struct wl_surface_listener surface_listener = {
2915 surface_enter,
2916 surface_leave
2917};
2918
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002919static struct window *
Kristian Høgsberg962342c2012-06-26 16:29:50 -04002920window_create_internal(struct display *display,
2921 struct window *parent, int type)
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002922{
Kristian Høgsberg1cbaa6a2008-11-07 15:54:48 -05002923 struct window *window;
2924
2925 window = malloc(sizeof *window);
2926 if (window == NULL)
2927 return NULL;
2928
Kristian Høgsberg78231c82008-11-08 15:06:01 -05002929 memset(window, 0, sizeof *window);
Kristian Høgsberg40979232008-11-25 22:40:39 -05002930 window->display = display;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002931 window->parent = parent;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002932 window->surface = wl_compositor_create_surface(display->compositor);
Casey Dahlin9074db52012-04-19 22:50:09 -04002933 wl_surface_add_listener(window->surface, &surface_listener, window);
Kristian Høgsberg962342c2012-06-26 16:29:50 -04002934 if (type != TYPE_CUSTOM && display->shell) {
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002935 window->shell_surface =
2936 wl_shell_get_shell_surface(display->shell,
2937 window->surface);
2938 }
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002939 window->allocation.x = 0;
2940 window->allocation.y = 0;
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002941 window->allocation.width = 0;
2942 window->allocation.height = 0;
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002943 window->saved_allocation = window->allocation;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -04002944 window->transparent = 1;
Kristian Høgsberg962342c2012-06-26 16:29:50 -04002945 window->type = type;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002946 window->input_region = NULL;
2947 window->opaque_region = NULL;
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -05002948
Kristian Høgsberg297c6312011-02-04 14:11:33 -05002949 if (display->dpy)
Benjamin Franzke22d54812011-07-16 19:50:32 +00002950#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +01002951 window->buffer_type = WINDOW_BUFFER_TYPE_EGL_WINDOW;
Benjamin Franzke22d54812011-07-16 19:50:32 +00002952#else
2953 window->buffer_type = WINDOW_BUFFER_TYPE_SHM;
2954#endif
Yuval Fledel45568f62010-12-06 09:18:12 -05002955 else
2956 window->buffer_type = WINDOW_BUFFER_TYPE_SHM;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002957
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002958 wl_surface_set_user_data(window->surface, window);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04002959 wl_list_insert(display->window_list.prev, &window->link);
Kristian Høgsberg84b76c72012-04-13 12:01:18 -04002960 wl_list_init(&window->redraw_task.link);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002961
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002962 if (window->shell_surface) {
2963 wl_shell_surface_set_user_data(window->shell_surface, window);
2964 wl_shell_surface_add_listener(window->shell_surface,
2965 &shell_surface_listener, window);
2966 }
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002967
Rob Bradford7507b572012-05-15 17:55:34 +01002968 wl_list_init (&window->window_output_list);
2969
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002970 return window;
2971}
2972
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002973struct window *
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002974window_create(struct display *display)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002975{
2976 struct window *window;
2977
Kristian Høgsberg962342c2012-06-26 16:29:50 -04002978 window = window_create_internal(display, NULL, TYPE_NONE);
2979 if (!window)
2980 return NULL;
2981
2982 return window;
2983}
2984
2985struct window *
2986window_create_custom(struct display *display)
2987{
2988 struct window *window;
2989
2990 window = window_create_internal(display, NULL, TYPE_CUSTOM);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002991 if (!window)
2992 return NULL;
2993
2994 return window;
2995}
2996
2997struct window *
2998window_create_transient(struct display *display, struct window *parent,
Tiago Vignattidec76582012-05-21 16:47:46 +03002999 int32_t x, int32_t y, uint32_t flags)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05003000{
3001 struct window *window;
3002
Kristian Høgsberg962342c2012-06-26 16:29:50 -04003003 window = window_create_internal(parent->display,
3004 parent, TYPE_TRANSIENT);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05003005 if (!window)
3006 return NULL;
3007
3008 window->x = x;
3009 window->y = y;
3010
Kristian Høgsberg1517def2012-02-16 22:56:12 -05003011 if (display->shell)
3012 wl_shell_surface_set_transient(window->shell_surface,
Kristian Høgsberg8150b192012-06-27 10:22:58 -04003013 window->parent->surface,
Tiago Vignattidec76582012-05-21 16:47:46 +03003014 window->x, window->y, flags);
Kristian Høgsberg1517def2012-02-16 22:56:12 -05003015
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05003016 return window;
3017}
3018
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003019static void
Kristian Høgsberg19dd1d72012-01-09 10:42:41 -05003020menu_set_item(struct menu *menu, int sy)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003021{
3022 int next;
3023
3024 next = (sy - 8) / 20;
3025 if (menu->current != next) {
3026 menu->current = next;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003027 widget_schedule_redraw(menu->widget);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003028 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003029}
3030
3031static int
Kristian Høgsberg5f190ef2012-01-09 09:44:45 -05003032menu_motion_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003033 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003034 float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003035{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003036 struct menu *menu = data;
3037
3038 if (widget == menu->widget)
3039 menu_set_item(data, y);
3040
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03003041 return CURSOR_LEFT_PTR;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003042}
3043
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05003044static int
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003045menu_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003046 struct input *input, float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003047{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003048 struct menu *menu = data;
3049
3050 if (widget == menu->widget)
3051 menu_set_item(data, y);
3052
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03003053 return CURSOR_LEFT_PTR;
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003054}
3055
3056static void
3057menu_leave_handler(struct widget *widget, struct input *input, void *data)
3058{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003059 struct menu *menu = data;
3060
3061 if (widget == menu->widget)
3062 menu_set_item(data, -200);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003063}
3064
3065static void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05003066menu_button_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003067 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01003068 uint32_t button, enum wl_pointer_button_state state,
3069 void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003070
3071{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003072 struct menu *menu = data;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003073
Daniel Stone4dbadb12012-05-30 16:31:51 +01003074 if (state == WL_POINTER_BUTTON_STATE_PRESSED &&
3075 time - menu->time > 500) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003076 /* Either relase after press-drag-release or
3077 * click-motion-click. */
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003078 menu->func(menu->window->parent,
3079 menu->current, menu->window->parent->user_data);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003080 input_ungrab(input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003081 menu_destroy(menu);
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05003082 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003083}
3084
3085static void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003086menu_redraw_handler(struct widget *widget, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003087{
3088 cairo_t *cr;
3089 const int32_t r = 3, margin = 3;
3090 struct menu *menu = data;
3091 int32_t width, height, i;
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003092 struct window *window = widget->window;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003093
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003094 cr = cairo_create(window->cairo_surface);
3095 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
3096 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
3097 cairo_paint(cr);
3098
3099 width = window->allocation.width;
3100 height = window->allocation.height;
3101 rounded_rect(cr, 0, 0, width, height, r);
Kristian Høgsberg824c6d02012-01-19 13:54:09 -05003102
3103 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003104 cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
3105 cairo_fill(cr);
3106
3107 for (i = 0; i < menu->count; i++) {
3108 if (i == menu->current) {
3109 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
3110 cairo_rectangle(cr, margin, i * 20 + margin,
3111 width - 2 * margin, 20);
3112 cairo_fill(cr);
3113 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
3114 cairo_move_to(cr, 10, i * 20 + 16);
3115 cairo_show_text(cr, menu->entries[i]);
3116 } else {
3117 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
3118 cairo_move_to(cr, 10, i * 20 + 16);
3119 cairo_show_text(cr, menu->entries[i]);
3120 }
3121 }
3122
3123 cairo_destroy(cr);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003124}
3125
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003126void
3127window_show_menu(struct display *display,
3128 struct input *input, uint32_t time, struct window *parent,
3129 int32_t x, int32_t y,
3130 menu_func_t func, const char **entries, int count)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003131{
3132 struct window *window;
3133 struct menu *menu;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003134 const int32_t margin = 3;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003135
3136 menu = malloc(sizeof *menu);
3137 if (!menu)
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003138 return;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003139
Kristian Høgsberg962342c2012-06-26 16:29:50 -04003140 window = window_create_internal(parent->display, parent, TYPE_MENU);
Martin Olsson444799a2012-07-08 03:03:40 +02003141 if (!window) {
3142 free(menu);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003143 return;
Martin Olsson444799a2012-07-08 03:03:40 +02003144 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003145
3146 menu->window = window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003147 menu->widget = window_add_widget(menu->window, menu);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003148 menu->entries = entries;
3149 menu->count = count;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003150 menu->current = -1;
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003151 menu->time = time;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05003152 menu->func = func;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003153 menu->input = input;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003154 window->type = TYPE_MENU;
3155 window->x = x;
3156 window->y = y;
3157
Kristian Høgsberga6c8b002012-04-13 12:55:45 -04003158 input_ungrab(input);
Daniel Stone37816df2012-05-16 18:45:18 +01003159 wl_shell_surface_set_popup(window->shell_surface, input->seat,
Kristian Høgsbergf2eb68a2012-04-13 12:37:19 -04003160 display_get_serial(window->display),
Kristian Høgsberg8150b192012-06-27 10:22:58 -04003161 window->parent->surface,
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003162 window->x, window->y, 0);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003163
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003164 widget_set_redraw_handler(menu->widget, menu_redraw_handler);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05003165 widget_set_enter_handler(menu->widget, menu_enter_handler);
3166 widget_set_leave_handler(menu->widget, menu_leave_handler);
3167 widget_set_motion_handler(menu->widget, menu_motion_handler);
3168 widget_set_button_handler(menu->widget, menu_button_handler);
Kristian Høgsberg391649b2012-01-09 09:22:30 -05003169
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003170 input_grab(input, menu->widget, 0);
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05003171 window_schedule_resize(window, 200, count * 20 + margin * 2);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05003172}
3173
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05003174void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04003175window_set_buffer_type(struct window *window, enum window_buffer_type type)
3176{
3177 window->buffer_type = type;
3178}
3179
Kristian Høgsberg8357cd62011-05-13 13:24:56 -04003180
3181static void
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003182display_handle_geometry(void *data,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003183 struct wl_output *wl_output,
3184 int x, int y,
3185 int physical_width,
3186 int physical_height,
3187 int subpixel,
3188 const char *make,
3189 const char *model)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003190{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003191 struct output *output = data;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003192
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003193 output->allocation.x = x;
3194 output->allocation.y = y;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003195}
3196
3197static void
3198display_handle_mode(void *data,
3199 struct wl_output *wl_output,
3200 uint32_t flags,
3201 int width,
3202 int height,
3203 int refresh)
3204{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003205 struct output *output = data;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003206 struct display *display = output->display;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003207
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003208 if (flags & WL_OUTPUT_MODE_CURRENT) {
3209 output->allocation.width = width;
3210 output->allocation.height = height;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003211 if (display->output_configure_handler)
3212 (*display->output_configure_handler)(
3213 output, display->user_data);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003214 }
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003215}
3216
3217static const struct wl_output_listener output_listener = {
3218 display_handle_geometry,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04003219 display_handle_mode
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003220};
3221
3222static void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003223display_add_output(struct display *d, uint32_t id)
3224{
3225 struct output *output;
3226
3227 output = malloc(sizeof *output);
3228 if (output == NULL)
3229 return;
3230
3231 memset(output, 0, sizeof *output);
3232 output->display = d;
3233 output->output =
3234 wl_display_bind(d->display, id, &wl_output_interface);
3235 wl_list_insert(d->output_list.prev, &output->link);
3236
3237 wl_output_add_listener(output->output, &output_listener, output);
3238}
3239
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003240static void
3241output_destroy(struct output *output)
3242{
3243 if (output->destroy_handler)
3244 (*output->destroy_handler)(output, output->user_data);
3245
3246 wl_output_destroy(output->output);
3247 wl_list_remove(&output->link);
3248 free(output);
3249}
3250
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003251void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003252display_set_output_configure_handler(struct display *display,
3253 display_output_handler_t handler)
3254{
3255 struct output *output;
3256
3257 display->output_configure_handler = handler;
3258 if (!handler)
3259 return;
3260
3261 wl_list_for_each(output, &display->output_list, link)
3262 (*display->output_configure_handler)(output,
3263 display->user_data);
3264}
3265
3266void
3267output_set_user_data(struct output *output, void *data)
3268{
3269 output->user_data = data;
3270}
3271
3272void *
3273output_get_user_data(struct output *output)
3274{
3275 return output->user_data;
3276}
3277
3278void
3279output_set_destroy_handler(struct output *output,
3280 display_output_handler_t handler)
3281{
3282 output->destroy_handler = handler;
3283 /* FIXME: implement this, once we have way to remove outputs */
3284}
3285
3286void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003287output_get_allocation(struct output *output, struct rectangle *allocation)
3288{
3289 *allocation = output->allocation;
3290}
3291
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003292struct wl_output *
3293output_get_wl_output(struct output *output)
3294{
3295 return output->output;
3296}
3297
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003298static void
Daniel Stone97f68542012-05-30 16:32:01 +01003299fini_xkb(struct input *input)
3300{
3301 xkb_state_unref(input->xkb.state);
3302 xkb_map_unref(input->xkb.keymap);
3303}
3304
3305static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003306display_add_input(struct display *d, uint32_t id)
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003307{
3308 struct input *input;
3309
3310 input = malloc(sizeof *input);
3311 if (input == NULL)
3312 return;
3313
3314 memset(input, 0, sizeof *input);
3315 input->display = d;
Daniel Stone37816df2012-05-16 18:45:18 +01003316 input->seat = wl_display_bind(d->display, id, &wl_seat_interface);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003317 input->pointer_focus = NULL;
3318 input->keyboard_focus = NULL;
3319 wl_list_insert(d->input_list.prev, &input->link);
3320
Daniel Stone37816df2012-05-16 18:45:18 +01003321 wl_seat_add_listener(input->seat, &seat_listener, input);
3322 wl_seat_set_user_data(input->seat, input);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003323
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003324 input->data_device =
3325 wl_data_device_manager_get_data_device(d->data_device_manager,
Daniel Stone37816df2012-05-16 18:45:18 +01003326 input->seat);
3327 wl_data_device_add_listener(input->data_device, &data_device_listener,
3328 input);
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03003329
3330 input->pointer_surface = wl_compositor_create_surface(d->compositor);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003331
Kristian Høgsberg8b19c642012-06-20 18:00:13 -04003332 input->repeat_timer_fd = timerfd_create(CLOCK_MONOTONIC,
3333 TFD_CLOEXEC | TFD_NONBLOCK);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003334 input->repeat_task.run = keyboard_repeat_func;
3335 display_watch_fd(d, input->repeat_timer_fd,
3336 EPOLLIN, &input->repeat_task);
Kristian Høgsberg58eec362011-01-19 14:27:42 -05003337}
3338
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003339static void
Pekka Paalanene1207c72011-12-16 12:02:09 +02003340input_destroy(struct input *input)
3341{
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05003342 input_remove_keyboard_focus(input);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003343 input_remove_pointer_focus(input);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003344
3345 if (input->drag_offer)
3346 data_offer_destroy(input->drag_offer);
3347
3348 if (input->selection_offer)
3349 data_offer_destroy(input->selection_offer);
3350
3351 wl_data_device_destroy(input->data_device);
Daniel Stone97f68542012-05-30 16:32:01 +01003352 fini_xkb(input);
3353
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03003354 wl_surface_destroy(input->pointer_surface);
3355
Pekka Paalanene1207c72011-12-16 12:02:09 +02003356 wl_list_remove(&input->link);
Daniel Stone37816df2012-05-16 18:45:18 +01003357 wl_seat_destroy(input->seat);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04003358 close(input->repeat_timer_fd);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003359 free(input);
3360}
3361
3362static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003363display_handle_global(struct wl_display *display, uint32_t id,
3364 const char *interface, uint32_t version, void *data)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003365{
3366 struct display *d = data;
3367
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003368 if (strcmp(interface, "wl_compositor") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003369 d->compositor =
3370 wl_display_bind(display, id, &wl_compositor_interface);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003371 } else if (strcmp(interface, "wl_output") == 0) {
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003372 display_add_output(d, id);
Daniel Stone37816df2012-05-16 18:45:18 +01003373 } else if (strcmp(interface, "wl_seat") == 0) {
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04003374 display_add_input(d, id);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003375 } else if (strcmp(interface, "wl_shell") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003376 d->shell = wl_display_bind(display, id, &wl_shell_interface);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04003377 } else if (strcmp(interface, "wl_shm") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04003378 d->shm = wl_display_bind(display, id, &wl_shm_interface);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003379 } else if (strcmp(interface, "wl_data_device_manager") == 0) {
3380 d->data_device_manager =
3381 wl_display_bind(display, id,
3382 &wl_data_device_manager_interface);
Scott Moreau7a1b32a2012-05-27 14:25:02 -06003383 } else if (strcmp(interface, "text_cursor_position") == 0) {
3384 d->text_cursor_position =
3385 wl_display_bind(display, id,
3386 &text_cursor_position_interface);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003387 }
3388}
3389
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003390#ifdef HAVE_CAIRO_EGL
Yuval Fledel45568f62010-12-06 09:18:12 -05003391static int
Kristian Høgsberg297c6312011-02-04 14:11:33 -05003392init_egl(struct display *d)
Yuval Fledel45568f62010-12-06 09:18:12 -05003393{
3394 EGLint major, minor;
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003395 EGLint n;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -04003396
Rob Clark6396ed32012-03-11 19:48:41 -05003397#ifdef USE_CAIRO_GLESV2
3398# define GL_BIT EGL_OPENGL_ES2_BIT
3399#else
3400# define GL_BIT EGL_OPENGL_BIT
3401#endif
3402
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003403 static const EGLint argb_cfg_attribs[] = {
3404 EGL_SURFACE_TYPE, EGL_WINDOW_BIT | EGL_PIXMAP_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003405 EGL_RED_SIZE, 1,
3406 EGL_GREEN_SIZE, 1,
3407 EGL_BLUE_SIZE, 1,
3408 EGL_ALPHA_SIZE, 1,
3409 EGL_DEPTH_SIZE, 1,
Rob Clark6396ed32012-03-11 19:48:41 -05003410 EGL_RENDERABLE_TYPE, GL_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003411 EGL_NONE
3412 };
Yuval Fledel45568f62010-12-06 09:18:12 -05003413
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003414#ifdef USE_CAIRO_GLESV2
3415 static const EGLint context_attribs[] = {
3416 EGL_CONTEXT_CLIENT_VERSION, 2,
3417 EGL_NONE
3418 };
3419 EGLint api = EGL_OPENGL_ES_API;
3420#else
3421 EGLint *context_attribs = NULL;
3422 EGLint api = EGL_OPENGL_API;
3423#endif
3424
Kristian Høgsberg91342c62011-04-14 14:44:58 -04003425 d->dpy = eglGetDisplay(d->display);
Yuval Fledel45568f62010-12-06 09:18:12 -05003426 if (!eglInitialize(d->dpy, &major, &minor)) {
3427 fprintf(stderr, "failed to initialize display\n");
3428 return -1;
3429 }
3430
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003431 if (!eglBindAPI(api)) {
Yuval Fledel45568f62010-12-06 09:18:12 -05003432 fprintf(stderr, "failed to bind api EGL_OPENGL_API\n");
3433 return -1;
3434 }
3435
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003436 if (!eglChooseConfig(d->dpy, argb_cfg_attribs,
3437 &d->argb_config, 1, &n) || n != 1) {
3438 fprintf(stderr, "failed to choose argb config\n");
Benjamin Franzke6693ac22011-02-10 12:04:30 +01003439 return -1;
3440 }
3441
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003442 d->argb_ctx = eglCreateContext(d->dpy, d->argb_config,
Kristian Høgsberg2d574392012-01-18 14:50:58 -05003443 EGL_NO_CONTEXT, context_attribs);
Benjamin Franzke0c991632011-09-27 21:57:31 +02003444 if (d->argb_ctx == NULL) {
Yuval Fledel45568f62010-12-06 09:18:12 -05003445 fprintf(stderr, "failed to create context\n");
3446 return -1;
3447 }
3448
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003449 if (!eglMakeCurrent(d->dpy, NULL, NULL, d->argb_ctx)) {
Tim Wiederhake9c7a8cc2011-02-11 19:37:40 +01003450 fprintf(stderr, "failed to make context current\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05003451 return -1;
3452 }
3453
Kristian Høgsberg8def2642011-01-14 17:41:33 -05003454#ifdef HAVE_CAIRO_EGL
Benjamin Franzke0c991632011-09-27 21:57:31 +02003455 d->argb_device = cairo_egl_device_create(d->dpy, d->argb_ctx);
3456 if (cairo_device_status(d->argb_device) != CAIRO_STATUS_SUCCESS) {
3457 fprintf(stderr, "failed to get cairo egl argb device\n");
3458 return -1;
3459 }
Yuval Fledel45568f62010-12-06 09:18:12 -05003460#endif
3461
3462 return 0;
3463}
3464
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003465static void
3466fini_egl(struct display *display)
3467{
3468#ifdef HAVE_CAIRO_EGL
3469 cairo_device_destroy(display->argb_device);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003470#endif
3471
3472 eglMakeCurrent(display->dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
3473 EGL_NO_CONTEXT);
3474
3475 eglTerminate(display->dpy);
3476 eglReleaseThread();
3477}
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003478#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003479
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003480static int
3481event_mask_update(uint32_t mask, void *data)
3482{
3483 struct display *d = data;
3484
3485 d->mask = mask;
3486
3487 return 0;
3488}
3489
3490static void
3491handle_display_data(struct task *task, uint32_t events)
3492{
3493 struct display *display =
3494 container_of(task, struct display, display_task);
3495
3496 wl_display_iterate(display->display, display->mask);
3497}
3498
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003499struct display *
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04003500display_create(int argc, char *argv[])
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003501{
3502 struct display *d;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04003503
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04003504 argc = parse_options(xkb_options,
3505 ARRAY_LENGTH(xkb_options), argc, argv);
Kristian Høgsbergc7c60642010-08-29 21:33:39 -04003506
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003507 d = malloc(sizeof *d);
3508 if (d == NULL)
3509 return NULL;
3510
Tim Wiederhake81bd9792011-01-23 23:25:26 +01003511 memset(d, 0, sizeof *d);
3512
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05003513 d->display = wl_display_connect(NULL);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003514 if (d->display == NULL) {
3515 fprintf(stderr, "failed to create display: %m\n");
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003516 return NULL;
3517 }
3518
Pekka Paalanen647f2bf2012-05-30 15:53:43 +03003519 d->epoll_fd = os_epoll_create_cloexec();
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003520 d->display_fd = wl_display_get_fd(d->display, event_mask_update, d);
3521 d->display_task.run = handle_display_data;
3522 display_watch_fd(d, d->display_fd, EPOLLIN, &d->display_task);
3523
3524 wl_list_init(&d->deferred_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003525 wl_list_init(&d->input_list);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003526 wl_list_init(&d->output_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04003527
Daniel Stone97f68542012-05-30 16:32:01 +01003528 d->xkb_context = xkb_context_new(0);
Daniel Stoneb7452fe2012-06-01 12:14:06 +01003529 if (d->xkb_context == NULL) {
3530 fprintf(stderr, "Failed to create XKB context\n");
Daniel Stone97f68542012-05-30 16:32:01 +01003531 return NULL;
3532 }
3533
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003534 /* Set up listener so we'll catch all events. */
3535 wl_display_add_global_listener(d->display,
3536 display_handle_global, d);
3537
3538 /* Process connection events. */
3539 wl_display_iterate(d->display, WL_DISPLAY_READABLE);
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003540#ifdef HAVE_CAIRO_EGL
Kristian Høgsberg297c6312011-02-04 14:11:33 -05003541 if (init_egl(d) < 0)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003542 return NULL;
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003543#endif
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -05003544
Kristian Høgsberg0d5007a2011-02-09 10:57:44 -05003545 d->image_target_texture_2d =
3546 (void *) eglGetProcAddress("glEGLImageTargetTexture2DOES");
3547 d->create_image = (void *) eglGetProcAddress("eglCreateImageKHR");
3548 d->destroy_image = (void *) eglGetProcAddress("eglDestroyImageKHR");
3549
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03003550 create_cursors(d);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04003551
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04003552 d->theme = theme_create();
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04003553
Kristian Høgsberg478d9262010-06-08 20:34:11 -04003554 wl_list_init(&d->window_list);
3555
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003556 return d;
3557}
3558
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003559static void
3560display_destroy_outputs(struct display *display)
3561{
3562 struct output *tmp;
3563 struct output *output;
3564
3565 wl_list_for_each_safe(output, tmp, &display->output_list, link)
3566 output_destroy(output);
3567}
3568
Pekka Paalanene1207c72011-12-16 12:02:09 +02003569static void
3570display_destroy_inputs(struct display *display)
3571{
3572 struct input *tmp;
3573 struct input *input;
3574
3575 wl_list_for_each_safe(input, tmp, &display->input_list, link)
3576 input_destroy(input);
3577}
3578
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003579void
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003580display_destroy(struct display *display)
3581{
Pekka Paalanenc2052982011-12-16 11:41:32 +02003582 if (!wl_list_empty(&display->window_list))
3583 fprintf(stderr, "toytoolkit warning: windows exist.\n");
3584
3585 if (!wl_list_empty(&display->deferred_list))
3586 fprintf(stderr, "toytoolkit warning: deferred tasks exist.\n");
3587
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003588 display_destroy_outputs(display);
Pekka Paalanene1207c72011-12-16 12:02:09 +02003589 display_destroy_inputs(display);
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02003590
Daniel Stone97f68542012-05-30 16:32:01 +01003591 xkb_context_unref(display->xkb_context);
Pekka Paalanen325bb602011-12-19 10:31:45 +02003592
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04003593 theme_destroy(display->theme);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03003594 destroy_cursors(display);
Pekka Paalanen325bb602011-12-19 10:31:45 +02003595
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003596#ifdef HAVE_CAIRO_EGL
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003597 fini_egl(display);
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04003598#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003599
Pekka Paalanenc2052982011-12-16 11:41:32 +02003600 if (display->shell)
3601 wl_shell_destroy(display->shell);
3602
3603 if (display->shm)
3604 wl_shm_destroy(display->shm);
3605
3606 if (display->data_device_manager)
3607 wl_data_device_manager_destroy(display->data_device_manager);
3608
3609 wl_compositor_destroy(display->compositor);
3610
3611 close(display->epoll_fd);
3612
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003613 wl_display_flush(display->display);
Kristian Høgsbergfcfc83f2012-02-28 14:29:19 -05003614 wl_display_disconnect(display->display);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02003615 free(display);
3616}
3617
3618void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02003619display_set_user_data(struct display *display, void *data)
3620{
3621 display->user_data = data;
3622}
3623
3624void *
3625display_get_user_data(struct display *display)
3626{
3627 return display->user_data;
3628}
3629
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -04003630struct wl_display *
3631display_get_display(struct display *display)
3632{
3633 return display->display;
3634}
3635
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003636struct output *
3637display_get_output(struct display *display)
3638{
3639 return container_of(display->output_list.next, struct output, link);
3640}
3641
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003642struct wl_compositor *
3643display_get_compositor(struct display *display)
3644{
3645 return display->compositor;
Kristian Høgsberg61017b12008-11-02 18:51:48 -05003646}
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003647
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003648uint32_t
3649display_get_serial(struct display *display)
3650{
3651 return display->serial;
3652}
3653
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003654EGLDisplay
3655display_get_egl_display(struct display *d)
3656{
3657 return d->dpy;
3658}
3659
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003660struct wl_data_source *
3661display_create_data_source(struct display *display)
3662{
3663 return wl_data_device_manager_create_data_source(display->data_device_manager);
3664}
3665
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003666EGLConfig
Benjamin Franzke0c991632011-09-27 21:57:31 +02003667display_get_argb_egl_config(struct display *d)
3668{
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003669 return d->argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003670}
3671
Kristian Høgsberg58eec362011-01-19 14:27:42 -05003672struct wl_shell *
3673display_get_shell(struct display *display)
3674{
3675 return display->shell;
3676}
3677
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003678int
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003679display_acquire_window_surface(struct display *display,
3680 struct window *window,
3681 EGLContext ctx)
3682{
Benjamin Franzke22d54812011-07-16 19:50:32 +00003683#ifdef HAVE_CAIRO_EGL
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003684 struct egl_window_surface_data *data;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003685 cairo_device_t *device;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003686
3687 if (!window->cairo_surface)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003688 return -1;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003689 device = cairo_surface_get_device(window->cairo_surface);
3690 if (!device)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003691 return -1;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003692
Benjamin Franzke0c991632011-09-27 21:57:31 +02003693 if (!ctx) {
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003694 if (device == display->argb_device)
Benjamin Franzke0c991632011-09-27 21:57:31 +02003695 ctx = display->argb_ctx;
3696 else
3697 assert(0);
3698 }
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003699
3700 data = cairo_surface_get_user_data(window->cairo_surface,
3701 &surface_data_key);
3702
Pekka Paalanen9015ead2011-12-19 13:57:59 +02003703 cairo_device_flush(device);
Benjamin Franzke0c991632011-09-27 21:57:31 +02003704 cairo_device_acquire(device);
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003705 if (!eglMakeCurrent(display->dpy, data->surf, data->surf, ctx))
3706 fprintf(stderr, "failed to make surface current\n");
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003707
3708 return 0;
3709#else
3710 return -1;
Benjamin Franzke22d54812011-07-16 19:50:32 +00003711#endif
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003712}
3713
3714void
Benjamin Franzke0c991632011-09-27 21:57:31 +02003715display_release_window_surface(struct display *display,
3716 struct window *window)
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003717{
Benjamin Franzke0c991632011-09-27 21:57:31 +02003718#ifdef HAVE_CAIRO_EGL
3719 cairo_device_t *device;
3720
3721 device = cairo_surface_get_device(window->cairo_surface);
3722 if (!device)
3723 return;
3724
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003725 if (!eglMakeCurrent(display->dpy, NULL, NULL, display->argb_ctx))
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003726 fprintf(stderr, "failed to make context current\n");
Benjamin Franzke0c991632011-09-27 21:57:31 +02003727 cairo_device_release(device);
3728#endif
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003729}
3730
3731void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003732display_defer(struct display *display, struct task *task)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003733{
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003734 wl_list_insert(&display->deferred_list, &task->link);
3735}
3736
3737void
3738display_watch_fd(struct display *display,
3739 int fd, uint32_t events, struct task *task)
3740{
3741 struct epoll_event ep;
3742
3743 ep.events = events;
3744 ep.data.ptr = task;
3745 epoll_ctl(display->epoll_fd, EPOLL_CTL_ADD, fd, &ep);
3746}
3747
3748void
3749display_run(struct display *display)
3750{
3751 struct task *task;
3752 struct epoll_event ep[16];
3753 int i, count;
3754
Pekka Paalanen826d7952011-12-15 10:14:07 +02003755 display->running = 1;
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003756 while (1) {
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05003757 wl_display_flush(display->display);
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003758
3759 while (!wl_list_empty(&display->deferred_list)) {
3760 task = container_of(display->deferred_list.next,
3761 struct task, link);
3762 wl_list_remove(&task->link);
3763 task->run(task, 0);
3764 }
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05003765
3766 if (!display->running)
3767 break;
3768
3769 wl_display_flush(display->display);
3770
3771 count = epoll_wait(display->epoll_fd,
3772 ep, ARRAY_LENGTH(ep), -1);
3773 for (i = 0; i < count; i++) {
3774 task = ep[i].data.ptr;
3775 task->run(task, ep[i].events);
3776 }
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003777 }
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003778}
Pekka Paalanen826d7952011-12-15 10:14:07 +02003779
3780void
3781display_exit(struct display *display)
3782{
3783 display->running = 0;
3784}