blob: 35c0333deb3c0c6a02b12602f3208e0d363e8fa4 [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øgsberg1cbaa6a2008-11-07 15:54:48 -050037#include <glib.h>
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -040038#include <sys/mman.h>
Kristian Høgsberg3a696272011-09-14 17:33:48 -040039#include <sys/epoll.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>
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -050059#include <X11/X.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øgsbergb91cd102010-08-16 16:17:42 -040063#include "cairo-util.h"
Kristian Høgsberg2f2cfae2008-11-08 22:46:30 -050064
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -050065#include "window.h"
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -050066
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -050067struct display {
Kristian Høgsberg40979232008-11-25 22:40:39 -050068 struct wl_display *display;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -050069 struct wl_compositor *compositor;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -040070 struct wl_shell *shell;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -040071 struct wl_shm *shm;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -040072 struct wl_data_device_manager *data_device_manager;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -040073 EGLDisplay dpy;
Kristian Høgsberg8e81df42012-01-11 14:24:46 -050074 EGLConfig argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +020075 EGLContext argb_ctx;
Benjamin Franzke0c991632011-09-27 21:57:31 +020076 cairo_device_t *argb_device;
Kristian Høgsberg3a696272011-09-14 17:33:48 -040077
78 int display_fd;
79 uint32_t mask;
80 struct task display_task;
81
82 int epoll_fd;
83 struct wl_list deferred_list;
84
Pekka Paalanen826d7952011-12-15 10:14:07 +020085 int running;
86
Kristian Høgsberg478d9262010-06-08 20:34:11 -040087 struct wl_list window_list;
Kristian Høgsberg808fd412010-07-20 17:06:19 -040088 struct wl_list input_list;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -050089 struct wl_list output_list;
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -040090 cairo_surface_t *active_frame, *inactive_frame, *shadow;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -050091 int frame_radius;
Kristian Høgsberg3e6e7e62010-07-02 15:12:02 -040092 struct xkb_desc *xkb;
Kristian Høgsberg9a686242010-08-18 15:28:04 -040093 cairo_surface_t **pointer_surfaces;
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -040094
Kristian Høgsberg0d5007a2011-02-09 10:57:44 -050095 PFNGLEGLIMAGETARGETTEXTURE2DOESPROC image_target_texture_2d;
96 PFNEGLCREATEIMAGEKHRPROC create_image;
97 PFNEGLDESTROYIMAGEKHRPROC destroy_image;
Pekka Paalanen999c5b52011-11-30 10:52:38 +020098
99 display_output_handler_t output_configure_handler;
100
101 void *user_data;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -0500102};
103
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400104enum {
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400105 TYPE_TOPLEVEL,
Kristian Høgsbergf8ab46e2011-09-08 16:56:38 -0400106 TYPE_FULLSCREEN,
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -0500107 TYPE_MAXIMIZED,
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400108 TYPE_TRANSIENT,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -0500109 TYPE_MENU,
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400110 TYPE_CUSTOM
111};
112
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -0500113struct window {
114 struct display *display;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500115 struct window *parent;
Kristian Høgsberg61017b12008-11-02 18:51:48 -0500116 struct wl_surface *surface;
Pekka Paalanen9d1613e2011-11-25 12:09:16 +0200117 struct wl_shell_surface *shell_surface;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500118 struct wl_region *input_region;
119 struct wl_region *opaque_region;
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -0500120 char *title;
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500121 struct rectangle allocation, saved_allocation, server_allocation;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -0500122 struct rectangle pending_allocation;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500123 int x, y;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400124 int resize_edges;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -0400125 int redraw_scheduled;
Kristian Høgsberg3a696272011-09-14 17:33:48 -0400126 struct task redraw_task;
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500127 int resize_scheduled;
128 struct task resize_task;
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400129 int type;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400130 int transparent;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400131 struct input *keyboard_device;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400132 enum window_buffer_type buffer_type;
Kristian Høgsberg78231c82008-11-08 15:06:01 -0500133
Kristian Høgsberg6a1b2012009-12-16 14:43:37 -0500134 cairo_surface_t *cairo_surface, *pending_surface;
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -0500135
Kristian Høgsberg6e83d582008-12-08 00:01:36 -0500136 window_key_handler_t key_handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -0500137 window_keyboard_focus_handler_t keyboard_focus_handler;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400138 window_data_handler_t data_handler;
139 window_drop_handler_t drop_handler;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500140 window_close_handler_t close_handler;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400141
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +0200142 struct frame *frame;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500143 struct widget *widget;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500144
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -0500145 void *user_data;
Kristian Høgsberg478d9262010-06-08 20:34:11 -0400146 struct wl_list link;
Kristian Høgsberg61017b12008-11-02 18:51:48 -0500147};
148
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500149struct widget {
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -0500150 struct window *window;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500151 struct wl_list child_list;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400152 struct wl_list link;
153 struct rectangle allocation;
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500154 widget_resize_handler_t resize_handler;
155 widget_redraw_handler_t redraw_handler;
Kristian Høgsbergee143232012-01-09 08:42:24 -0500156 widget_enter_handler_t enter_handler;
157 widget_leave_handler_t leave_handler;
Kristian Høgsberg04e98342012-01-09 09:36:16 -0500158 widget_motion_handler_t motion_handler;
Kristian Høgsberga8a0db32012-01-09 11:12:05 -0500159 widget_button_handler_t button_handler;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400160 void *user_data;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500161 int opaque;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400162};
163
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400164struct input {
165 struct display *display;
166 struct wl_input_device *input_device;
167 struct window *pointer_focus;
168 struct window *keyboard_focus;
Kristian Høgsberg7d804062010-09-07 21:50:06 -0400169 uint32_t current_pointer_image;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400170 uint32_t modifiers;
Pekka Paalanendfb93a92012-02-13 15:33:28 +0200171 int32_t sx, sy;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400172 struct wl_list link;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400173
Kristian Høgsbergb6323512012-01-11 00:04:42 -0500174 struct widget *focus_widget;
Kristian Høgsberg831dd522012-01-10 23:46:33 -0500175 struct widget *grab;
176 uint32_t grab_button;
177
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400178 struct wl_data_device *data_device;
179 struct data_offer *drag_offer;
180 struct data_offer *selection_offer;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400181};
182
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500183struct output {
184 struct display *display;
185 struct wl_output *output;
186 struct rectangle allocation;
187 struct wl_list link;
Pekka Paalanen999c5b52011-11-30 10:52:38 +0200188
189 display_output_handler_t destroy_handler;
190 void *user_data;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500191};
192
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500193struct frame {
194 struct widget *widget;
195 struct widget *child;
196 int margin;
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -0400197 int width;
198 int titlebar_height;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500199};
200
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500201struct menu {
202 struct window *window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500203 struct widget *widget;
Kristian Høgsberg831dd522012-01-10 23:46:33 -0500204 struct input *input;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500205 const char **entries;
206 uint32_t time;
207 int current;
208 int count;
209 menu_func_t func;
210};
211
Kristian Høgsberg7d804062010-09-07 21:50:06 -0400212enum {
213 POINTER_DEFAULT = 100,
214 POINTER_UNSET
215};
216
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500217enum window_location {
218 WINDOW_INTERIOR = 0,
219 WINDOW_RESIZING_TOP = 1,
220 WINDOW_RESIZING_BOTTOM = 2,
221 WINDOW_RESIZING_LEFT = 4,
222 WINDOW_RESIZING_TOP_LEFT = 5,
223 WINDOW_RESIZING_BOTTOM_LEFT = 6,
224 WINDOW_RESIZING_RIGHT = 8,
225 WINDOW_RESIZING_TOP_RIGHT = 9,
226 WINDOW_RESIZING_BOTTOM_RIGHT = 10,
227 WINDOW_RESIZING_MASK = 15,
228 WINDOW_EXTERIOR = 16,
229 WINDOW_TITLEBAR = 17,
230 WINDOW_CLIENT_AREA = 18,
231};
232
Kristian Høgsbergc7c60642010-08-29 21:33:39 -0400233const char *option_xkb_layout = "us";
234const char *option_xkb_variant = "";
235const char *option_xkb_options = "";
236
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400237static const struct weston_option xkb_options[] = {
238 { WESTON_OPTION_STRING, "xkb-layout", 0, &option_xkb_layout },
239 { WESTON_OPTION_STRING, "xkb-variant", 0, &option_xkb_variant },
240 { WESTON_OPTION_STRING, "xkb-options", 0, &option_xkb_options },
Kristian Høgsbergc7c60642010-08-29 21:33:39 -0400241};
242
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400243static const cairo_user_data_key_t surface_data_key;
244struct surface_data {
245 struct wl_buffer *buffer;
246};
247
Kristian Høgsberg1f5d5072010-11-29 08:13:35 -0500248#define MULT(_d,c,a,t) \
249 do { t = c * a + 0x7f; _d = ((t >> 8) + t) >> 8; } while (0)
250
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500251#ifdef HAVE_CAIRO_EGL
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400252
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100253struct egl_window_surface_data {
254 struct display *display;
255 struct wl_surface *surface;
256 struct wl_egl_window *window;
257 EGLSurface surf;
258};
259
260static void
261egl_window_surface_data_destroy(void *p)
262{
263 struct egl_window_surface_data *data = p;
264 struct display *d = data->display;
265
266 eglDestroySurface(d->dpy, data->surf);
267 wl_egl_window_destroy(data->window);
268 data->surface = NULL;
269
270 free(p);
271}
272
273static cairo_surface_t *
274display_create_egl_window_surface(struct display *display,
275 struct wl_surface *surface,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400276 uint32_t flags,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100277 struct rectangle *rectangle)
278{
279 cairo_surface_t *cairo_surface;
280 struct egl_window_surface_data *data;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400281 EGLConfig config;
Benjamin Franzke0c991632011-09-27 21:57:31 +0200282 cairo_device_t *device;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100283
284 data = malloc(sizeof *data);
285 if (data == NULL)
286 return NULL;
287
288 data->display = display;
289 data->surface = surface;
290
Kristian Høgsberg067fd602012-02-29 16:15:53 -0500291 config = display->argb_config;
292 device = display->argb_device;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400293
Kristian Høgsberg91342c62011-04-14 14:44:58 -0400294 data->window = wl_egl_window_create(surface,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100295 rectangle->width,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400296 rectangle->height);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100297
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400298 data->surf = eglCreateWindowSurface(display->dpy, config,
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500299 data->window, NULL);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100300
Benjamin Franzke0c991632011-09-27 21:57:31 +0200301 cairo_surface = cairo_gl_surface_create_for_egl(device,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100302 data->surf,
303 rectangle->width,
304 rectangle->height);
305
306 cairo_surface_set_user_data(cairo_surface, &surface_data_key,
307 data, egl_window_surface_data_destroy);
308
309 return cairo_surface;
310}
311
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500312struct egl_image_surface_data {
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400313 struct surface_data data;
Benjamin Franzke0c991632011-09-27 21:57:31 +0200314 cairo_device_t *device;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400315 EGLImageKHR image;
316 GLuint texture;
Chia-I Wu4d8ba212010-10-29 15:20:17 +0800317 struct display *display;
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500318 struct wl_egl_pixmap *pixmap;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400319};
320
321static void
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500322egl_image_surface_data_destroy(void *p)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400323{
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500324 struct egl_image_surface_data *data = p;
Chia-I Wu4d8ba212010-10-29 15:20:17 +0800325 struct display *d = data->display;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400326
Benjamin Franzke0c991632011-09-27 21:57:31 +0200327 cairo_device_acquire(data->device);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400328 glDeleteTextures(1, &data->texture);
Benjamin Franzke0c991632011-09-27 21:57:31 +0200329 cairo_device_release(data->device);
Chia-I Wu4d8ba212010-10-29 15:20:17 +0800330
Kristian Høgsberg0d5007a2011-02-09 10:57:44 -0500331 d->destroy_image(d->dpy, data->image);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400332 wl_buffer_destroy(data->data.buffer);
Kristian Høgsbergbfb8e612011-02-07 10:30:38 -0500333 wl_egl_pixmap_destroy(data->pixmap);
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500334 free(p);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400335}
336
Kristian Høgsberg2b43bd72010-11-08 15:45:55 -0500337EGLImageKHR
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500338display_get_image_for_egl_image_surface(struct display *display,
339 cairo_surface_t *surface)
Kristian Høgsberg2b43bd72010-11-08 15:45:55 -0500340{
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500341 struct egl_image_surface_data *data;
Kristian Høgsberg2b43bd72010-11-08 15:45:55 -0500342
343 data = cairo_surface_get_user_data (surface, &surface_data_key);
344
345 return data->image;
346}
347
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500348static cairo_surface_t *
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500349display_create_egl_image_surface(struct display *display,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400350 uint32_t flags,
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500351 struct rectangle *rectangle)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400352{
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500353 struct egl_image_surface_data *data;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400354 EGLDisplay dpy = display->dpy;
355 cairo_surface_t *surface;
Benjamin Franzke0c991632011-09-27 21:57:31 +0200356 cairo_content_t content;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400357
358 data = malloc(sizeof *data);
359 if (data == NULL)
360 return NULL;
361
Chia-I Wu4d8ba212010-10-29 15:20:17 +0800362 data->display = display;
363
Kristian Høgsberg91342c62011-04-14 14:44:58 -0400364 data->pixmap = wl_egl_pixmap_create(rectangle->width,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400365 rectangle->height, 0);
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500366 if (data->pixmap == NULL) {
nobled7b87cb02011-02-01 18:51:47 +0000367 free(data);
368 return NULL;
369 }
370
Kristian Høgsberg067fd602012-02-29 16:15:53 -0500371 data->device = display->argb_device;
372 content = CAIRO_CONTENT_COLOR_ALPHA;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400373
Kristian Høgsberg0d5007a2011-02-09 10:57:44 -0500374 data->image = display->create_image(dpy, NULL,
375 EGL_NATIVE_PIXMAP_KHR,
376 (EGLClientBuffer) data->pixmap,
377 NULL);
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500378 if (data->image == EGL_NO_IMAGE_KHR) {
Kristian Høgsbergbfb8e612011-02-07 10:30:38 -0500379 wl_egl_pixmap_destroy(data->pixmap);
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500380 free(data);
381 return NULL;
382 }
383
384 data->data.buffer =
Kristian Høgsberg91342c62011-04-14 14:44:58 -0400385 wl_egl_pixmap_create_buffer(data->pixmap);
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500386
Benjamin Franzke0c991632011-09-27 21:57:31 +0200387 cairo_device_acquire(data->device);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400388 glGenTextures(1, &data->texture);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400389 glBindTexture(GL_TEXTURE_2D, data->texture);
Kristian Høgsberg0d5007a2011-02-09 10:57:44 -0500390 display->image_target_texture_2d(GL_TEXTURE_2D, data->image);
Benjamin Franzke0c991632011-09-27 21:57:31 +0200391 cairo_device_release(data->device);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400392
Benjamin Franzke0c991632011-09-27 21:57:31 +0200393 surface = cairo_gl_surface_create_for_texture(data->device,
394 content,
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400395 data->texture,
396 rectangle->width,
397 rectangle->height);
398
399 cairo_surface_set_user_data (surface, &surface_data_key,
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500400 data, egl_image_surface_data_destroy);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400401
402 return surface;
403}
404
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500405static cairo_surface_t *
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500406display_create_egl_image_surface_from_file(struct display *display,
407 const char *filename,
408 struct rectangle *rect)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400409{
410 cairo_surface_t *surface;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400411 pixman_image_t *image;
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500412 struct egl_image_surface_data *data;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400413
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400414 image = load_image(filename);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400415
Benjamin Franzke4b87a132011-09-01 10:36:16 +0200416 surface = display_create_egl_image_surface(display, 0, rect);
nobled7b87cb02011-02-01 18:51:47 +0000417 if (surface == NULL) {
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400418 pixman_image_unref(image);
nobled7b87cb02011-02-01 18:51:47 +0000419 return NULL;
420 }
421
Chia-I Wu4d8ba212010-10-29 15:20:17 +0800422 data = cairo_surface_get_user_data(surface, &surface_data_key);
423
Benjamin Franzke0c991632011-09-27 21:57:31 +0200424 cairo_device_acquire(display->argb_device);
Chia-I Wu4d8ba212010-10-29 15:20:17 +0800425 glBindTexture(GL_TEXTURE_2D, data->texture);
Chia-I Wu1f411902010-10-29 15:20:16 +0800426 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, rect->width, rect->height,
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400427 GL_RGBA, GL_UNSIGNED_BYTE,
428 pixman_image_get_data(image));
Benjamin Franzke0c991632011-09-27 21:57:31 +0200429 cairo_device_release(display->argb_device);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400430
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400431 pixman_image_unref(image);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400432
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400433 return surface;
434}
435
436#endif
437
438struct wl_buffer *
439display_get_buffer_for_surface(struct display *display,
440 cairo_surface_t *surface)
441{
442 struct surface_data *data;
443
444 data = cairo_surface_get_user_data (surface, &surface_data_key);
445
446 return data->buffer;
447}
448
449struct shm_surface_data {
450 struct surface_data data;
451 void *map;
452 size_t length;
453};
454
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500455static void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400456shm_surface_data_destroy(void *p)
457{
458 struct shm_surface_data *data = p;
459
460 wl_buffer_destroy(data->data.buffer);
461 munmap(data->map, data->length);
462}
463
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500464static cairo_surface_t *
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400465display_create_shm_surface(struct display *display,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400466 struct rectangle *rectangle, uint32_t flags)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400467{
468 struct shm_surface_data *data;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400469 uint32_t format;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400470 cairo_surface_t *surface;
Bryce Harrington40269a62010-11-19 12:15:36 -0800471 int stride, fd;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400472 char filename[] = "/tmp/wayland-shm-XXXXXX";
473
474 data = malloc(sizeof *data);
475 if (data == NULL)
476 return NULL;
477
478 stride = cairo_format_stride_for_width (CAIRO_FORMAT_ARGB32,
479 rectangle->width);
480 data->length = stride * rectangle->height;
481 fd = mkstemp(filename);
482 if (fd < 0) {
nobled14d222f2011-02-01 18:48:46 +0000483 fprintf(stderr, "open %s failed: %m\n", filename);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400484 return NULL;
485 }
486 if (ftruncate(fd, data->length) < 0) {
nobled14d222f2011-02-01 18:48:46 +0000487 fprintf(stderr, "ftruncate failed: %m\n");
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400488 close(fd);
489 return NULL;
490 }
491
492 data->map = mmap(NULL, data->length,
493 PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
494 unlink(filename);
495
496 if (data->map == MAP_FAILED) {
nobled14d222f2011-02-01 18:48:46 +0000497 fprintf(stderr, "mmap failed: %m\n");
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400498 close(fd);
499 return NULL;
500 }
501
502 surface = cairo_image_surface_create_for_data (data->map,
503 CAIRO_FORMAT_ARGB32,
504 rectangle->width,
505 rectangle->height,
506 stride);
507
508 cairo_surface_set_user_data (surface, &surface_data_key,
509 data, shm_surface_data_destroy);
510
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400511 if (flags & SURFACE_OPAQUE)
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500512 format = WL_SHM_FORMAT_XRGB8888;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400513 else
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500514 format = WL_SHM_FORMAT_ARGB8888;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400515
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400516 data->data.buffer = wl_shm_create_buffer(display->shm,
517 fd,
518 rectangle->width,
519 rectangle->height,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400520 stride, format);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400521
522 close(fd);
523
524 return surface;
525}
526
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500527static cairo_surface_t *
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400528display_create_shm_surface_from_file(struct display *display,
529 const char *filename,
530 struct rectangle *rect)
531{
532 cairo_surface_t *surface;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400533 pixman_image_t *image;
534 void *dest;
535 int size;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400536
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400537 image = load_image(filename);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400538
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400539 surface = display_create_shm_surface(display, rect, 0);
nobled7b87cb02011-02-01 18:51:47 +0000540 if (surface == NULL) {
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400541 pixman_image_unref(image);
nobled7b87cb02011-02-01 18:51:47 +0000542 return NULL;
543 }
544
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400545 size = pixman_image_get_stride(image) * pixman_image_get_height(image);
546 dest = cairo_image_surface_get_data(surface);
547 memcpy(dest, pixman_image_get_data(image), size);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400548
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400549 pixman_image_unref(image);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400550
551 return surface;
552}
553
nobled7b87cb02011-02-01 18:51:47 +0000554static int
555check_size(struct rectangle *rect)
556{
557 if (rect->width && rect->height)
558 return 0;
559
560 fprintf(stderr, "tried to create surface of "
561 "width: %d, height: %d\n", rect->width, rect->height);
562 return -1;
563}
564
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400565cairo_surface_t *
566display_create_surface(struct display *display,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100567 struct wl_surface *surface,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400568 struct rectangle *rectangle,
569 uint32_t flags)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400570{
nobled7b87cb02011-02-01 18:51:47 +0000571 if (check_size(rectangle) < 0)
572 return NULL;
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500573#ifdef HAVE_CAIRO_EGL
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500574 if (display->dpy) {
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100575 if (surface)
576 return display_create_egl_window_surface(display,
577 surface,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400578 flags,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100579 rectangle);
580 else
581 return display_create_egl_image_surface(display,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400582 flags,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100583 rectangle);
Yuval Fledel45568f62010-12-06 09:18:12 -0500584 }
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400585#endif
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400586 return display_create_shm_surface(display, rectangle, flags);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400587}
588
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500589static cairo_surface_t *
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400590display_create_surface_from_file(struct display *display,
591 const char *filename,
592 struct rectangle *rectangle)
593{
nobled7b87cb02011-02-01 18:51:47 +0000594 if (check_size(rectangle) < 0)
595 return NULL;
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500596#ifdef HAVE_CAIRO_EGL
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500597 if (display->dpy) {
598 return display_create_egl_image_surface_from_file(display,
599 filename,
600 rectangle);
Yuval Fledel45568f62010-12-06 09:18:12 -0500601 }
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400602#endif
Yuval Fledel45568f62010-12-06 09:18:12 -0500603 return display_create_shm_surface_from_file(display, filename, rectangle);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400604}
Yuval Fledel45568f62010-12-06 09:18:12 -0500605 static const struct {
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400606 const char *filename;
607 int hotspot_x, hotspot_y;
608} pointer_images[] = {
Kristian Høgsberg9724b512012-01-03 14:35:49 -0500609 { DATADIR "/weston/bottom_left_corner.png", 6, 30 },
610 { DATADIR "/weston/bottom_right_corner.png", 28, 28 },
611 { DATADIR "/weston/bottom_side.png", 16, 20 },
612 { DATADIR "/weston/grabbing.png", 20, 17 },
613 { DATADIR "/weston/left_ptr.png", 10, 5 },
614 { DATADIR "/weston/left_side.png", 10, 20 },
615 { DATADIR "/weston/right_side.png", 30, 19 },
616 { DATADIR "/weston/top_left_corner.png", 8, 8 },
617 { DATADIR "/weston/top_right_corner.png", 26, 8 },
618 { DATADIR "/weston/top_side.png", 18, 8 },
619 { DATADIR "/weston/xterm.png", 15, 15 },
620 { DATADIR "/weston/hand1.png", 18, 11 }
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400621};
622
623static void
Kristian Høgsberg9a686242010-08-18 15:28:04 -0400624create_pointer_surfaces(struct display *display)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400625{
626 int i, count;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400627 const int width = 32, height = 32;
Kristian Høgsberg9a686242010-08-18 15:28:04 -0400628 struct rectangle rect;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400629
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400630 count = ARRAY_LENGTH(pointer_images);
Kristian Høgsberg9a686242010-08-18 15:28:04 -0400631 display->pointer_surfaces =
632 malloc(count * sizeof *display->pointer_surfaces);
633 rect.width = width;
634 rect.height = height;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400635 for (i = 0; i < count; i++) {
Kristian Høgsberg9a686242010-08-18 15:28:04 -0400636 display->pointer_surfaces[i] =
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400637 display_create_surface_from_file(display,
638 pointer_images[i].filename,
639 &rect);
Rob Bradford21223bf2011-10-25 12:19:36 +0100640 if (!display->pointer_surfaces[i]) {
641 fprintf(stderr, "Error loading pointer image: %s\n",
642 pointer_images[i].filename);
643 }
Kristian Høgsbergda275dd2010-08-16 17:47:07 -0400644 }
645
646}
647
Pekka Paalanen325bb602011-12-19 10:31:45 +0200648static void
649destroy_pointer_surfaces(struct display *display)
650{
651 int i, count;
652
653 count = ARRAY_LENGTH(pointer_images);
654 for (i = 0; i < count; ++i) {
655 if (display->pointer_surfaces[i])
656 cairo_surface_destroy(display->pointer_surfaces[i]);
657 }
658 free(display->pointer_surfaces);
659}
660
Kristian Høgsberg9a686242010-08-18 15:28:04 -0400661cairo_surface_t *
662display_get_pointer_surface(struct display *display, int pointer,
663 int *width, int *height,
664 int *hotspot_x, int *hotspot_y)
665{
666 cairo_surface_t *surface;
667
668 surface = display->pointer_surfaces[pointer];
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500669#if HAVE_CAIRO_EGL
Kristian Høgsberg9a686242010-08-18 15:28:04 -0400670 *width = cairo_gl_surface_get_width(surface);
671 *height = cairo_gl_surface_get_height(surface);
nobledf8475c92011-01-05 17:41:55 +0000672#else
673 *width = cairo_image_surface_get_width(surface);
674 *height = cairo_image_surface_get_height(surface);
675#endif
Kristian Høgsberg9a686242010-08-18 15:28:04 -0400676 *hotspot_x = pointer_images[pointer].hotspot_x;
677 *hotspot_y = pointer_images[pointer].hotspot_y;
678
679 return cairo_surface_reference(surface);
680}
681
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400682static void
683window_attach_surface(struct window *window);
684
685static void
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -0400686free_surface(void *data, struct wl_callback *callback, uint32_t time)
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400687{
688 struct window *window = data;
689
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -0400690 wl_callback_destroy(callback);
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400691 cairo_surface_destroy(window->pending_surface);
692 window->pending_surface = NULL;
693 if (window->cairo_surface)
694 window_attach_surface(window);
695}
696
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -0400697static const struct wl_callback_listener free_surface_listener = {
698 free_surface
699};
700
Kristian Høgsberg0395f302008-12-22 12:14:50 -0500701static void
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200702window_get_resize_dx_dy(struct window *window, int *x, int *y)
703{
704 if (window->resize_edges & WINDOW_RESIZING_LEFT)
705 *x = window->server_allocation.width - window->allocation.width;
706 else
707 *x = 0;
708
709 if (window->resize_edges & WINDOW_RESIZING_TOP)
710 *y = window->server_allocation.height -
711 window->allocation.height;
712 else
713 *y = 0;
714
715 window->resize_edges = 0;
716}
717
718static void
Kristian Høgsberg6a1b2012009-12-16 14:43:37 -0500719window_attach_surface(struct window *window)
720{
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400721 struct display *display = window->display;
722 struct wl_buffer *buffer;
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -0400723 struct wl_callback *cb;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000724#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100725 struct egl_window_surface_data *data;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000726#endif
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500727 int32_t x, y;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100728
729 switch (window->buffer_type) {
Benjamin Franzke22d54812011-07-16 19:50:32 +0000730#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100731 case WINDOW_BUFFER_TYPE_EGL_WINDOW:
732 data = cairo_surface_get_user_data(window->cairo_surface,
733 &surface_data_key);
734
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100735 cairo_gl_surface_swapbuffers(window->cairo_surface);
736 wl_egl_window_get_attached_size(data->window,
737 &window->server_allocation.width,
738 &window->server_allocation.height);
739 break;
740 case WINDOW_BUFFER_TYPE_EGL_IMAGE:
Benjamin Franzke22d54812011-07-16 19:50:32 +0000741#endif
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100742 case WINDOW_BUFFER_TYPE_SHM:
743 if (window->pending_surface != NULL)
744 return;
745
746 window->pending_surface = window->cairo_surface;
747 window->cairo_surface = NULL;
748
749 buffer =
750 display_get_buffer_for_surface(display,
751 window->pending_surface);
752
Ander Conselvan de Oliveirae018b042012-01-27 17:17:39 +0200753 window_get_resize_dx_dy(window, &x, &y);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100754 wl_surface_attach(window->surface, buffer, x, y);
755 window->server_allocation = window->allocation;
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -0400756 cb = wl_display_sync(display->display);
757 wl_callback_add_listener(cb, &free_surface_listener, window);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100758 break;
Benjamin Franzke22d54812011-07-16 19:50:32 +0000759 default:
760 return;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100761 }
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500762
Kristian Høgsberg63e5e062012-03-04 23:47:56 -0500763 if (window->input_region) {
764 wl_surface_set_input_region(window->surface,
765 window->input_region);
766 wl_region_destroy(window->input_region);
767 window->input_region = NULL;
768 }
769
770 if (window->opaque_region) {
771 wl_surface_set_opaque_region(window->surface,
772 window->opaque_region);
773 wl_region_destroy(window->opaque_region);
774 window->opaque_region = NULL;
775 }
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500776
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500777 wl_surface_damage(window->surface, 0, 0,
778 window->allocation.width,
779 window->allocation.height);
Kristian Høgsberg6a1b2012009-12-16 14:43:37 -0500780}
781
Kristian Høgsberga341fa02010-01-24 18:10:15 -0500782void
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -0400783window_flush(struct window *window)
Kristian Høgsberga341fa02010-01-24 18:10:15 -0500784{
Benjamin Franzkebde55ec2011-03-07 15:08:09 +0100785 if (window->cairo_surface) {
786 switch (window->buffer_type) {
787 case WINDOW_BUFFER_TYPE_EGL_IMAGE:
788 case WINDOW_BUFFER_TYPE_SHM:
789 display_surface_damage(window->display,
790 window->cairo_surface,
791 0, 0,
792 window->allocation.width,
793 window->allocation.height);
794 break;
795 default:
796 break;
797 }
798 window_attach_surface(window);
799 }
Kristian Høgsberga341fa02010-01-24 18:10:15 -0500800}
801
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400802void
803window_set_surface(struct window *window, cairo_surface_t *surface)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400804{
Kristian Høgsberg2b43bd72010-11-08 15:45:55 -0500805 cairo_surface_reference(surface);
806
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400807 if (window->cairo_surface != NULL)
808 cairo_surface_destroy(window->cairo_surface);
809
Kristian Høgsberg2b43bd72010-11-08 15:45:55 -0500810 window->cairo_surface = surface;
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400811}
812
Benjamin Franzke22d54812011-07-16 19:50:32 +0000813#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100814static void
815window_resize_cairo_window_surface(struct window *window)
816{
817 struct egl_window_surface_data *data;
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200818 int x, y;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100819
820 data = cairo_surface_get_user_data(window->cairo_surface,
821 &surface_data_key);
822
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200823 window_get_resize_dx_dy(window, &x, &y),
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100824 wl_egl_window_resize(data->window,
825 window->allocation.width,
Benjamin Franzke14f7ff92011-06-23 12:10:51 +0200826 window->allocation.height,
827 x,y);
828
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100829 cairo_gl_surface_set_size(window->cairo_surface,
830 window->allocation.width,
831 window->allocation.height);
832}
Benjamin Franzke22d54812011-07-16 19:50:32 +0000833#endif
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100834
Kristian Høgsbergbcee9a42011-10-12 00:36:16 -0400835struct display *
836window_get_display(struct window *window)
837{
838 return window->display;
839}
840
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400841void
842window_create_surface(struct window *window)
843{
844 cairo_surface_t *surface;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400845 uint32_t flags = 0;
846
847 if (!window->transparent)
848 flags = SURFACE_OPAQUE;
849
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400850 switch (window->buffer_type) {
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500851#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100852 case WINDOW_BUFFER_TYPE_EGL_WINDOW:
853 if (window->cairo_surface) {
854 window_resize_cairo_window_surface(window);
855 return;
856 }
857 surface = display_create_surface(window->display,
858 window->surface,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400859 &window->allocation, flags);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100860 break;
Kristian Høgsberg297c6312011-02-04 14:11:33 -0500861 case WINDOW_BUFFER_TYPE_EGL_IMAGE:
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400862 surface = display_create_surface(window->display,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100863 NULL,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400864 &window->allocation, flags);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400865 break;
866#endif
867 case WINDOW_BUFFER_TYPE_SHM:
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400868 surface = display_create_shm_surface(window->display,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400869 &window->allocation, flags);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400870 break;
Bryce Harrington515f63a2010-11-19 12:14:55 -0800871 default:
872 surface = NULL;
873 break;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400874 }
Kristian Høgsberg012a0072010-10-26 00:02:20 -0400875
876 window_set_surface(window, surface);
877 cairo_surface_destroy(surface);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400878}
879
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +0200880static void frame_destroy(struct frame *frame);
881
Kristian Høgsberge968f9c2010-08-27 22:18:00 -0400882void
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500883window_destroy(struct window *window)
884{
Pekka Paalanen77cbc952011-11-15 13:34:55 +0200885 struct display *display = window->display;
886 struct input *input;
887
888 if (window->redraw_scheduled)
889 wl_list_remove(&window->redraw_task.link);
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500890 if (window->resize_scheduled)
891 wl_list_remove(&window->resize_task.link);
Pekka Paalanen77cbc952011-11-15 13:34:55 +0200892
893 wl_list_for_each(input, &display->input_list, link) {
894 if (input->pointer_focus == window)
895 input->pointer_focus = NULL;
896 if (input->keyboard_focus == window)
897 input->keyboard_focus = NULL;
Kristian Høgsbergae6e2712012-01-26 11:09:20 -0500898 if (input->focus_widget &&
899 input->focus_widget->window == window)
900 input->focus_widget = NULL;
Pekka Paalanen77cbc952011-11-15 13:34:55 +0200901 }
902
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500903 if (window->input_region)
904 wl_region_destroy(window->input_region);
905 if (window->opaque_region)
906 wl_region_destroy(window->opaque_region);
907
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +0200908 if (window->frame)
909 frame_destroy(window->frame);
910
Pekka Paalanen6b2dc912011-11-29 10:25:08 +0200911 if (window->shell_surface)
912 wl_shell_surface_destroy(window->shell_surface);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500913 wl_surface_destroy(window->surface);
914 wl_list_remove(&window->link);
Pekka Paalanen5ec65852011-12-16 10:09:29 +0200915
916 if (window->cairo_surface != NULL)
917 cairo_surface_destroy(window->cairo_surface);
918 if (window->pending_surface != NULL)
919 cairo_surface_destroy(window->pending_surface);
920
921 free(window->title);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500922 free(window);
923}
924
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500925static struct widget *
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500926widget_find_widget(struct widget *widget, int32_t x, int32_t y)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400927{
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500928 struct widget *child, *target;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400929
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500930 wl_list_for_each(child, &widget->child_list, link) {
931 target = widget_find_widget(child, x, y);
932 if (target)
933 return target;
934 }
935
936 if (widget->allocation.x <= x &&
937 x < widget->allocation.x + widget->allocation.width &&
938 widget->allocation.y <= y &&
939 y < widget->allocation.y + widget->allocation.height) {
940 return widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400941 }
942
943 return NULL;
944}
945
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500946static struct widget *
947widget_create(struct window *window, void *data)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400948{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500949 struct widget *widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400950
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500951 widget = malloc(sizeof *widget);
952 memset(widget, 0, sizeof *widget);
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -0500953 widget->window = window;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500954 widget->user_data = data;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500955 widget->allocation = window->allocation;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500956 wl_list_init(&widget->child_list);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500957 widget->opaque = 0;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500958
959 return widget;
960}
961
962struct widget *
963window_add_widget(struct window *window, void *data)
964{
965 window->widget = widget_create(window, data);
966 wl_list_init(&window->widget->link);
967
968 return window->widget;
969}
970
971struct widget *
972widget_add_widget(struct widget *parent, void *data)
973{
974 struct widget *widget;
975
976 widget = widget_create(parent->window, data);
977 wl_list_insert(parent->child_list.prev, &widget->link);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400978
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500979 return widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400980}
981
982void
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500983widget_destroy(struct widget *widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400984{
Pekka Paalanene156fb62012-01-19 13:51:38 +0200985 struct display *display = widget->window->display;
986 struct input *input;
987
988 wl_list_for_each(input, &display->input_list, link) {
989 if (input->focus_widget == widget)
990 input->focus_widget = NULL;
991 }
992
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500993 wl_list_remove(&widget->link);
994 free(widget);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400995}
996
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400997void
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500998widget_get_allocation(struct widget *widget, struct rectangle *allocation)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400999{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001000 *allocation = widget->allocation;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001001}
1002
1003void
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001004widget_set_size(struct widget *widget, int32_t width, int32_t height)
1005{
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001006 widget->allocation.width = width;
1007 widget->allocation.height = height;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001008}
1009
1010void
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001011widget_set_allocation(struct widget *widget,
1012 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001013{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001014 widget->allocation.x = x;
1015 widget->allocation.y = y;
Tiago Vignattic5528d82012-02-09 19:06:55 +02001016 widget_set_size(widget, width, height);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001017}
1018
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001019void
1020widget_set_transparent(struct widget *widget, int transparent)
1021{
1022 widget->opaque = !transparent;
1023}
1024
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001025void *
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001026widget_get_user_data(struct widget *widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001027{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001028 return widget->user_data;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001029}
1030
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001031void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05001032widget_set_resize_handler(struct widget *widget,
1033 widget_resize_handler_t handler)
1034{
1035 widget->resize_handler = handler;
1036}
1037
1038void
1039widget_set_redraw_handler(struct widget *widget,
1040 widget_redraw_handler_t handler)
1041{
1042 widget->redraw_handler = handler;
1043}
1044
1045void
Kristian Høgsbergee143232012-01-09 08:42:24 -05001046widget_set_enter_handler(struct widget *widget, widget_enter_handler_t handler)
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001047{
Kristian Høgsbergee143232012-01-09 08:42:24 -05001048 widget->enter_handler = handler;
1049}
1050
1051void
1052widget_set_leave_handler(struct widget *widget, widget_leave_handler_t handler)
1053{
1054 widget->leave_handler = handler;
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001055}
1056
1057void
Kristian Høgsberg04e98342012-01-09 09:36:16 -05001058widget_set_motion_handler(struct widget *widget,
1059 widget_motion_handler_t handler)
1060{
1061 widget->motion_handler = handler;
1062}
1063
1064void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05001065widget_set_button_handler(struct widget *widget,
1066 widget_button_handler_t handler)
1067{
1068 widget->button_handler = handler;
1069}
1070
1071void
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001072widget_schedule_redraw(struct widget *widget)
1073{
1074 window_schedule_redraw(widget->window);
1075}
1076
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04001077cairo_surface_t *
1078window_get_surface(struct window *window)
1079{
Kristian Høgsberg012a0072010-10-26 00:02:20 -04001080 return cairo_surface_reference(window->cairo_surface);
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04001081}
1082
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001083struct wl_surface *
1084window_get_wl_surface(struct window *window)
1085{
1086 return window->surface;
1087}
1088
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02001089struct wl_shell_surface *
1090window_get_wl_shell_surface(struct window *window)
1091{
1092 return window->shell_surface;
1093}
1094
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001095static void
1096frame_resize_handler(struct widget *widget,
1097 int32_t width, int32_t height, void *data)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001098{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001099 struct frame *frame = data;
1100 struct widget *child = frame->child;
1101 struct rectangle allocation;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001102 struct display *display = widget->window->display;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001103 int decoration_width, decoration_height;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001104 int opaque_margin;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001105
Kristian Høgsbergb435e842012-03-05 20:38:08 -05001106 if (widget->window->type != TYPE_FULLSCREEN) {
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04001107 decoration_width = (frame->width + frame->margin) * 2;
1108 decoration_height = frame->width +
1109 frame->titlebar_height + frame->margin * 2;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001110
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04001111 allocation.x = frame->width + frame->margin;
1112 allocation.y = frame->titlebar_height + frame->margin;
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05001113 allocation.width = width - decoration_width;
1114 allocation.height = height - decoration_height;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001115
1116 widget->window->input_region =
1117 wl_compositor_create_region(display->compositor);
1118 wl_region_add(widget->window->input_region,
1119 frame->margin, frame->margin,
1120 width - 2 * frame->margin,
1121 height - 2 * frame->margin);
1122
1123 opaque_margin = frame->margin + display->frame_radius;
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05001124 } else {
1125 decoration_width = 0;
1126 decoration_height = 0;
1127
1128 allocation.x = 0;
1129 allocation.y = 0;
1130 allocation.width = width;
1131 allocation.height = height;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001132 opaque_margin = 0;
1133 }
1134
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001135 widget_set_allocation(child, allocation.x, allocation.y,
1136 allocation.width, allocation.height);
1137
1138 if (child->resize_handler)
1139 child->resize_handler(child,
1140 allocation.width,
1141 allocation.height,
1142 child->user_data);
1143
1144 widget_set_allocation(widget, 0, 0,
1145 child->allocation.width + decoration_width,
1146 child->allocation.height + decoration_height);
Kristian Høgsbergf10df852012-02-28 21:52:12 -05001147
1148 if (child->opaque) {
1149 widget->window->opaque_region =
1150 wl_compositor_create_region(display->compositor);
1151 wl_region_add(widget->window->opaque_region,
1152 opaque_margin, opaque_margin,
1153 widget->allocation.width - 2 * opaque_margin,
1154 widget->allocation.height - 2 * opaque_margin);
1155 }
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001156}
1157
1158static void
1159frame_redraw_handler(struct widget *widget, void *data)
1160{
1161 struct frame *frame = data;
1162 cairo_t *cr;
1163 cairo_text_extents_t extents;
1164 cairo_surface_t *source;
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04001165 int x, y, width, height, shadow_dx = 3, shadow_dy = 3;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001166 struct window *window = widget->window;
1167
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05001168 if (window->type == TYPE_FULLSCREEN)
1169 return;
1170
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001171 width = widget->allocation.width;
1172 height = widget->allocation.height;
1173
1174 cr = cairo_create(window->cairo_surface);
1175
1176 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
1177 cairo_set_source_rgba(cr, 0, 0, 0, 0);
1178 cairo_paint(cr);
1179
1180 cairo_set_source_rgba(cr, 0, 0, 0, 0.6);
1181 tile_mask(cr, window->display->shadow,
1182 shadow_dx, shadow_dy, width, height,
1183 frame->margin + 10 - shadow_dx,
1184 frame->margin + 10 - shadow_dy);
1185
1186 if (window->keyboard_device)
1187 source = window->display->active_frame;
1188 else
1189 source = window->display->inactive_frame;
1190
1191 tile_source(cr, source, 0, 0, width, height,
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04001192 frame->margin + frame->width,
1193 frame->margin + frame->titlebar_height);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001194
1195 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04001196 cairo_select_font_face(cr, "sans",
1197 CAIRO_FONT_SLANT_NORMAL,
1198 CAIRO_FONT_WEIGHT_BOLD);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001199 cairo_set_font_size(cr, 14);
1200 cairo_text_extents(cr, window->title, &extents);
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04001201 x = (width - extents.width) / 2;
1202 y = 24 - extents.y_bearing;
1203 if (window->keyboard_device) {
1204 cairo_move_to(cr, x + 1, y + 1);
1205 cairo_set_source_rgb(cr, 1, 1, 1);
1206 cairo_show_text(cr, window->title);
1207 cairo_move_to(cr, x, y);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001208 cairo_set_source_rgb(cr, 0, 0, 0);
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04001209 cairo_show_text(cr, window->title);
1210 } else {
1211 cairo_move_to(cr, x, y);
1212 cairo_set_source_rgb(cr, 0.4, 0.4, 0.4);
1213 cairo_show_text(cr, window->title);
1214 }
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001215
1216 cairo_destroy(cr);
1217}
1218
1219static int
1220frame_get_pointer_location(struct frame *frame, int32_t x, int32_t y)
1221{
1222 struct widget *widget = frame->widget;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001223 int vlocation, hlocation, location;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001224 const int grip_size = 8;
1225
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001226 if (x < frame->margin)
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001227 hlocation = WINDOW_EXTERIOR;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001228 else if (frame->margin <= x && x < frame->margin + grip_size)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001229 hlocation = WINDOW_RESIZING_LEFT;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001230 else if (x < widget->allocation.width - frame->margin - grip_size)
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001231 hlocation = WINDOW_INTERIOR;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001232 else if (x < widget->allocation.width - frame->margin)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001233 hlocation = WINDOW_RESIZING_RIGHT;
1234 else
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001235 hlocation = WINDOW_EXTERIOR;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001236
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001237 if (y < frame->margin)
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001238 vlocation = WINDOW_EXTERIOR;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001239 else if (frame->margin <= y && y < frame->margin + grip_size)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001240 vlocation = WINDOW_RESIZING_TOP;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001241 else if (y < widget->allocation.height - frame->margin - grip_size)
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001242 vlocation = WINDOW_INTERIOR;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001243 else if (y < widget->allocation.height - frame->margin)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001244 vlocation = WINDOW_RESIZING_BOTTOM;
1245 else
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001246 vlocation = WINDOW_EXTERIOR;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001247
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001248 location = vlocation | hlocation;
1249 if (location & WINDOW_EXTERIOR)
1250 location = WINDOW_EXTERIOR;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001251 if (location == WINDOW_INTERIOR && y < frame->margin + 50)
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001252 location = WINDOW_TITLEBAR;
1253 else if (location == WINDOW_INTERIOR)
1254 location = WINDOW_CLIENT_AREA;
1255
1256 return location;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001257}
1258
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001259static int
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001260frame_get_pointer_image_for_location(struct frame *frame, struct input *input)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001261{
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001262 int location;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001263
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001264 location = frame_get_pointer_location(frame, input->sx, input->sy);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001265 switch (location) {
1266 case WINDOW_RESIZING_TOP:
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001267 return POINTER_TOP;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001268 case WINDOW_RESIZING_BOTTOM:
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001269 return POINTER_BOTTOM;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001270 case WINDOW_RESIZING_LEFT:
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001271 return POINTER_LEFT;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001272 case WINDOW_RESIZING_RIGHT:
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001273 return POINTER_RIGHT;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001274 case WINDOW_RESIZING_TOP_LEFT:
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001275 return POINTER_TOP_LEFT;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001276 case WINDOW_RESIZING_TOP_RIGHT:
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001277 return POINTER_TOP_RIGHT;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001278 case WINDOW_RESIZING_BOTTOM_LEFT:
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001279 return POINTER_BOTTOM_LEFT;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001280 case WINDOW_RESIZING_BOTTOM_RIGHT:
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001281 return POINTER_BOTTOM_RIGHT;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001282 case WINDOW_EXTERIOR:
1283 case WINDOW_TITLEBAR:
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001284 default:
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001285 return POINTER_LEFT_PTR;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001286 }
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001287}
1288
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001289static void
1290frame_menu_func(struct window *window, int index, void *data)
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05001291{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001292 switch (index) {
1293 case 0: /* close */
1294 if (window->close_handler)
1295 window->close_handler(window->parent,
1296 window->user_data);
1297 else
1298 display_exit(window->display);
1299 break;
1300 case 1: /* fullscreen */
1301 /* we don't have a way to get out of fullscreen for now */
1302 window_set_fullscreen(window, 1);
1303 break;
1304 case 2: /* rotate */
1305 case 3: /* scale */
1306 break;
1307 }
1308}
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001309
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05001310void
1311window_show_frame_menu(struct window *window,
1312 struct input *input, uint32_t time)
1313{
1314 int32_t x, y;
1315
1316 static const char *entries[] = {
1317 "Close", "Fullscreen", "Rotate", "Scale"
1318 };
1319
1320 input_get_position(input, &x, &y);
1321 window_show_menu(window->display, input, time, window,
1322 x - 10, y - 10, frame_menu_func, entries, 4);
1323}
1324
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001325static int
1326frame_enter_handler(struct widget *widget,
1327 struct input *input, uint32_t time,
1328 int32_t x, int32_t y, void *data)
1329{
1330 return frame_get_pointer_image_for_location(data, input);
1331}
Kristian Høgsberg7d804062010-09-07 21:50:06 -04001332
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001333static int
1334frame_motion_handler(struct widget *widget,
1335 struct input *input, uint32_t time,
1336 int32_t x, int32_t y, void *data)
1337{
1338 return frame_get_pointer_image_for_location(data, input);
1339}
Rob Bradford8bd35c72011-10-25 12:20:51 +01001340
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001341static void
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001342frame_button_handler(struct widget *widget,
1343 struct input *input, uint32_t time,
1344 int button, int state, void *data)
1345
1346{
1347 struct frame *frame = data;
1348 struct window *window = widget->window;
1349 int location;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001350 location = frame_get_pointer_location(frame, input->sx, input->sy);
1351
1352 if (window->display->shell && button == BTN_LEFT && state == 1) {
1353 switch (location) {
1354 case WINDOW_TITLEBAR:
1355 if (!window->shell_surface)
1356 break;
1357 input_set_pointer_image(input, time, POINTER_DRAGGING);
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001358 input_ungrab(input, time);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001359 wl_shell_surface_move(window->shell_surface,
1360 input_get_input_device(input),
1361 time);
1362 break;
1363 case WINDOW_RESIZING_TOP:
1364 case WINDOW_RESIZING_BOTTOM:
1365 case WINDOW_RESIZING_LEFT:
1366 case WINDOW_RESIZING_RIGHT:
1367 case WINDOW_RESIZING_TOP_LEFT:
1368 case WINDOW_RESIZING_TOP_RIGHT:
1369 case WINDOW_RESIZING_BOTTOM_LEFT:
1370 case WINDOW_RESIZING_BOTTOM_RIGHT:
1371 if (!window->shell_surface)
1372 break;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001373 input_ungrab(input, time);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001374 wl_shell_surface_resize(window->shell_surface,
1375 input_get_input_device(input),
1376 time, location);
1377 break;
1378 }
1379 } else if (button == BTN_RIGHT && state == 1) {
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05001380 window_show_frame_menu(window, input, time);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001381 }
1382}
1383
1384struct widget *
1385frame_create(struct window *window, void *data)
1386{
1387 struct frame *frame;
1388
1389 frame = malloc(sizeof *frame);
1390 memset(frame, 0, sizeof *frame);
1391
1392 frame->widget = window_add_widget(window, frame);
1393 frame->child = widget_add_widget(frame->widget, data);
1394 frame->margin = 16;
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04001395 frame->width = 4;
1396 frame->titlebar_height = 30
1397;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001398 widget_set_redraw_handler(frame->widget, frame_redraw_handler);
1399 widget_set_resize_handler(frame->widget, frame_resize_handler);
1400 widget_set_enter_handler(frame->widget, frame_enter_handler);
1401 widget_set_motion_handler(frame->widget, frame_motion_handler);
1402 widget_set_button_handler(frame->widget, frame_button_handler);
1403
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001404 window->frame = frame;
1405
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001406 return frame->child;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001407}
1408
Kristian Høgsberge4feb562008-11-08 18:53:37 -05001409static void
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001410frame_destroy(struct frame *frame)
1411{
1412 /* frame->child must be destroyed by the application */
1413 widget_destroy(frame->widget);
1414 free(frame);
1415}
1416
1417static void
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001418input_set_focus_widget(struct input *input, struct widget *focus,
1419 uint32_t time, int32_t x, int32_t y)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001420{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001421 struct widget *old, *widget;
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05001422 int pointer = POINTER_LEFT_PTR;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001423
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001424 if (focus == input->focus_widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001425 return;
1426
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001427 old = input->focus_widget;
Kristian Høgsbergee143232012-01-09 08:42:24 -05001428 if (old) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001429 widget = old;
1430 if (input->grab)
1431 widget = input->grab;
1432 if (widget->leave_handler)
1433 widget->leave_handler(old, input, widget->user_data);
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001434 input->focus_widget = NULL;
Kristian Høgsbergee143232012-01-09 08:42:24 -05001435 }
1436
1437 if (focus) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001438 widget = focus;
1439 if (input->grab)
1440 widget = input->grab;
1441 if (widget->enter_handler)
1442 pointer = widget->enter_handler(focus, input, time,
1443 x, y,
1444 widget->user_data);
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001445 input->focus_widget = focus;
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05001446
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05001447 input_set_pointer_image(input, time, pointer);
Kristian Høgsbergee143232012-01-09 08:42:24 -05001448 }
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001449}
1450
1451static void
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05001452input_handle_motion(void *data, struct wl_input_device *input_device,
Pekka Paalanenb29f4122012-02-14 14:59:18 +02001453 uint32_t time, int32_t sx, int32_t sy)
Kristian Høgsberg61017b12008-11-02 18:51:48 -05001454{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001455 struct input *input = data;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001456 struct window *window = input->pointer_focus;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001457 struct widget *widget;
Kristian Høgsberg00439612011-01-25 15:16:01 -05001458 int pointer = POINTER_LEFT_PTR;
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001459
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001460 input->sx = sx;
1461 input->sy = sy;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001462
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001463 if (!(input->grab && input->grab_button)) {
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001464 widget = widget_find_widget(window->widget, sx, sy);
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001465 input_set_focus_widget(input, widget, time, sx, sy);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001466 }
1467
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001468 if (input->grab)
1469 widget = input->grab;
1470 else
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001471 widget = input->focus_widget;
Kristian Høgsberg04e98342012-01-09 09:36:16 -05001472 if (widget && widget->motion_handler)
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001473 pointer = widget->motion_handler(input->focus_widget,
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001474 input, time, sx, sy,
Kristian Høgsberg04e98342012-01-09 09:36:16 -05001475 widget->user_data);
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001476
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04001477 input_set_pointer_image(input, time, pointer);
Kristian Høgsberg61017b12008-11-02 18:51:48 -05001478}
1479
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001480void
1481input_grab(struct input *input, struct widget *widget, uint32_t button)
1482{
1483 input->grab = widget;
1484 input->grab_button = button;
1485}
1486
1487void
1488input_ungrab(struct input *input, uint32_t time)
1489{
1490 struct widget *widget;
1491
1492 input->grab = NULL;
1493 if (input->pointer_focus) {
1494 widget = widget_find_widget(input->pointer_focus->widget,
1495 input->sx, input->sy);
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001496 input_set_focus_widget(input, widget,
1497 time, input->sx, input->sy);
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001498 }
1499}
1500
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04001501static void
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05001502input_handle_button(void *data,
1503 struct wl_input_device *input_device,
1504 uint32_t time, uint32_t button, uint32_t state)
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001505{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001506 struct input *input = data;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001507 struct widget *widget;
Kristian Høgsbergbf6ceda2010-06-14 20:25:06 -04001508
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001509 if (input->focus_widget && input->grab == NULL && state)
1510 input_grab(input, input->focus_widget, button);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001511
Neil Roberts6b28aad2012-01-23 19:11:18 +00001512 widget = input->grab;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001513 if (widget && widget->button_handler)
Neil Roberts6b28aad2012-01-23 19:11:18 +00001514 (*widget->button_handler)(widget,
1515 input, time,
1516 button, state,
1517 input->grab->user_data);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001518
Kristian Høgsberg831dd522012-01-10 23:46:33 -05001519 if (input->grab && input->grab_button == button && !state)
1520 input_ungrab(input, time);
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001521}
1522
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001523static void
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05001524input_handle_key(void *data, struct wl_input_device *input_device,
1525 uint32_t time, uint32_t key, uint32_t state)
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001526{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001527 struct input *input = data;
1528 struct window *window = input->keyboard_focus;
Pekka Paalanena03a93c2011-11-28 16:13:57 +02001529 struct display *d = input->display;
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04001530 uint32_t code, sym, level;
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001531
Daniel Stone0d5a5092012-02-16 12:48:00 +00001532 code = key + 8;
Pekka Paalanena03a93c2011-11-28 16:13:57 +02001533 if (!window || window->keyboard_device != input)
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001534 return;
1535
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04001536 level = 0;
Kristian Høgsberg23c03ad2011-01-19 14:41:20 -05001537 if (input->modifiers & XKB_COMMON_SHIFT_MASK &&
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04001538 XkbKeyGroupWidth(d->xkb, code, 0) > 1)
1539 level = 1;
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001540
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04001541 sym = XkbKeySymEntry(d->xkb, code, level, 0);
1542
1543 if (state)
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001544 input->modifiers |= d->xkb->map->modmap[code];
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04001545 else
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001546 input->modifiers &= ~d->xkb->map->modmap[code];
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001547
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05001548 if (key == KEY_F5 && input->modifiers == Mod4Mask) {
1549 if (state)
1550 window_set_maximized(window,
1551 window->type != TYPE_MAXIMIZED);
1552 } else if (window->key_handler) {
1553 (*window->key_handler)(window, input, time, key,
1554 sym, state, window->user_data);
1555 }
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001556}
1557
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001558static void
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05001559input_remove_pointer_focus(struct input *input, uint32_t time)
Pekka Paalanene1207c72011-12-16 12:02:09 +02001560{
1561 struct window *window = input->pointer_focus;
1562
1563 if (!window)
1564 return;
1565
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001566 input_set_focus_widget(input, NULL, 0, 0, 0);
Pekka Paalanene1207c72011-12-16 12:02:09 +02001567
Pekka Paalanene1207c72011-12-16 12:02:09 +02001568 input->pointer_focus = NULL;
1569 input->current_pointer_image = POINTER_UNSET;
1570}
1571
1572static void
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001573input_handle_pointer_enter(void *data,
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05001574 struct wl_input_device *input_device,
1575 uint32_t time, struct wl_surface *surface,
Pekka Paalanenb29f4122012-02-14 14:59:18 +02001576 int32_t sx, int32_t sy)
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001577{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001578 struct input *input = data;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001579 struct window *window;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001580 struct widget *widget;
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001581
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001582 input->pointer_focus = wl_surface_get_user_data(surface);
Kristian Høgsberg900b2262011-09-06 14:33:52 -04001583 window = input->pointer_focus;
Kristian Høgsberg900b2262011-09-06 14:33:52 -04001584
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001585 input->sx = sx;
1586 input->sy = sy;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001587
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001588 widget = widget_find_widget(window->widget, sx, sy);
1589 input_set_focus_widget(input, widget, time, sx, sy);
1590}
Kristian Høgsberg59826582011-01-20 11:56:57 -05001591
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001592static void
1593input_handle_pointer_leave(void *data,
1594 struct wl_input_device *input_device,
1595 uint32_t time, struct wl_surface *surface)
1596{
1597 struct input *input = data;
1598
1599 input_remove_pointer_focus(input, time);
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001600}
1601
1602static void
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05001603input_remove_keyboard_focus(struct input *input)
Pekka Paalanene1207c72011-12-16 12:02:09 +02001604{
1605 struct window *window = input->keyboard_focus;
1606
1607 if (!window)
1608 return;
1609
1610 window->keyboard_device = NULL;
1611 if (window->keyboard_focus_handler)
1612 (*window->keyboard_focus_handler)(window, NULL,
1613 window->user_data);
1614
1615 input->keyboard_focus = NULL;
1616}
1617
1618static void
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001619input_handle_keyboard_enter(void *data,
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05001620 struct wl_input_device *input_device,
1621 uint32_t time,
1622 struct wl_surface *surface,
1623 struct wl_array *keys)
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001624{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001625 struct input *input = data;
Pekka Paalanene1207c72011-12-16 12:02:09 +02001626 struct window *window;
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001627 struct display *d = input->display;
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05001628 uint32_t *k, *end;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05001629
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001630 input->keyboard_focus = wl_surface_get_user_data(surface);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001631
1632 end = keys->data + keys->size;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -05001633 input->modifiers = 0;
Kristian Høgsberg808fd412010-07-20 17:06:19 -04001634 for (k = keys->data; k < end; k++)
1635 input->modifiers |= d->xkb->map->modmap[*k];
1636
1637 window = input->keyboard_focus;
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001638 window->keyboard_device = input;
1639 if (window->keyboard_focus_handler)
1640 (*window->keyboard_focus_handler)(window,
1641 window->keyboard_device,
1642 window->user_data);
1643}
1644
1645static void
1646input_handle_keyboard_leave(void *data,
1647 struct wl_input_device *input_device,
1648 uint32_t time,
1649 struct wl_surface *surface)
1650{
1651 struct input *input = data;
1652
1653 input_remove_keyboard_focus(input);
Kristian Høgsbergdb6c2f32009-02-22 21:51:24 -05001654}
1655
Kristian Høgsberge04ad572011-12-21 17:14:54 -05001656static void
1657input_handle_touch_down(void *data,
1658 struct wl_input_device *wl_input_device,
1659 uint32_t time, struct wl_surface *surface,
1660 int32_t id, int32_t x, int32_t y)
1661{
1662}
1663
1664static void
1665input_handle_touch_up(void *data,
1666 struct wl_input_device *wl_input_device,
1667 uint32_t time, int32_t id)
1668{
1669}
1670
1671static void
1672input_handle_touch_motion(void *data,
1673 struct wl_input_device *wl_input_device,
1674 uint32_t time, int32_t id, int32_t x, int32_t y)
1675{
1676}
1677
1678static void
1679input_handle_touch_frame(void *data,
1680 struct wl_input_device *wl_input_device)
1681{
1682}
1683
1684static void
1685input_handle_touch_cancel(void *data,
1686 struct wl_input_device *wl_input_device)
1687{
1688}
1689
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001690static const struct wl_input_device_listener input_device_listener = {
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05001691 input_handle_motion,
1692 input_handle_button,
1693 input_handle_key,
Kristian Høgsberg06d58b72012-02-23 09:59:05 -05001694 input_handle_pointer_enter,
1695 input_handle_pointer_leave,
1696 input_handle_keyboard_enter,
1697 input_handle_keyboard_leave,
Kristian Høgsberge04ad572011-12-21 17:14:54 -05001698 input_handle_touch_down,
1699 input_handle_touch_up,
1700 input_handle_touch_motion,
1701 input_handle_touch_frame,
1702 input_handle_touch_cancel,
Kristian Høgsberg94448c02008-12-30 11:03:33 -05001703};
1704
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001705void
1706input_get_position(struct input *input, int32_t *x, int32_t *y)
1707{
1708 *x = input->sx;
1709 *y = input->sy;
1710}
1711
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04001712struct wl_input_device *
1713input_get_input_device(struct input *input)
1714{
1715 return input->input_device;
1716}
1717
Kristian Høgsberg67cac8a2011-01-19 14:20:33 -05001718uint32_t
1719input_get_modifiers(struct input *input)
1720{
1721 return input->modifiers;
1722}
1723
Kristian Høgsbergb6323512012-01-11 00:04:42 -05001724struct widget *
1725input_get_focus_widget(struct input *input)
1726{
1727 return input->focus_widget;
1728}
1729
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04001730struct data_offer {
1731 struct wl_data_offer *offer;
1732 struct input *input;
1733 struct wl_array types;
1734 int refcount;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001735
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04001736 struct task io_task;
1737 int fd;
1738 data_func_t func;
1739 int32_t x, y;
1740 void *user_data;
1741};
1742
1743static void
1744data_offer_offer(void *data, struct wl_data_offer *wl_data_offer, const char *type)
1745{
1746 struct data_offer *offer = data;
1747 char **p;
1748
1749 p = wl_array_add(&offer->types, sizeof *p);
1750 *p = strdup(type);
1751}
1752
1753static const struct wl_data_offer_listener data_offer_listener = {
1754 data_offer_offer,
1755};
1756
1757static void
1758data_offer_destroy(struct data_offer *offer)
1759{
1760 char **p;
1761
1762 offer->refcount--;
1763 if (offer->refcount == 0) {
1764 wl_data_offer_destroy(offer->offer);
1765 for (p = offer->types.data; *p; p++)
1766 free(*p);
1767 wl_array_release(&offer->types);
1768 free(offer);
1769 }
1770}
1771
1772static void
1773data_device_data_offer(void *data,
1774 struct wl_data_device *data_device, uint32_t id)
1775{
1776 struct data_offer *offer;
1777
1778 offer = malloc(sizeof *offer);
1779
1780 wl_array_init(&offer->types);
1781 offer->refcount = 1;
1782 offer->input = data;
1783
1784 /* FIXME: Generate typesafe wrappers for this */
1785 offer->offer = (struct wl_data_offer *)
1786 wl_proxy_create_for_id((struct wl_proxy *) data_device,
1787 id, &wl_data_offer_interface);
1788
1789 wl_data_offer_add_listener(offer->offer,
1790 &data_offer_listener, offer);
1791}
1792
1793static void
1794data_device_enter(void *data, struct wl_data_device *data_device,
1795 uint32_t time, struct wl_surface *surface,
1796 int32_t x, int32_t y, struct wl_data_offer *offer)
1797{
1798 struct input *input = data;
1799 struct window *window;
1800 char **p;
1801
1802 input->drag_offer = wl_data_offer_get_user_data(offer);
1803 window = wl_surface_get_user_data(surface);
1804 input->pointer_focus = window;
1805
1806 p = wl_array_add(&input->drag_offer->types, sizeof *p);
1807 *p = NULL;
1808
1809 window = input->pointer_focus;
1810 if (window->data_handler)
1811 window->data_handler(window, input, time, x, y,
1812 input->drag_offer->types.data,
1813 window->user_data);
1814}
1815
1816static void
1817data_device_leave(void *data, struct wl_data_device *data_device)
1818{
1819 struct input *input = data;
1820
1821 data_offer_destroy(input->drag_offer);
1822 input->drag_offer = NULL;
1823}
1824
1825static void
1826data_device_motion(void *data, struct wl_data_device *data_device,
1827 uint32_t time, int32_t x, int32_t y)
1828{
1829 struct input *input = data;
1830 struct window *window = input->pointer_focus;
1831
1832 input->sx = x;
1833 input->sy = y;
1834
1835 if (window->data_handler)
1836 window->data_handler(window, input, time, x, y,
1837 input->drag_offer->types.data,
1838 window->user_data);
1839}
1840
1841static void
1842data_device_drop(void *data, struct wl_data_device *data_device)
1843{
1844 struct input *input = data;
1845 struct window *window = input->pointer_focus;
1846
1847 if (window->drop_handler)
1848 window->drop_handler(window, input,
1849 input->sx, input->sy, window->user_data);
1850}
1851
1852static void
1853data_device_selection(void *data,
1854 struct wl_data_device *wl_data_device,
1855 struct wl_data_offer *offer)
1856{
1857 struct input *input = data;
1858 char **p;
1859
1860 if (input->selection_offer)
1861 data_offer_destroy(input->selection_offer);
1862
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05001863 if (offer) {
1864 input->selection_offer = wl_data_offer_get_user_data(offer);
1865 p = wl_array_add(&input->selection_offer->types, sizeof *p);
1866 *p = NULL;
1867 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04001868}
1869
1870static const struct wl_data_device_listener data_device_listener = {
1871 data_device_data_offer,
1872 data_device_enter,
1873 data_device_leave,
1874 data_device_motion,
1875 data_device_drop,
1876 data_device_selection
1877};
1878
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001879void
1880input_set_pointer_image(struct input *input, uint32_t time, int pointer)
1881{
1882 struct display *display = input->display;
1883 struct wl_buffer *buffer;
1884 cairo_surface_t *surface;
1885
1886 if (pointer == input->current_pointer_image)
1887 return;
1888
1889 input->current_pointer_image = pointer;
1890 surface = display->pointer_surfaces[pointer];
1891
1892 if (!surface)
1893 return;
1894
1895 buffer = display_get_buffer_for_surface(display, surface);
1896 wl_input_device_attach(input->input_device, time, buffer,
1897 pointer_images[pointer].hotspot_x,
1898 pointer_images[pointer].hotspot_y);
1899}
1900
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04001901struct wl_data_device *
1902input_get_data_device(struct input *input)
1903{
1904 return input->data_device;
1905}
1906
1907void
1908input_set_selection(struct input *input,
1909 struct wl_data_source *source, uint32_t time)
1910{
1911 wl_data_device_set_selection(input->data_device, source, time);
1912}
1913
1914void
1915input_accept(struct input *input, uint32_t time, const char *type)
1916{
1917 wl_data_offer_accept(input->drag_offer->offer, time, type);
1918}
1919
1920static void
1921offer_io_func(struct task *task, uint32_t events)
1922{
1923 struct data_offer *offer =
1924 container_of(task, struct data_offer, io_task);
1925 unsigned int len;
1926 char buffer[4096];
1927
1928 len = read(offer->fd, buffer, sizeof buffer);
1929 offer->func(buffer, len,
1930 offer->x, offer->y, offer->user_data);
1931
1932 if (len == 0) {
1933 close(offer->fd);
1934 data_offer_destroy(offer);
1935 }
1936}
1937
1938static void
1939data_offer_receive_data(struct data_offer *offer, const char *mime_type,
1940 data_func_t func, void *user_data)
1941{
1942 int p[2];
1943
1944 pipe2(p, O_CLOEXEC);
1945 wl_data_offer_receive(offer->offer, mime_type, p[1]);
1946 close(p[1]);
1947
1948 offer->io_task.run = offer_io_func;
1949 offer->fd = p[0];
1950 offer->func = func;
1951 offer->refcount++;
1952 offer->user_data = user_data;
1953
1954 display_watch_fd(offer->input->display,
1955 offer->fd, EPOLLIN, &offer->io_task);
1956}
1957
1958void
1959input_receive_drag_data(struct input *input, const char *mime_type,
1960 data_func_t func, void *data)
1961{
1962 data_offer_receive_data(input->drag_offer, mime_type, func, data);
1963 input->drag_offer->x = input->sx;
1964 input->drag_offer->y = input->sy;
1965}
1966
1967int
1968input_receive_selection_data(struct input *input, const char *mime_type,
1969 data_func_t func, void *data)
1970{
1971 char **p;
1972
1973 if (input->selection_offer == NULL)
1974 return -1;
1975
1976 for (p = input->selection_offer->types.data; *p; p++)
1977 if (strcmp(mime_type, *p) == 0)
1978 break;
1979
1980 if (*p == NULL)
1981 return -1;
1982
1983 data_offer_receive_data(input->selection_offer,
1984 mime_type, func, data);
1985 return 0;
Kristian Høgsberg41da9082010-11-30 14:01:07 -05001986}
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04001987
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05001988int
1989input_receive_selection_data_to_fd(struct input *input,
1990 const char *mime_type, int fd)
1991{
1992 wl_data_offer_receive(input->selection_offer->offer, mime_type, fd);
1993
1994 return 0;
1995}
1996
Kristian Høgsberg41da9082010-11-30 14:01:07 -05001997void
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05001998window_move(struct window *window, struct input *input, uint32_t time)
1999{
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002000 if (!window->shell_surface)
2001 return;
2002
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002003 wl_shell_surface_move(window->shell_surface,
2004 input->input_device, time);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002005}
2006
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002007static void
Kristian Høgsberg2ad3b7f2012-01-31 15:34:15 -05002008idle_resize(struct task *task, uint32_t events)
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002009{
Kristian Høgsberg2ad3b7f2012-01-31 15:34:15 -05002010 struct window *window =
2011 container_of(task, struct window, resize_task);
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002012 struct widget *widget;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002013
Kristian Høgsberg2ad3b7f2012-01-31 15:34:15 -05002014 window->resize_scheduled = 0;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002015 widget = window->widget;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002016 widget_set_allocation(widget,
2017 window->pending_allocation.x,
2018 window->pending_allocation.y,
2019 window->pending_allocation.width,
2020 window->pending_allocation.height);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002021
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002022 if (window->input_region) {
2023 wl_region_destroy(window->input_region);
2024 window->input_region = NULL;
2025 }
2026
2027 if (window->opaque_region) {
2028 wl_region_destroy(window->opaque_region);
2029 window->opaque_region = NULL;
2030 }
2031
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002032 if (widget->resize_handler)
2033 widget->resize_handler(widget,
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002034 widget->allocation.width,
2035 widget->allocation.height,
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002036 widget->user_data);
2037
Kristian Høgsberg8e054f72012-01-31 11:53:20 -05002038 if (window->allocation.width != widget->allocation.width ||
2039 window->allocation.height != widget->allocation.height) {
2040 window->allocation = widget->allocation;
2041 window_schedule_redraw(window);
2042 }
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002043}
2044
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002045void
2046window_schedule_resize(struct window *window, int width, int height)
2047{
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002048 window->pending_allocation.x = 0;
2049 window->pending_allocation.y = 0;
2050 window->pending_allocation.width = width;
2051 window->pending_allocation.height = height;
2052
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002053 if (!window->resize_scheduled) {
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002054 window->resize_task.run = idle_resize;
2055 display_defer(window->display, &window->resize_task);
2056 window->resize_scheduled = 1;
2057 }
2058}
2059
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002060void
2061widget_schedule_resize(struct widget *widget, int32_t width, int32_t height)
2062{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002063 window_schedule_resize(widget->window, width, height);
Kristian Høgsbergbb977002012-01-10 19:11:42 -05002064}
2065
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002066static void
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002067handle_configure(void *data, struct wl_shell_surface *shell_surface,
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002068 uint32_t time, uint32_t edges,
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002069 int32_t width, int32_t height)
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002070{
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002071 struct window *window = data;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002072
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002073 if (width <= 0 || height <= 0)
Tim Wiederhake8a6f7e32011-01-17 12:40:01 +01002074 return;
2075
Tim Wiederhakeb6761dc2011-01-17 17:50:07 +01002076 window->resize_edges = edges;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05002077 window_schedule_resize(window, width, height);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002078}
2079
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002080static void
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002081menu_destroy(struct menu *menu)
2082{
2083 widget_destroy(menu->widget);
2084 window_destroy(menu->window);
2085 free(menu);
2086}
2087
2088static void
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002089handle_popup_done(void *data, struct wl_shell_surface *shell_surface)
2090{
2091 struct window *window = data;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002092 struct menu *menu = window->widget->user_data;
2093
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002094 /* FIXME: Need more context in this event, at least the input
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002095 * device. Or just use wl_callback. And this really needs to
2096 * be a window vfunc that the menu can set. And we need the
2097 * time. */
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002098
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002099 menu->func(window->parent, menu->current, window->parent->user_data);
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002100 input_ungrab(menu->input, 0);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002101 menu_destroy(menu);
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002102}
2103
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002104static const struct wl_shell_surface_listener shell_surface_listener = {
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002105 handle_configure,
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002106 handle_popup_done
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04002107};
2108
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002109void
Benjamin Franzkecff904e2011-02-18 23:00:55 +01002110window_get_allocation(struct window *window,
2111 struct rectangle *allocation)
2112{
2113 *allocation = window->allocation;
2114}
2115
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002116static void
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002117widget_redraw(struct widget *widget)
2118{
2119 struct widget *child;
2120
2121 if (widget->redraw_handler)
2122 widget->redraw_handler(widget, widget->user_data);
2123 wl_list_for_each(child, &widget->child_list, link)
2124 widget_redraw(child);
2125}
2126
2127static void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002128idle_redraw(struct task *task, uint32_t events)
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002129{
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002130 struct window *window =
2131 container_of(task, struct window, redraw_task);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002132
Kristian Høgsberg5d129902012-01-10 10:49:41 -05002133 window_create_surface(window);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05002134 widget_redraw(window->widget);
Kristian Høgsberg5d129902012-01-10 10:49:41 -05002135 window_flush(window);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002136 window->redraw_scheduled = 0;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002137}
2138
2139void
2140window_schedule_redraw(struct window *window)
2141{
2142 if (!window->redraw_scheduled) {
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002143 window->redraw_task.run = idle_redraw;
2144 display_defer(window->display, &window->redraw_task);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04002145 window->redraw_scheduled = 1;
2146 }
2147}
2148
Kristian Høgsberg0ac16f02009-01-15 11:37:43 -05002149void
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002150window_set_custom(struct window *window)
2151{
2152 window->type = TYPE_CUSTOM;
2153}
2154
2155void
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002156window_set_fullscreen(struct window *window, int fullscreen)
2157{
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002158 if (!window->display->shell)
2159 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002160
Kristian Høgsberg547da5a2011-09-13 20:58:00 -04002161 if ((window->type == TYPE_FULLSCREEN) == fullscreen)
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05002162 return;
2163
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002164 if (fullscreen) {
2165 window->type = TYPE_FULLSCREEN;
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002166 window->saved_allocation = window->allocation;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002167 wl_shell_surface_set_fullscreen(window->shell_surface,
2168 WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
2169 0, NULL);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002170 } else {
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002171 window->type = TYPE_TOPLEVEL;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002172 wl_shell_surface_set_toplevel(window->shell_surface);
2173 window_schedule_resize(window,
2174 window->saved_allocation.width,
2175 window->saved_allocation.height);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002176 }
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002177}
2178
2179void
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05002180window_set_maximized(struct window *window, int maximized)
2181{
2182 if (!window->display->shell)
2183 return;
2184
2185 if ((window->type == TYPE_MAXIMIZED) == maximized)
2186 return;
2187
2188 if (window->type == TYPE_TOPLEVEL) {
2189 window->saved_allocation = window->allocation;
2190 wl_shell_surface_set_maximized(window->shell_surface, NULL);
2191 window->type = TYPE_MAXIMIZED;
2192 } else {
2193 wl_shell_surface_set_toplevel(window->shell_surface);
2194 window->type = TYPE_TOPLEVEL;
2195 window_schedule_resize(window,
2196 window->saved_allocation.width,
2197 window->saved_allocation.height);
2198 }
2199}
2200
2201void
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002202window_set_user_data(struct window *window, void *data)
2203{
2204 window->user_data = data;
2205}
2206
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04002207void *
2208window_get_user_data(struct window *window)
2209{
2210 return window->user_data;
2211}
2212
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002213void
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002214window_set_key_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002215 window_key_handler_t handler)
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002216{
2217 window->key_handler = handler;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05002218}
2219
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002220void
2221window_set_keyboard_focus_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04002222 window_keyboard_focus_handler_t handler)
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002223{
2224 window->keyboard_focus_handler = handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05002225}
2226
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002227void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002228window_set_data_handler(struct window *window, window_data_handler_t handler)
2229{
2230 window->data_handler = handler;
2231}
2232
2233void
2234window_set_drop_handler(struct window *window, window_drop_handler_t handler)
2235{
2236 window->drop_handler = handler;
2237}
2238
2239void
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002240window_set_close_handler(struct window *window,
2241 window_close_handler_t handler)
2242{
2243 window->close_handler = handler;
2244}
2245
2246void
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002247window_set_title(struct window *window, const char *title)
2248{
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -05002249 free(window->title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13002250 window->title = strdup(title);
2251}
2252
2253const char *
2254window_get_title(struct window *window)
2255{
2256 return window->title;
2257}
2258
2259void
Benjamin Franzkebde55ec2011-03-07 15:08:09 +01002260display_surface_damage(struct display *display, cairo_surface_t *cairo_surface,
2261 int32_t x, int32_t y, int32_t width, int32_t height)
2262{
2263 struct wl_buffer *buffer;
2264
2265 buffer = display_get_buffer_for_surface(display, cairo_surface);
2266
2267 wl_buffer_damage(buffer, x, y, width, height);
2268}
2269
2270void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002271window_damage(struct window *window, int32_t x, int32_t y,
2272 int32_t width, int32_t height)
2273{
2274 wl_surface_damage(window->surface, x, y, width, height);
2275}
2276
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002277static struct window *
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002278window_create_internal(struct display *display, struct window *parent)
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05002279{
Kristian Høgsberg1cbaa6a2008-11-07 15:54:48 -05002280 struct window *window;
2281
2282 window = malloc(sizeof *window);
2283 if (window == NULL)
2284 return NULL;
2285
Kristian Høgsberg78231c82008-11-08 15:06:01 -05002286 memset(window, 0, sizeof *window);
Kristian Høgsberg40979232008-11-25 22:40:39 -05002287 window->display = display;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002288 window->parent = parent;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002289 window->surface = wl_compositor_create_surface(display->compositor);
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002290 if (display->shell) {
2291 window->shell_surface =
2292 wl_shell_get_shell_surface(display->shell,
2293 window->surface);
2294 }
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05002295 window->allocation.x = 0;
2296 window->allocation.y = 0;
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002297 window->allocation.width = 0;
2298 window->allocation.height = 0;
Kristian Høgsberg0395f302008-12-22 12:14:50 -05002299 window->saved_allocation = window->allocation;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -04002300 window->transparent = 1;
Tiago Vignattia571e752012-02-09 19:06:54 +02002301 window->type = TYPE_TOPLEVEL;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002302 window->input_region = NULL;
2303 window->opaque_region = NULL;
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -05002304
Kristian Høgsberg297c6312011-02-04 14:11:33 -05002305 if (display->dpy)
Benjamin Franzke22d54812011-07-16 19:50:32 +00002306#ifdef HAVE_CAIRO_EGL
Benjamin Franzke6693ac22011-02-10 12:04:30 +01002307 /* FIXME: make TYPE_EGL_IMAGE choosable for testing */
2308 window->buffer_type = WINDOW_BUFFER_TYPE_EGL_WINDOW;
Benjamin Franzke22d54812011-07-16 19:50:32 +00002309#else
2310 window->buffer_type = WINDOW_BUFFER_TYPE_SHM;
2311#endif
Yuval Fledel45568f62010-12-06 09:18:12 -05002312 else
2313 window->buffer_type = WINDOW_BUFFER_TYPE_SHM;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002314
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002315 wl_surface_set_user_data(window->surface, window);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04002316 wl_list_insert(display->window_list.prev, &window->link);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002317
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02002318 if (window->shell_surface) {
2319 wl_shell_surface_set_user_data(window->shell_surface, window);
2320 wl_shell_surface_add_listener(window->shell_surface,
2321 &shell_surface_listener, window);
2322 }
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02002323
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002324 return window;
2325}
2326
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002327struct window *
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002328window_create(struct display *display)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002329{
2330 struct window *window;
2331
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002332 window = window_create_internal(display, NULL);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002333 if (!window)
2334 return NULL;
2335
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002336 window->type = TYPE_TOPLEVEL;
2337 if (display->shell)
2338 wl_shell_surface_set_toplevel(window->shell_surface);
2339
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002340 return window;
2341}
2342
2343struct window *
2344window_create_transient(struct display *display, struct window *parent,
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002345 int32_t x, int32_t y)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002346{
2347 struct window *window;
2348
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002349 window = window_create_internal(parent->display, parent);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002350 if (!window)
2351 return NULL;
2352
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04002353 window->type = TYPE_TRANSIENT;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002354 window->x = x;
2355 window->y = y;
2356
Kristian Høgsberg1517def2012-02-16 22:56:12 -05002357 if (display->shell)
2358 wl_shell_surface_set_transient(window->shell_surface,
2359 window->parent->shell_surface,
2360 window->x, window->y, 0);
2361
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002362 return window;
2363}
2364
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002365static void
Kristian Høgsberg19dd1d72012-01-09 10:42:41 -05002366menu_set_item(struct menu *menu, int sy)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002367{
2368 int next;
2369
2370 next = (sy - 8) / 20;
2371 if (menu->current != next) {
2372 menu->current = next;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002373 widget_schedule_redraw(menu->widget);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002374 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002375}
2376
2377static int
Kristian Høgsberg5f190ef2012-01-09 09:44:45 -05002378menu_motion_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002379 struct input *input, uint32_t time,
Kristian Høgsberg5f190ef2012-01-09 09:44:45 -05002380 int32_t x, int32_t y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002381{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002382 struct menu *menu = data;
2383
2384 if (widget == menu->widget)
2385 menu_set_item(data, y);
2386
2387 return POINTER_LEFT_PTR;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002388}
2389
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05002390static int
Kristian Høgsberg391649b2012-01-09 09:22:30 -05002391menu_enter_handler(struct widget *widget,
2392 struct input *input, uint32_t time,
2393 int32_t x, int32_t y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002394{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002395 struct menu *menu = data;
2396
2397 if (widget == menu->widget)
2398 menu_set_item(data, y);
2399
2400 return POINTER_LEFT_PTR;
Kristian Høgsberg391649b2012-01-09 09:22:30 -05002401}
2402
2403static void
2404menu_leave_handler(struct widget *widget, struct input *input, void *data)
2405{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002406 struct menu *menu = data;
2407
2408 if (widget == menu->widget)
2409 menu_set_item(data, -200);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002410}
2411
2412static void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05002413menu_button_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002414 struct input *input, uint32_t time,
2415 int button, int state, void *data)
2416
2417{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002418 struct menu *menu = data;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002419
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002420 if (state == 0 && time - menu->time > 500) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002421 /* Either relase after press-drag-release or
2422 * click-motion-click. */
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002423 menu->func(menu->window->parent,
2424 menu->current, menu->window->parent->user_data);
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002425 input_ungrab(input, time);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002426 menu_destroy(menu);
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002427 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002428}
2429
2430static void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002431menu_redraw_handler(struct widget *widget, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002432{
2433 cairo_t *cr;
2434 const int32_t r = 3, margin = 3;
2435 struct menu *menu = data;
2436 int32_t width, height, i;
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002437 struct window *window = widget->window;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002438
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002439 cr = cairo_create(window->cairo_surface);
2440 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
2441 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
2442 cairo_paint(cr);
2443
2444 width = window->allocation.width;
2445 height = window->allocation.height;
2446 rounded_rect(cr, 0, 0, width, height, r);
Kristian Høgsberg824c6d02012-01-19 13:54:09 -05002447
2448 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002449 cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
2450 cairo_fill(cr);
2451
2452 for (i = 0; i < menu->count; i++) {
2453 if (i == menu->current) {
2454 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
2455 cairo_rectangle(cr, margin, i * 20 + margin,
2456 width - 2 * margin, 20);
2457 cairo_fill(cr);
2458 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
2459 cairo_move_to(cr, 10, i * 20 + 16);
2460 cairo_show_text(cr, menu->entries[i]);
2461 } else {
2462 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
2463 cairo_move_to(cr, 10, i * 20 + 16);
2464 cairo_show_text(cr, menu->entries[i]);
2465 }
2466 }
2467
2468 cairo_destroy(cr);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002469}
2470
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002471void
2472window_show_menu(struct display *display,
2473 struct input *input, uint32_t time, struct window *parent,
2474 int32_t x, int32_t y,
2475 menu_func_t func, const char **entries, int count)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002476{
2477 struct window *window;
2478 struct menu *menu;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002479 const int32_t margin = 3;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002480
2481 menu = malloc(sizeof *menu);
2482 if (!menu)
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002483 return;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002484
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002485 window = window_create_internal(parent->display, parent);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002486 if (!window)
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02002487 return;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002488
2489 menu->window = window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002490 menu->widget = window_add_widget(menu->window, menu);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002491 menu->entries = entries;
2492 menu->count = count;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002493 menu->current = -1;
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002494 menu->time = time;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05002495 menu->func = func;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002496 menu->input = input;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002497 window->type = TYPE_MENU;
2498 window->x = x;
2499 window->y = y;
2500
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05002501 wl_shell_surface_set_popup(window->shell_surface,
2502 input->input_device, time,
2503 window->parent->shell_surface,
2504 window->x, window->y, 0);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002505
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05002506 widget_set_redraw_handler(menu->widget, menu_redraw_handler);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05002507 widget_set_enter_handler(menu->widget, menu_enter_handler);
2508 widget_set_leave_handler(menu->widget, menu_leave_handler);
2509 widget_set_motion_handler(menu->widget, menu_motion_handler);
2510 widget_set_button_handler(menu->widget, menu_button_handler);
Kristian Høgsberg391649b2012-01-09 09:22:30 -05002511
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002512 input_grab(input, menu->widget, 0);
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05002513 window_schedule_resize(window, 200, count * 20 + margin * 2);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05002514}
2515
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05002516void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04002517window_set_buffer_type(struct window *window, enum window_buffer_type type)
2518{
2519 window->buffer_type = type;
2520}
2521
Kristian Høgsberg8357cd62011-05-13 13:24:56 -04002522
2523static void
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002524display_handle_geometry(void *data,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04002525 struct wl_output *wl_output,
2526 int x, int y,
2527 int physical_width,
2528 int physical_height,
2529 int subpixel,
2530 const char *make,
2531 const char *model)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002532{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002533 struct output *output = data;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002534
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002535 output->allocation.x = x;
2536 output->allocation.y = y;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04002537}
2538
2539static void
2540display_handle_mode(void *data,
2541 struct wl_output *wl_output,
2542 uint32_t flags,
2543 int width,
2544 int height,
2545 int refresh)
2546{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002547 struct output *output = data;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02002548 struct display *display = output->display;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04002549
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002550 if (flags & WL_OUTPUT_MODE_CURRENT) {
2551 output->allocation.width = width;
2552 output->allocation.height = height;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02002553 if (display->output_configure_handler)
2554 (*display->output_configure_handler)(
2555 output, display->user_data);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002556 }
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002557}
2558
2559static const struct wl_output_listener output_listener = {
2560 display_handle_geometry,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04002561 display_handle_mode
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002562};
2563
2564static void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002565display_add_output(struct display *d, uint32_t id)
2566{
2567 struct output *output;
2568
2569 output = malloc(sizeof *output);
2570 if (output == NULL)
2571 return;
2572
2573 memset(output, 0, sizeof *output);
2574 output->display = d;
2575 output->output =
2576 wl_display_bind(d->display, id, &wl_output_interface);
2577 wl_list_insert(d->output_list.prev, &output->link);
2578
2579 wl_output_add_listener(output->output, &output_listener, output);
2580}
2581
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02002582static void
2583output_destroy(struct output *output)
2584{
2585 if (output->destroy_handler)
2586 (*output->destroy_handler)(output, output->user_data);
2587
2588 wl_output_destroy(output->output);
2589 wl_list_remove(&output->link);
2590 free(output);
2591}
2592
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002593void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02002594display_set_output_configure_handler(struct display *display,
2595 display_output_handler_t handler)
2596{
2597 struct output *output;
2598
2599 display->output_configure_handler = handler;
2600 if (!handler)
2601 return;
2602
2603 wl_list_for_each(output, &display->output_list, link)
2604 (*display->output_configure_handler)(output,
2605 display->user_data);
2606}
2607
2608void
2609output_set_user_data(struct output *output, void *data)
2610{
2611 output->user_data = data;
2612}
2613
2614void *
2615output_get_user_data(struct output *output)
2616{
2617 return output->user_data;
2618}
2619
2620void
2621output_set_destroy_handler(struct output *output,
2622 display_output_handler_t handler)
2623{
2624 output->destroy_handler = handler;
2625 /* FIXME: implement this, once we have way to remove outputs */
2626}
2627
2628void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002629output_get_allocation(struct output *output, struct rectangle *allocation)
2630{
2631 *allocation = output->allocation;
2632}
2633
Pekka Paalanen999c5b52011-11-30 10:52:38 +02002634struct wl_output *
2635output_get_wl_output(struct output *output)
2636{
2637 return output->output;
2638}
2639
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002640static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04002641display_add_input(struct display *d, uint32_t id)
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002642{
2643 struct input *input;
2644
2645 input = malloc(sizeof *input);
2646 if (input == NULL)
2647 return;
2648
2649 memset(input, 0, sizeof *input);
2650 input->display = d;
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04002651 input->input_device =
2652 wl_display_bind(d->display, id, &wl_input_device_interface);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002653 input->pointer_focus = NULL;
2654 input->keyboard_focus = NULL;
2655 wl_list_insert(d->input_list.prev, &input->link);
2656
2657 wl_input_device_add_listener(input->input_device,
2658 &input_device_listener, input);
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002659 wl_input_device_set_user_data(input->input_device, input);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002660
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002661 input->data_device =
2662 wl_data_device_manager_get_data_device(d->data_device_manager,
2663 input->input_device);
2664 wl_data_device_add_listener(input->data_device,
2665 &data_device_listener, input);
Kristian Høgsberg58eec362011-01-19 14:27:42 -05002666}
2667
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002668static void
Pekka Paalanene1207c72011-12-16 12:02:09 +02002669input_destroy(struct input *input)
2670{
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05002671 input_remove_keyboard_focus(input);
2672 input_remove_pointer_focus(input, 0);
Pekka Paalanene1207c72011-12-16 12:02:09 +02002673
2674 if (input->drag_offer)
2675 data_offer_destroy(input->drag_offer);
2676
2677 if (input->selection_offer)
2678 data_offer_destroy(input->selection_offer);
2679
2680 wl_data_device_destroy(input->data_device);
2681 wl_list_remove(&input->link);
2682 wl_input_device_destroy(input->input_device);
2683 free(input);
2684}
2685
2686static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04002687display_handle_global(struct wl_display *display, uint32_t id,
2688 const char *interface, uint32_t version, void *data)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002689{
2690 struct display *d = data;
2691
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04002692 if (strcmp(interface, "wl_compositor") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04002693 d->compositor =
2694 wl_display_bind(display, id, &wl_compositor_interface);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04002695 } else if (strcmp(interface, "wl_output") == 0) {
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002696 display_add_output(d, id);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04002697 } else if (strcmp(interface, "wl_input_device") == 0) {
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04002698 display_add_input(d, id);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04002699 } else if (strcmp(interface, "wl_shell") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04002700 d->shell = wl_display_bind(display, id, &wl_shell_interface);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04002701 } else if (strcmp(interface, "wl_shm") == 0) {
Kristian Høgsberga8d1fa72011-08-23 18:14:06 -04002702 d->shm = wl_display_bind(display, id, &wl_shm_interface);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04002703 } else if (strcmp(interface, "wl_data_device_manager") == 0) {
2704 d->data_device_manager =
2705 wl_display_bind(display, id,
2706 &wl_data_device_manager_interface);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002707 }
2708}
2709
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04002710static void
2711display_render_frame(struct display *d)
2712{
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04002713 cairo_t *cr;
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04002714 cairo_pattern_t *pattern;
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04002715
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04002716 d->frame_radius = 3;
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04002717 d->shadow = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 128, 128);
2718 cr = cairo_create(d->shadow);
2719 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
2720 cairo_set_source_rgba(cr, 0, 0, 0, 1);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002721 rounded_rect(cr, 16, 16, 112, 112, d->frame_radius);
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04002722 cairo_fill(cr);
2723 cairo_destroy(cr);
2724 blur_surface(d->shadow, 64);
2725
2726 d->active_frame =
2727 cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 128, 128);
2728 cr = cairo_create(d->active_frame);
2729 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04002730
2731 pattern = cairo_pattern_create_linear(16, 16, 16, 112);
2732 cairo_pattern_add_color_stop_rgb(pattern, 0.0, 1.0, 1.0, 1.0);
2733 cairo_pattern_add_color_stop_rgb(pattern, 0.2, 0.8, 0.8, 0.8);
2734 cairo_set_source(cr, pattern);
2735 cairo_pattern_destroy(pattern);
2736
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002737 rounded_rect(cr, 16, 16, 112, 112, d->frame_radius);
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04002738 cairo_fill(cr);
2739 cairo_destroy(cr);
2740
2741 d->inactive_frame =
2742 cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 128, 128);
2743 cr = cairo_create(d->inactive_frame);
2744 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
Kristian Høgsbergb8abe7e2012-03-20 23:56:05 -04002745 cairo_set_source_rgba(cr, 0.75, 0.75, 0.75, 1);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002746 rounded_rect(cr, 16, 16, 112, 112, d->frame_radius);
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04002747 cairo_fill(cr);
2748 cairo_destroy(cr);
2749}
2750
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04002751static void
2752init_xkb(struct display *d)
2753{
Kristian Høgsberg3e6e7e62010-07-02 15:12:02 -04002754 struct xkb_rule_names names;
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04002755
Kristian Høgsberg3e6e7e62010-07-02 15:12:02 -04002756 names.rules = "evdev";
2757 names.model = "pc105";
Kristian Høgsbergc7c60642010-08-29 21:33:39 -04002758 names.layout = option_xkb_layout;
2759 names.variant = option_xkb_variant;
2760 names.options = option_xkb_options;
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04002761
Kristian Høgsberg3e6e7e62010-07-02 15:12:02 -04002762 d->xkb = xkb_compile_keymap_from_rules(&names);
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04002763 if (!d->xkb) {
2764 fprintf(stderr, "Failed to compile keymap\n");
2765 exit(1);
2766 }
2767}
2768
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02002769static void
2770fini_xkb(struct display *display)
2771{
2772 xkb_free_keymap(display->xkb);
2773}
2774
Yuval Fledel45568f62010-12-06 09:18:12 -05002775static int
Kristian Høgsberg297c6312011-02-04 14:11:33 -05002776init_egl(struct display *d)
Yuval Fledel45568f62010-12-06 09:18:12 -05002777{
2778 EGLint major, minor;
Benjamin Franzke6693ac22011-02-10 12:04:30 +01002779 EGLint n;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -04002780
Rob Clark6396ed32012-03-11 19:48:41 -05002781#ifdef USE_CAIRO_GLESV2
2782# define GL_BIT EGL_OPENGL_ES2_BIT
2783#else
2784# define GL_BIT EGL_OPENGL_BIT
2785#endif
2786
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05002787 static const EGLint argb_cfg_attribs[] = {
2788 EGL_SURFACE_TYPE, EGL_WINDOW_BIT | EGL_PIXMAP_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01002789 EGL_RED_SIZE, 1,
2790 EGL_GREEN_SIZE, 1,
2791 EGL_BLUE_SIZE, 1,
2792 EGL_ALPHA_SIZE, 1,
2793 EGL_DEPTH_SIZE, 1,
Rob Clark6396ed32012-03-11 19:48:41 -05002794 EGL_RENDERABLE_TYPE, GL_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01002795 EGL_NONE
2796 };
Yuval Fledel45568f62010-12-06 09:18:12 -05002797
Kristian Høgsberg2d574392012-01-18 14:50:58 -05002798#ifdef USE_CAIRO_GLESV2
2799 static const EGLint context_attribs[] = {
2800 EGL_CONTEXT_CLIENT_VERSION, 2,
2801 EGL_NONE
2802 };
2803 EGLint api = EGL_OPENGL_ES_API;
2804#else
2805 EGLint *context_attribs = NULL;
2806 EGLint api = EGL_OPENGL_API;
2807#endif
2808
Kristian Høgsberg91342c62011-04-14 14:44:58 -04002809 d->dpy = eglGetDisplay(d->display);
Yuval Fledel45568f62010-12-06 09:18:12 -05002810 if (!eglInitialize(d->dpy, &major, &minor)) {
2811 fprintf(stderr, "failed to initialize display\n");
2812 return -1;
2813 }
2814
Kristian Høgsberg2d574392012-01-18 14:50:58 -05002815 if (!eglBindAPI(api)) {
Yuval Fledel45568f62010-12-06 09:18:12 -05002816 fprintf(stderr, "failed to bind api EGL_OPENGL_API\n");
2817 return -1;
2818 }
2819
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05002820 if (!eglChooseConfig(d->dpy, argb_cfg_attribs,
2821 &d->argb_config, 1, &n) || n != 1) {
2822 fprintf(stderr, "failed to choose argb config\n");
Benjamin Franzke6693ac22011-02-10 12:04:30 +01002823 return -1;
2824 }
2825
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05002826 d->argb_ctx = eglCreateContext(d->dpy, d->argb_config,
Kristian Høgsberg2d574392012-01-18 14:50:58 -05002827 EGL_NO_CONTEXT, context_attribs);
Benjamin Franzke0c991632011-09-27 21:57:31 +02002828 if (d->argb_ctx == NULL) {
Yuval Fledel45568f62010-12-06 09:18:12 -05002829 fprintf(stderr, "failed to create context\n");
2830 return -1;
2831 }
2832
Kristian Høgsberg067fd602012-02-29 16:15:53 -05002833 if (!eglMakeCurrent(d->dpy, NULL, NULL, d->argb_ctx)) {
Tim Wiederhake9c7a8cc2011-02-11 19:37:40 +01002834 fprintf(stderr, "failed to make context current\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05002835 return -1;
2836 }
2837
Kristian Høgsberg8def2642011-01-14 17:41:33 -05002838#ifdef HAVE_CAIRO_EGL
Benjamin Franzke0c991632011-09-27 21:57:31 +02002839 d->argb_device = cairo_egl_device_create(d->dpy, d->argb_ctx);
2840 if (cairo_device_status(d->argb_device) != CAIRO_STATUS_SUCCESS) {
2841 fprintf(stderr, "failed to get cairo egl argb device\n");
2842 return -1;
2843 }
Yuval Fledel45568f62010-12-06 09:18:12 -05002844#endif
2845
2846 return 0;
2847}
2848
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02002849static void
2850fini_egl(struct display *display)
2851{
2852#ifdef HAVE_CAIRO_EGL
2853 cairo_device_destroy(display->argb_device);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02002854#endif
2855
2856 eglMakeCurrent(display->dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
2857 EGL_NO_CONTEXT);
2858
2859 eglTerminate(display->dpy);
2860 eglReleaseThread();
2861}
2862
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002863static int
2864event_mask_update(uint32_t mask, void *data)
2865{
2866 struct display *d = data;
2867
2868 d->mask = mask;
2869
2870 return 0;
2871}
2872
2873static void
2874handle_display_data(struct task *task, uint32_t events)
2875{
2876 struct display *display =
2877 container_of(task, struct display, display_task);
2878
2879 wl_display_iterate(display->display, display->mask);
2880}
2881
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002882struct display *
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04002883display_create(int argc, char *argv[])
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002884{
2885 struct display *d;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04002886
Kristian Høgsbergbcacef12012-03-11 21:05:57 -04002887 argc = parse_options(xkb_options,
2888 ARRAY_LENGTH(xkb_options), argc, argv);
Kristian Høgsbergc7c60642010-08-29 21:33:39 -04002889
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002890 d = malloc(sizeof *d);
2891 if (d == NULL)
2892 return NULL;
2893
Tim Wiederhake81bd9792011-01-23 23:25:26 +01002894 memset(d, 0, sizeof *d);
2895
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05002896 d->display = wl_display_connect(NULL);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04002897 if (d->display == NULL) {
2898 fprintf(stderr, "failed to create display: %m\n");
Kristian Høgsberg7824d812010-06-08 14:59:44 -04002899 return NULL;
2900 }
2901
Kristian Høgsberg3a696272011-09-14 17:33:48 -04002902 d->epoll_fd = epoll_create1(EPOLL_CLOEXEC);
2903 d->display_fd = wl_display_get_fd(d->display, event_mask_update, d);
2904 d->display_task.run = handle_display_data;
2905 display_watch_fd(d, d->display_fd, EPOLLIN, &d->display_task);
2906
2907 wl_list_init(&d->deferred_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002908 wl_list_init(&d->input_list);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05002909 wl_list_init(&d->output_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002910
Kristian Høgsberg478d9262010-06-08 20:34:11 -04002911 /* Set up listener so we'll catch all events. */
2912 wl_display_add_global_listener(d->display,
2913 display_handle_global, d);
2914
2915 /* Process connection events. */
2916 wl_display_iterate(d->display, WL_DISPLAY_READABLE);
Kristian Høgsberg297c6312011-02-04 14:11:33 -05002917 if (init_egl(d) < 0)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04002918 return NULL;
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -05002919
Kristian Høgsberg0d5007a2011-02-09 10:57:44 -05002920 d->image_target_texture_2d =
2921 (void *) eglGetProcAddress("glEGLImageTargetTexture2DOES");
2922 d->create_image = (void *) eglGetProcAddress("eglCreateImageKHR");
2923 d->destroy_image = (void *) eglGetProcAddress("eglDestroyImageKHR");
2924
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002925 create_pointer_surfaces(d);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002926
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04002927 display_render_frame(d);
2928
Kristian Høgsberg478d9262010-06-08 20:34:11 -04002929 wl_list_init(&d->window_list);
2930
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -04002931 init_xkb(d);
2932
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05002933 return d;
2934}
2935
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02002936static void
2937display_destroy_outputs(struct display *display)
2938{
2939 struct output *tmp;
2940 struct output *output;
2941
2942 wl_list_for_each_safe(output, tmp, &display->output_list, link)
2943 output_destroy(output);
2944}
2945
Pekka Paalanene1207c72011-12-16 12:02:09 +02002946static void
2947display_destroy_inputs(struct display *display)
2948{
2949 struct input *tmp;
2950 struct input *input;
2951
2952 wl_list_for_each_safe(input, tmp, &display->input_list, link)
2953 input_destroy(input);
2954}
2955
Pekka Paalanen999c5b52011-11-30 10:52:38 +02002956void
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02002957display_destroy(struct display *display)
2958{
Pekka Paalanenc2052982011-12-16 11:41:32 +02002959 if (!wl_list_empty(&display->window_list))
2960 fprintf(stderr, "toytoolkit warning: windows exist.\n");
2961
2962 if (!wl_list_empty(&display->deferred_list))
2963 fprintf(stderr, "toytoolkit warning: deferred tasks exist.\n");
2964
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02002965 display_destroy_outputs(display);
Pekka Paalanene1207c72011-12-16 12:02:09 +02002966 display_destroy_inputs(display);
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02002967
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02002968 fini_xkb(display);
Pekka Paalanen325bb602011-12-19 10:31:45 +02002969
2970 cairo_surface_destroy(display->active_frame);
2971 cairo_surface_destroy(display->inactive_frame);
2972 cairo_surface_destroy(display->shadow);
2973 destroy_pointer_surfaces(display);
2974
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02002975 fini_egl(display);
2976
Pekka Paalanenc2052982011-12-16 11:41:32 +02002977 if (display->shell)
2978 wl_shell_destroy(display->shell);
2979
2980 if (display->shm)
2981 wl_shm_destroy(display->shm);
2982
2983 if (display->data_device_manager)
2984 wl_data_device_manager_destroy(display->data_device_manager);
2985
2986 wl_compositor_destroy(display->compositor);
2987
2988 close(display->epoll_fd);
2989
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02002990 wl_display_flush(display->display);
Kristian Høgsbergfcfc83f2012-02-28 14:29:19 -05002991 wl_display_disconnect(display->display);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02002992 free(display);
2993}
2994
2995void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02002996display_set_user_data(struct display *display, void *data)
2997{
2998 display->user_data = data;
2999}
3000
3001void *
3002display_get_user_data(struct display *display)
3003{
3004 return display->user_data;
3005}
3006
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -04003007struct wl_display *
3008display_get_display(struct display *display)
3009{
3010 return display->display;
3011}
3012
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05003013struct output *
3014display_get_output(struct display *display)
3015{
3016 return container_of(display->output_list.next, struct output, link);
3017}
3018
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05003019struct wl_compositor *
3020display_get_compositor(struct display *display)
3021{
3022 return display->compositor;
Kristian Høgsberg61017b12008-11-02 18:51:48 -05003023}
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003024
3025EGLDisplay
3026display_get_egl_display(struct display *d)
3027{
3028 return d->dpy;
3029}
3030
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003031struct wl_data_source *
3032display_create_data_source(struct display *display)
3033{
3034 return wl_data_device_manager_create_data_source(display->data_device_manager);
3035}
3036
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003037EGLConfig
Benjamin Franzke0c991632011-09-27 21:57:31 +02003038display_get_argb_egl_config(struct display *d)
3039{
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05003040 return d->argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003041}
3042
Kristian Høgsberg58eec362011-01-19 14:27:42 -05003043struct wl_shell *
3044display_get_shell(struct display *display)
3045{
3046 return display->shell;
3047}
3048
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003049int
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003050display_acquire_window_surface(struct display *display,
3051 struct window *window,
3052 EGLContext ctx)
3053{
Benjamin Franzke22d54812011-07-16 19:50:32 +00003054#ifdef HAVE_CAIRO_EGL
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003055 struct egl_window_surface_data *data;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003056 cairo_device_t *device;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003057
3058 if (!window->cairo_surface)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003059 return -1;
Benjamin Franzke0c991632011-09-27 21:57:31 +02003060 device = cairo_surface_get_device(window->cairo_surface);
3061 if (!device)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003062 return -1;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003063
Benjamin Franzke0c991632011-09-27 21:57:31 +02003064 if (!ctx) {
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003065 if (device == display->argb_device)
Benjamin Franzke0c991632011-09-27 21:57:31 +02003066 ctx = display->argb_ctx;
3067 else
3068 assert(0);
3069 }
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003070
3071 data = cairo_surface_get_user_data(window->cairo_surface,
3072 &surface_data_key);
3073
Pekka Paalanen9015ead2011-12-19 13:57:59 +02003074 cairo_device_flush(device);
Benjamin Franzke0c991632011-09-27 21:57:31 +02003075 cairo_device_acquire(device);
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003076 if (!eglMakeCurrent(display->dpy, data->surf, data->surf, ctx))
3077 fprintf(stderr, "failed to make surface current\n");
Benjamin Franzke1a89f282011-10-07 09:33:06 +02003078
3079 return 0;
3080#else
3081 return -1;
Benjamin Franzke22d54812011-07-16 19:50:32 +00003082#endif
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003083}
3084
3085void
Benjamin Franzke0c991632011-09-27 21:57:31 +02003086display_release_window_surface(struct display *display,
3087 struct window *window)
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003088{
Benjamin Franzke0c991632011-09-27 21:57:31 +02003089#ifdef HAVE_CAIRO_EGL
3090 cairo_device_t *device;
3091
3092 device = cairo_surface_get_device(window->cairo_surface);
3093 if (!device)
3094 return;
3095
Kristian Høgsberg067fd602012-02-29 16:15:53 -05003096 if (!eglMakeCurrent(display->dpy, NULL, NULL, display->argb_ctx))
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003097 fprintf(stderr, "failed to make context current\n");
Benjamin Franzke0c991632011-09-27 21:57:31 +02003098 cairo_device_release(device);
3099#endif
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003100}
3101
3102void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003103display_defer(struct display *display, struct task *task)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003104{
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003105 wl_list_insert(&display->deferred_list, &task->link);
3106}
3107
3108void
3109display_watch_fd(struct display *display,
3110 int fd, uint32_t events, struct task *task)
3111{
3112 struct epoll_event ep;
3113
3114 ep.events = events;
3115 ep.data.ptr = task;
3116 epoll_ctl(display->epoll_fd, EPOLL_CTL_ADD, fd, &ep);
3117}
3118
3119void
3120display_run(struct display *display)
3121{
3122 struct task *task;
3123 struct epoll_event ep[16];
3124 int i, count;
3125
Pekka Paalanen826d7952011-12-15 10:14:07 +02003126 display->running = 1;
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003127 while (1) {
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05003128 wl_display_flush(display->display);
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003129
3130 while (!wl_list_empty(&display->deferred_list)) {
3131 task = container_of(display->deferred_list.next,
3132 struct task, link);
3133 wl_list_remove(&task->link);
3134 task->run(task, 0);
3135 }
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05003136
3137 if (!display->running)
3138 break;
3139
3140 wl_display_flush(display->display);
3141
3142 count = epoll_wait(display->epoll_fd,
3143 ep, ARRAY_LENGTH(ep), -1);
3144 for (i = 0; i < count; i++) {
3145 task = ep[i].data.ptr;
3146 task->run(task, ep[i].events);
3147 }
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003148 }
Kristian Høgsberg7824d812010-06-08 14:59:44 -04003149}
Pekka Paalanen826d7952011-12-15 10:14:07 +02003150
3151void
3152display_exit(struct display *display)
3153{
3154 display->running = 0;
3155}