blob: e0981c6a42781e7d3e2b8f968f1e4d85b235bafe [file] [log] [blame]
Kristian Høgsbergffd710e2008-12-02 15:15:01 -05001/*
2 * Copyright © 2008 Kristian Høgsberg
Pekka Paalanen4e373742013-02-13 16:17:13 +02003 * Copyright © 2012-2013 Collabora, Ltd.
Kristian Høgsbergffd710e2008-12-02 15:15:01 -05004 *
5 * Permission to use, copy, modify, distribute, and sell this software and its
6 * documentation for any purpose is hereby granted without fee, provided that
7 * the above copyright notice appear in all copies and that both that copyright
8 * notice and this permission notice appear in supporting documentation, and
9 * that the name of the copyright holders not be used in advertising or
10 * publicity pertaining to distribution of the software without specific,
11 * written prior permission. The copyright holders make no representations
12 * about the suitability of this software for any purpose. It is provided "as
13 * is" without express or implied warranty.
14 *
15 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
17 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
19 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
20 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
21 * OF THIS SOFTWARE.
22 */
23
Daniel Stonec228e232013-05-22 18:03:19 +030024#include "config.h"
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -040025
Kristian Høgsberg61017b12008-11-02 18:51:48 -050026#include <stdint.h>
27#include <stdio.h>
28#include <stdlib.h>
Pekka Paalanen71233882013-04-25 13:57:53 +030029#include <stdarg.h>
Kristian Høgsberg61017b12008-11-02 18:51:48 -050030#include <string.h>
Kristian Høgsberg61017b12008-11-02 18:51:48 -050031#include <fcntl.h>
32#include <unistd.h>
Kristian Høgsbergfa80e112012-10-10 21:34:26 -040033#include <errno.h>
Kristian Høgsberg61017b12008-11-02 18:51:48 -050034#include <math.h>
Benjamin Franzke0c991632011-09-27 21:57:31 +020035#include <assert.h>
Kristian Høgsberg61017b12008-11-02 18:51:48 -050036#include <time.h>
37#include <cairo.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>
Tiago Vignatti82db9d82012-05-23 22:06:27 +030040#include <sys/timerfd.h>
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -040041
Pekka Paalanenfb39d8d2012-10-16 17:27:19 +030042#ifdef HAVE_CAIRO_EGL
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øgsberga85fe3c2010-06-08 14:08:30 -040054#include <cairo-gl.h>
Pekka Paalanenfb39d8d2012-10-16 17:27:19 +030055#else /* HAVE_CAIRO_EGL */
56typedef void *EGLDisplay;
57typedef void *EGLConfig;
58typedef void *EGLContext;
59#define EGL_NO_DISPLAY ((EGLDisplay)0)
60#endif /* no HAVE_CAIRO_EGL */
Kristian Høgsberg61017b12008-11-02 18:51:48 -050061
Daniel Stone9d4f0302012-02-15 16:33:21 +000062#include <xkbcommon/xkbcommon.h>
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +030063#include <wayland-cursor.h>
Kristian Høgsberg94adf6c2010-06-25 16:50:05 -040064
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -050065#include <linux/input.h>
Pekka Paalanen50719bc2011-11-22 14:18:50 +020066#include <wayland-client.h>
Kristian Høgsberg5a315bc2012-05-15 22:33:43 -040067#include "../shared/cairo-util.h"
Jasper St. Pierre0790e392013-12-09 14:58:00 -050068#include "xdg-shell-client-protocol.h"
Scott Moreau7a1b32a2012-05-27 14:25:02 -060069#include "text-cursor-position-client-protocol.h"
Jonas Ådahl14c92ff2012-08-29 22:13:02 +020070#include "workspaces-client-protocol.h"
Pekka Paalanen647f2bf2012-05-30 15:53:43 +030071#include "../shared/os-compatibility.h"
Kristian Høgsberg2f2cfae2008-11-08 22:46:30 -050072
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -050073#include "window.h"
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -050074
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -070075struct shm_pool;
Ander Conselvan de Oliveira1493d2a2012-05-03 12:29:46 +030076
Kristian Høgsbergfa80e112012-10-10 21:34:26 -040077struct global {
78 uint32_t name;
79 char *interface;
80 uint32_t version;
81 struct wl_list link;
82};
83
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -050084struct display {
Kristian Høgsberg40979232008-11-25 22:40:39 -050085 struct wl_display *display;
Kristian Høgsbergfa80e112012-10-10 21:34:26 -040086 struct wl_registry *registry;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -050087 struct wl_compositor *compositor;
Pekka Paalanen35e82632013-04-25 13:57:48 +030088 struct wl_subcompositor *subcompositor;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -040089 struct wl_shm *shm;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -040090 struct wl_data_device_manager *data_device_manager;
Scott Moreau7a1b32a2012-05-27 14:25:02 -060091 struct text_cursor_position *text_cursor_position;
Jonas Ådahl14c92ff2012-08-29 22:13:02 +020092 struct workspace_manager *workspace_manager;
Jasper St. Pierre0790e392013-12-09 14:58:00 -050093 struct xdg_shell *xdg_shell;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -040094 EGLDisplay dpy;
Kristian Høgsberg8e81df42012-01-11 14:24:46 -050095 EGLConfig argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +020096 EGLContext argb_ctx;
Benjamin Franzke0c991632011-09-27 21:57:31 +020097 cairo_device_t *argb_device;
Kristian Høgsbergeae5de72012-04-11 22:42:15 -040098 uint32_t serial;
Kristian Høgsberg3a696272011-09-14 17:33:48 -040099
100 int display_fd;
U. Artie Eoff44874d92012-10-02 21:12:35 -0700101 uint32_t display_fd_events;
Kristian Høgsberg3a696272011-09-14 17:33:48 -0400102 struct task display_task;
103
104 int epoll_fd;
105 struct wl_list deferred_list;
106
Pekka Paalanen826d7952011-12-15 10:14:07 +0200107 int running;
108
Kristian Høgsbergfa80e112012-10-10 21:34:26 -0400109 struct wl_list global_list;
Kristian Høgsberg478d9262010-06-08 20:34:11 -0400110 struct wl_list window_list;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400111 struct wl_list input_list;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500112 struct wl_list output_list;
Kristian Høgsberg291c69c2012-05-15 22:12:54 -0400113
Kristian Høgsberg5adb4802012-05-15 22:25:28 -0400114 struct theme *theme;
Kristian Høgsberg70163132012-05-08 15:55:39 -0400115
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300116 struct wl_cursor_theme *cursor_theme;
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300117 struct wl_cursor **cursors;
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400118
Pekka Paalanen999c5b52011-11-30 10:52:38 +0200119 display_output_handler_t output_configure_handler;
Kristian Høgsbergfa80e112012-10-10 21:34:26 -0400120 display_global_handler_t global_handler;
Xiong Zhang83d8ee72013-10-23 13:58:35 +0800121 display_global_handler_t global_handler_remove;
Pekka Paalanen999c5b52011-11-30 10:52:38 +0200122
123 void *user_data;
Daniel Stone97f68542012-05-30 16:32:01 +0100124
125 struct xkb_context *xkb_context;
Jonas Ådahl14c92ff2012-08-29 22:13:02 +0200126
127 uint32_t workspace;
128 uint32_t workspace_count;
Pekka Paalanen3cbb0892012-11-19 17:16:01 +0200129
130 /* A hack to get text extents for tooltips */
131 cairo_surface_t *dummy_surface;
132 void *dummy_surface_data;
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200133
134 int has_rgb565;
Rob Bradford08031182013-08-13 20:11:03 +0100135 int seat_version;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -0500136};
137
Rob Bradford7507b572012-05-15 17:55:34 +0100138struct window_output {
139 struct output *output;
140 struct wl_list link;
141};
142
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200143struct toysurface {
144 /*
145 * Prepare the surface for drawing. Makes sure there is a surface
146 * of the right size available for rendering, and returns it.
147 * dx,dy are the x,y of wl_surface.attach.
Alexander Larsson5e9b6522013-05-22 14:41:28 +0200148 * width,height are the new buffer size.
Pekka Paalanenec076692012-11-30 13:37:27 +0200149 * If flags has SURFACE_HINT_RESIZE set, the user is
150 * doing continuous resizing.
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200151 * Returns the Cairo surface to draw to.
152 */
153 cairo_surface_t *(*prepare)(struct toysurface *base, int dx, int dy,
Alexander Larsson1818e312013-05-22 14:41:31 +0200154 int32_t width, int32_t height, uint32_t flags,
Alexander Larssonedddbd12013-05-24 13:09:43 +0200155 enum wl_output_transform buffer_transform, int32_t buffer_scale);
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200156
157 /*
158 * Post the surface to the server, returning the server allocation
159 * rectangle. The Cairo surface from prepare() must be destroyed
160 * after calling this.
161 */
162 void (*swap)(struct toysurface *base,
Alexander Larssonedddbd12013-05-24 13:09:43 +0200163 enum wl_output_transform buffer_transform, int32_t buffer_scale,
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200164 struct rectangle *server_allocation);
165
166 /*
167 * Make the toysurface current with the given EGL context.
168 * Returns 0 on success, and negative of failure.
169 */
170 int (*acquire)(struct toysurface *base, EGLContext ctx);
171
172 /*
173 * Release the toysurface from the EGL context, returning control
174 * to Cairo.
175 */
176 void (*release)(struct toysurface *base);
177
178 /*
179 * Destroy the toysurface, including the Cairo surface, any
180 * backing storage, and the Wayland protocol objects.
181 */
182 void (*destroy)(struct toysurface *base);
183};
184
Pekka Paalanen4e373742013-02-13 16:17:13 +0200185struct surface {
186 struct window *window;
187
188 struct wl_surface *surface;
Pekka Paalanen35e82632013-04-25 13:57:48 +0300189 struct wl_subsurface *subsurface;
190 int synchronized;
191 int synchronized_default;
Pekka Paalanen811ec4f2013-02-13 16:17:14 +0200192 struct toysurface *toysurface;
Pekka Paalanenac95f3e2013-02-13 16:17:17 +0200193 struct widget *widget;
Pekka Paalanen40cb67b2013-04-25 13:57:49 +0300194 int redraw_needed;
195 struct wl_callback *frame_cb;
Pekka Paalanen7ff7a802013-04-25 13:57:50 +0300196 uint32_t last_time;
Pekka Paalanen811ec4f2013-02-13 16:17:14 +0200197
198 struct rectangle allocation;
199 struct rectangle server_allocation;
Pekka Paalanen02bba7c2013-02-13 16:17:15 +0200200
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +0200201 struct wl_region *input_region;
202 struct wl_region *opaque_region;
203
Pekka Paalanen02bba7c2013-02-13 16:17:15 +0200204 enum window_buffer_type buffer_type;
205 enum wl_output_transform buffer_transform;
Alexander Larssonedddbd12013-05-24 13:09:43 +0200206 int32_t buffer_scale;
Pekka Paalanen89dee002013-02-13 16:17:20 +0200207
208 cairo_surface_t *cairo_surface;
Pekka Paalanen35e82632013-04-25 13:57:48 +0300209
210 struct wl_list link;
Pekka Paalanen4e373742013-02-13 16:17:13 +0200211};
212
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -0500213struct window {
214 struct display *display;
Rob Bradford7507b572012-05-15 17:55:34 +0100215 struct wl_list window_output_list;
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -0500216 char *title;
Pekka Paalanen811ec4f2013-02-13 16:17:14 +0200217 struct rectangle saved_allocation;
Kristian Høgsbergd3a19652012-07-20 11:32:51 -0400218 struct rectangle min_allocation;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -0500219 struct rectangle pending_allocation;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500220 int x, y;
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -0400221 int redraw_needed;
Pekka Paalanen40cb67b2013-04-25 13:57:49 +0300222 int redraw_task_scheduled;
Kristian Høgsberg3a696272011-09-14 17:33:48 -0400223 struct task redraw_task;
Kristian Høgsberg42b4f802012-03-26 13:49:29 -0400224 int resize_needed;
Jasper St. Pierre0790e392013-12-09 14:58:00 -0500225 int custom;
226 int focused;
Kristian Høgsberg86adef92012-08-13 22:25:53 -0400227
Pekka Paalanen99436862012-11-19 17:15:59 +0200228 int resizing;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400229
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -0500230 int fullscreen;
231 int maximized;
232
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200233 enum preferred_format preferred_format;
234
Kristian Høgsberg6e83d582008-12-08 00:01:36 -0500235 window_key_handler_t key_handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -0500236 window_keyboard_focus_handler_t keyboard_focus_handler;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400237 window_data_handler_t data_handler;
238 window_drop_handler_t drop_handler;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500239 window_close_handler_t close_handler;
Kristian Høgsberg67ace202012-07-23 21:56:31 -0400240 window_fullscreen_handler_t fullscreen_handler;
Ander Conselvan de Oliveira15256f62012-11-30 17:34:25 +0200241 window_output_handler_t output_handler;
Jasper St. Pierrede680992014-04-10 17:23:49 -0700242 window_state_changed_handler_t state_changed_handler;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400243
Pekka Paalanen4e373742013-02-13 16:17:13 +0200244 struct surface *main_surface;
Jasper St. Pierre0790e392013-12-09 14:58:00 -0500245 struct xdg_surface *xdg_surface;
246 struct xdg_popup *xdg_popup;
Pekka Vuorela6e1e3852012-09-17 22:15:57 +0300247
Jasper St. Pierrec815d622014-04-10 18:37:54 -0700248 struct window *parent;
Jasper St. Pierre53686042013-12-09 15:26:25 -0500249
Jason Ekstrand3f66cf92013-10-13 19:08:40 -0500250 struct window_frame *frame;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500251
Pekka Paalanen35e82632013-04-25 13:57:48 +0300252 /* struct surface::link, contains also main_surface */
253 struct wl_list subsurface_list;
254
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -0500255 void *user_data;
Kristian Høgsberg478d9262010-06-08 20:34:11 -0400256 struct wl_list link;
Kristian Høgsberg61017b12008-11-02 18:51:48 -0500257};
258
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500259struct widget {
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -0500260 struct window *window;
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +0200261 struct surface *surface;
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300262 struct tooltip *tooltip;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500263 struct wl_list child_list;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400264 struct wl_list link;
265 struct rectangle allocation;
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500266 widget_resize_handler_t resize_handler;
267 widget_redraw_handler_t redraw_handler;
Kristian Høgsbergee143232012-01-09 08:42:24 -0500268 widget_enter_handler_t enter_handler;
269 widget_leave_handler_t leave_handler;
Kristian Høgsberg04e98342012-01-09 09:36:16 -0500270 widget_motion_handler_t motion_handler;
Kristian Høgsberga8a0db32012-01-09 11:12:05 -0500271 widget_button_handler_t button_handler;
Rusty Lynch041815a2013-08-08 21:20:38 -0700272 widget_touch_down_handler_t touch_down_handler;
273 widget_touch_up_handler_t touch_up_handler;
274 widget_touch_motion_handler_t touch_motion_handler;
275 widget_touch_frame_handler_t touch_frame_handler;
276 widget_touch_cancel_handler_t touch_cancel_handler;
Philipp Brüschweiler7e0cc542012-08-14 11:02:41 +0200277 widget_axis_handler_t axis_handler;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400278 void *user_data;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500279 int opaque;
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300280 int tooltip_count;
Kristian Høgsbergbf74d522012-11-30 14:54:35 -0500281 int default_cursor;
Neil Roberts97b747c2013-12-19 16:17:12 +0000282 /* If this is set to false then no cairo surface will be
283 * created before redrawing the surface. This is useful if the
284 * redraw handler is going to do completely custom rendering
285 * such as using EGL directly */
286 int use_cairo;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400287};
288
Rusty Lynch041815a2013-08-08 21:20:38 -0700289struct touch_point {
290 int32_t id;
Kristian Høgsbergef9c8eb2014-01-07 12:57:59 -0800291 float x, y;
Rusty Lynch041815a2013-08-08 21:20:38 -0700292 struct widget *widget;
293 struct wl_list link;
294};
295
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400296struct input {
297 struct display *display;
Daniel Stone37816df2012-05-16 18:45:18 +0100298 struct wl_seat *seat;
299 struct wl_pointer *pointer;
300 struct wl_keyboard *keyboard;
Rusty Lynch041815a2013-08-08 21:20:38 -0700301 struct wl_touch *touch;
302 struct wl_list touch_point_list;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400303 struct window *pointer_focus;
304 struct window *keyboard_focus;
Rusty Lynch041815a2013-08-08 21:20:38 -0700305 struct window *touch_focus;
Ander Conselvan de Oliveira1493d2a2012-05-03 12:29:46 +0300306 int current_cursor;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +0300307 uint32_t cursor_anim_start;
308 struct wl_callback *cursor_frame_cb;
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +0300309 struct wl_surface *pointer_surface;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400310 uint32_t modifiers;
Kristian Høgsbergeae5de72012-04-11 22:42:15 -0400311 uint32_t pointer_enter_serial;
Kristian Høgsberg11f600d2012-06-22 10:52:58 -0400312 uint32_t cursor_serial;
Kristian Høgsberg80680c72012-05-10 12:21:37 -0400313 float sx, sy;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400314 struct wl_list link;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400315
Kristian Høgsbergb6323512012-01-11 00:04:42 -0500316 struct widget *focus_widget;
Kristian Høgsberg831dd522012-01-10 23:46:33 -0500317 struct widget *grab;
318 uint32_t grab_button;
319
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400320 struct wl_data_device *data_device;
321 struct data_offer *drag_offer;
322 struct data_offer *selection_offer;
Xiong Zhangbf3c1c62013-11-25 18:42:51 +0800323 uint32_t touch_grab;
324 int32_t touch_grab_id;
325 float drag_x, drag_y;
326 struct window *drag_focus;
327 uint32_t drag_enter_serial;
Daniel Stone97f68542012-05-30 16:32:01 +0100328
329 struct {
Daniel Stone97f68542012-05-30 16:32:01 +0100330 struct xkb_keymap *keymap;
331 struct xkb_state *state;
332 xkb_mod_mask_t control_mask;
333 xkb_mod_mask_t alt_mask;
334 xkb_mod_mask_t shift_mask;
335 } xkb;
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -0400336
Jonny Lamb06959082014-08-12 14:58:27 +0200337 int32_t repeat_rate_sec;
338 int32_t repeat_rate_nsec;
339 int32_t repeat_delay_sec;
340 int32_t repeat_delay_nsec;
341
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -0400342 struct task repeat_task;
343 int repeat_timer_fd;
344 uint32_t repeat_sym;
345 uint32_t repeat_key;
346 uint32_t repeat_time;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400347};
348
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500349struct output {
350 struct display *display;
351 struct wl_output *output;
Xiong Zhang83d8ee72013-10-23 13:58:35 +0800352 uint32_t server_output_id;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500353 struct rectangle allocation;
354 struct wl_list link;
Scott Moreau4e072362012-09-29 02:03:11 -0600355 int transform;
Alexander Larssonafd319a2013-05-22 14:41:27 +0200356 int scale;
Jason Ekstrand738715d2014-04-02 19:53:50 -0500357 char *make;
358 char *model;
Pekka Paalanen999c5b52011-11-30 10:52:38 +0200359
360 display_output_handler_t destroy_handler;
361 void *user_data;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500362};
363
Jason Ekstrand3f66cf92013-10-13 19:08:40 -0500364struct window_frame {
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500365 struct widget *widget;
366 struct widget *child;
Jason Ekstrand3f66cf92013-10-13 19:08:40 -0500367 struct frame *frame;
Xiong Zhangbfb4ade2014-06-12 11:06:25 +0800368
369 uint32_t last_time;
370 uint32_t did_double, double_click;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500371};
372
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500373struct menu {
Jasper St. Pierredda93132014-03-13 12:06:00 -0400374 void *user_data;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500375 struct window *window;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500376 struct widget *widget;
Kristian Høgsberg831dd522012-01-10 23:46:33 -0500377 struct input *input;
Kristian Høgsbergc680e902013-10-23 21:49:30 -0700378 struct frame *frame;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500379 const char **entries;
380 uint32_t time;
381 int current;
382 int count;
Kristian Høgsbergd2fbb382012-10-30 13:45:22 -0400383 int release_count;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500384 menu_func_t func;
385};
386
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300387struct tooltip {
388 struct widget *parent;
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300389 struct widget *widget;
390 char *entry;
391 struct task tooltip_task;
392 int tooltip_fd;
393 float x, y;
394};
395
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700396struct shm_pool {
397 struct wl_shm_pool *pool;
398 size_t size;
399 size_t used;
400 void *data;
401};
402
Kristian Høgsberg7d804062010-09-07 21:50:06 -0400403enum {
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +0300404 CURSOR_DEFAULT = 100,
405 CURSOR_UNSET
Kristian Høgsberg7d804062010-09-07 21:50:06 -0400406};
407
Pekka Paalanen32127ca2012-11-19 15:32:51 +0200408static const cairo_user_data_key_t shm_surface_data_key;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400409
Pekka Paalanen97777442013-05-22 10:20:05 +0300410/* #define DEBUG */
411
412#ifdef DEBUG
Pekka Paalanen71233882013-04-25 13:57:53 +0300413
414static void
415debug_print(void *proxy, int line, const char *func, const char *fmt, ...)
416__attribute__ ((format (printf, 4, 5)));
417
418static void
419debug_print(void *proxy, int line, const char *func, const char *fmt, ...)
420{
421 va_list ap;
422 struct timeval tv;
423
424 gettimeofday(&tv, NULL);
425 fprintf(stderr, "%8ld.%03ld ",
426 (long)tv.tv_sec & 0xffff, (long)tv.tv_usec / 1000);
427
428 if (proxy)
429 fprintf(stderr, "%s@%d ",
430 wl_proxy_get_class(proxy), wl_proxy_get_id(proxy));
431
432 /*fprintf(stderr, __FILE__ ":%d:%s ", line, func);*/
433 fprintf(stderr, "%s ", func);
434
435 va_start(ap, fmt);
436 vfprintf(stderr, fmt, ap);
437 va_end(ap);
438}
439
440#define DBG(fmt, ...) \
441 debug_print(NULL, __LINE__, __func__, fmt, ##__VA_ARGS__)
442
443#define DBG_OBJ(obj, fmt, ...) \
444 debug_print(obj, __LINE__, __func__, fmt, ##__VA_ARGS__)
445
446#else
447
448#define DBG(...) do {} while (0)
449#define DBG_OBJ(...) do {} while (0)
450
451#endif
452
Alexander Larsson1818e312013-05-22 14:41:31 +0200453static void
Alexander Larssonedddbd12013-05-24 13:09:43 +0200454surface_to_buffer_size (enum wl_output_transform buffer_transform, int32_t buffer_scale, int32_t *width, int32_t *height)
Alexander Larsson1818e312013-05-22 14:41:31 +0200455{
456 int32_t tmp;
457
458 switch (buffer_transform) {
459 case WL_OUTPUT_TRANSFORM_90:
460 case WL_OUTPUT_TRANSFORM_270:
461 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
462 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
463 tmp = *width;
464 *width = *height;
465 *height = tmp;
466 break;
467 default:
468 break;
469 }
470
471 *width *= buffer_scale;
472 *height *= buffer_scale;
473}
474
475static void
Alexander Larssonedddbd12013-05-24 13:09:43 +0200476buffer_to_surface_size (enum wl_output_transform buffer_transform, int32_t buffer_scale, int32_t *width, int32_t *height)
Alexander Larsson1818e312013-05-22 14:41:31 +0200477{
478 int32_t tmp;
479
480 switch (buffer_transform) {
481 case WL_OUTPUT_TRANSFORM_90:
482 case WL_OUTPUT_TRANSFORM_270:
483 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
484 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
485 tmp = *width;
486 *width = *height;
487 *height = tmp;
488 break;
489 default:
490 break;
491 }
492
493 *width /= buffer_scale;
494 *height /= buffer_scale;
495}
496
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500497#ifdef HAVE_CAIRO_EGL
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400498
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200499struct egl_window_surface {
500 struct toysurface base;
501 cairo_surface_t *cairo_surface;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100502 struct display *display;
503 struct wl_surface *surface;
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200504 struct wl_egl_window *egl_window;
505 EGLSurface egl_surface;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100506};
507
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200508static struct egl_window_surface *
509to_egl_window_surface(struct toysurface *base)
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100510{
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200511 return container_of(base, struct egl_window_surface, base);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100512}
513
514static cairo_surface_t *
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200515egl_window_surface_prepare(struct toysurface *base, int dx, int dy,
Alexander Larsson1818e312013-05-22 14:41:31 +0200516 int32_t width, int32_t height, uint32_t flags,
Alexander Larssonedddbd12013-05-24 13:09:43 +0200517 enum wl_output_transform buffer_transform, int32_t buffer_scale)
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100518{
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200519 struct egl_window_surface *surface = to_egl_window_surface(base);
520
Alexander Larsson1818e312013-05-22 14:41:31 +0200521 surface_to_buffer_size (buffer_transform, buffer_scale, &width, &height);
522
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200523 wl_egl_window_resize(surface->egl_window, width, height, dx, dy);
524 cairo_gl_surface_set_size(surface->cairo_surface, width, height);
525
526 return cairo_surface_reference(surface->cairo_surface);
527}
528
529static void
530egl_window_surface_swap(struct toysurface *base,
Alexander Larssonedddbd12013-05-24 13:09:43 +0200531 enum wl_output_transform buffer_transform, int32_t buffer_scale,
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200532 struct rectangle *server_allocation)
533{
534 struct egl_window_surface *surface = to_egl_window_surface(base);
535
536 cairo_gl_surface_swapbuffers(surface->cairo_surface);
537 wl_egl_window_get_attached_size(surface->egl_window,
538 &server_allocation->width,
539 &server_allocation->height);
Alexander Larsson1818e312013-05-22 14:41:31 +0200540
541 buffer_to_surface_size (buffer_transform, buffer_scale,
542 &server_allocation->width,
543 &server_allocation->height);
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200544}
545
546static int
547egl_window_surface_acquire(struct toysurface *base, EGLContext ctx)
548{
549 struct egl_window_surface *surface = to_egl_window_surface(base);
Benjamin Franzke0c991632011-09-27 21:57:31 +0200550 cairo_device_t *device;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100551
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200552 device = cairo_surface_get_device(surface->cairo_surface);
553 if (!device)
554 return -1;
555
556 if (!ctx) {
557 if (device == surface->display->argb_device)
558 ctx = surface->display->argb_ctx;
559 else
560 assert(0);
561 }
562
563 cairo_device_flush(device);
564 cairo_device_acquire(device);
565 if (!eglMakeCurrent(surface->display->dpy, surface->egl_surface,
566 surface->egl_surface, ctx))
567 fprintf(stderr, "failed to make surface current\n");
568
569 return 0;
570}
571
572static void
573egl_window_surface_release(struct toysurface *base)
574{
575 struct egl_window_surface *surface = to_egl_window_surface(base);
576 cairo_device_t *device;
577
578 device = cairo_surface_get_device(surface->cairo_surface);
579 if (!device)
580 return;
581
Arnaud Vrac38d90be2014-08-25 20:56:43 +0200582 if (!eglMakeCurrent(surface->display->dpy,
583 EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT))
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200584 fprintf(stderr, "failed to make context current\n");
585
586 cairo_device_release(device);
587}
588
589static void
590egl_window_surface_destroy(struct toysurface *base)
591{
592 struct egl_window_surface *surface = to_egl_window_surface(base);
593 struct display *d = surface->display;
594
595 cairo_surface_destroy(surface->cairo_surface);
596 eglDestroySurface(d->dpy, surface->egl_surface);
597 wl_egl_window_destroy(surface->egl_window);
598 surface->surface = NULL;
599
600 free(surface);
601}
602
603static struct toysurface *
604egl_window_surface_create(struct display *display,
605 struct wl_surface *wl_surface,
606 uint32_t flags,
607 struct rectangle *rectangle)
608{
609 struct egl_window_surface *surface;
610
Pekka Paalanenb3627362012-11-19 17:16:00 +0200611 if (display->dpy == EGL_NO_DISPLAY)
612 return NULL;
613
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200614 surface = calloc(1, sizeof *surface);
615 if (!surface)
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100616 return NULL;
617
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200618 surface->base.prepare = egl_window_surface_prepare;
619 surface->base.swap = egl_window_surface_swap;
620 surface->base.acquire = egl_window_surface_acquire;
621 surface->base.release = egl_window_surface_release;
622 surface->base.destroy = egl_window_surface_destroy;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100623
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200624 surface->display = display;
625 surface->surface = wl_surface;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400626
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200627 surface->egl_window = wl_egl_window_create(surface->surface,
628 rectangle->width,
629 rectangle->height);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100630
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200631 surface->egl_surface = eglCreateWindowSurface(display->dpy,
632 display->argb_config,
633 surface->egl_window,
634 NULL);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100635
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200636 surface->cairo_surface =
637 cairo_gl_surface_create_for_egl(display->argb_device,
638 surface->egl_surface,
639 rectangle->width,
640 rectangle->height);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100641
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200642 return &surface->base;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100643}
644
Pekka Paalanenb3627362012-11-19 17:16:00 +0200645#else
646
647static struct toysurface *
648egl_window_surface_create(struct display *display,
649 struct wl_surface *wl_surface,
650 uint32_t flags,
651 struct rectangle *rectangle)
652{
653 return NULL;
654}
655
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400656#endif
657
Pekka Paalanen0c6a3432012-11-19 15:32:50 +0200658struct shm_surface_data {
659 struct wl_buffer *buffer;
660 struct shm_pool *pool;
661};
662
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400663struct wl_buffer *
664display_get_buffer_for_surface(struct display *display,
665 cairo_surface_t *surface)
666{
Pekka Paalanen0c6a3432012-11-19 15:32:50 +0200667 struct shm_surface_data *data;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400668
Pekka Paalanen32127ca2012-11-19 15:32:51 +0200669 data = cairo_surface_get_user_data(surface, &shm_surface_data_key);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400670
671 return data->buffer;
672}
673
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500674static void
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700675shm_pool_destroy(struct shm_pool *pool);
676
677static void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400678shm_surface_data_destroy(void *p)
679{
680 struct shm_surface_data *data = p;
681
Pekka Paalanen0c6a3432012-11-19 15:32:50 +0200682 wl_buffer_destroy(data->buffer);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700683 if (data->pool)
684 shm_pool_destroy(data->pool);
Ander Conselvan de Oliveira2a3cd282012-06-19 13:45:55 +0300685
686 free(data);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400687}
688
Kristian Høgsberg16626282012-04-03 11:21:27 -0400689static struct wl_shm_pool *
690make_shm_pool(struct display *display, int size, void **data)
691{
Kristian Høgsberg16626282012-04-03 11:21:27 -0400692 struct wl_shm_pool *pool;
693 int fd;
694
Pekka Paalanen1da1b8f2012-06-06 16:59:43 +0300695 fd = os_create_anonymous_file(size);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400696 if (fd < 0) {
Pekka Paalanen1da1b8f2012-06-06 16:59:43 +0300697 fprintf(stderr, "creating a buffer file for %d B failed: %m\n",
698 size);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400699 return NULL;
700 }
701
702 *data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400703 if (*data == MAP_FAILED) {
704 fprintf(stderr, "mmap failed: %m\n");
705 close(fd);
706 return NULL;
707 }
708
709 pool = wl_shm_create_pool(display->shm, fd, size);
710
711 close(fd);
712
713 return pool;
714}
715
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700716static struct shm_pool *
717shm_pool_create(struct display *display, size_t size)
718{
719 struct shm_pool *pool = malloc(sizeof *pool);
720
721 if (!pool)
722 return NULL;
723
724 pool->pool = make_shm_pool(display, size, &pool->data);
725 if (!pool->pool) {
726 free(pool);
727 return NULL;
728 }
729
730 pool->size = size;
731 pool->used = 0;
732
733 return pool;
734}
735
736static void *
737shm_pool_allocate(struct shm_pool *pool, size_t size, int *offset)
738{
739 if (pool->used + size > pool->size)
740 return NULL;
741
742 *offset = pool->used;
743 pool->used += size;
744
745 return (char *) pool->data + *offset;
746}
747
748/* destroy the pool. this does not unmap the memory though */
749static void
750shm_pool_destroy(struct shm_pool *pool)
751{
752 munmap(pool->data, pool->size);
753 wl_shm_pool_destroy(pool->pool);
754 free(pool);
755}
756
757/* Start allocating from the beginning of the pool again */
758static void
759shm_pool_reset(struct shm_pool *pool)
760{
761 pool->used = 0;
762}
763
764static int
765data_length_for_shm_surface(struct rectangle *rect)
766{
767 int stride;
768
769 stride = cairo_format_stride_for_width (CAIRO_FORMAT_ARGB32,
770 rect->width);
771 return stride * rect->height;
772}
773
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500774static cairo_surface_t *
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700775display_create_shm_surface_from_pool(struct display *display,
776 struct rectangle *rectangle,
777 uint32_t flags, struct shm_pool *pool)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400778{
779 struct shm_surface_data *data;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400780 uint32_t format;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400781 cairo_surface_t *surface;
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200782 cairo_format_t cairo_format;
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700783 int stride, length, offset;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400784 void *map;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400785
786 data = malloc(sizeof *data);
787 if (data == NULL)
788 return NULL;
789
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200790 if (flags & SURFACE_HINT_RGB565 && display->has_rgb565)
791 cairo_format = CAIRO_FORMAT_RGB16_565;
792 else
793 cairo_format = CAIRO_FORMAT_ARGB32;
794
795 stride = cairo_format_stride_for_width (cairo_format, rectangle->width);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700796 length = stride * rectangle->height;
797 data->pool = NULL;
798 map = shm_pool_allocate(pool, length, &offset);
799
800 if (!map) {
801 free(data);
802 return NULL;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400803 }
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400804
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400805 surface = cairo_image_surface_create_for_data (map,
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200806 cairo_format,
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400807 rectangle->width,
808 rectangle->height,
809 stride);
810
Pekka Paalanen32127ca2012-11-19 15:32:51 +0200811 cairo_surface_set_user_data(surface, &shm_surface_data_key,
812 data, shm_surface_data_destroy);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400813
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200814 if (flags & SURFACE_HINT_RGB565 && display->has_rgb565)
815 format = WL_SHM_FORMAT_RGB565;
816 else {
817 if (flags & SURFACE_OPAQUE)
818 format = WL_SHM_FORMAT_XRGB8888;
819 else
820 format = WL_SHM_FORMAT_ARGB8888;
821 }
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400822
Pekka Paalanen0c6a3432012-11-19 15:32:50 +0200823 data->buffer = wl_shm_pool_create_buffer(pool->pool, offset,
824 rectangle->width,
825 rectangle->height,
826 stride, format);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400827
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700828 return surface;
829}
830
831static cairo_surface_t *
832display_create_shm_surface(struct display *display,
833 struct rectangle *rectangle, uint32_t flags,
Pekka Paalanen99436862012-11-19 17:15:59 +0200834 struct shm_pool *alternate_pool,
835 struct shm_surface_data **data_ret)
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700836{
837 struct shm_surface_data *data;
838 struct shm_pool *pool;
839 cairo_surface_t *surface;
840
Pekka Paalanen99436862012-11-19 17:15:59 +0200841 if (alternate_pool) {
842 shm_pool_reset(alternate_pool);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700843 surface = display_create_shm_surface_from_pool(display,
844 rectangle,
845 flags,
Pekka Paalanen99436862012-11-19 17:15:59 +0200846 alternate_pool);
847 if (surface) {
848 data = cairo_surface_get_user_data(surface,
849 &shm_surface_data_key);
850 goto out;
851 }
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700852 }
853
854 pool = shm_pool_create(display,
855 data_length_for_shm_surface(rectangle));
856 if (!pool)
857 return NULL;
858
859 surface =
860 display_create_shm_surface_from_pool(display, rectangle,
861 flags, pool);
862
863 if (!surface) {
864 shm_pool_destroy(pool);
865 return NULL;
866 }
867
868 /* make sure we destroy the pool when the surface is destroyed */
Pekka Paalanen32127ca2012-11-19 15:32:51 +0200869 data = cairo_surface_get_user_data(surface, &shm_surface_data_key);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700870 data->pool = pool;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400871
Pekka Paalanen99436862012-11-19 17:15:59 +0200872out:
873 if (data_ret)
874 *data_ret = data;
875
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400876 return surface;
877}
878
nobled7b87cb02011-02-01 18:51:47 +0000879static int
880check_size(struct rectangle *rect)
881{
882 if (rect->width && rect->height)
883 return 0;
884
885 fprintf(stderr, "tried to create surface of "
886 "width: %d, height: %d\n", rect->width, rect->height);
887 return -1;
888}
889
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400890cairo_surface_t *
891display_create_surface(struct display *display,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100892 struct wl_surface *surface,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400893 struct rectangle *rectangle,
894 uint32_t flags)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400895{
nobled7b87cb02011-02-01 18:51:47 +0000896 if (check_size(rectangle) < 0)
897 return NULL;
Pekka Paalanen768117f2012-11-19 17:15:57 +0200898
899 assert(flags & SURFACE_SHM);
Pekka Paalanen99436862012-11-19 17:15:59 +0200900 return display_create_shm_surface(display, rectangle, flags,
901 NULL, NULL);
902}
903
Pekka Paalanena4eda732012-11-19 17:16:02 +0200904struct shm_surface_leaf {
905 cairo_surface_t *cairo_surface;
906 /* 'data' is automatically destroyed, when 'cairo_surface' is */
907 struct shm_surface_data *data;
908
909 struct shm_pool *resize_pool;
910 int busy;
911};
912
913static void
914shm_surface_leaf_release(struct shm_surface_leaf *leaf)
915{
916 if (leaf->cairo_surface)
917 cairo_surface_destroy(leaf->cairo_surface);
918 /* leaf->data already destroyed via cairo private */
919
920 if (leaf->resize_pool)
921 shm_pool_destroy(leaf->resize_pool);
Pekka Paalanen550d66b2013-02-13 16:17:12 +0200922
923 memset(leaf, 0, sizeof *leaf);
Pekka Paalanena4eda732012-11-19 17:16:02 +0200924}
925
Pekka Paalanenaef02542013-04-25 13:57:47 +0300926#define MAX_LEAVES 3
927
Pekka Paalanen99436862012-11-19 17:15:59 +0200928struct shm_surface {
929 struct toysurface base;
930 struct display *display;
931 struct wl_surface *surface;
932 uint32_t flags;
933 int dx, dy;
934
Pekka Paalanenaef02542013-04-25 13:57:47 +0300935 struct shm_surface_leaf leaf[MAX_LEAVES];
Pekka Paalanena4eda732012-11-19 17:16:02 +0200936 struct shm_surface_leaf *current;
Pekka Paalanen99436862012-11-19 17:15:59 +0200937};
938
939static struct shm_surface *
940to_shm_surface(struct toysurface *base)
941{
942 return container_of(base, struct shm_surface, base);
943}
944
Pekka Paalanena4eda732012-11-19 17:16:02 +0200945static void
Pekka Paalanen97777442013-05-22 10:20:05 +0300946shm_surface_buffer_state_debug(struct shm_surface *surface, const char *msg)
947{
948#ifdef DEBUG
949 struct shm_surface_leaf *leaf;
950 char bufs[MAX_LEAVES + 1];
951 int i;
952
953 for (i = 0; i < MAX_LEAVES; i++) {
954 leaf = &surface->leaf[i];
955
956 if (leaf->busy)
957 bufs[i] = 'b';
958 else if (leaf->cairo_surface)
959 bufs[i] = 'a';
960 else
961 bufs[i] = ' ';
962 }
963
964 bufs[MAX_LEAVES] = '\0';
965 DBG_OBJ(surface->surface, "%s, leaves [%s]\n", msg, bufs);
966#endif
967}
968
969static void
Pekka Paalanena4eda732012-11-19 17:16:02 +0200970shm_surface_buffer_release(void *data, struct wl_buffer *buffer)
971{
Pekka Paalanen550d66b2013-02-13 16:17:12 +0200972 struct shm_surface *surface = data;
Pekka Paalanenaef02542013-04-25 13:57:47 +0300973 struct shm_surface_leaf *leaf;
974 int i;
975 int free_found;
Pekka Paalanen97777442013-05-22 10:20:05 +0300976
977 shm_surface_buffer_state_debug(surface, "buffer_release before");
Pekka Paalanena4eda732012-11-19 17:16:02 +0200978
Pekka Paalanenaef02542013-04-25 13:57:47 +0300979 for (i = 0; i < MAX_LEAVES; i++) {
980 leaf = &surface->leaf[i];
981 if (leaf->data && leaf->data->buffer == buffer) {
982 leaf->busy = 0;
983 break;
984 }
985 }
986 assert(i < MAX_LEAVES && "unknown buffer released");
Pekka Paalanen4dd0c412012-12-04 16:01:16 +0200987
Pekka Paalanenaef02542013-04-25 13:57:47 +0300988 /* Leave one free leaf with storage, release others */
989 free_found = 0;
990 for (i = 0; i < MAX_LEAVES; i++) {
991 leaf = &surface->leaf[i];
992
993 if (!leaf->cairo_surface || leaf->busy)
994 continue;
995
996 if (!free_found)
997 free_found = 1;
Pekka Paalanen97777442013-05-22 10:20:05 +0300998 else
Pekka Paalanenaef02542013-04-25 13:57:47 +0300999 shm_surface_leaf_release(leaf);
1000 }
Pekka Paalanen71233882013-04-25 13:57:53 +03001001
Pekka Paalanen97777442013-05-22 10:20:05 +03001002 shm_surface_buffer_state_debug(surface, "buffer_release after");
Pekka Paalanena4eda732012-11-19 17:16:02 +02001003}
1004
1005static const struct wl_buffer_listener shm_surface_buffer_listener = {
1006 shm_surface_buffer_release
1007};
1008
Pekka Paalanen99436862012-11-19 17:15:59 +02001009static cairo_surface_t *
1010shm_surface_prepare(struct toysurface *base, int dx, int dy,
Alexander Larsson1818e312013-05-22 14:41:31 +02001011 int32_t width, int32_t height, uint32_t flags,
Alexander Larssonedddbd12013-05-24 13:09:43 +02001012 enum wl_output_transform buffer_transform, int32_t buffer_scale)
Pekka Paalanen99436862012-11-19 17:15:59 +02001013{
Pekka Paalanenec076692012-11-30 13:37:27 +02001014 int resize_hint = !!(flags & SURFACE_HINT_RESIZE);
Pekka Paalanen99436862012-11-19 17:15:59 +02001015 struct shm_surface *surface = to_shm_surface(base);
Alexander Larsson1818e312013-05-22 14:41:31 +02001016 struct rectangle rect = { 0};
Pekka Paalanenaef02542013-04-25 13:57:47 +03001017 struct shm_surface_leaf *leaf = NULL;
1018 int i;
Pekka Paalanen99436862012-11-19 17:15:59 +02001019
1020 surface->dx = dx;
1021 surface->dy = dy;
1022
Pekka Paalanenaef02542013-04-25 13:57:47 +03001023 /* pick a free buffer, preferrably one that already has storage */
1024 for (i = 0; i < MAX_LEAVES; i++) {
1025 if (surface->leaf[i].busy)
1026 continue;
Pekka Paalanen4dd0c412012-12-04 16:01:16 +02001027
Pekka Paalanenaef02542013-04-25 13:57:47 +03001028 if (!leaf || surface->leaf[i].cairo_surface)
1029 leaf = &surface->leaf[i];
1030 }
Pekka Paalanen71233882013-04-25 13:57:53 +03001031 DBG_OBJ(surface->surface, "pick leaf %d\n",
1032 (int)(leaf - &surface->leaf[0]));
1033
Pekka Paalanenaef02542013-04-25 13:57:47 +03001034 if (!leaf) {
1035 fprintf(stderr, "%s: all buffers are held by the server.\n",
Pekka Paalanena4eda732012-11-19 17:16:02 +02001036 __func__);
Pekka Paalanen71233882013-04-25 13:57:53 +03001037 exit(1);
Pekka Paalanena4eda732012-11-19 17:16:02 +02001038 return NULL;
Pekka Paalanen99436862012-11-19 17:15:59 +02001039 }
1040
Pekka Paalanena4eda732012-11-19 17:16:02 +02001041 if (!resize_hint && leaf->resize_pool) {
1042 cairo_surface_destroy(leaf->cairo_surface);
1043 leaf->cairo_surface = NULL;
1044 shm_pool_destroy(leaf->resize_pool);
1045 leaf->resize_pool = NULL;
1046 }
1047
Alexander Larsson1818e312013-05-22 14:41:31 +02001048 surface_to_buffer_size (buffer_transform, buffer_scale, &width, &height);
1049
Pekka Paalanena4eda732012-11-19 17:16:02 +02001050 if (leaf->cairo_surface &&
1051 cairo_image_surface_get_width(leaf->cairo_surface) == width &&
1052 cairo_image_surface_get_height(leaf->cairo_surface) == height)
Pekka Paalanen99436862012-11-19 17:15:59 +02001053 goto out;
1054
Pekka Paalanena4eda732012-11-19 17:16:02 +02001055 if (leaf->cairo_surface)
1056 cairo_surface_destroy(leaf->cairo_surface);
Pekka Paalanen99436862012-11-19 17:15:59 +02001057
Louis-Francis Ratté-Boulianne6cd1de32013-05-22 18:03:11 +03001058#ifdef USE_RESIZE_POOL
Pekka Paalanena4eda732012-11-19 17:16:02 +02001059 if (resize_hint && !leaf->resize_pool) {
Pekka Paalanen99436862012-11-19 17:15:59 +02001060 /* Create a big pool to allocate from, while continuously
1061 * resizing. Mmapping a new pool in the server
1062 * is relatively expensive, so reusing a pool performs
1063 * better, but may temporarily reserve unneeded memory.
1064 */
1065 /* We should probably base this number on the output size. */
Pekka Paalanena4eda732012-11-19 17:16:02 +02001066 leaf->resize_pool = shm_pool_create(surface->display,
1067 6 * 1024 * 1024);
Pekka Paalanen99436862012-11-19 17:15:59 +02001068 }
Louis-Francis Ratté-Boulianne6cd1de32013-05-22 18:03:11 +03001069#endif
Pekka Paalanen99436862012-11-19 17:15:59 +02001070
Alexander Larsson1818e312013-05-22 14:41:31 +02001071 rect.width = width;
1072 rect.height = height;
1073
Pekka Paalanena4eda732012-11-19 17:16:02 +02001074 leaf->cairo_surface =
Pekka Paalanen99436862012-11-19 17:15:59 +02001075 display_create_shm_surface(surface->display, &rect,
1076 surface->flags,
Pekka Paalanena4eda732012-11-19 17:16:02 +02001077 leaf->resize_pool,
1078 &leaf->data);
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02001079 if (!leaf->cairo_surface)
1080 return NULL;
1081
Pekka Paalanena4eda732012-11-19 17:16:02 +02001082 wl_buffer_add_listener(leaf->data->buffer,
Pekka Paalanen550d66b2013-02-13 16:17:12 +02001083 &shm_surface_buffer_listener, surface);
Pekka Paalanen99436862012-11-19 17:15:59 +02001084
1085out:
Pekka Paalanena4eda732012-11-19 17:16:02 +02001086 surface->current = leaf;
1087
1088 return cairo_surface_reference(leaf->cairo_surface);
Pekka Paalanen99436862012-11-19 17:15:59 +02001089}
1090
1091static void
1092shm_surface_swap(struct toysurface *base,
Alexander Larssonedddbd12013-05-24 13:09:43 +02001093 enum wl_output_transform buffer_transform, int32_t buffer_scale,
Pekka Paalanen99436862012-11-19 17:15:59 +02001094 struct rectangle *server_allocation)
1095{
1096 struct shm_surface *surface = to_shm_surface(base);
Pekka Paalanena4eda732012-11-19 17:16:02 +02001097 struct shm_surface_leaf *leaf = surface->current;
Pekka Paalanen99436862012-11-19 17:15:59 +02001098
1099 server_allocation->width =
Pekka Paalanena4eda732012-11-19 17:16:02 +02001100 cairo_image_surface_get_width(leaf->cairo_surface);
Pekka Paalanen99436862012-11-19 17:15:59 +02001101 server_allocation->height =
Pekka Paalanena4eda732012-11-19 17:16:02 +02001102 cairo_image_surface_get_height(leaf->cairo_surface);
Pekka Paalanen99436862012-11-19 17:15:59 +02001103
Alexander Larsson1818e312013-05-22 14:41:31 +02001104 buffer_to_surface_size (buffer_transform, buffer_scale,
1105 &server_allocation->width,
1106 &server_allocation->height);
1107
Pekka Paalanena4eda732012-11-19 17:16:02 +02001108 wl_surface_attach(surface->surface, leaf->data->buffer,
Pekka Paalanen99436862012-11-19 17:15:59 +02001109 surface->dx, surface->dy);
1110 wl_surface_damage(surface->surface, 0, 0,
1111 server_allocation->width, server_allocation->height);
1112 wl_surface_commit(surface->surface);
Pekka Paalanena4eda732012-11-19 17:16:02 +02001113
Pekka Paalanen71233882013-04-25 13:57:53 +03001114 DBG_OBJ(surface->surface, "leaf %d busy\n",
1115 (int)(leaf - &surface->leaf[0]));
1116
Pekka Paalanena4eda732012-11-19 17:16:02 +02001117 leaf->busy = 1;
1118 surface->current = NULL;
Pekka Paalanen99436862012-11-19 17:15:59 +02001119}
1120
1121static int
1122shm_surface_acquire(struct toysurface *base, EGLContext ctx)
1123{
1124 return -1;
1125}
1126
1127static void
1128shm_surface_release(struct toysurface *base)
1129{
1130}
1131
1132static void
1133shm_surface_destroy(struct toysurface *base)
1134{
1135 struct shm_surface *surface = to_shm_surface(base);
Pekka Paalanenaef02542013-04-25 13:57:47 +03001136 int i;
Pekka Paalanen99436862012-11-19 17:15:59 +02001137
Pekka Paalanenaef02542013-04-25 13:57:47 +03001138 for (i = 0; i < MAX_LEAVES; i++)
1139 shm_surface_leaf_release(&surface->leaf[i]);
Pekka Paalanen99436862012-11-19 17:15:59 +02001140
1141 free(surface);
1142}
1143
1144static struct toysurface *
1145shm_surface_create(struct display *display, struct wl_surface *wl_surface,
1146 uint32_t flags, struct rectangle *rectangle)
1147{
1148 struct shm_surface *surface;
Pekka Paalanen71233882013-04-25 13:57:53 +03001149 DBG_OBJ(wl_surface, "\n");
Pekka Paalanen99436862012-11-19 17:15:59 +02001150
Brian Lovinbc919262013-08-07 15:34:59 -07001151 surface = xmalloc(sizeof *surface);
1152 memset(surface, 0, sizeof *surface);
1153
Pekka Paalanen99436862012-11-19 17:15:59 +02001154 if (!surface)
1155 return NULL;
1156
1157 surface->base.prepare = shm_surface_prepare;
1158 surface->base.swap = shm_surface_swap;
1159 surface->base.acquire = shm_surface_acquire;
1160 surface->base.release = shm_surface_release;
1161 surface->base.destroy = shm_surface_destroy;
1162
1163 surface->display = display;
1164 surface->surface = wl_surface;
1165 surface->flags = flags;
Pekka Paalanen99436862012-11-19 17:15:59 +02001166
1167 return &surface->base;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04001168}
1169
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001170/*
1171 * The following correspondences between file names and cursors was copied
1172 * from: https://bugs.kde.org/attachment.cgi?id=67313
1173 */
1174
1175static const char *bottom_left_corners[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001176 "bottom_left_corner",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001177 "sw-resize",
1178 "size_bdiag"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001179};
1180
1181static const char *bottom_right_corners[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001182 "bottom_right_corner",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001183 "se-resize",
1184 "size_fdiag"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001185};
1186
1187static const char *bottom_sides[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001188 "bottom_side",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001189 "s-resize",
1190 "size_ver"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001191};
1192
1193static const char *grabbings[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001194 "grabbing",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001195 "closedhand",
1196 "208530c400c041818281048008011002"
1197};
1198
1199static const char *left_ptrs[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001200 "left_ptr",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001201 "default",
1202 "top_left_arrow",
1203 "left-arrow"
1204};
1205
1206static const char *left_sides[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001207 "left_side",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001208 "w-resize",
1209 "size_hor"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001210};
1211
1212static const char *right_sides[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001213 "right_side",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001214 "e-resize",
1215 "size_hor"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001216};
1217
1218static const char *top_left_corners[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001219 "top_left_corner",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001220 "nw-resize",
1221 "size_fdiag"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001222};
1223
1224static const char *top_right_corners[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001225 "top_right_corner",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001226 "ne-resize",
1227 "size_bdiag"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001228};
1229
1230static const char *top_sides[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001231 "top_side",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001232 "n-resize",
1233 "size_ver"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001234};
1235
1236static const char *xterms[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001237 "xterm",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001238 "ibeam",
1239 "text"
1240};
1241
1242static const char *hand1s[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001243 "hand1",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001244 "pointer",
1245 "pointing_hand",
1246 "e29285e634086352946a0e7090d73106"
1247};
1248
1249static const char *watches[] = {
Kristian Høgsberg8591dbf2012-06-04 16:10:40 -04001250 "watch",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001251 "wait",
1252 "0426c94ea35c87780ff01dc239897213"
1253};
1254
1255struct cursor_alternatives {
1256 const char **names;
1257 size_t count;
1258};
1259
1260static const struct cursor_alternatives cursors[] = {
1261 {bottom_left_corners, ARRAY_LENGTH(bottom_left_corners)},
1262 {bottom_right_corners, ARRAY_LENGTH(bottom_right_corners)},
1263 {bottom_sides, ARRAY_LENGTH(bottom_sides)},
1264 {grabbings, ARRAY_LENGTH(grabbings)},
1265 {left_ptrs, ARRAY_LENGTH(left_ptrs)},
1266 {left_sides, ARRAY_LENGTH(left_sides)},
1267 {right_sides, ARRAY_LENGTH(right_sides)},
1268 {top_left_corners, ARRAY_LENGTH(top_left_corners)},
1269 {top_right_corners, ARRAY_LENGTH(top_right_corners)},
1270 {top_sides, ARRAY_LENGTH(top_sides)},
1271 {xterms, ARRAY_LENGTH(xterms)},
1272 {hand1s, ARRAY_LENGTH(hand1s)},
1273 {watches, ARRAY_LENGTH(watches)},
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001274};
1275
1276static void
1277create_cursors(struct display *display)
1278{
Kristian Høgsberg8c079ae2013-09-21 22:26:10 -07001279 struct weston_config *config;
1280 struct weston_config_section *s;
Kristian Høgsberg1abe0482013-09-21 23:02:31 -07001281 int size;
Christopher Michaelac3e5f22012-08-11 15:12:09 +01001282 char *theme = NULL;
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001283 unsigned int i, j;
1284 struct wl_cursor *cursor;
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001285
Kristian Høgsberg1abe0482013-09-21 23:02:31 -07001286 config = weston_config_parse("weston.ini");
Kristian Høgsberg8c079ae2013-09-21 22:26:10 -07001287 s = weston_config_get_section(config, "shell", NULL, NULL);
1288 weston_config_section_get_string(s, "cursor-theme", &theme, NULL);
1289 weston_config_section_get_int(s, "cursor-size", &size, 32);
1290 weston_config_destroy(config);
1291
Emilio Pozuelo Monfortab44b0c2013-03-14 17:23:37 +01001292 display->cursor_theme = wl_cursor_theme_load(theme, size, display->shm);
Hardening842a36a2014-03-18 14:12:50 +01001293 if (!display->cursor_theme) {
1294 fprintf(stderr, "could not load theme '%s'\n", theme);
1295 return;
1296 }
Kristian Høgsbergb5c973c2013-10-09 13:02:04 -07001297 free(theme);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001298 display->cursors =
Brian Lovinbc919262013-08-07 15:34:59 -07001299 xmalloc(ARRAY_LENGTH(cursors) * sizeof display->cursors[0]);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001300
Pekka Paalanene288a0f2012-07-31 13:21:09 +03001301 for (i = 0; i < ARRAY_LENGTH(cursors); i++) {
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001302 cursor = NULL;
1303 for (j = 0; !cursor && j < cursors[i].count; ++j)
1304 cursor = wl_cursor_theme_get_cursor(
1305 display->cursor_theme, cursors[i].names[j]);
1306
1307 if (!cursor)
Pekka Paalanene288a0f2012-07-31 13:21:09 +03001308 fprintf(stderr, "could not load cursor '%s'\n",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001309 cursors[i].names[0]);
1310
1311 display->cursors[i] = cursor;
Pekka Paalanene288a0f2012-07-31 13:21:09 +03001312 }
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001313}
1314
1315static void
1316destroy_cursors(struct display *display)
1317{
1318 wl_cursor_theme_destroy(display->cursor_theme);
Yan Wanga261f7e2012-05-28 14:07:25 +08001319 free(display->cursors);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001320}
1321
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03001322struct wl_cursor_image *
1323display_get_pointer_image(struct display *display, int pointer)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001324{
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001325 struct wl_cursor *cursor = display->cursors[pointer];
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001326
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03001327 return cursor ? cursor->images[0] : NULL;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001328}
1329
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -04001330static void
Pekka Paalanen89dee002013-02-13 16:17:20 +02001331surface_flush(struct surface *surface)
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001332{
Pekka Paalanen89dee002013-02-13 16:17:20 +02001333 if (!surface->cairo_surface)
1334 return;
1335
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02001336 if (surface->opaque_region) {
1337 wl_surface_set_opaque_region(surface->surface,
1338 surface->opaque_region);
1339 wl_region_destroy(surface->opaque_region);
1340 surface->opaque_region = NULL;
1341 }
1342
1343 if (surface->input_region) {
1344 wl_surface_set_input_region(surface->surface,
1345 surface->input_region);
1346 wl_region_destroy(surface->input_region);
1347 surface->input_region = NULL;
1348 }
1349
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001350 surface->toysurface->swap(surface->toysurface,
Alexander Larsson1818e312013-05-22 14:41:31 +02001351 surface->buffer_transform, surface->buffer_scale,
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001352 &surface->server_allocation);
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001353
Pekka Paalanen89dee002013-02-13 16:17:20 +02001354 cairo_surface_destroy(surface->cairo_surface);
1355 surface->cairo_surface = NULL;
Kristian Høgsberg6a1b2012009-12-16 14:43:37 -05001356}
1357
Kristian Høgsberg86adef92012-08-13 22:25:53 -04001358int
1359window_has_focus(struct window *window)
1360{
Jasper St. Pierre0790e392013-12-09 14:58:00 -05001361 return window->focused;
Kristian Høgsberga341fa02010-01-24 18:10:15 -05001362}
1363
Jasper St. Pierre2097fe12014-02-01 18:17:34 -05001364static void
1365window_close(struct window *window)
1366{
1367 if (window->close_handler)
1368 window->close_handler(window->user_data);
1369 else
1370 display_exit(window->display);
1371}
1372
Kristian Høgsbergbcee9a42011-10-12 00:36:16 -04001373struct display *
1374window_get_display(struct window *window)
1375{
1376 return window->display;
1377}
1378
Pekka Paalanen89dee002013-02-13 16:17:20 +02001379static void
Jasper St. Pierree81a1752014-03-10 11:35:48 -04001380surface_create_surface(struct surface *surface, uint32_t flags)
Kristian Høgsberg012a0072010-10-26 00:02:20 -04001381{
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001382 struct display *display = surface->window->display;
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001383 struct rectangle allocation = surface->allocation;
Pekka Paalanen03fc3162012-11-19 17:15:58 +02001384
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001385 if (!surface->toysurface && display->dpy &&
1386 surface->buffer_type == WINDOW_BUFFER_TYPE_EGL_WINDOW) {
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001387 surface->toysurface =
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001388 egl_window_surface_create(display,
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001389 surface->surface,
Pekka Paalanen4e373742013-02-13 16:17:13 +02001390 flags,
Ander Conselvan de Oliveira6d4cb4e2012-11-30 17:34:24 +02001391 &allocation);
Pekka Paalanenb3627362012-11-19 17:16:00 +02001392 }
Pekka Paalanen03fc3162012-11-19 17:15:58 +02001393
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001394 if (!surface->toysurface)
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001395 surface->toysurface = shm_surface_create(display,
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001396 surface->surface,
1397 flags, &allocation);
Kristian Høgsberg012a0072010-10-26 00:02:20 -04001398
Pekka Paalanen89dee002013-02-13 16:17:20 +02001399 surface->cairo_surface = surface->toysurface->prepare(
Jasper St. Pierree81a1752014-03-10 11:35:48 -04001400 surface->toysurface, 0, 0,
Alexander Larsson1818e312013-05-22 14:41:31 +02001401 allocation.width, allocation.height, flags,
1402 surface->buffer_transform, surface->buffer_scale);
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001403}
1404
1405static void
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001406window_create_main_surface(struct window *window)
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001407{
Pekka Paalanen7bcfead2013-02-13 16:17:16 +02001408 struct surface *surface = window->main_surface;
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001409 uint32_t flags = 0;
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001410
Pekka Paalanenec076692012-11-30 13:37:27 +02001411 if (window->resizing)
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001412 flags |= SURFACE_HINT_RESIZE;
Pekka Paalanenec076692012-11-30 13:37:27 +02001413
Tomeu Vizosobee45a12013-08-06 20:05:54 +02001414 if (window->preferred_format == WINDOW_PREFERRED_FORMAT_RGB565)
1415 flags |= SURFACE_HINT_RGB565;
1416
Jasper St. Pierree81a1752014-03-10 11:35:48 -04001417 surface_create_surface(surface, flags);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04001418}
1419
Ander Conselvan de Oliveira6d4cb4e2012-11-30 17:34:24 +02001420int
1421window_get_buffer_transform(struct window *window)
1422{
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001423 return window->main_surface->buffer_transform;
Ander Conselvan de Oliveira6d4cb4e2012-11-30 17:34:24 +02001424}
1425
1426void
1427window_set_buffer_transform(struct window *window,
1428 enum wl_output_transform transform)
1429{
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001430 window->main_surface->buffer_transform = transform;
Pekka Paalanen4e373742013-02-13 16:17:13 +02001431 wl_surface_set_buffer_transform(window->main_surface->surface,
1432 transform);
Ander Conselvan de Oliveira6d4cb4e2012-11-30 17:34:24 +02001433}
1434
Alexander Larsson5e9b6522013-05-22 14:41:28 +02001435void
1436window_set_buffer_scale(struct window *window,
Alexander Larssonedddbd12013-05-24 13:09:43 +02001437 int32_t scale)
Alexander Larsson5e9b6522013-05-22 14:41:28 +02001438{
1439 window->main_surface->buffer_scale = scale;
1440 wl_surface_set_buffer_scale(window->main_surface->surface,
1441 scale);
1442}
1443
1444uint32_t
1445window_get_buffer_scale(struct window *window)
1446{
1447 return window->main_surface->buffer_scale;
1448}
1449
Alexander Larssond68f5232013-05-22 14:41:33 +02001450uint32_t
1451window_get_output_scale(struct window *window)
1452{
1453 struct window_output *window_output;
1454 struct window_output *window_output_tmp;
1455 int scale = 1;
1456
1457 wl_list_for_each_safe(window_output, window_output_tmp,
1458 &window->window_output_list, link) {
1459 if (window_output->output->scale > scale)
1460 scale = window_output->output->scale;
1461 }
1462
1463 return scale;
1464}
1465
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05001466static void window_frame_destroy(struct window_frame *frame);
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001467
Pekka Paalanen4e373742013-02-13 16:17:13 +02001468static void
1469surface_destroy(struct surface *surface)
1470{
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03001471 if (surface->frame_cb)
1472 wl_callback_destroy(surface->frame_cb);
1473
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02001474 if (surface->input_region)
1475 wl_region_destroy(surface->input_region);
1476
1477 if (surface->opaque_region)
1478 wl_region_destroy(surface->opaque_region);
1479
Pekka Paalanen35e82632013-04-25 13:57:48 +03001480 if (surface->subsurface)
1481 wl_subsurface_destroy(surface->subsurface);
1482
Pekka Paalanen4e373742013-02-13 16:17:13 +02001483 wl_surface_destroy(surface->surface);
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001484
1485 if (surface->toysurface)
1486 surface->toysurface->destroy(surface->toysurface);
1487
Pekka Paalanen35e82632013-04-25 13:57:48 +03001488 wl_list_remove(&surface->link);
Pekka Paalanen4e373742013-02-13 16:17:13 +02001489 free(surface);
1490}
1491
Kristian Høgsberge968f9c2010-08-27 22:18:00 -04001492void
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001493window_destroy(struct window *window)
1494{
Pekka Paalanen77cbc952011-11-15 13:34:55 +02001495 struct display *display = window->display;
1496 struct input *input;
Rob Bradford7507b572012-05-15 17:55:34 +01001497 struct window_output *window_output;
1498 struct window_output *window_output_tmp;
Pekka Paalanen77cbc952011-11-15 13:34:55 +02001499
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03001500 wl_list_remove(&window->redraw_task.link);
Pekka Paalanen77cbc952011-11-15 13:34:55 +02001501
Rusty Lynch1084da52013-08-15 09:10:08 -07001502 wl_list_for_each(input, &display->input_list, link) {
1503 if (input->touch_focus == window)
1504 input->touch_focus = NULL;
Pekka Paalanen77cbc952011-11-15 13:34:55 +02001505 if (input->pointer_focus == window)
1506 input->pointer_focus = NULL;
1507 if (input->keyboard_focus == window)
1508 input->keyboard_focus = NULL;
Kristian Høgsbergae6e2712012-01-26 11:09:20 -05001509 if (input->focus_widget &&
1510 input->focus_widget->window == window)
1511 input->focus_widget = NULL;
Pekka Paalanen77cbc952011-11-15 13:34:55 +02001512 }
1513
Rob Bradford7507b572012-05-15 17:55:34 +01001514 wl_list_for_each_safe(window_output, window_output_tmp,
1515 &window->window_output_list, link) {
1516 free (window_output);
1517 }
1518
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001519 if (window->frame)
Jason Ekstrandee7fefc2013-10-13 19:08:38 -05001520 window_frame_destroy(window->frame);
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001521
Jasper St. Pierre0790e392013-12-09 14:58:00 -05001522 if (window->xdg_surface)
1523 xdg_surface_destroy(window->xdg_surface);
1524 if (window->xdg_popup)
1525 xdg_popup_destroy(window->xdg_popup);
Pekka Paalanen4e373742013-02-13 16:17:13 +02001526
1527 surface_destroy(window->main_surface);
1528
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001529 wl_list_remove(&window->link);
Pekka Paalanen5ec65852011-12-16 10:09:29 +02001530
Pekka Paalanen5ec65852011-12-16 10:09:29 +02001531 free(window->title);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001532 free(window);
1533}
1534
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001535static struct widget *
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001536widget_find_widget(struct widget *widget, int32_t x, int32_t y)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001537{
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001538 struct widget *child, *target;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001539
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001540 wl_list_for_each(child, &widget->child_list, link) {
1541 target = widget_find_widget(child, x, y);
1542 if (target)
1543 return target;
1544 }
1545
1546 if (widget->allocation.x <= x &&
1547 x < widget->allocation.x + widget->allocation.width &&
1548 widget->allocation.y <= y &&
1549 y < widget->allocation.y + widget->allocation.height) {
1550 return widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001551 }
1552
1553 return NULL;
1554}
1555
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001556static struct widget *
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02001557window_find_widget(struct window *window, int32_t x, int32_t y)
1558{
Pekka Paalanen35e82632013-04-25 13:57:48 +03001559 struct surface *surface;
1560 struct widget *widget;
1561
1562 wl_list_for_each(surface, &window->subsurface_list, link) {
1563 widget = widget_find_widget(surface->widget, x, y);
1564 if (widget)
1565 return widget;
1566 }
1567
1568 return NULL;
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02001569}
1570
1571static struct widget *
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +02001572widget_create(struct window *window, struct surface *surface, void *data)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001573{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001574 struct widget *widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001575
Peter Huttererf3d62272013-08-08 11:57:05 +10001576 widget = xzalloc(sizeof *widget);
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001577 widget->window = window;
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +02001578 widget->surface = surface;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001579 widget->user_data = data;
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +02001580 widget->allocation = surface->allocation;
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001581 wl_list_init(&widget->child_list);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001582 widget->opaque = 0;
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001583 widget->tooltip = NULL;
1584 widget->tooltip_count = 0;
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05001585 widget->default_cursor = CURSOR_LEFT_PTR;
Neil Roberts97b747c2013-12-19 16:17:12 +00001586 widget->use_cairo = 1;
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001587
1588 return widget;
1589}
1590
1591struct widget *
1592window_add_widget(struct window *window, void *data)
1593{
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02001594 struct widget *widget;
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001595
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +02001596 widget = widget_create(window, window->main_surface, data);
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02001597 wl_list_init(&widget->link);
1598 window->main_surface->widget = widget;
1599
1600 return widget;
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001601}
1602
1603struct widget *
1604widget_add_widget(struct widget *parent, void *data)
1605{
1606 struct widget *widget;
1607
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +02001608 widget = widget_create(parent->window, parent->surface, data);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001609 wl_list_insert(parent->child_list.prev, &widget->link);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001610
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001611 return widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001612}
1613
1614void
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001615widget_destroy(struct widget *widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001616{
Pekka Paalanene156fb62012-01-19 13:51:38 +02001617 struct display *display = widget->window->display;
Pekka Paalanen35e82632013-04-25 13:57:48 +03001618 struct surface *surface = widget->surface;
Pekka Paalanene156fb62012-01-19 13:51:38 +02001619 struct input *input;
1620
Pekka Paalanen35e82632013-04-25 13:57:48 +03001621 /* Destroy the sub-surface along with the root widget */
1622 if (surface->widget == widget && surface->subsurface)
1623 surface_destroy(widget->surface);
1624
Kristian Høgsbergb637a402014-01-10 00:27:35 -08001625 if (widget->tooltip)
1626 widget_destroy_tooltip(widget);
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001627
Pekka Paalanene156fb62012-01-19 13:51:38 +02001628 wl_list_for_each(input, &display->input_list, link) {
1629 if (input->focus_widget == widget)
1630 input->focus_widget = NULL;
1631 }
1632
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001633 wl_list_remove(&widget->link);
1634 free(widget);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001635}
1636
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001637void
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05001638widget_set_default_cursor(struct widget *widget, int cursor)
1639{
1640 widget->default_cursor = cursor;
1641}
1642
1643void
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001644widget_get_allocation(struct widget *widget, struct rectangle *allocation)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001645{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001646 *allocation = widget->allocation;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001647}
1648
1649void
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001650widget_set_size(struct widget *widget, int32_t width, int32_t height)
1651{
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001652 widget->allocation.width = width;
1653 widget->allocation.height = height;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001654}
1655
1656void
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001657widget_set_allocation(struct widget *widget,
1658 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001659{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001660 widget->allocation.x = x;
1661 widget->allocation.y = y;
Tiago Vignattic5528d82012-02-09 19:06:55 +02001662 widget_set_size(widget, width, height);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001663}
1664
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001665void
1666widget_set_transparent(struct widget *widget, int transparent)
1667{
1668 widget->opaque = !transparent;
1669}
1670
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001671void *
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001672widget_get_user_data(struct widget *widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001673{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001674 return widget->user_data;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001675}
1676
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001677static cairo_surface_t *
1678widget_get_cairo_surface(struct widget *widget)
1679{
1680 struct surface *surface = widget->surface;
1681 struct window *window = widget->window;
1682
Neil Roberts97b747c2013-12-19 16:17:12 +00001683 assert(widget->use_cairo);
1684
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001685 if (!surface->cairo_surface) {
1686 if (surface == window->main_surface)
1687 window_create_main_surface(window);
1688 else
Jasper St. Pierree81a1752014-03-10 11:35:48 -04001689 surface_create_surface(surface, 0);
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001690 }
1691
1692 return surface->cairo_surface;
1693}
1694
Alexander Larsson15901f02013-05-22 14:41:25 +02001695static void
1696widget_cairo_update_transform(struct widget *widget, cairo_t *cr)
1697{
1698 struct surface *surface = widget->surface;
1699 double angle;
1700 cairo_matrix_t m;
1701 enum wl_output_transform transform;
1702 int surface_width, surface_height;
1703 int translate_x, translate_y;
Alexander Larssonedddbd12013-05-24 13:09:43 +02001704 int32_t scale;
Alexander Larsson15901f02013-05-22 14:41:25 +02001705
1706 surface_width = surface->allocation.width;
1707 surface_height = surface->allocation.height;
1708
Alexander Larsson5e9b6522013-05-22 14:41:28 +02001709 transform = surface->buffer_transform;
Alexander Larsson2aaa8b72013-05-22 14:41:29 +02001710 scale = surface->buffer_scale;
Alexander Larsson5e9b6522013-05-22 14:41:28 +02001711
Alexander Larsson15901f02013-05-22 14:41:25 +02001712 switch (transform) {
1713 case WL_OUTPUT_TRANSFORM_FLIPPED:
1714 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
1715 case WL_OUTPUT_TRANSFORM_FLIPPED_180:
1716 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
1717 cairo_matrix_init(&m, -1, 0, 0, 1, 0, 0);
1718 break;
1719 default:
1720 cairo_matrix_init_identity(&m);
1721 break;
1722 }
1723
1724 switch (transform) {
1725 case WL_OUTPUT_TRANSFORM_NORMAL:
1726 default:
1727 angle = 0;
1728 translate_x = 0;
1729 translate_y = 0;
1730 break;
1731 case WL_OUTPUT_TRANSFORM_FLIPPED:
1732 angle = 0;
1733 translate_x = surface_width;
1734 translate_y = 0;
1735 break;
1736 case WL_OUTPUT_TRANSFORM_90:
1737 angle = M_PI_2;
1738 translate_x = surface_height;
1739 translate_y = 0;
1740 break;
1741 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
1742 angle = M_PI_2;
1743 translate_x = surface_height;
1744 translate_y = surface_width;
1745 break;
1746 case WL_OUTPUT_TRANSFORM_180:
1747 angle = M_PI;
1748 translate_x = surface_width;
1749 translate_y = surface_height;
1750 break;
1751 case WL_OUTPUT_TRANSFORM_FLIPPED_180:
1752 angle = M_PI;
1753 translate_x = 0;
1754 translate_y = surface_height;
1755 break;
1756 case WL_OUTPUT_TRANSFORM_270:
1757 angle = M_PI + M_PI_2;
1758 translate_x = 0;
1759 translate_y = surface_width;
1760 break;
1761 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
1762 angle = M_PI + M_PI_2;
1763 translate_x = 0;
1764 translate_y = 0;
1765 break;
1766 }
1767
Alexander Larsson2aaa8b72013-05-22 14:41:29 +02001768 cairo_scale(cr, scale, scale);
Alexander Larsson15901f02013-05-22 14:41:25 +02001769 cairo_translate(cr, translate_x, translate_y);
1770 cairo_rotate(cr, angle);
1771 cairo_transform(cr, &m);
1772}
1773
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001774cairo_t *
1775widget_cairo_create(struct widget *widget)
1776{
Pekka Paalanen35e82632013-04-25 13:57:48 +03001777 struct surface *surface = widget->surface;
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001778 cairo_surface_t *cairo_surface;
1779 cairo_t *cr;
1780
1781 cairo_surface = widget_get_cairo_surface(widget);
1782 cr = cairo_create(cairo_surface);
1783
Alexander Larsson15901f02013-05-22 14:41:25 +02001784 widget_cairo_update_transform(widget, cr);
1785
Pekka Paalanen35e82632013-04-25 13:57:48 +03001786 cairo_translate(cr, -surface->allocation.x, -surface->allocation.y);
1787
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001788 return cr;
1789}
1790
Pekka Paalanen7ff7a802013-04-25 13:57:50 +03001791struct wl_surface *
1792widget_get_wl_surface(struct widget *widget)
1793{
1794 return widget->surface->surface;
1795}
1796
Neil Roberts5e10a042013-09-09 00:40:17 +01001797struct wl_subsurface *
1798widget_get_wl_subsurface(struct widget *widget)
1799{
1800 return widget->surface->subsurface;
1801}
1802
Pekka Paalanen7ff7a802013-04-25 13:57:50 +03001803uint32_t
1804widget_get_last_time(struct widget *widget)
1805{
1806 return widget->surface->last_time;
1807}
1808
1809void
1810widget_input_region_add(struct widget *widget, const struct rectangle *rect)
1811{
1812 struct wl_compositor *comp = widget->window->display->compositor;
1813 struct surface *surface = widget->surface;
1814
1815 if (!surface->input_region)
1816 surface->input_region = wl_compositor_create_region(comp);
1817
1818 if (rect) {
1819 wl_region_add(surface->input_region,
1820 rect->x, rect->y, rect->width, rect->height);
1821 }
1822}
1823
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001824void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05001825widget_set_resize_handler(struct widget *widget,
1826 widget_resize_handler_t handler)
1827{
1828 widget->resize_handler = handler;
1829}
1830
1831void
1832widget_set_redraw_handler(struct widget *widget,
1833 widget_redraw_handler_t handler)
1834{
1835 widget->redraw_handler = handler;
1836}
1837
1838void
Kristian Høgsbergee143232012-01-09 08:42:24 -05001839widget_set_enter_handler(struct widget *widget, widget_enter_handler_t handler)
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001840{
Kristian Høgsbergee143232012-01-09 08:42:24 -05001841 widget->enter_handler = handler;
1842}
1843
1844void
1845widget_set_leave_handler(struct widget *widget, widget_leave_handler_t handler)
1846{
1847 widget->leave_handler = handler;
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001848}
1849
1850void
Kristian Høgsberg04e98342012-01-09 09:36:16 -05001851widget_set_motion_handler(struct widget *widget,
1852 widget_motion_handler_t handler)
1853{
1854 widget->motion_handler = handler;
1855}
1856
1857void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05001858widget_set_button_handler(struct widget *widget,
1859 widget_button_handler_t handler)
1860{
1861 widget->button_handler = handler;
1862}
1863
1864void
Rusty Lynch041815a2013-08-08 21:20:38 -07001865widget_set_touch_up_handler(struct widget *widget,
1866 widget_touch_up_handler_t handler)
1867{
1868 widget->touch_up_handler = handler;
1869}
1870
1871void
1872widget_set_touch_down_handler(struct widget *widget,
1873 widget_touch_down_handler_t handler)
1874{
1875 widget->touch_down_handler = handler;
1876}
1877
1878void
1879widget_set_touch_motion_handler(struct widget *widget,
1880 widget_touch_motion_handler_t handler)
1881{
1882 widget->touch_motion_handler = handler;
1883}
1884
1885void
1886widget_set_touch_frame_handler(struct widget *widget,
1887 widget_touch_frame_handler_t handler)
1888{
1889 widget->touch_frame_handler = handler;
1890}
1891
1892void
1893widget_set_touch_cancel_handler(struct widget *widget,
1894 widget_touch_cancel_handler_t handler)
1895{
1896 widget->touch_cancel_handler = handler;
1897}
1898
1899void
Philipp Brüschweiler7e0cc542012-08-14 11:02:41 +02001900widget_set_axis_handler(struct widget *widget,
1901 widget_axis_handler_t handler)
1902{
1903 widget->axis_handler = handler;
1904}
1905
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03001906static void
1907window_schedule_redraw_task(struct window *window);
1908
Philipp Brüschweiler7e0cc542012-08-14 11:02:41 +02001909void
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001910widget_schedule_redraw(struct widget *widget)
1911{
Pekka Paalanen71233882013-04-25 13:57:53 +03001912 DBG_OBJ(widget->surface->surface, "widget %p\n", widget);
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03001913 widget->surface->redraw_needed = 1;
1914 window_schedule_redraw_task(widget->window);
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001915}
1916
Neil Roberts97b747c2013-12-19 16:17:12 +00001917void
1918widget_set_use_cairo(struct widget *widget,
1919 int use_cairo)
1920{
1921 widget->use_cairo = use_cairo;
1922}
1923
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04001924cairo_surface_t *
1925window_get_surface(struct window *window)
1926{
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001927 cairo_surface_t *cairo_surface;
1928
1929 cairo_surface = widget_get_cairo_surface(window->main_surface->widget);
1930
1931 return cairo_surface_reference(cairo_surface);
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04001932}
1933
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001934struct wl_surface *
1935window_get_wl_surface(struct window *window)
1936{
Pekka Paalanen4e373742013-02-13 16:17:13 +02001937 return window->main_surface->surface;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001938}
1939
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001940static void
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001941tooltip_redraw_handler(struct widget *widget, void *data)
1942{
1943 cairo_t *cr;
1944 const int32_t r = 3;
1945 struct tooltip *tooltip = data;
1946 int32_t width, height;
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001947
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001948 cr = widget_cairo_create(widget);
Jasper St. Pierre7f4386e2013-11-11 19:42:23 -05001949 cairo_translate(cr, widget->allocation.x, widget->allocation.y);
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001950 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
1951 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
1952 cairo_paint(cr);
1953
Pekka Paalanen0a9686f2013-02-13 16:17:22 +02001954 width = widget->allocation.width;
1955 height = widget->allocation.height;
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001956 rounded_rect(cr, 0, 0, width, height, r);
1957
1958 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
1959 cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
1960 cairo_fill(cr);
1961
1962 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
1963 cairo_move_to(cr, 10, 16);
1964 cairo_show_text(cr, tooltip->entry);
1965 cairo_destroy(cr);
1966}
1967
1968static cairo_text_extents_t
Jasper St. Pierre7f4386e2013-11-11 19:42:23 -05001969get_text_extents(struct display *display, struct tooltip *tooltip)
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001970{
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001971 cairo_t *cr;
1972 cairo_text_extents_t extents;
1973
Pekka Paalanen3cbb0892012-11-19 17:16:01 +02001974 /* Use the dummy_surface because tooltip's surface was not
1975 * created yet, and parent does not have a valid surface
1976 * outside repaint, either.
1977 */
Jasper St. Pierre7f4386e2013-11-11 19:42:23 -05001978 cr = cairo_create(display->dummy_surface);
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001979 cairo_text_extents(cr, tooltip->entry, &extents);
1980 cairo_destroy(cr);
1981
1982 return extents;
1983}
1984
1985static int
1986window_create_tooltip(struct tooltip *tooltip)
1987{
1988 struct widget *parent = tooltip->parent;
1989 struct display *display = parent->window->display;
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001990 const int offset_y = 27;
1991 const int margin = 3;
1992 cairo_text_extents_t extents;
1993
1994 if (tooltip->widget)
1995 return 0;
1996
Jasper St. Pierre7f4386e2013-11-11 19:42:23 -05001997 tooltip->widget = window_add_subsurface(parent->window, tooltip, SUBSURFACE_DESYNCHRONIZED);
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001998
Jasper St. Pierre7f4386e2013-11-11 19:42:23 -05001999 extents = get_text_extents(display, tooltip);
Tiago Vignatti82db9d82012-05-23 22:06:27 +03002000 widget_set_redraw_handler(tooltip->widget, tooltip_redraw_handler);
Jasper St. Pierre7f4386e2013-11-11 19:42:23 -05002001 widget_set_allocation(tooltip->widget,
2002 tooltip->x, tooltip->y + offset_y,
2003 extents.width + 20, 20 + margin * 2);
Tiago Vignatti82db9d82012-05-23 22:06:27 +03002004
2005 return 0;
2006}
2007
2008void
2009widget_destroy_tooltip(struct widget *parent)
2010{
2011 struct tooltip *tooltip = parent->tooltip;
2012
2013 parent->tooltip_count = 0;
2014 if (!tooltip)
2015 return;
2016
2017 if (tooltip->widget) {
2018 widget_destroy(tooltip->widget);
Tiago Vignatti82db9d82012-05-23 22:06:27 +03002019 tooltip->widget = NULL;
Tiago Vignatti82db9d82012-05-23 22:06:27 +03002020 }
2021
2022 close(tooltip->tooltip_fd);
2023 free(tooltip->entry);
2024 free(tooltip);
2025 parent->tooltip = NULL;
2026}
2027
2028static void
2029tooltip_func(struct task *task, uint32_t events)
2030{
2031 struct tooltip *tooltip =
2032 container_of(task, struct tooltip, tooltip_task);
2033 uint64_t exp;
2034
Martin Olsson8df662a2012-07-08 03:03:47 +02002035 if (read(tooltip->tooltip_fd, &exp, sizeof (uint64_t)) != sizeof (uint64_t))
2036 abort();
Tiago Vignatti82db9d82012-05-23 22:06:27 +03002037 window_create_tooltip(tooltip);
2038}
2039
2040#define TOOLTIP_TIMEOUT 500
2041static int
2042tooltip_timer_reset(struct tooltip *tooltip)
2043{
2044 struct itimerspec its;
2045
2046 its.it_interval.tv_sec = 0;
2047 its.it_interval.tv_nsec = 0;
2048 its.it_value.tv_sec = TOOLTIP_TIMEOUT / 1000;
2049 its.it_value.tv_nsec = (TOOLTIP_TIMEOUT % 1000) * 1000 * 1000;
2050 if (timerfd_settime(tooltip->tooltip_fd, 0, &its, NULL) < 0) {
2051 fprintf(stderr, "could not set timerfd\n: %m");
2052 return -1;
2053 }
2054
2055 return 0;
2056}
2057
2058int
2059widget_set_tooltip(struct widget *parent, char *entry, float x, float y)
2060{
2061 struct tooltip *tooltip = parent->tooltip;
2062
2063 parent->tooltip_count++;
2064 if (tooltip) {
2065 tooltip->x = x;
2066 tooltip->y = y;
2067 tooltip_timer_reset(tooltip);
2068 return 0;
2069 }
2070
2071 /* the handler might be triggered too fast via input device motion, so
2072 * we need this check here to make sure tooltip is fully initialized */
2073 if (parent->tooltip_count > 1)
2074 return 0;
2075
2076 tooltip = malloc(sizeof *tooltip);
2077 if (!tooltip)
2078 return -1;
2079
2080 parent->tooltip = tooltip;
2081 tooltip->parent = parent;
2082 tooltip->widget = NULL;
Tiago Vignatti82db9d82012-05-23 22:06:27 +03002083 tooltip->x = x;
2084 tooltip->y = y;
2085 tooltip->entry = strdup(entry);
2086 tooltip->tooltip_fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
2087 if (tooltip->tooltip_fd < 0) {
2088 fprintf(stderr, "could not create timerfd\n: %m");
2089 return -1;
2090 }
2091
2092 tooltip->tooltip_task.run = tooltip_func;
2093 display_watch_fd(parent->window->display, tooltip->tooltip_fd,
2094 EPOLLIN, &tooltip->tooltip_task);
2095 tooltip_timer_reset(tooltip);
2096
2097 return 0;
2098}
2099
2100static void
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02002101workspace_manager_state(void *data,
2102 struct workspace_manager *workspace_manager,
2103 uint32_t current,
2104 uint32_t count)
2105{
2106 struct display *display = data;
2107
2108 display->workspace = current;
2109 display->workspace_count = count;
2110}
2111
2112static const struct workspace_manager_listener workspace_manager_listener = {
2113 workspace_manager_state
2114};
2115
2116static void
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002117frame_resize_handler(struct widget *widget,
2118 int32_t width, int32_t height, void *data)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002119{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002120 struct window_frame *frame = data;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002121 struct widget *child = frame->child;
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002122 struct rectangle interior;
2123 struct rectangle input;
2124 struct rectangle opaque;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002125
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05002126 if (widget->window->fullscreen) {
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002127 interior.x = 0;
2128 interior.y = 0;
2129 interior.width = width;
2130 interior.height = height;
2131 } else {
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002132 frame_resize(frame->frame, width, height);
2133 frame_interior(frame->frame, &interior.x, &interior.y,
2134 &interior.width, &interior.height);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002135 }
2136
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002137 widget_set_allocation(child, interior.x, interior.y,
2138 interior.width, interior.height);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002139
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002140 if (child->resize_handler) {
2141 child->resize_handler(child, interior.width, interior.height,
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002142 child->user_data);
2143
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05002144 if (widget->window->fullscreen) {
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002145 width = child->allocation.width;
2146 height = child->allocation.height;
2147 } else {
2148 frame_resize_inside(frame->frame,
2149 child->allocation.width,
2150 child->allocation.height);
2151 width = frame_width(frame->frame);
2152 height = frame_height(frame->frame);
2153 }
Kristian Høgsberg023be102012-07-31 11:59:12 -04002154 }
2155
Scott Moreauf7e498c2012-05-14 11:39:29 -06002156 widget_set_allocation(widget, 0, 0, width, height);
Kristian Høgsbergf10df852012-02-28 21:52:12 -05002157
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002158 widget->surface->input_region =
2159 wl_compositor_create_region(widget->window->display->compositor);
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05002160 if (!widget->window->fullscreen) {
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002161 frame_input_rect(frame->frame, &input.x, &input.y,
2162 &input.width, &input.height);
2163 wl_region_add(widget->surface->input_region,
2164 input.x, input.y, input.width, input.height);
Pekka Vuorela4e363d22012-09-26 15:05:45 +03002165 } else {
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002166 wl_region_add(widget->surface->input_region, 0, 0, width, height);
Pekka Vuorela4e363d22012-09-26 15:05:45 +03002167 }
2168
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002169 widget_set_allocation(widget, 0, 0, width, height);
Pekka Vuorela4e363d22012-09-26 15:05:45 +03002170
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002171 if (child->opaque) {
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05002172 if (!widget->window->fullscreen) {
Kristian Høgsberg598477d2013-10-16 16:06:18 -07002173 frame_opaque_rect(frame->frame, &opaque.x, &opaque.y,
2174 &opaque.width, &opaque.height);
2175
2176 wl_region_add(widget->surface->opaque_region,
2177 opaque.x, opaque.y,
2178 opaque.width, opaque.height);
2179 } else {
2180 wl_region_add(widget->surface->opaque_region,
2181 0, 0, width, height);
2182 }
Martin Minarik1998b152012-05-10 02:04:35 +02002183 }
2184
Martin Minarik1998b152012-05-10 02:04:35 +02002185
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002186 widget_schedule_redraw(widget);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002187}
2188
2189static void
2190frame_redraw_handler(struct widget *widget, void *data)
2191{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002192 cairo_t *cr;
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002193 struct window_frame *frame = data;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002194 struct window *window = widget->window;
2195
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05002196 if (window->fullscreen)
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05002197 return;
2198
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02002199 cr = widget_cairo_create(widget);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002200
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002201 frame_repaint(frame->frame, cr);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002202
2203 cairo_destroy(cr);
2204}
2205
2206static int
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002207frame_get_pointer_image_for_location(struct window_frame *frame,
2208 enum theme_location location)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002209{
Scott Moreauc6a7e4b2012-09-28 02:45:06 -06002210 struct window *window = frame->widget->window;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002211
Jasper St. Pierre0790e392013-12-09 14:58:00 -05002212 if (window->custom)
Kristian Høgsberge994edd2013-02-14 16:31:42 -05002213 return CURSOR_LEFT_PTR;
2214
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002215 switch (location) {
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002216 case THEME_LOCATION_RESIZING_TOP:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002217 return CURSOR_TOP;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002218 case THEME_LOCATION_RESIZING_BOTTOM:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002219 return CURSOR_BOTTOM;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002220 case THEME_LOCATION_RESIZING_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002221 return CURSOR_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002222 case THEME_LOCATION_RESIZING_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002223 return CURSOR_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002224 case THEME_LOCATION_RESIZING_TOP_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002225 return CURSOR_TOP_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002226 case THEME_LOCATION_RESIZING_TOP_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002227 return CURSOR_TOP_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002228 case THEME_LOCATION_RESIZING_BOTTOM_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002229 return CURSOR_BOTTOM_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002230 case THEME_LOCATION_RESIZING_BOTTOM_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002231 return CURSOR_BOTTOM_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002232 case THEME_LOCATION_EXTERIOR:
2233 case THEME_LOCATION_TITLEBAR:
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002234 default:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002235 return CURSOR_LEFT_PTR;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002236 }
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05002237}
2238
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05002239void
2240window_show_frame_menu(struct window *window,
2241 struct input *input, uint32_t time)
2242{
2243 int32_t x, y;
2244
Jasper St. Pierre81ff0752014-03-13 11:04:53 -04002245 if (window->xdg_surface) {
2246 input_get_position(input, &x, &y);
2247 xdg_surface_show_window_menu(window->xdg_surface,
2248 input_get_seat(input),
2249 window->display->serial,
2250 x - 10, y - 10);
2251 }
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05002252}
2253
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002254static int
2255frame_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002256 struct input *input, float x, float y, void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002257{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002258 struct window_frame *frame = data;
2259 enum theme_location location;
2260
2261 location = frame_pointer_enter(frame->frame, input, x, y);
2262 if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2263 widget_schedule_redraw(frame->widget);
2264
2265 return frame_get_pointer_image_for_location(data, location);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002266}
Kristian Høgsberg7d804062010-09-07 21:50:06 -04002267
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002268static int
2269frame_motion_handler(struct widget *widget,
2270 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002271 float x, float y, void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002272{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002273 struct window_frame *frame = data;
2274 enum theme_location location;
2275
2276 location = frame_pointer_motion(frame->frame, input, x, y);
2277 if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2278 widget_schedule_redraw(frame->widget);
2279
2280 return frame_get_pointer_image_for_location(data, location);
2281}
2282
2283static void
2284frame_leave_handler(struct widget *widget,
2285 struct input *input, void *data)
2286{
2287 struct window_frame *frame = data;
2288
2289 frame_pointer_leave(frame->frame, input);
2290 if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2291 widget_schedule_redraw(frame->widget);
2292}
2293
2294static void
2295frame_handle_status(struct window_frame *frame, struct input *input,
2296 uint32_t time, enum theme_location location)
2297{
2298 struct window *window = frame->widget->window;
2299 uint32_t status;
2300
2301 status = frame_status(frame->frame);
2302 if (status & FRAME_STATUS_REPAINT)
2303 widget_schedule_redraw(frame->widget);
2304
Jasper St. Pierre5a183322014-02-18 19:18:42 -05002305 if (status & FRAME_STATUS_MINIMIZE) {
2306 window_set_minimized(window);
2307 frame_status_clear(frame->frame, FRAME_STATUS_MINIMIZE);
2308 }
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002309
2310 if (status & FRAME_STATUS_MENU) {
2311 window_show_frame_menu(window, input, time);
2312 frame_status_clear(frame->frame, FRAME_STATUS_MENU);
2313 }
2314
2315 if (status & FRAME_STATUS_MAXIMIZE) {
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05002316 window_set_maximized(window, !window->maximized);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002317 frame_status_clear(frame->frame, FRAME_STATUS_MAXIMIZE);
2318 }
2319
2320 if (status & FRAME_STATUS_CLOSE) {
Jasper St. Pierre2097fe12014-02-01 18:17:34 -05002321 window_close(window);
Jason Ekstrand4a7409a2013-10-27 21:32:54 -05002322 return;
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002323 }
2324
Jasper St. Pierre0790e392013-12-09 14:58:00 -05002325 if ((status & FRAME_STATUS_MOVE) && window->xdg_surface) {
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002326 input_ungrab(input);
Jasper St. Pierre0790e392013-12-09 14:58:00 -05002327 xdg_surface_move(window->xdg_surface,
2328 input_get_seat(input),
2329 window->display->serial);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002330
2331 frame_status_clear(frame->frame, FRAME_STATUS_MOVE);
2332 }
2333
Jasper St. Pierre0790e392013-12-09 14:58:00 -05002334 if ((status & FRAME_STATUS_RESIZE) && window->xdg_surface) {
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002335 input_ungrab(input);
2336
Jasper St. Pierre0790e392013-12-09 14:58:00 -05002337 xdg_surface_resize(window->xdg_surface,
2338 input_get_seat(input),
2339 window->display->serial,
2340 location);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002341
2342 frame_status_clear(frame->frame, FRAME_STATUS_RESIZE);
2343 }
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002344}
Rob Bradford8bd35c72011-10-25 12:20:51 +01002345
Xiong Zhangbfb4ade2014-06-12 11:06:25 +08002346#define DOUBLE_CLICK_PERIOD 250
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002347static void
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002348frame_button_handler(struct widget *widget,
2349 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01002350 uint32_t button, enum wl_pointer_button_state state,
2351 void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002352
2353{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002354 struct window_frame *frame = data;
2355 enum theme_location location;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04002356
Xiong Zhangbfb4ade2014-06-12 11:06:25 +08002357 frame->double_click = 0;
2358 if (state == WL_POINTER_BUTTON_STATE_PRESSED) {
2359 if (time - frame->last_time <= DOUBLE_CLICK_PERIOD) {
2360 frame->double_click = 1;
2361 frame->did_double = 1;
2362 } else
2363 frame->did_double = 0;
2364
2365 frame->last_time = time;
2366 } else if (frame->did_double == 1) {
2367 frame->double_click = 1;
2368 frame->did_double = 0;
2369 }
2370
2371 if (frame->double_click)
2372 location = frame_double_click(frame->frame, input,
2373 button, state);
2374 else
2375 location = frame_pointer_button(frame->frame, input,
2376 button, state);
2377
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002378 frame_handle_status(frame, input, time, location);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002379}
2380
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002381static void
Rusty Lynch1084da52013-08-15 09:10:08 -07002382frame_touch_down_handler(struct widget *widget, struct input *input,
2383 uint32_t serial, uint32_t time, int32_t id,
2384 float x, float y, void *data)
2385{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002386 struct window_frame *frame = data;
2387
2388 frame_touch_down(frame->frame, input, id, x, y);
2389 frame_handle_status(frame, input, time, THEME_LOCATION_CLIENT_AREA);
2390}
2391
2392static void
2393frame_touch_up_handler(struct widget *widget,
2394 struct input *input, uint32_t serial, uint32_t time,
2395 int32_t id, void *data)
2396{
2397 struct window_frame *frame = data;
2398
2399 frame_touch_up(frame->frame, input, id);
2400 frame_handle_status(frame, input, time, THEME_LOCATION_CLIENT_AREA);
Rusty Lynch1084da52013-08-15 09:10:08 -07002401}
2402
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002403struct widget *
Jason Ekstrandee7fefc2013-10-13 19:08:38 -05002404window_frame_create(struct window *window, void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002405{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002406 struct window_frame *frame;
Kristian Høgsbergc152ee12013-12-31 15:35:39 -08002407 uint32_t buttons;
2408
Jasper St. Pierre0790e392013-12-09 14:58:00 -05002409 if (window->custom) {
Kristian Høgsbergc152ee12013-12-31 15:35:39 -08002410 buttons = FRAME_BUTTON_NONE;
2411 } else {
2412 buttons = FRAME_BUTTON_ALL;
2413 }
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002414
Peter Huttererf3d62272013-08-08 11:57:05 +10002415 frame = xzalloc(sizeof *frame);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002416 frame->frame = frame_create(window->display->theme, 0, 0,
Kristian Høgsbergc152ee12013-12-31 15:35:39 -08002417 buttons, window->title);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002418
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002419 frame->widget = window_add_widget(window, frame);
2420 frame->child = widget_add_widget(frame->widget, data);
Martin Minarik1998b152012-05-10 02:04:35 +02002421
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002422 widget_set_redraw_handler(frame->widget, frame_redraw_handler);
2423 widget_set_resize_handler(frame->widget, frame_resize_handler);
2424 widget_set_enter_handler(frame->widget, frame_enter_handler);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002425 widget_set_leave_handler(frame->widget, frame_leave_handler);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002426 widget_set_motion_handler(frame->widget, frame_motion_handler);
2427 widget_set_button_handler(frame->widget, frame_button_handler);
Rusty Lynch1084da52013-08-15 09:10:08 -07002428 widget_set_touch_down_handler(frame->widget, frame_touch_down_handler);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002429 widget_set_touch_up_handler(frame->widget, frame_touch_up_handler);
Martin Minarik1998b152012-05-10 02:04:35 +02002430
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02002431 window->frame = frame;
2432
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002433 return frame->child;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002434}
2435
Kristian Høgsberga1627922012-06-20 17:30:03 -04002436void
Jason Ekstrandee7fefc2013-10-13 19:08:38 -05002437window_frame_set_child_size(struct widget *widget, int child_width,
2438 int child_height)
Kristian Høgsberga1627922012-06-20 17:30:03 -04002439{
2440 struct display *display = widget->window->display;
2441 struct theme *t = display->theme;
2442 int decoration_width, decoration_height;
2443 int width, height;
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05002444 int margin = widget->window->maximized ? 0 : t->margin;
Kristian Høgsberga1627922012-06-20 17:30:03 -04002445
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05002446 if (!widget->window->fullscreen) {
Scott Moreauc6a7e4b2012-09-28 02:45:06 -06002447 decoration_width = (t->width + margin) * 2;
Kristian Høgsberga1627922012-06-20 17:30:03 -04002448 decoration_height = t->width +
Scott Moreauc6a7e4b2012-09-28 02:45:06 -06002449 t->titlebar_height + margin * 2;
Kristian Høgsberga1627922012-06-20 17:30:03 -04002450
2451 width = child_width + decoration_width;
2452 height = child_height + decoration_height;
2453 } else {
2454 width = child_width;
2455 height = child_height;
2456 }
2457
2458 window_schedule_resize(widget->window, width, height);
2459}
2460
Kristian Høgsberge4feb562008-11-08 18:53:37 -05002461static void
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002462window_frame_destroy(struct window_frame *frame)
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02002463{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002464 frame_destroy(frame->frame);
Martin Minarik1998b152012-05-10 02:04:35 +02002465
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02002466 /* frame->child must be destroyed by the application */
2467 widget_destroy(frame->widget);
2468 free(frame);
2469}
2470
2471static void
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002472input_set_focus_widget(struct input *input, struct widget *focus,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002473 float x, float y)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002474{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002475 struct widget *old, *widget;
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05002476 int cursor;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002477
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002478 if (focus == input->focus_widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002479 return;
2480
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002481 old = input->focus_widget;
Kristian Høgsbergee143232012-01-09 08:42:24 -05002482 if (old) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002483 widget = old;
2484 if (input->grab)
2485 widget = input->grab;
2486 if (widget->leave_handler)
2487 widget->leave_handler(old, input, widget->user_data);
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002488 input->focus_widget = NULL;
Kristian Høgsbergee143232012-01-09 08:42:24 -05002489 }
2490
2491 if (focus) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002492 widget = focus;
2493 if (input->grab)
2494 widget = input->grab;
Kristian Høgsbergf33984e2012-06-04 23:36:32 -04002495 input->focus_widget = focus;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002496 if (widget->enter_handler)
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05002497 cursor = widget->enter_handler(focus, input, x, y,
2498 widget->user_data);
2499 else
2500 cursor = widget->default_cursor;
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05002501
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05002502 input_set_pointer_image(input, cursor);
Kristian Høgsbergee143232012-01-09 08:42:24 -05002503 }
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002504}
2505
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002506void
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08002507touch_grab(struct input *input, int32_t touch_id)
2508{
2509 input->touch_grab = 1;
2510 input->touch_grab_id = touch_id;
2511}
2512
2513void
2514touch_ungrab(struct input *input)
2515{
2516 struct touch_point *tp, *tmp;
2517
2518 input->touch_grab = 0;
2519
2520 wl_list_for_each_safe(tp, tmp,
2521 &input->touch_point_list, link) {
2522 if (tp->id != input->touch_grab_id)
2523 continue;
2524 wl_list_remove(&tp->link);
2525 free(tp);
2526
2527 return;
2528 }
2529}
2530
2531void
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002532input_grab(struct input *input, struct widget *widget, uint32_t button)
2533{
2534 input->grab = widget;
2535 input->grab_button = button;
Kristian Høgsberg41f7ebc2014-04-29 14:11:26 -07002536
2537 input_set_focus_widget(input, widget, input->sx, input->sy);
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002538}
2539
2540void
2541input_ungrab(struct input *input)
2542{
2543 struct widget *widget;
2544
2545 input->grab = NULL;
2546 if (input->pointer_focus) {
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02002547 widget = window_find_widget(input->pointer_focus,
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002548 input->sx, input->sy);
2549 input_set_focus_widget(input, widget, input->sx, input->sy);
2550 }
2551}
2552
2553static void
2554input_remove_pointer_focus(struct input *input)
2555{
2556 struct window *window = input->pointer_focus;
2557
2558 if (!window)
2559 return;
2560
2561 input_set_focus_widget(input, NULL, 0, 0);
2562
2563 input->pointer_focus = NULL;
2564 input->current_cursor = CURSOR_UNSET;
2565}
2566
2567static void
2568pointer_handle_enter(void *data, struct wl_pointer *pointer,
2569 uint32_t serial, struct wl_surface *surface,
2570 wl_fixed_t sx_w, wl_fixed_t sy_w)
2571{
2572 struct input *input = data;
2573 struct window *window;
2574 struct widget *widget;
2575 float sx = wl_fixed_to_double(sx_w);
2576 float sy = wl_fixed_to_double(sy_w);
2577
2578 if (!surface) {
2579 /* enter event for a window we've just destroyed */
2580 return;
2581 }
2582
Ander Conselvan de Oliveiraa57c9f12014-05-06 15:25:40 +03002583 window = wl_surface_get_user_data(surface);
2584 if (surface != window->main_surface->surface) {
2585 DBG("Ignoring input event from subsurface %p\n", surface);
2586 return;
2587 }
2588
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002589 input->display->serial = serial;
2590 input->pointer_enter_serial = serial;
Ander Conselvan de Oliveiraa57c9f12014-05-06 15:25:40 +03002591 input->pointer_focus = window;
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002592
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002593 input->sx = sx;
2594 input->sy = sy;
2595
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02002596 widget = window_find_widget(window, sx, sy);
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002597 input_set_focus_widget(input, widget, sx, sy);
2598}
2599
2600static void
2601pointer_handle_leave(void *data, struct wl_pointer *pointer,
2602 uint32_t serial, struct wl_surface *surface)
2603{
2604 struct input *input = data;
2605
2606 input->display->serial = serial;
2607 input_remove_pointer_focus(input);
2608}
2609
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002610static void
Daniel Stone37816df2012-05-16 18:45:18 +01002611pointer_handle_motion(void *data, struct wl_pointer *pointer,
2612 uint32_t time, wl_fixed_t sx_w, wl_fixed_t sy_w)
Kristian Høgsberg61017b12008-11-02 18:51:48 -05002613{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002614 struct input *input = data;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002615 struct window *window = input->pointer_focus;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05002616 struct widget *widget;
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05002617 int cursor;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002618 float sx = wl_fixed_to_double(sx_w);
2619 float sy = wl_fixed_to_double(sy_w);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002620
Paul Winwoodb22bf572013-08-29 10:52:54 +01002621 if (!window)
2622 return;
2623
Ander Conselvan de Oliveiraa57c9f12014-05-06 15:25:40 +03002624 input->sx = sx;
2625 input->sy = sy;
2626
Rob Bradford5f087742013-07-11 19:41:27 +01002627 /* when making the window smaller - e.g. after a unmaximise we might
2628 * still have a pending motion event that the compositor has picked
2629 * based on the old surface dimensions
2630 */
2631 if (sx > window->main_surface->allocation.width ||
2632 sy > window->main_surface->allocation.height)
2633 return;
2634
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002635 if (!(input->grab && input->grab_button)) {
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02002636 widget = window_find_widget(window, sx, sy);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002637 input_set_focus_widget(input, widget, sx, sy);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002638 }
2639
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002640 if (input->grab)
2641 widget = input->grab;
2642 else
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002643 widget = input->focus_widget;
Kristian Høgsberg1a5f0c32013-08-15 14:15:18 -07002644 if (widget) {
2645 if (widget->motion_handler)
2646 cursor = widget->motion_handler(input->focus_widget,
2647 input, time, sx, sy,
2648 widget->user_data);
2649 else
2650 cursor = widget->default_cursor;
2651 } else
2652 cursor = CURSOR_LEFT_PTR;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002653
Kristian Høgsberg5a4e9ff2012-06-04 16:04:07 -04002654 input_set_pointer_image(input, cursor);
Kristian Høgsberg61017b12008-11-02 18:51:48 -05002655}
2656
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04002657static void
Daniel Stone37816df2012-05-16 18:45:18 +01002658pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial,
Daniel Stone4dbadb12012-05-30 16:31:51 +01002659 uint32_t time, uint32_t button, uint32_t state_w)
Kristian Høgsberg94448c02008-12-30 11:03:33 -05002660{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002661 struct input *input = data;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05002662 struct widget *widget;
Daniel Stone4dbadb12012-05-30 16:31:51 +01002663 enum wl_pointer_button_state state = state_w;
Kristian Høgsbergbf6ceda2010-06-14 20:25:06 -04002664
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002665 input->display->serial = serial;
Daniel Stone4dbadb12012-05-30 16:31:51 +01002666 if (input->focus_widget && input->grab == NULL &&
2667 state == WL_POINTER_BUTTON_STATE_PRESSED)
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002668 input_grab(input, input->focus_widget, button);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002669
Neil Roberts6b28aad2012-01-23 19:11:18 +00002670 widget = input->grab;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002671 if (widget && widget->button_handler)
Neil Roberts6b28aad2012-01-23 19:11:18 +00002672 (*widget->button_handler)(widget,
2673 input, time,
2674 button, state,
2675 input->grab->user_data);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002676
Daniel Stone4dbadb12012-05-30 16:31:51 +01002677 if (input->grab && input->grab_button == button &&
2678 state == WL_POINTER_BUTTON_STATE_RELEASED)
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002679 input_ungrab(input);
Kristian Høgsberg94448c02008-12-30 11:03:33 -05002680}
2681
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05002682static void
Daniel Stone37816df2012-05-16 18:45:18 +01002683pointer_handle_axis(void *data, struct wl_pointer *pointer,
Daniel Stone2fce4022012-05-30 16:32:00 +01002684 uint32_t time, uint32_t axis, wl_fixed_t value)
Scott Moreau210d0792012-03-22 10:47:01 -06002685{
Philipp Brüschweiler7e0cc542012-08-14 11:02:41 +02002686 struct input *input = data;
2687 struct widget *widget;
2688
2689 widget = input->focus_widget;
2690 if (input->grab)
2691 widget = input->grab;
2692 if (widget && widget->axis_handler)
2693 (*widget->axis_handler)(widget,
2694 input, time,
2695 axis, value,
2696 widget->user_data);
Scott Moreau210d0792012-03-22 10:47:01 -06002697}
2698
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002699static const struct wl_pointer_listener pointer_listener = {
2700 pointer_handle_enter,
2701 pointer_handle_leave,
2702 pointer_handle_motion,
2703 pointer_handle_button,
2704 pointer_handle_axis,
2705};
2706
2707static void
2708input_remove_keyboard_focus(struct input *input)
2709{
2710 struct window *window = input->keyboard_focus;
2711 struct itimerspec its;
2712
2713 its.it_interval.tv_sec = 0;
2714 its.it_interval.tv_nsec = 0;
2715 its.it_value.tv_sec = 0;
2716 its.it_value.tv_nsec = 0;
2717 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2718
2719 if (!window)
2720 return;
2721
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002722 if (window->keyboard_focus_handler)
2723 (*window->keyboard_focus_handler)(window, NULL,
2724 window->user_data);
2725
2726 input->keyboard_focus = NULL;
2727}
2728
2729static void
2730keyboard_repeat_func(struct task *task, uint32_t events)
2731{
2732 struct input *input =
2733 container_of(task, struct input, repeat_task);
2734 struct window *window = input->keyboard_focus;
2735 uint64_t exp;
2736
2737 if (read(input->repeat_timer_fd, &exp, sizeof exp) != sizeof exp)
2738 /* If we change the timer between the fd becoming
2739 * readable and getting here, there'll be nothing to
2740 * read and we get EAGAIN. */
2741 return;
2742
2743 if (window && window->key_handler) {
2744 (*window->key_handler)(window, input, input->repeat_time,
2745 input->repeat_key, input->repeat_sym,
2746 WL_KEYBOARD_KEY_STATE_PRESSED,
2747 window->user_data);
2748 }
2749}
2750
2751static void
2752keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard,
2753 uint32_t format, int fd, uint32_t size)
2754{
2755 struct input *input = data;
Rui Matos3eccb862013-10-10 19:44:22 +02002756 struct xkb_keymap *keymap;
2757 struct xkb_state *state;
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002758 char *map_str;
2759
2760 if (!data) {
2761 close(fd);
2762 return;
2763 }
2764
2765 if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
2766 close(fd);
2767 return;
2768 }
2769
2770 map_str = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
2771 if (map_str == MAP_FAILED) {
2772 close(fd);
2773 return;
2774 }
2775
Ran Benita2e1968f2014-08-19 23:59:51 +03002776 keymap = xkb_keymap_new_from_string(input->display->xkb_context,
2777 map_str,
2778 XKB_KEYMAP_FORMAT_TEXT_V1,
2779 0);
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002780 munmap(map_str, size);
2781 close(fd);
2782
Rui Matos3eccb862013-10-10 19:44:22 +02002783 if (!keymap) {
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002784 fprintf(stderr, "failed to compile keymap\n");
2785 return;
2786 }
2787
Rui Matos3eccb862013-10-10 19:44:22 +02002788 state = xkb_state_new(keymap);
2789 if (!state) {
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002790 fprintf(stderr, "failed to create XKB state\n");
Ran Benita2e1968f2014-08-19 23:59:51 +03002791 xkb_keymap_unref(keymap);
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002792 return;
2793 }
2794
Rui Matos3eccb862013-10-10 19:44:22 +02002795 xkb_keymap_unref(input->xkb.keymap);
2796 xkb_state_unref(input->xkb.state);
2797 input->xkb.keymap = keymap;
2798 input->xkb.state = state;
2799
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002800 input->xkb.control_mask =
Ran Benita2e1968f2014-08-19 23:59:51 +03002801 1 << xkb_keymap_mod_get_index(input->xkb.keymap, "Control");
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002802 input->xkb.alt_mask =
Ran Benita2e1968f2014-08-19 23:59:51 +03002803 1 << xkb_keymap_mod_get_index(input->xkb.keymap, "Mod1");
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002804 input->xkb.shift_mask =
Ran Benita2e1968f2014-08-19 23:59:51 +03002805 1 << xkb_keymap_mod_get_index(input->xkb.keymap, "Shift");
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002806}
2807
2808static void
2809keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,
2810 uint32_t serial, struct wl_surface *surface,
2811 struct wl_array *keys)
2812{
2813 struct input *input = data;
2814 struct window *window;
2815
2816 input->display->serial = serial;
2817 input->keyboard_focus = wl_surface_get_user_data(surface);
2818
2819 window = input->keyboard_focus;
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002820 if (window->keyboard_focus_handler)
2821 (*window->keyboard_focus_handler)(window,
Kristian Høgsberg86adef92012-08-13 22:25:53 -04002822 input, window->user_data);
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002823}
2824
2825static void
2826keyboard_handle_leave(void *data, struct wl_keyboard *keyboard,
2827 uint32_t serial, struct wl_surface *surface)
2828{
2829 struct input *input = data;
2830
2831 input->display->serial = serial;
2832 input_remove_keyboard_focus(input);
2833}
2834
Scott Moreau210d0792012-03-22 10:47:01 -06002835static void
Daniel Stone37816df2012-05-16 18:45:18 +01002836keyboard_handle_key(void *data, struct wl_keyboard *keyboard,
Daniel Stonec9785ea2012-05-30 16:31:52 +01002837 uint32_t serial, uint32_t time, uint32_t key,
2838 uint32_t state_w)
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05002839{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002840 struct input *input = data;
2841 struct window *window = input->keyboard_focus;
Kristian Høgsberg70163132012-05-08 15:55:39 -04002842 uint32_t code, num_syms;
Daniel Stonec9785ea2012-05-30 16:31:52 +01002843 enum wl_keyboard_key_state state = state_w;
Kristian Høgsberg70163132012-05-08 15:55:39 -04002844 const xkb_keysym_t *syms;
2845 xkb_keysym_t sym;
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04002846 struct itimerspec its;
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05002847
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002848 input->display->serial = serial;
Daniel Stone0d5a5092012-02-16 12:48:00 +00002849 code = key + 8;
Kristian Høgsberg86adef92012-08-13 22:25:53 -04002850 if (!window || !input->xkb.state)
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05002851 return;
2852
Kristian Høgsbergc31f6242014-04-29 14:19:20 -07002853 /* We only use input grabs for pointer events for now, so just
2854 * ignore key presses if a grab is active. We expand the key
2855 * event delivery mechanism to route events to widgets to
2856 * properly handle key grabs. In the meantime, this prevents
2857 * key event devlivery while a grab is active. */
2858 if (input->grab && input->grab_button == 0)
2859 return;
2860
Ran Benita2e1968f2014-08-19 23:59:51 +03002861 num_syms = xkb_state_key_get_syms(input->xkb.state, code, &syms);
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05002862
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04002863 sym = XKB_KEY_NoSymbol;
2864 if (num_syms == 1)
2865 sym = syms[0];
2866
Kristian Høgsberg211b5172014-01-11 13:10:21 -08002867
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04002868 if (sym == XKB_KEY_F5 && input->modifiers == MOD_ALT_MASK) {
Daniel Stonec9785ea2012-05-30 16:31:52 +01002869 if (state == WL_KEYBOARD_KEY_STATE_PRESSED)
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05002870 window_set_maximized(window, !window->maximized);
Kristian Høgsberg67ace202012-07-23 21:56:31 -04002871 } else if (sym == XKB_KEY_F11 &&
2872 window->fullscreen_handler &&
2873 state == WL_KEYBOARD_KEY_STATE_PRESSED) {
2874 window->fullscreen_handler(window, window->user_data);
Kristian Høgsberg4fc15352012-07-25 16:35:28 -04002875 } else if (sym == XKB_KEY_F4 &&
2876 input->modifiers == MOD_ALT_MASK &&
2877 state == WL_KEYBOARD_KEY_STATE_PRESSED) {
Jasper St. Pierre2097fe12014-02-01 18:17:34 -05002878 window_close(window);
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05002879 } else if (window->key_handler) {
2880 (*window->key_handler)(window, input, time, key,
2881 sym, state, window->user_data);
2882 }
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04002883
2884 if (state == WL_KEYBOARD_KEY_STATE_RELEASED &&
2885 key == input->repeat_key) {
2886 its.it_interval.tv_sec = 0;
2887 its.it_interval.tv_nsec = 0;
2888 its.it_value.tv_sec = 0;
2889 its.it_value.tv_nsec = 0;
2890 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
Kristian Høgsbergd2a02132014-02-05 13:43:44 -08002891 } else if (state == WL_KEYBOARD_KEY_STATE_PRESSED &&
2892 xkb_keymap_key_repeats(input->xkb.keymap, code)) {
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04002893 input->repeat_sym = sym;
2894 input->repeat_key = key;
2895 input->repeat_time = time;
Jonny Lamb06959082014-08-12 14:58:27 +02002896 its.it_interval.tv_sec = input->repeat_rate_sec;
2897 its.it_interval.tv_nsec = input->repeat_rate_nsec;
2898 its.it_value.tv_sec = input->repeat_delay_sec;
2899 its.it_value.tv_nsec = input->repeat_delay_nsec;
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04002900 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2901 }
2902}
2903
2904static void
Daniel Stone351eb612012-05-31 15:27:47 -04002905keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard,
2906 uint32_t serial, uint32_t mods_depressed,
2907 uint32_t mods_latched, uint32_t mods_locked,
2908 uint32_t group)
2909{
2910 struct input *input = data;
Jonas Ådahld9f6b072012-09-27 18:40:45 +02002911 xkb_mod_mask_t mask;
Daniel Stone351eb612012-05-31 15:27:47 -04002912
Matt Ropere61561f2013-06-24 16:52:43 +01002913 /* If we're not using a keymap, then we don't handle PC-style modifiers */
2914 if (!input->xkb.keymap)
2915 return;
2916
Daniel Stoneb7452fe2012-06-01 12:14:06 +01002917 xkb_state_update_mask(input->xkb.state, mods_depressed, mods_latched,
2918 mods_locked, 0, 0, group);
Jonas Ådahld9f6b072012-09-27 18:40:45 +02002919 mask = xkb_state_serialize_mods(input->xkb.state,
Ran Benita2e1968f2014-08-19 23:59:51 +03002920 XKB_STATE_MODS_DEPRESSED |
2921 XKB_STATE_MODS_LATCHED);
Jonas Ådahld9f6b072012-09-27 18:40:45 +02002922 input->modifiers = 0;
2923 if (mask & input->xkb.control_mask)
2924 input->modifiers |= MOD_CONTROL_MASK;
2925 if (mask & input->xkb.alt_mask)
2926 input->modifiers |= MOD_ALT_MASK;
2927 if (mask & input->xkb.shift_mask)
2928 input->modifiers |= MOD_SHIFT_MASK;
Daniel Stone351eb612012-05-31 15:27:47 -04002929}
2930
Jonny Lamb06959082014-08-12 14:58:27 +02002931static void
2932set_repeat_info(struct input *input, int32_t rate, int32_t delay)
2933{
2934 input->repeat_rate_sec = input->repeat_rate_nsec = 0;
2935 input->repeat_delay_sec = input->repeat_delay_nsec = 0;
2936
2937 /* a rate of zero disables any repeating, regardless of the delay's
2938 * value */
2939 if (rate == 0)
2940 return;
2941
2942 if (rate == 1)
2943 input->repeat_rate_sec = 1;
2944 else
2945 input->repeat_rate_nsec = 1000000000 / rate;
2946
2947 input->repeat_delay_sec = delay / 1000;
2948 delay -= (input->repeat_delay_sec * 1000);
2949 input->repeat_delay_nsec = delay * 1000 * 1000;
2950}
2951
2952static void
2953keyboard_handle_repeat_info(void *data, struct wl_keyboard *keyboard,
2954 int32_t rate, int32_t delay)
2955{
2956 struct input *input = data;
2957
2958 set_repeat_info(input, rate, delay);
2959}
2960
Daniel Stone37816df2012-05-16 18:45:18 +01002961static const struct wl_keyboard_listener keyboard_listener = {
Daniel Stoneb7452fe2012-06-01 12:14:06 +01002962 keyboard_handle_keymap,
Daniel Stone37816df2012-05-16 18:45:18 +01002963 keyboard_handle_enter,
2964 keyboard_handle_leave,
2965 keyboard_handle_key,
Daniel Stone351eb612012-05-31 15:27:47 -04002966 keyboard_handle_modifiers,
Jonny Lamb06959082014-08-12 14:58:27 +02002967 keyboard_handle_repeat_info
2968
Daniel Stone37816df2012-05-16 18:45:18 +01002969};
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002970
2971static void
Rusty Lynch041815a2013-08-08 21:20:38 -07002972touch_handle_down(void *data, struct wl_touch *wl_touch,
2973 uint32_t serial, uint32_t time, struct wl_surface *surface,
2974 int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
2975{
2976 struct input *input = data;
2977 struct widget *widget;
2978 float sx = wl_fixed_to_double(x_w);
2979 float sy = wl_fixed_to_double(y_w);
2980
Rusty Lynch1084da52013-08-15 09:10:08 -07002981 input->display->serial = serial;
Rusty Lynch041815a2013-08-08 21:20:38 -07002982 input->touch_focus = wl_surface_get_user_data(surface);
2983 if (!input->touch_focus) {
2984 DBG("Failed to find to touch focus for surface %p\n", surface);
2985 return;
2986 }
2987
Ander Conselvan de Oliveiraa57c9f12014-05-06 15:25:40 +03002988 if (surface != input->touch_focus->main_surface->surface) {
2989 DBG("Ignoring input event from subsurface %p\n", surface);
2990 input->touch_focus = NULL;
2991 return;
2992 }
2993
Kristian Høgsberg1f671172014-04-29 14:30:44 -07002994 if (input->grab)
2995 widget = input->grab;
2996 else
2997 widget = window_find_widget(input->touch_focus,
2998 wl_fixed_to_double(x_w),
2999 wl_fixed_to_double(y_w));
Rusty Lynch041815a2013-08-08 21:20:38 -07003000 if (widget) {
3001 struct touch_point *tp = xmalloc(sizeof *tp);
3002 if (tp) {
3003 tp->id = id;
3004 tp->widget = widget;
Kristian Høgsbergef9c8eb2014-01-07 12:57:59 -08003005 tp->x = sx;
3006 tp->y = sy;
Rusty Lynch041815a2013-08-08 21:20:38 -07003007 wl_list_insert(&input->touch_point_list, &tp->link);
3008
3009 if (widget->touch_down_handler)
Rusty Lynch1084da52013-08-15 09:10:08 -07003010 (*widget->touch_down_handler)(widget, input,
3011 serial, time, id,
Rusty Lynch041815a2013-08-08 21:20:38 -07003012 sx, sy,
3013 widget->user_data);
3014 }
3015 }
3016}
3017
3018static void
3019touch_handle_up(void *data, struct wl_touch *wl_touch,
3020 uint32_t serial, uint32_t time, int32_t id)
3021{
3022 struct input *input = data;
3023 struct touch_point *tp, *tmp;
3024
Rusty Lynch041815a2013-08-08 21:20:38 -07003025 if (!input->touch_focus) {
3026 DBG("No touch focus found for touch up event!\n");
3027 return;
3028 }
3029
3030 wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3031 if (tp->id != id)
3032 continue;
3033
3034 if (tp->widget->touch_up_handler)
Rusty Lynch1084da52013-08-15 09:10:08 -07003035 (*tp->widget->touch_up_handler)(tp->widget, input, serial,
Rusty Lynch041815a2013-08-08 21:20:38 -07003036 time, id,
3037 tp->widget->user_data);
3038
3039 wl_list_remove(&tp->link);
3040 free(tp);
3041
3042 return;
3043 }
3044}
3045
3046static void
3047touch_handle_motion(void *data, struct wl_touch *wl_touch,
3048 uint32_t time, int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
3049{
3050 struct input *input = data;
3051 struct touch_point *tp;
3052 float sx = wl_fixed_to_double(x_w);
3053 float sy = wl_fixed_to_double(y_w);
3054
3055 DBG("touch_handle_motion: %i %i\n", id, wl_list_length(&input->touch_point_list));
3056
3057 if (!input->touch_focus) {
3058 DBG("No touch focus found for touch motion event!\n");
3059 return;
3060 }
3061
3062 wl_list_for_each(tp, &input->touch_point_list, link) {
3063 if (tp->id != id)
3064 continue;
3065
Kristian Høgsbergef9c8eb2014-01-07 12:57:59 -08003066 tp->x = sx;
3067 tp->y = sy;
Rusty Lynch041815a2013-08-08 21:20:38 -07003068 if (tp->widget->touch_motion_handler)
Rusty Lynch1084da52013-08-15 09:10:08 -07003069 (*tp->widget->touch_motion_handler)(tp->widget, input, time,
Rusty Lynch041815a2013-08-08 21:20:38 -07003070 id, sx, sy,
3071 tp->widget->user_data);
3072 return;
3073 }
3074}
3075
3076static void
3077touch_handle_frame(void *data, struct wl_touch *wl_touch)
3078{
3079 struct input *input = data;
3080 struct touch_point *tp, *tmp;
3081
3082 DBG("touch_handle_frame\n");
3083
3084 if (!input->touch_focus) {
3085 DBG("No touch focus found for touch frame event!\n");
3086 return;
3087 }
3088
3089 wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3090 if (tp->widget->touch_frame_handler)
Rusty Lynch1084da52013-08-15 09:10:08 -07003091 (*tp->widget->touch_frame_handler)(tp->widget, input,
3092 tp->widget->user_data);
Rusty Lynch041815a2013-08-08 21:20:38 -07003093 }
3094}
3095
3096static void
3097touch_handle_cancel(void *data, struct wl_touch *wl_touch)
3098{
3099 struct input *input = data;
3100 struct touch_point *tp, *tmp;
3101
3102 DBG("touch_handle_cancel\n");
3103
3104 if (!input->touch_focus) {
3105 DBG("No touch focus found for touch cancel event!\n");
3106 return;
3107 }
3108
3109 wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3110 if (tp->widget->touch_cancel_handler)
Rusty Lynch1084da52013-08-15 09:10:08 -07003111 (*tp->widget->touch_cancel_handler)(tp->widget, input,
3112 tp->widget->user_data);
Rusty Lynch041815a2013-08-08 21:20:38 -07003113
3114 wl_list_remove(&tp->link);
3115 free(tp);
3116 }
3117}
3118
3119static const struct wl_touch_listener touch_listener = {
3120 touch_handle_down,
3121 touch_handle_up,
3122 touch_handle_motion,
3123 touch_handle_frame,
3124 touch_handle_cancel,
3125};
3126
3127static void
Daniel Stone37816df2012-05-16 18:45:18 +01003128seat_handle_capabilities(void *data, struct wl_seat *seat,
3129 enum wl_seat_capability caps)
Kristian Høgsberge04ad572011-12-21 17:14:54 -05003130{
Daniel Stone37816df2012-05-16 18:45:18 +01003131 struct input *input = data;
3132
3133 if ((caps & WL_SEAT_CAPABILITY_POINTER) && !input->pointer) {
3134 input->pointer = wl_seat_get_pointer(seat);
3135 wl_pointer_set_user_data(input->pointer, input);
3136 wl_pointer_add_listener(input->pointer, &pointer_listener,
3137 input);
3138 } else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && input->pointer) {
3139 wl_pointer_destroy(input->pointer);
3140 input->pointer = NULL;
3141 }
3142
3143 if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !input->keyboard) {
3144 input->keyboard = wl_seat_get_keyboard(seat);
3145 wl_keyboard_set_user_data(input->keyboard, input);
3146 wl_keyboard_add_listener(input->keyboard, &keyboard_listener,
3147 input);
3148 } else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && input->keyboard) {
3149 wl_keyboard_destroy(input->keyboard);
3150 input->keyboard = NULL;
3151 }
Rusty Lynch041815a2013-08-08 21:20:38 -07003152
3153 if ((caps & WL_SEAT_CAPABILITY_TOUCH) && !input->touch) {
3154 input->touch = wl_seat_get_touch(seat);
3155 wl_touch_set_user_data(input->touch, input);
3156 wl_touch_add_listener(input->touch, &touch_listener, input);
3157 } else if (!(caps & WL_SEAT_CAPABILITY_TOUCH) && input->touch) {
3158 wl_touch_destroy(input->touch);
3159 input->touch = NULL;
3160 }
Kristian Høgsberge04ad572011-12-21 17:14:54 -05003161}
3162
Rob Bradford08031182013-08-13 20:11:03 +01003163static void
3164seat_handle_name(void *data, struct wl_seat *seat,
3165 const char *name)
3166{
3167
3168}
3169
Daniel Stone37816df2012-05-16 18:45:18 +01003170static const struct wl_seat_listener seat_listener = {
3171 seat_handle_capabilities,
Rob Bradford08031182013-08-13 20:11:03 +01003172 seat_handle_name
Kristian Høgsberg94448c02008-12-30 11:03:33 -05003173};
3174
Kristian Høgsberg9a686242010-08-18 15:28:04 -04003175void
3176input_get_position(struct input *input, int32_t *x, int32_t *y)
3177{
3178 *x = input->sx;
3179 *y = input->sy;
3180}
3181
Kristian Høgsbergef9c8eb2014-01-07 12:57:59 -08003182int
3183input_get_touch(struct input *input, int32_t id, float *x, float *y)
3184{
3185 struct touch_point *tp;
3186
3187 wl_list_for_each(tp, &input->touch_point_list, link) {
3188 if (tp->id != id)
3189 continue;
3190
3191 *x = tp->x;
3192 *y = tp->y;
3193 return 0;
3194 }
3195
3196 return -1;
3197}
3198
Kristian Høgsbergd56bd902012-06-05 09:58:51 -04003199struct display *
3200input_get_display(struct input *input)
3201{
3202 return input->display;
3203}
3204
Daniel Stone37816df2012-05-16 18:45:18 +01003205struct wl_seat *
3206input_get_seat(struct input *input)
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04003207{
Daniel Stone37816df2012-05-16 18:45:18 +01003208 return input->seat;
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04003209}
3210
Kristian Høgsberg67cac8a2011-01-19 14:20:33 -05003211uint32_t
3212input_get_modifiers(struct input *input)
3213{
3214 return input->modifiers;
3215}
3216
Kristian Høgsbergb6323512012-01-11 00:04:42 -05003217struct widget *
3218input_get_focus_widget(struct input *input)
3219{
3220 return input->focus_widget;
3221}
3222
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003223struct data_offer {
3224 struct wl_data_offer *offer;
3225 struct input *input;
3226 struct wl_array types;
3227 int refcount;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04003228
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003229 struct task io_task;
3230 int fd;
3231 data_func_t func;
3232 int32_t x, y;
3233 void *user_data;
3234};
3235
3236static void
3237data_offer_offer(void *data, struct wl_data_offer *wl_data_offer, const char *type)
3238{
3239 struct data_offer *offer = data;
3240 char **p;
3241
3242 p = wl_array_add(&offer->types, sizeof *p);
3243 *p = strdup(type);
3244}
3245
3246static const struct wl_data_offer_listener data_offer_listener = {
3247 data_offer_offer,
3248};
3249
3250static void
3251data_offer_destroy(struct data_offer *offer)
3252{
3253 char **p;
3254
3255 offer->refcount--;
3256 if (offer->refcount == 0) {
3257 wl_data_offer_destroy(offer->offer);
3258 for (p = offer->types.data; *p; p++)
3259 free(*p);
3260 wl_array_release(&offer->types);
3261 free(offer);
3262 }
3263}
3264
3265static void
3266data_device_data_offer(void *data,
Kristian Høgsberg8733b332012-06-28 22:04:06 -04003267 struct wl_data_device *data_device,
3268 struct wl_data_offer *_offer)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003269{
3270 struct data_offer *offer;
3271
Brian Lovinbc919262013-08-07 15:34:59 -07003272 offer = xmalloc(sizeof *offer);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003273
3274 wl_array_init(&offer->types);
3275 offer->refcount = 1;
3276 offer->input = data;
Kristian Høgsberg8733b332012-06-28 22:04:06 -04003277 offer->offer = _offer;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003278 wl_data_offer_add_listener(offer->offer,
3279 &data_offer_listener, offer);
3280}
3281
3282static void
3283data_device_enter(void *data, struct wl_data_device *data_device,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003284 uint32_t serial, struct wl_surface *surface,
Daniel Stone103db7f2012-05-08 17:17:55 +01003285 wl_fixed_t x_w, wl_fixed_t y_w,
3286 struct wl_data_offer *offer)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003287{
3288 struct input *input = data;
3289 struct window *window;
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003290 void *types_data;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003291 float x = wl_fixed_to_double(x_w);
3292 float y = wl_fixed_to_double(y_w);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003293 char **p;
3294
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003295 window = wl_surface_get_user_data(surface);
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003296 input->drag_enter_serial = serial;
3297 input->drag_focus = window,
3298 input->drag_x = x;
3299 input->drag_y = y;
3300
3301 if (!input->touch_grab)
3302 input->pointer_enter_serial = serial;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003303
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003304 if (offer) {
3305 input->drag_offer = wl_data_offer_get_user_data(offer);
3306
3307 p = wl_array_add(&input->drag_offer->types, sizeof *p);
3308 *p = NULL;
3309
3310 types_data = input->drag_offer->types.data;
3311 } else {
3312 input->drag_offer = NULL;
3313 types_data = NULL;
3314 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003315
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003316 if (window->data_handler)
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003317 window->data_handler(window, input, x, y, types_data,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003318 window->user_data);
3319}
3320
3321static void
3322data_device_leave(void *data, struct wl_data_device *data_device)
3323{
3324 struct input *input = data;
3325
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003326 if (input->drag_offer) {
3327 data_offer_destroy(input->drag_offer);
3328 input->drag_offer = NULL;
3329 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003330}
3331
3332static void
3333data_device_motion(void *data, struct wl_data_device *data_device,
Daniel Stone103db7f2012-05-08 17:17:55 +01003334 uint32_t time, wl_fixed_t x_w, wl_fixed_t y_w)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003335{
3336 struct input *input = data;
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003337 struct window *window = input->drag_focus;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003338 float x = wl_fixed_to_double(x_w);
3339 float y = wl_fixed_to_double(y_w);
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003340 void *types_data;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003341
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003342 input->drag_x = x;
3343 input->drag_y = y;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003344
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003345 if (input->drag_offer)
3346 types_data = input->drag_offer->types.data;
3347 else
3348 types_data = NULL;
3349
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003350 if (window->data_handler)
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003351 window->data_handler(window, input, x, y, types_data,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003352 window->user_data);
3353}
3354
3355static void
3356data_device_drop(void *data, struct wl_data_device *data_device)
3357{
3358 struct input *input = data;
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003359 struct window *window = input->drag_focus;
3360 float x, y;
3361
3362 x = input->drag_x;
3363 y = input->drag_y;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003364
3365 if (window->drop_handler)
3366 window->drop_handler(window, input,
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003367 x, y, window->user_data);
3368
3369 if (input->touch_grab)
3370 touch_ungrab(input);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003371}
3372
3373static void
3374data_device_selection(void *data,
3375 struct wl_data_device *wl_data_device,
3376 struct wl_data_offer *offer)
3377{
3378 struct input *input = data;
3379 char **p;
3380
3381 if (input->selection_offer)
3382 data_offer_destroy(input->selection_offer);
3383
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05003384 if (offer) {
3385 input->selection_offer = wl_data_offer_get_user_data(offer);
3386 p = wl_array_add(&input->selection_offer->types, sizeof *p);
3387 *p = NULL;
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04003388 } else {
3389 input->selection_offer = NULL;
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05003390 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003391}
3392
3393static const struct wl_data_device_listener data_device_listener = {
3394 data_device_data_offer,
3395 data_device_enter,
3396 data_device_leave,
3397 data_device_motion,
3398 data_device_drop,
3399 data_device_selection
3400};
3401
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003402static void
3403input_set_pointer_image_index(struct input *input, int index)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003404{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003405 struct wl_buffer *buffer;
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03003406 struct wl_cursor *cursor;
3407 struct wl_cursor_image *image;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003408
Daniel Stone80972742012-11-07 17:51:39 +11003409 if (!input->pointer)
3410 return;
3411
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003412 cursor = input->display->cursors[input->current_cursor];
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03003413 if (!cursor)
Dima Ryazanovff1c2d72012-05-08 21:02:33 -07003414 return;
3415
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04003416 if (index >= (int) cursor->image_count) {
3417 fprintf(stderr, "cursor index out of range\n");
3418 return;
3419 }
3420
3421 image = cursor->images[index];
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03003422 buffer = wl_cursor_image_get_buffer(image);
3423 if (!buffer)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003424 return;
3425
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03003426 wl_surface_attach(input->pointer_surface, buffer, 0, 0);
3427 wl_surface_damage(input->pointer_surface, 0, 0,
3428 image->width, image->height);
Pekka Paalanenc9e00c02012-10-10 12:49:24 +03003429 wl_surface_commit(input->pointer_surface);
Ander Conselvan de Oliveira23900f72014-01-31 16:07:51 +02003430 wl_pointer_set_cursor(input->pointer, input->pointer_enter_serial,
3431 input->pointer_surface,
3432 image->hotspot_x, image->hotspot_y);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003433}
3434
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003435static const struct wl_callback_listener pointer_surface_listener;
3436
3437static void
3438pointer_surface_frame_callback(void *data, struct wl_callback *callback,
3439 uint32_t time)
3440{
3441 struct input *input = data;
Daniel Stonea494f1d2012-06-18 19:31:12 +01003442 struct wl_cursor *cursor;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003443 int i;
3444
3445 if (callback) {
3446 assert(callback == input->cursor_frame_cb);
3447 wl_callback_destroy(callback);
3448 input->cursor_frame_cb = NULL;
3449 }
3450
Daniel Stone80972742012-11-07 17:51:39 +11003451 if (!input->pointer)
3452 return;
3453
Kristian Høgsbergf3370522012-06-20 23:04:41 -04003454 if (input->current_cursor == CURSOR_BLANK) {
Kristian Høgsbergae277372012-08-01 09:41:08 -04003455 wl_pointer_set_cursor(input->pointer,
3456 input->pointer_enter_serial,
Kristian Høgsbergf3370522012-06-20 23:04:41 -04003457 NULL, 0, 0);
3458 return;
3459 }
3460
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003461 if (input->current_cursor == CURSOR_UNSET)
3462 return;
Daniel Stonea494f1d2012-06-18 19:31:12 +01003463 cursor = input->display->cursors[input->current_cursor];
3464 if (!cursor)
3465 return;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003466
3467 /* FIXME We don't have the current time on the first call so we set
3468 * the animation start to the time of the first frame callback. */
3469 if (time == 0)
3470 input->cursor_anim_start = 0;
3471 else if (input->cursor_anim_start == 0)
3472 input->cursor_anim_start = time;
3473
3474 if (time == 0 || input->cursor_anim_start == 0)
3475 i = 0;
3476 else
3477 i = wl_cursor_frame(cursor, time - input->cursor_anim_start);
3478
Pekka Paalanenbc106382012-10-10 12:49:31 +03003479 if (cursor->image_count > 1) {
3480 input->cursor_frame_cb =
3481 wl_surface_frame(input->pointer_surface);
3482 wl_callback_add_listener(input->cursor_frame_cb,
3483 &pointer_surface_listener, input);
3484 }
3485
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003486 input_set_pointer_image_index(input, i);
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003487}
3488
3489static const struct wl_callback_listener pointer_surface_listener = {
3490 pointer_surface_frame_callback
3491};
3492
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04003493void
3494input_set_pointer_image(struct input *input, int pointer)
3495{
Ander Conselvan de Oliveiraddca4962012-07-16 14:15:49 +03003496 int force = 0;
3497
Kristian Høgsberge530a0a2012-10-29 16:42:26 -04003498 if (!input->pointer)
3499 return;
3500
Ander Conselvan de Oliveiraddca4962012-07-16 14:15:49 +03003501 if (input->pointer_enter_serial > input->cursor_serial)
3502 force = 1;
3503
3504 if (!force && pointer == input->current_cursor)
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04003505 return;
3506
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003507 input->current_cursor = pointer;
Kristian Høgsberg11f600d2012-06-22 10:52:58 -04003508 input->cursor_serial = input->pointer_enter_serial;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003509 if (!input->cursor_frame_cb)
3510 pointer_surface_frame_callback(input, NULL, 0);
Ander Conselvan de Oliveiraddca4962012-07-16 14:15:49 +03003511 else if (force) {
3512 /* The current frame callback may be stuck if, for instance,
3513 * the set cursor request was processed by the server after
3514 * this client lost the focus. In this case the cursor surface
3515 * might not be mapped and the frame callback wouldn't ever
3516 * complete. Send a set_cursor and attach to try to map the
3517 * cursor surface again so that the callback will finish */
3518 input_set_pointer_image_index(input, 0);
3519 }
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04003520}
3521
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003522struct wl_data_device *
3523input_get_data_device(struct input *input)
3524{
3525 return input->data_device;
3526}
3527
3528void
3529input_set_selection(struct input *input,
3530 struct wl_data_source *source, uint32_t time)
3531{
Jason Ekstranda669bd52014-04-02 19:53:51 -05003532 if (input->data_device)
3533 wl_data_device_set_selection(input->data_device, source, time);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003534}
3535
3536void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003537input_accept(struct input *input, const char *type)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003538{
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003539 wl_data_offer_accept(input->drag_offer->offer,
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003540 input->drag_enter_serial, type);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003541}
3542
3543static void
3544offer_io_func(struct task *task, uint32_t events)
3545{
3546 struct data_offer *offer =
3547 container_of(task, struct data_offer, io_task);
3548 unsigned int len;
3549 char buffer[4096];
3550
3551 len = read(offer->fd, buffer, sizeof buffer);
3552 offer->func(buffer, len,
3553 offer->x, offer->y, offer->user_data);
3554
3555 if (len == 0) {
3556 close(offer->fd);
3557 data_offer_destroy(offer);
3558 }
3559}
3560
3561static void
3562data_offer_receive_data(struct data_offer *offer, const char *mime_type,
3563 data_func_t func, void *user_data)
3564{
3565 int p[2];
3566
Jonas Ådahl3685c3a2012-03-30 23:10:27 +02003567 if (pipe2(p, O_CLOEXEC) == -1)
3568 return;
3569
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003570 wl_data_offer_receive(offer->offer, mime_type, p[1]);
3571 close(p[1]);
3572
3573 offer->io_task.run = offer_io_func;
3574 offer->fd = p[0];
3575 offer->func = func;
3576 offer->refcount++;
3577 offer->user_data = user_data;
3578
3579 display_watch_fd(offer->input->display,
3580 offer->fd, EPOLLIN, &offer->io_task);
3581}
3582
3583void
3584input_receive_drag_data(struct input *input, const char *mime_type,
3585 data_func_t func, void *data)
3586{
3587 data_offer_receive_data(input->drag_offer, mime_type, func, data);
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003588 input->drag_offer->x = input->drag_x;
3589 input->drag_offer->y = input->drag_y;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003590}
3591
3592int
Kristian Høgsberg0749e3f2013-09-04 20:41:06 -07003593input_receive_drag_data_to_fd(struct input *input,
3594 const char *mime_type, int fd)
3595{
3596 if (input->drag_offer)
3597 wl_data_offer_receive(input->drag_offer->offer, mime_type, fd);
3598
3599 return 0;
3600}
3601
3602int
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003603input_receive_selection_data(struct input *input, const char *mime_type,
3604 data_func_t func, void *data)
3605{
3606 char **p;
3607
3608 if (input->selection_offer == NULL)
3609 return -1;
3610
3611 for (p = input->selection_offer->types.data; *p; p++)
3612 if (strcmp(mime_type, *p) == 0)
3613 break;
3614
3615 if (*p == NULL)
3616 return -1;
3617
3618 data_offer_receive_data(input->selection_offer,
3619 mime_type, func, data);
3620 return 0;
Kristian Høgsberg41da9082010-11-30 14:01:07 -05003621}
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04003622
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05003623int
3624input_receive_selection_data_to_fd(struct input *input,
3625 const char *mime_type, int fd)
3626{
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04003627 if (input->selection_offer)
3628 wl_data_offer_receive(input->selection_offer->offer,
3629 mime_type, fd);
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05003630
3631 return 0;
3632}
3633
Kristian Høgsberg41da9082010-11-30 14:01:07 -05003634void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003635window_move(struct window *window, struct input *input, uint32_t serial)
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05003636{
Jasper St. Pierre0790e392013-12-09 14:58:00 -05003637 if (!window->xdg_surface)
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02003638 return;
3639
Jasper St. Pierre0790e392013-12-09 14:58:00 -05003640 xdg_surface_move(window->xdg_surface, input->seat, serial);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05003641}
3642
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04003643static void
Pekka Paalanen35e82632013-04-25 13:57:48 +03003644surface_set_synchronized(struct surface *surface)
3645{
3646 if (!surface->subsurface)
3647 return;
3648
3649 if (surface->synchronized)
3650 return;
3651
3652 wl_subsurface_set_sync(surface->subsurface);
3653 surface->synchronized = 1;
3654}
3655
3656static void
3657surface_set_synchronized_default(struct surface *surface)
3658{
3659 if (!surface->subsurface)
3660 return;
3661
3662 if (surface->synchronized == surface->synchronized_default)
3663 return;
3664
3665 if (surface->synchronized_default)
3666 wl_subsurface_set_sync(surface->subsurface);
3667 else
3668 wl_subsurface_set_desync(surface->subsurface);
3669
3670 surface->synchronized = surface->synchronized_default;
3671}
3672
3673static void
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003674surface_resize(struct surface *surface)
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02003675{
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003676 struct widget *widget = surface->widget;
3677 struct wl_compositor *compositor = widget->window->display->compositor;
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02003678
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003679 if (surface->input_region) {
3680 wl_region_destroy(surface->input_region);
3681 surface->input_region = NULL;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05003682 }
3683
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003684 if (surface->opaque_region)
3685 wl_region_destroy(surface->opaque_region);
Ander Conselvan de Oliveiraddd3e272012-11-30 17:34:23 +02003686
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003687 surface->opaque_region = wl_compositor_create_region(compositor);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05003688
Kristian Høgsbergbb977002012-01-10 19:11:42 -05003689 if (widget->resize_handler)
3690 widget->resize_handler(widget,
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05003691 widget->allocation.width,
3692 widget->allocation.height,
Kristian Høgsbergbb977002012-01-10 19:11:42 -05003693 widget->user_data);
3694
Pekka Paalanen35e82632013-04-25 13:57:48 +03003695 if (surface->subsurface &&
3696 (surface->allocation.x != widget->allocation.x ||
3697 surface->allocation.y != widget->allocation.y)) {
3698 wl_subsurface_set_position(surface->subsurface,
3699 widget->allocation.x,
3700 widget->allocation.y);
3701 }
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003702 if (surface->allocation.width != widget->allocation.width ||
3703 surface->allocation.height != widget->allocation.height) {
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003704 window_schedule_redraw(widget->window);
3705 }
Pekka Paalanen35e82632013-04-25 13:57:48 +03003706 surface->allocation = widget->allocation;
Ander Conselvan de Oliveiraddd3e272012-11-30 17:34:23 +02003707
3708 if (widget->opaque)
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003709 wl_region_add(surface->opaque_region, 0, 0,
Ander Conselvan de Oliveiraddd3e272012-11-30 17:34:23 +02003710 widget->allocation.width,
3711 widget->allocation.height);
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003712}
3713
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003714static void
Pekka Paalanene9297f82013-04-25 13:57:51 +03003715hack_prevent_EGL_sub_surface_deadlock(struct window *window)
3716{
3717 /*
3718 * This hack should be removed, when EGL respects
3719 * eglSwapInterval(0).
3720 *
3721 * If this window has sub-surfaces, especially a free-running
3722 * EGL-widget, we need to post the parent surface once with
3723 * all the old state to guarantee, that the EGL-widget will
3724 * receive its frame callback soon. Otherwise, a forced call
3725 * to eglSwapBuffers may end up blocking, waiting for a frame
3726 * event that will never come, because we will commit the parent
3727 * surface with all new state only after eglSwapBuffers returns.
3728 *
3729 * This assumes, that:
3730 * 1. When the EGL widget's resize hook is called, it pauses.
3731 * 2. When the EGL widget's redraw hook is called, it forces a
3732 * repaint and a call to eglSwapBuffers(), and maybe resumes.
3733 * In a single threaded application condition 1 is a no-op.
3734 *
3735 * XXX: This should actually be after the surface_resize() calls,
3736 * but cannot, because then it would commit the incomplete state
3737 * accumulated from the widget resize hooks.
3738 */
3739 if (window->subsurface_list.next != &window->main_surface->link ||
3740 window->subsurface_list.prev != &window->main_surface->link)
3741 wl_surface_commit(window->main_surface->surface);
3742}
3743
3744static void
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003745window_do_resize(struct window *window)
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003746{
Pekka Paalanen35e82632013-04-25 13:57:48 +03003747 struct surface *surface;
3748
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003749 widget_set_allocation(window->main_surface->widget,
3750 window->pending_allocation.x,
3751 window->pending_allocation.y,
3752 window->pending_allocation.width,
3753 window->pending_allocation.height);
3754
3755 surface_resize(window->main_surface);
Pekka Paalanen35e82632013-04-25 13:57:48 +03003756
3757 /* The main surface is in the list, too. Main surface's
3758 * resize_handler is responsible for calling widget_set_allocation()
3759 * on all sub-surface root widgets, so they will be resized
3760 * properly.
3761 */
3762 wl_list_for_each(surface, &window->subsurface_list, link) {
3763 if (surface == window->main_surface)
3764 continue;
3765
3766 surface_set_synchronized(surface);
3767 surface_resize(surface);
3768 }
Jasper St. Pierre8c6aa452014-02-08 18:29:49 -05003769
3770 if (!window->fullscreen && !window->maximized)
3771 window->saved_allocation = window->pending_allocation;
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003772}
3773
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003774static void
3775idle_resize(struct window *window)
3776{
3777 window->resize_needed = 0;
3778 window->redraw_needed = 1;
3779
3780 DBG("from %dx%d to %dx%d\n",
3781 window->main_surface->server_allocation.width,
3782 window->main_surface->server_allocation.height,
3783 window->pending_allocation.width,
3784 window->pending_allocation.height);
3785
3786 hack_prevent_EGL_sub_surface_deadlock(window);
3787
3788 window_do_resize(window);
3789}
3790
3791static void
3792undo_resize(struct window *window)
3793{
3794 window->pending_allocation.width =
3795 window->main_surface->server_allocation.width;
3796 window->pending_allocation.height =
3797 window->main_surface->server_allocation.height;
3798
3799 DBG("back to %dx%d\n",
3800 window->main_surface->server_allocation.width,
3801 window->main_surface->server_allocation.height);
3802
3803 window_do_resize(window);
3804
3805 if (window->pending_allocation.width == 0 &&
3806 window->pending_allocation.height == 0) {
3807 fprintf(stderr, "Error: Could not draw a surface, "
3808 "most likely due to insufficient disk space in "
3809 "%s (XDG_RUNTIME_DIR).\n", getenv("XDG_RUNTIME_DIR"));
3810 exit(EXIT_FAILURE);
3811 }
3812}
3813
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003814void
3815window_schedule_resize(struct window *window, int width, int height)
3816{
Kristian Høgsberg53ec5602013-10-21 15:05:49 -07003817 /* We should probably get these numbers from the theme. */
3818 const int min_width = 200, min_height = 200;
3819
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05003820 window->pending_allocation.x = 0;
3821 window->pending_allocation.y = 0;
3822 window->pending_allocation.width = width;
3823 window->pending_allocation.height = height;
3824
Kristian Høgsberg53ec5602013-10-21 15:05:49 -07003825 if (window->min_allocation.width == 0) {
Kristian Høgsbergafb98282013-10-21 15:23:17 -07003826 if (width < min_width && window->frame)
Kristian Høgsberg53ec5602013-10-21 15:05:49 -07003827 window->min_allocation.width = min_width;
3828 else
3829 window->min_allocation.width = width;
Kristian Høgsbergafb98282013-10-21 15:23:17 -07003830 if (height < min_height && window->frame)
Kristian Høgsberg53ec5602013-10-21 15:05:49 -07003831 window->min_allocation.height = min_height;
3832 else
Kristian Høgsbergafb98282013-10-21 15:23:17 -07003833 window->min_allocation.height = height;
Kristian Høgsberg53ec5602013-10-21 15:05:49 -07003834 }
3835
Kristian Høgsbergd3a19652012-07-20 11:32:51 -04003836 if (window->pending_allocation.width < window->min_allocation.width)
3837 window->pending_allocation.width = window->min_allocation.width;
3838 if (window->pending_allocation.height < window->min_allocation.height)
3839 window->pending_allocation.height = window->min_allocation.height;
3840
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04003841 window->resize_needed = 1;
3842 window_schedule_redraw(window);
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003843}
3844
Kristian Høgsbergbb977002012-01-10 19:11:42 -05003845void
3846widget_schedule_resize(struct widget *widget, int32_t width, int32_t height)
3847{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003848 window_schedule_resize(widget->window, width, height);
Kristian Høgsbergbb977002012-01-10 19:11:42 -05003849}
3850
Jasper St. Pierrebd65e502014-07-14 16:28:48 -04003851static int
3852window_get_shadow_margin(struct window *window)
3853{
Jasper St. Pierrea177df02014-08-04 13:43:25 -04003854 if (window->frame && !window->fullscreen)
Jasper St. Pierrebd65e502014-07-14 16:28:48 -04003855 return frame_get_shadow_margin(window->frame->frame);
3856 else
3857 return 0;
3858}
3859
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003860static void
Jasper St. Pierre0790e392013-12-09 14:58:00 -05003861handle_surface_configure(void *data, struct xdg_surface *xdg_surface,
Jasper St. Pierreab2c1082014-04-10 10:41:46 -07003862 int32_t width, int32_t height,
3863 struct wl_array *states, uint32_t serial)
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04003864{
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02003865 struct window *window = data;
Jasper St. Pierreab2c1082014-04-10 10:41:46 -07003866 uint32_t *p;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04003867
Jasper St. Pierreab2c1082014-04-10 10:41:46 -07003868 window->maximized = 0;
3869 window->fullscreen = 0;
Jasper St. Pierre5befdda2014-05-06 08:50:47 -04003870 window->resizing = 0;
Jasper St. Pierre973d7872014-05-06 08:44:29 -04003871 window->focused = 0;
Jasper St. Pierreab2c1082014-04-10 10:41:46 -07003872
3873 wl_array_for_each(p, states) {
3874 uint32_t state = *p;
3875 switch (state) {
3876 case XDG_SURFACE_STATE_MAXIMIZED:
3877 window->maximized = 1;
3878 break;
3879 case XDG_SURFACE_STATE_FULLSCREEN:
3880 window->fullscreen = 1;
3881 break;
Jasper St. Pierre5befdda2014-05-06 08:50:47 -04003882 case XDG_SURFACE_STATE_RESIZING:
3883 window->resizing = 1;
3884 break;
Jasper St. Pierre973d7872014-05-06 08:44:29 -04003885 case XDG_SURFACE_STATE_ACTIVATED:
3886 window->focused = 1;
3887 break;
Jasper St. Pierreab2c1082014-04-10 10:41:46 -07003888 default:
3889 /* Unknown state */
3890 break;
3891 }
3892 }
3893
Jasper St. Pierreccf908b2014-05-06 08:20:22 -04003894 if (window->frame) {
3895 if (window->maximized) {
3896 frame_set_flag(window->frame->frame, FRAME_FLAG_MAXIMIZED);
3897 } else {
3898 frame_unset_flag(window->frame->frame, FRAME_FLAG_MAXIMIZED);
3899 }
3900
3901 if (window->focused) {
3902 frame_set_flag(window->frame->frame, FRAME_FLAG_ACTIVE);
3903 } else {
3904 frame_unset_flag(window->frame->frame, FRAME_FLAG_ACTIVE);
3905 }
3906 }
3907
Jasper St. Pierref184c382014-05-06 08:33:27 -04003908 if (width > 0 && height > 0) {
Jasper St. Pierrebd65e502014-07-14 16:28:48 -04003909 /* The width / height params are for window geometry,
3910 * but window_schedule_resize takes allocation. Add
3911 * on the shadow margin to get the difference. */
3912 int margin = window_get_shadow_margin(window);
3913
3914 window_schedule_resize(window,
3915 width + margin * 2,
3916 height + margin * 2);
Jasper St. Pierref184c382014-05-06 08:33:27 -04003917 } else {
3918 window_schedule_resize(window,
3919 window->saved_allocation.width,
3920 window->saved_allocation.height);
3921 }
3922
Kristian Høgsbergbe803ad2014-05-12 23:30:28 -07003923 xdg_surface_ack_configure(window->xdg_surface, serial);
Jasper St. Pierrede680992014-04-10 17:23:49 -07003924
3925 if (window->state_changed_handler)
3926 window->state_changed_handler(window, window->user_data);
Jasper St. Pierre0790e392013-12-09 14:58:00 -05003927}
3928
Jasper St. Pierre2097fe12014-02-01 18:17:34 -05003929static void
3930handle_surface_delete(void *data, struct xdg_surface *xdg_surface)
3931{
3932 struct window *window = data;
3933 window_close(window);
3934}
3935
Jasper St. Pierre0790e392013-12-09 14:58:00 -05003936static const struct xdg_surface_listener xdg_surface_listener = {
Jasper St. Pierre0790e392013-12-09 14:58:00 -05003937 handle_surface_configure,
Jasper St. Pierre2097fe12014-02-01 18:17:34 -05003938 handle_surface_delete,
Jasper St. Pierre0790e392013-12-09 14:58:00 -05003939};
3940
3941static void
Jasper St. Pierrec815d622014-04-10 18:37:54 -07003942window_sync_parent(struct window *window)
Jasper St. Pierre53686042013-12-09 15:26:25 -05003943{
3944 struct wl_surface *parent_surface;
3945
3946 if (!window->xdg_surface)
3947 return;
3948
Jasper St. Pierrec815d622014-04-10 18:37:54 -07003949 if (window->parent)
3950 parent_surface = window->parent->main_surface->surface;
Jasper St. Pierre53686042013-12-09 15:26:25 -05003951 else
3952 parent_surface = NULL;
3953
Jasper St. Pierrec815d622014-04-10 18:37:54 -07003954 xdg_surface_set_parent(window->xdg_surface, parent_surface);
Jasper St. Pierre53686042013-12-09 15:26:25 -05003955}
3956
3957static void
Jasper St. Pierreccf48fb2014-05-02 10:21:38 -04003958window_get_geometry(struct window *window, struct rectangle *geometry)
Jasper St. Pierre74073452014-02-01 18:36:41 -05003959{
Jasper St. Pierrea177df02014-08-04 13:43:25 -04003960 if (window->frame && !window->fullscreen)
Jasper St. Pierreccf48fb2014-05-02 10:21:38 -04003961 frame_input_rect(window->frame->frame,
3962 &geometry->x,
3963 &geometry->y,
3964 &geometry->width,
3965 &geometry->height);
3966 else
3967 window_get_allocation(window, geometry);
3968}
3969
3970static void
3971window_sync_geometry(struct window *window)
3972{
3973 struct rectangle geometry;
Jasper St. Pierre74073452014-02-01 18:36:41 -05003974
3975 if (!window->xdg_surface)
3976 return;
3977
Jasper St. Pierreccf48fb2014-05-02 10:21:38 -04003978 window_get_geometry(window, &geometry);
Jasper St. Pierre74073452014-02-01 18:36:41 -05003979
Jasper St. Pierreccf48fb2014-05-02 10:21:38 -04003980 xdg_surface_set_window_geometry(window->xdg_surface,
3981 geometry.x,
3982 geometry.y,
3983 geometry.width,
3984 geometry.height);
Jasper St. Pierre74073452014-02-01 18:36:41 -05003985}
3986
3987static void
Jasper St. Pierre0790e392013-12-09 14:58:00 -05003988window_flush(struct window *window)
3989{
3990 struct surface *surface;
3991
3992 if (!window->custom) {
Kristian Høgsbergcdbbae22014-04-07 11:28:05 -07003993 if (window->xdg_surface) {
Jasper St. Pierrec815d622014-04-10 18:37:54 -07003994 window_sync_parent(window);
Jasper St. Pierreccf48fb2014-05-02 10:21:38 -04003995 window_sync_geometry(window);
Jasper St. Pierre0790e392013-12-09 14:58:00 -05003996 }
3997 }
3998
3999 wl_list_for_each(surface, &window->subsurface_list, link) {
4000 if (surface == window->main_surface)
4001 continue;
4002
4003 surface_flush(surface);
4004 }
4005
4006 surface_flush(window->main_surface);
4007}
4008
4009static void
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02004010menu_destroy(struct menu *menu)
4011{
4012 widget_destroy(menu->widget);
4013 window_destroy(menu->window);
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004014 frame_destroy(menu->frame);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02004015 free(menu);
4016}
4017
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05004018void
Benjamin Franzkecff904e2011-02-18 23:00:55 +01004019window_get_allocation(struct window *window,
4020 struct rectangle *allocation)
4021{
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02004022 *allocation = window->main_surface->allocation;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01004023}
4024
Kristian Høgsberg3a696272011-09-14 17:33:48 -04004025static void
Kristian Høgsberg441338c2012-01-10 13:52:34 -05004026widget_redraw(struct widget *widget)
4027{
4028 struct widget *child;
4029
4030 if (widget->redraw_handler)
4031 widget->redraw_handler(widget, widget->user_data);
4032 wl_list_for_each(child, &widget->child_list, link)
4033 widget_redraw(child);
4034}
4035
4036static void
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04004037frame_callback(void *data, struct wl_callback *callback, uint32_t time)
4038{
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004039 struct surface *surface = data;
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04004040
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004041 assert(callback == surface->frame_cb);
Pekka Paalanen71233882013-04-25 13:57:53 +03004042 DBG_OBJ(callback, "done\n");
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04004043 wl_callback_destroy(callback);
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004044 surface->frame_cb = NULL;
4045
Pekka Paalanen7ff7a802013-04-25 13:57:50 +03004046 surface->last_time = time;
4047
Pekka Paalanen71233882013-04-25 13:57:53 +03004048 if (surface->redraw_needed || surface->window->redraw_needed) {
4049 DBG_OBJ(surface->surface, "window_schedule_redraw_task\n");
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004050 window_schedule_redraw_task(surface->window);
Pekka Paalanen71233882013-04-25 13:57:53 +03004051 }
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04004052}
4053
4054static const struct wl_callback_listener listener = {
4055 frame_callback
4056};
4057
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02004058static int
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004059surface_redraw(struct surface *surface)
4060{
Pekka Paalanen71233882013-04-25 13:57:53 +03004061 DBG_OBJ(surface->surface, "begin\n");
4062
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004063 if (!surface->window->redraw_needed && !surface->redraw_needed)
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02004064 return 0;
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004065
4066 /* Whole-window redraw forces a redraw even if the previous has
4067 * not yet hit the screen.
4068 */
4069 if (surface->frame_cb) {
4070 if (!surface->window->redraw_needed)
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02004071 return 0;
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004072
Pekka Paalanen71233882013-04-25 13:57:53 +03004073 DBG_OBJ(surface->frame_cb, "cancelled\n");
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004074 wl_callback_destroy(surface->frame_cb);
4075 }
4076
Neil Roberts97b747c2013-12-19 16:17:12 +00004077 if (surface->widget->use_cairo &&
4078 !widget_get_cairo_surface(surface->widget)) {
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02004079 DBG_OBJ(surface->surface, "cancelled due buffer failure\n");
4080 return -1;
4081 }
4082
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004083 surface->frame_cb = wl_surface_frame(surface->surface);
4084 wl_callback_add_listener(surface->frame_cb, &listener, surface);
Pekka Paalanen71233882013-04-25 13:57:53 +03004085 DBG_OBJ(surface->frame_cb, "new\n");
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004086
4087 surface->redraw_needed = 0;
Pekka Paalanen71233882013-04-25 13:57:53 +03004088 DBG_OBJ(surface->surface, "-> widget_redraw\n");
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004089 widget_redraw(surface->widget);
Pekka Paalanen71233882013-04-25 13:57:53 +03004090 DBG_OBJ(surface->surface, "done\n");
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02004091 return 0;
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004092}
4093
4094static void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04004095idle_redraw(struct task *task, uint32_t events)
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04004096{
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04004097 struct window *window = container_of(task, struct window, redraw_task);
Pekka Paalanen35e82632013-04-25 13:57:48 +03004098 struct surface *surface;
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02004099 int failed = 0;
4100 int resized = 0;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04004101
Pekka Paalanen71233882013-04-25 13:57:53 +03004102 DBG(" --------- \n");
4103
Pekka Paalaneneebff542013-04-25 13:57:52 +03004104 wl_list_init(&window->redraw_task.link);
4105 window->redraw_task_scheduled = 0;
4106
4107 if (window->resize_needed) {
4108 /* throttle resizing to the main surface display */
Pekka Paalanen71233882013-04-25 13:57:53 +03004109 if (window->main_surface->frame_cb) {
4110 DBG_OBJ(window->main_surface->frame_cb, "pending\n");
Pekka Paalaneneebff542013-04-25 13:57:52 +03004111 return;
Pekka Paalanen71233882013-04-25 13:57:53 +03004112 }
Pekka Paalaneneebff542013-04-25 13:57:52 +03004113
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04004114 idle_resize(window);
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02004115 resized = 1;
Pekka Paalaneneebff542013-04-25 13:57:52 +03004116 }
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04004117
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02004118 if (surface_redraw(window->main_surface) < 0) {
4119 /*
4120 * Only main_surface failure will cause us to undo the resize.
4121 * If sub-surfaces fail, they will just be broken with old
4122 * content.
4123 */
4124 failed = 1;
4125 } else {
4126 wl_list_for_each(surface, &window->subsurface_list, link) {
4127 if (surface == window->main_surface)
4128 continue;
4129
4130 surface_redraw(surface);
4131 }
4132 }
Pekka Paalanen35e82632013-04-25 13:57:48 +03004133
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04004134 window->redraw_needed = 0;
Pekka Paalanenbc106382012-10-10 12:49:31 +03004135 window_flush(window);
Pekka Paalanen35e82632013-04-25 13:57:48 +03004136
4137 wl_list_for_each(surface, &window->subsurface_list, link)
4138 surface_set_synchronized_default(surface);
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02004139
4140 if (resized && failed) {
4141 /* Restore widget tree to correspond to what is on screen. */
4142 undo_resize(window);
4143 }
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04004144}
4145
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004146static void
4147window_schedule_redraw_task(struct window *window)
4148{
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004149 if (!window->redraw_task_scheduled) {
4150 window->redraw_task.run = idle_redraw;
4151 display_defer(window->display, &window->redraw_task);
4152 window->redraw_task_scheduled = 1;
4153 }
4154}
4155
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04004156void
4157window_schedule_redraw(struct window *window)
4158{
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004159 struct surface *surface;
4160
Pekka Paalanen71233882013-04-25 13:57:53 +03004161 DBG_OBJ(window->main_surface->surface, "window %p\n", window);
4162
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004163 wl_list_for_each(surface, &window->subsurface_list, link)
4164 surface->redraw_needed = 1;
4165
4166 window_schedule_redraw_task(window);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04004167}
4168
Kristian Høgsberg1671e112012-10-10 11:36:24 -04004169int
4170window_is_fullscreen(struct window *window)
4171{
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05004172 return window->fullscreen;
Kristian Høgsberg1671e112012-10-10 11:36:24 -04004173}
4174
Kristian Høgsberg0ac16f02009-01-15 11:37:43 -05004175void
Kristian Høgsberg0395f302008-12-22 12:14:50 -05004176window_set_fullscreen(struct window *window, int fullscreen)
4177{
Jasper St. Pierre0790e392013-12-09 14:58:00 -05004178 if (!window->xdg_surface)
Kristian Høgsberg1517def2012-02-16 22:56:12 -05004179 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05004180
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05004181 if (window->fullscreen == fullscreen)
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05004182 return;
4183
Jasper St. Pierreab2c1082014-04-10 10:41:46 -07004184 if (fullscreen)
4185 xdg_surface_set_fullscreen(window->xdg_surface, NULL);
4186 else
4187 xdg_surface_unset_fullscreen(window->xdg_surface);
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04004188}
4189
Kristian Høgsberg1671e112012-10-10 11:36:24 -04004190int
4191window_is_maximized(struct window *window)
4192{
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05004193 return window->maximized;
Kristian Høgsberg1671e112012-10-10 11:36:24 -04004194}
4195
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04004196void
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05004197window_set_maximized(struct window *window, int maximized)
4198{
Jasper St. Pierre0790e392013-12-09 14:58:00 -05004199 if (!window->xdg_surface)
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05004200 return;
4201
Jasper St. Pierrec0f17ab2013-11-11 19:16:11 -05004202 if (window->maximized == maximized)
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05004203 return;
4204
Jasper St. Pierreab2c1082014-04-10 10:41:46 -07004205 if (maximized)
4206 xdg_surface_set_maximized(window->xdg_surface);
4207 else
4208 xdg_surface_unset_maximized(window->xdg_surface);
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05004209}
4210
Jasper St. Pierrede680992014-04-10 17:23:49 -07004211int
4212window_is_resizing(struct window *window)
4213{
4214 return window->resizing;
4215}
4216
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05004217void
Jasper St. Pierre5a183322014-02-18 19:18:42 -05004218window_set_minimized(struct window *window)
4219{
4220 if (!window->xdg_surface)
4221 return;
4222
4223 xdg_surface_set_minimized(window->xdg_surface);
4224}
4225
4226void
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04004227window_set_user_data(struct window *window, void *data)
4228{
4229 window->user_data = data;
4230}
4231
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04004232void *
4233window_get_user_data(struct window *window)
4234{
4235 return window->user_data;
4236}
4237
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04004238void
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05004239window_set_key_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04004240 window_key_handler_t handler)
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05004241{
4242 window->key_handler = handler;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05004243}
4244
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05004245void
4246window_set_keyboard_focus_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04004247 window_keyboard_focus_handler_t handler)
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05004248{
4249 window->keyboard_focus_handler = handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05004250}
4251
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04004252void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04004253window_set_data_handler(struct window *window, window_data_handler_t handler)
4254{
4255 window->data_handler = handler;
4256}
4257
4258void
4259window_set_drop_handler(struct window *window, window_drop_handler_t handler)
4260{
4261 window->drop_handler = handler;
4262}
4263
4264void
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05004265window_set_close_handler(struct window *window,
4266 window_close_handler_t handler)
4267{
4268 window->close_handler = handler;
4269}
4270
4271void
Kristian Høgsberg67ace202012-07-23 21:56:31 -04004272window_set_fullscreen_handler(struct window *window,
4273 window_fullscreen_handler_t handler)
4274{
4275 window->fullscreen_handler = handler;
4276}
4277
4278void
Ander Conselvan de Oliveira15256f62012-11-30 17:34:25 +02004279window_set_output_handler(struct window *window,
4280 window_output_handler_t handler)
4281{
4282 window->output_handler = handler;
4283}
4284
4285void
Jasper St. Pierrede680992014-04-10 17:23:49 -07004286window_set_state_changed_handler(struct window *window,
4287 window_state_changed_handler_t handler)
4288{
4289 window->state_changed_handler = handler;
4290}
4291
4292void
Callum Lowcayef57a9b2011-01-14 20:46:23 +13004293window_set_title(struct window *window, const char *title)
4294{
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -05004295 free(window->title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13004296 window->title = strdup(title);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05004297 if (window->frame) {
4298 frame_set_title(window->frame->frame, title);
4299 widget_schedule_redraw(window->frame->widget);
4300 }
Jasper St. Pierre0790e392013-12-09 14:58:00 -05004301 if (window->xdg_surface)
4302 xdg_surface_set_title(window->xdg_surface, title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13004303}
4304
4305const char *
4306window_get_title(struct window *window)
4307{
4308 return window->title;
4309}
4310
4311void
Scott Moreau7a1b32a2012-05-27 14:25:02 -06004312window_set_text_cursor_position(struct window *window, int32_t x, int32_t y)
4313{
4314 struct text_cursor_position *text_cursor_position =
4315 window->display->text_cursor_position;
4316
Scott Moreau9295ce02012-06-01 12:46:10 -06004317 if (!text_cursor_position)
Scott Moreau7a1b32a2012-05-27 14:25:02 -06004318 return;
4319
4320 text_cursor_position_notify(text_cursor_position,
Pekka Paalanen4e373742013-02-13 16:17:13 +02004321 window->main_surface->surface,
4322 wl_fixed_from_int(x),
4323 wl_fixed_from_int(y));
Scott Moreau7a1b32a2012-05-27 14:25:02 -06004324}
4325
4326void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04004327window_damage(struct window *window, int32_t x, int32_t y,
4328 int32_t width, int32_t height)
4329{
Pekka Paalanen4e373742013-02-13 16:17:13 +02004330 wl_surface_damage(window->main_surface->surface, x, y, width, height);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04004331}
4332
Casey Dahlin9074db52012-04-19 22:50:09 -04004333static void
4334surface_enter(void *data,
Rob Bradford7507b572012-05-15 17:55:34 +01004335 struct wl_surface *wl_surface, struct wl_output *wl_output)
Casey Dahlin9074db52012-04-19 22:50:09 -04004336{
Rob Bradford7507b572012-05-15 17:55:34 +01004337 struct window *window = data;
4338 struct output *output;
4339 struct output *output_found = NULL;
4340 struct window_output *window_output;
4341
4342 wl_list_for_each(output, &window->display->output_list, link) {
4343 if (output->output == wl_output) {
4344 output_found = output;
4345 break;
4346 }
4347 }
4348
4349 if (!output_found)
4350 return;
4351
Brian Lovinbc919262013-08-07 15:34:59 -07004352 window_output = xmalloc(sizeof *window_output);
Rob Bradford7507b572012-05-15 17:55:34 +01004353 window_output->output = output_found;
4354
4355 wl_list_insert (&window->window_output_list, &window_output->link);
Ander Conselvan de Oliveira15256f62012-11-30 17:34:25 +02004356
4357 if (window->output_handler)
4358 window->output_handler(window, output_found, 1,
4359 window->user_data);
Casey Dahlin9074db52012-04-19 22:50:09 -04004360}
4361
4362static void
4363surface_leave(void *data,
4364 struct wl_surface *wl_surface, struct wl_output *output)
4365{
Rob Bradford7507b572012-05-15 17:55:34 +01004366 struct window *window = data;
4367 struct window_output *window_output;
4368 struct window_output *window_output_found = NULL;
4369
4370 wl_list_for_each(window_output, &window->window_output_list, link) {
4371 if (window_output->output->output == output) {
4372 window_output_found = window_output;
4373 break;
4374 }
4375 }
4376
4377 if (window_output_found) {
4378 wl_list_remove(&window_output_found->link);
Ander Conselvan de Oliveira15256f62012-11-30 17:34:25 +02004379
4380 if (window->output_handler)
4381 window->output_handler(window, window_output->output,
4382 0, window->user_data);
4383
Rob Bradford7507b572012-05-15 17:55:34 +01004384 free(window_output_found);
4385 }
Casey Dahlin9074db52012-04-19 22:50:09 -04004386}
4387
4388static const struct wl_surface_listener surface_listener = {
4389 surface_enter,
4390 surface_leave
4391};
4392
Pekka Paalanen4e373742013-02-13 16:17:13 +02004393static struct surface *
4394surface_create(struct window *window)
4395{
4396 struct display *display = window->display;
4397 struct surface *surface;
4398
Brian Lovinbc919262013-08-07 15:34:59 -07004399 surface = xmalloc(sizeof *surface);
4400 memset(surface, 0, sizeof *surface);
Pekka Paalanen4e373742013-02-13 16:17:13 +02004401 if (!surface)
4402 return NULL;
4403
4404 surface->window = window;
4405 surface->surface = wl_compositor_create_surface(display->compositor);
Alexander Larsson5e9b6522013-05-22 14:41:28 +02004406 surface->buffer_scale = 1;
Pekka Paalanen4e373742013-02-13 16:17:13 +02004407 wl_surface_add_listener(surface->surface, &surface_listener, window);
4408
Pekka Paalanen35e82632013-04-25 13:57:48 +03004409 wl_list_insert(&window->subsurface_list, &surface->link);
4410
Pekka Paalanen4e373742013-02-13 16:17:13 +02004411 return surface;
4412}
4413
Jasper St. Pierrebf39e5e2014-04-28 11:19:32 -04004414static enum window_buffer_type
Jasper St. Pierrebd600772014-04-28 11:19:31 -04004415get_preferred_buffer_type(struct display *display)
4416{
4417#ifdef HAVE_CAIRO_EGL
Jasper St. Pierrebf39e5e2014-04-28 11:19:32 -04004418 if (display->argb_device && !getenv("TOYTOOLKIT_NO_EGL"))
Jasper St. Pierrebd600772014-04-28 11:19:31 -04004419 return WINDOW_BUFFER_TYPE_EGL_WINDOW;
4420#endif
4421
4422 return WINDOW_BUFFER_TYPE_SHM;
4423}
4424
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004425static struct window *
Jasper St. Pierre0790e392013-12-09 14:58:00 -05004426window_create_internal(struct display *display, int custom)
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05004427{
Kristian Høgsberg1cbaa6a2008-11-07 15:54:48 -05004428 struct window *window;
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004429 struct surface *surface;
Kristian Høgsberg1cbaa6a2008-11-07 15:54:48 -05004430
Peter Huttererf3d62272013-08-08 11:57:05 +10004431 window = xzalloc(sizeof *window);
Pekka Paalanen35e82632013-04-25 13:57:48 +03004432 wl_list_init(&window->subsurface_list);
Kristian Høgsberg40979232008-11-25 22:40:39 -05004433 window->display = display;
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004434
4435 surface = surface_create(window);
4436 window->main_surface = surface;
4437
Jason Ekstrandce97a6b2014-04-02 19:53:49 -05004438 assert(custom || display->xdg_shell);
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02004439
Jasper St. Pierre0790e392013-12-09 14:58:00 -05004440 window->custom = custom;
Tomeu Vizosobee45a12013-08-06 20:05:54 +02004441 window->preferred_format = WINDOW_PREFERRED_FORMAT_NONE;
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -05004442
Jasper St. Pierrebd600772014-04-28 11:19:31 -04004443 surface->buffer_type = get_preferred_buffer_type(display);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04004444
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004445 wl_surface_set_user_data(surface->surface, window);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04004446 wl_list_insert(display->window_list.prev, &window->link);
Kristian Høgsberg84b76c72012-04-13 12:01:18 -04004447 wl_list_init(&window->redraw_task.link);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004448
Rob Bradford7507b572012-05-15 17:55:34 +01004449 wl_list_init (&window->window_output_list);
4450
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004451 return window;
4452}
4453
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004454struct window *
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05004455window_create(struct display *display)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004456{
Kristian Høgsbergcdbbae22014-04-07 11:28:05 -07004457 struct window *window;
4458
4459 window = window_create_internal(display, 0);
4460
4461 window->xdg_surface =
4462 xdg_shell_get_xdg_surface(window->display->xdg_shell,
4463 window->main_surface->surface);
4464 fail_on_null(window->xdg_surface);
4465
4466 xdg_surface_set_user_data(window->xdg_surface, window);
4467 xdg_surface_add_listener(window->xdg_surface,
4468 &xdg_surface_listener, window);
4469
4470 return window;
Kristian Høgsberg962342c2012-06-26 16:29:50 -04004471}
4472
4473struct window *
4474window_create_custom(struct display *display)
4475{
Jasper St. Pierre0790e392013-12-09 14:58:00 -05004476 return window_create_internal(display, 1);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004477}
4478
Jasper St. Pierre53686042013-12-09 15:26:25 -05004479void
Jasper St. Pierrec815d622014-04-10 18:37:54 -07004480window_set_parent(struct window *window,
4481 struct window *parent_window)
Jasper St. Pierre53686042013-12-09 15:26:25 -05004482{
Jasper St. Pierrec815d622014-04-10 18:37:54 -07004483 window->parent = parent_window;
4484 window_sync_parent(window);
Jasper St. Pierre53686042013-12-09 15:26:25 -05004485}
4486
4487struct window *
Jasper St. Pierrec815d622014-04-10 18:37:54 -07004488window_get_parent(struct window *window)
Jasper St. Pierre53686042013-12-09 15:26:25 -05004489{
Jasper St. Pierrec815d622014-04-10 18:37:54 -07004490 return window->parent;
Jasper St. Pierre53686042013-12-09 15:26:25 -05004491}
4492
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004493static void
Kristian Høgsberg19dd1d72012-01-09 10:42:41 -05004494menu_set_item(struct menu *menu, int sy)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004495{
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004496 int32_t x, y, width, height;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004497 int next;
4498
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004499 frame_interior(menu->frame, &x, &y, &width, &height);
4500 next = (sy - y) / 20;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004501 if (menu->current != next) {
4502 menu->current = next;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05004503 widget_schedule_redraw(menu->widget);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004504 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004505}
4506
4507static int
Kristian Høgsberg5f190ef2012-01-09 09:44:45 -05004508menu_motion_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004509 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04004510 float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004511{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004512 struct menu *menu = data;
4513
4514 if (widget == menu->widget)
4515 menu_set_item(data, y);
4516
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03004517 return CURSOR_LEFT_PTR;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004518}
4519
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05004520static int
Kristian Høgsberg391649b2012-01-09 09:22:30 -05004521menu_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04004522 struct input *input, float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004523{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004524 struct menu *menu = data;
4525
4526 if (widget == menu->widget)
4527 menu_set_item(data, y);
4528
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03004529 return CURSOR_LEFT_PTR;
Kristian Høgsberg391649b2012-01-09 09:22:30 -05004530}
4531
4532static void
4533menu_leave_handler(struct widget *widget, struct input *input, void *data)
4534{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004535 struct menu *menu = data;
4536
4537 if (widget == menu->widget)
4538 menu_set_item(data, -200);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004539}
4540
4541static void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05004542menu_button_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004543 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01004544 uint32_t button, enum wl_pointer_button_state state,
4545 void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004546
4547{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05004548 struct menu *menu = data;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004549
Kristian Høgsbergd2fbb382012-10-30 13:45:22 -04004550 if (state == WL_POINTER_BUTTON_STATE_RELEASED &&
4551 (menu->release_count > 0 || time - menu->time > 500)) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004552 /* Either relase after press-drag-release or
4553 * click-motion-click. */
Jasper St. Pierredda93132014-03-13 12:06:00 -04004554 menu->func(menu->user_data, input, menu->current);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04004555 input_ungrab(input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02004556 menu_destroy(menu);
Kristian Høgsberge77d7572012-10-30 18:10:30 -04004557 } else if (state == WL_POINTER_BUTTON_STATE_RELEASED) {
Kristian Høgsbergd2fbb382012-10-30 13:45:22 -04004558 menu->release_count++;
Kristian Høgsberge77d7572012-10-30 18:10:30 -04004559 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004560}
4561
4562static void
Kristian Høgsberg9c609332014-04-29 14:47:19 -07004563menu_touch_up_handler(struct widget *widget,
4564 struct input *input,
4565 uint32_t serial,
4566 uint32_t time,
4567 int32_t id,
4568 void *data)
4569{
4570 struct menu *menu = data;
4571
4572 input_ungrab(input);
4573 menu_destroy(menu);
4574}
4575
4576static void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05004577menu_redraw_handler(struct widget *widget, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004578{
4579 cairo_t *cr;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004580 struct menu *menu = data;
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004581 int32_t x, y, width, height, i;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004582
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02004583 cr = widget_cairo_create(widget);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004584
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004585 frame_repaint(menu->frame, cr);
4586 frame_interior(menu->frame, &x, &y, &width, &height);
Kristian Høgsberg824c6d02012-01-19 13:54:09 -05004587
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004588 theme_set_background_source(menu->window->display->theme,
4589 cr, THEME_FRAME_ACTIVE);
4590 cairo_rectangle(cr, x, y, width, height);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004591 cairo_fill(cr);
4592
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004593 cairo_select_font_face(cr, "sans",
4594 CAIRO_FONT_SLANT_NORMAL,
4595 CAIRO_FONT_WEIGHT_NORMAL);
4596 cairo_set_font_size(cr, 12);
4597
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004598 for (i = 0; i < menu->count; i++) {
4599 if (i == menu->current) {
4600 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004601 cairo_rectangle(cr, x, y + i * 20, width, 20);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004602 cairo_fill(cr);
4603 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004604 cairo_move_to(cr, x + 10, y + i * 20 + 16);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004605 cairo_show_text(cr, menu->entries[i]);
4606 } else {
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004607 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
4608 cairo_move_to(cr, x + 10, y + i * 20 + 16);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004609 cairo_show_text(cr, menu->entries[i]);
4610 }
4611 }
4612
4613 cairo_destroy(cr);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004614}
4615
Jasper St. Pierre0790e392013-12-09 14:58:00 -05004616static void
Jasper St. Pierre0790e392013-12-09 14:58:00 -05004617handle_popup_popup_done(void *data, struct xdg_popup *xdg_popup, uint32_t serial)
4618{
4619 struct window *window = data;
4620 struct menu *menu = window->main_surface->widget->user_data;
4621
4622 input_ungrab(menu->input);
4623 menu_destroy(menu);
4624}
4625
4626static const struct xdg_popup_listener xdg_popup_listener = {
Jasper St. Pierre0790e392013-12-09 14:58:00 -05004627 handle_popup_popup_done,
4628};
4629
Jasper St. Pierrede8bd502014-03-13 11:57:31 -04004630static struct menu *
4631create_menu(struct display *display,
4632 struct input *input, uint32_t time,
4633 menu_func_t func, const char **entries, int count,
4634 void *user_data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004635{
4636 struct window *window;
4637 struct menu *menu;
4638
4639 menu = malloc(sizeof *menu);
4640 if (!menu)
Jasper St. Pierrede8bd502014-03-13 11:57:31 -04004641 return NULL;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004642
Jasper St. Pierrede8bd502014-03-13 11:57:31 -04004643 window = window_create_internal(display, 0);
Martin Olsson444799a2012-07-08 03:03:40 +02004644 if (!window) {
4645 free(menu);
Jasper St. Pierrede8bd502014-03-13 11:57:31 -04004646 return NULL;
Martin Olsson444799a2012-07-08 03:03:40 +02004647 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004648
4649 menu->window = window;
Jasper St. Pierrede8bd502014-03-13 11:57:31 -04004650 menu->user_data = user_data;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05004651 menu->widget = window_add_widget(menu->window, menu);
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004652 menu->frame = frame_create(window->display->theme, 0, 0,
Kristian Høgsberg89f4bc42013-10-23 22:12:13 -07004653 FRAME_BUTTON_NONE, NULL);
U. Artie Eoffbae79ca2014-01-15 13:38:51 -08004654 fail_on_null(menu->frame);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004655 menu->entries = entries;
4656 menu->count = count;
Kristian Høgsbergd2fbb382012-10-30 13:45:22 -04004657 menu->release_count = 0;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004658 menu->current = -1;
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05004659 menu->time = time;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05004660 menu->func = func;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004661 menu->input = input;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004662
Kristian Høgsberg8ae63852013-10-28 22:06:11 -07004663 input_ungrab(input);
4664
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05004665 widget_set_redraw_handler(menu->widget, menu_redraw_handler);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05004666 widget_set_enter_handler(menu->widget, menu_enter_handler);
4667 widget_set_leave_handler(menu->widget, menu_leave_handler);
4668 widget_set_motion_handler(menu->widget, menu_motion_handler);
4669 widget_set_button_handler(menu->widget, menu_button_handler);
Kristian Høgsberg9c609332014-04-29 14:47:19 -07004670 widget_set_touch_up_handler(menu->widget, menu_touch_up_handler);
Kristian Høgsberg391649b2012-01-09 09:22:30 -05004671
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004672 input_grab(input, menu->widget, 0);
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004673 frame_resize_inside(menu->frame, 200, count * 20);
4674 frame_set_flag(menu->frame, FRAME_FLAG_ACTIVE);
4675 window_schedule_resize(window, frame_width(menu->frame),
4676 frame_height(menu->frame));
4677
Jasper St. Pierrede8bd502014-03-13 11:57:31 -04004678 return menu;
4679}
4680
4681struct window *
4682window_create_menu(struct display *display,
4683 struct input *input, uint32_t time,
4684 menu_func_t func, const char **entries, int count,
4685 void *user_data)
4686{
4687 struct menu *menu;
4688 menu = create_menu(display, input, time, func, entries, count, user_data);
4689
4690 if (menu == NULL)
4691 return NULL;
4692
4693 return menu->window;
4694}
4695
4696void
4697window_show_menu(struct display *display,
4698 struct input *input, uint32_t time, struct window *parent,
4699 int32_t x, int32_t y,
4700 menu_func_t func, const char **entries, int count)
4701{
4702 struct menu *menu;
4703 struct window *window;
4704 int32_t ix, iy;
4705
4706 menu = create_menu(display, input, time, func, entries, count, parent);
4707
4708 if (menu == NULL)
4709 return;
4710
4711 window = menu->window;
4712
4713 window_set_buffer_scale (menu->window, window_get_buffer_scale (parent));
4714 window_set_buffer_transform (menu->window, window_get_buffer_transform (parent));
4715
4716 window->x = x;
4717 window->y = y;
4718
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004719 frame_interior(menu->frame, &ix, &iy, NULL, NULL);
Jasper St. Pierre0790e392013-12-09 14:58:00 -05004720
4721 window->xdg_popup = xdg_shell_get_xdg_popup(display->xdg_shell,
4722 window->main_surface->surface,
4723 parent->main_surface->surface,
4724 input->seat,
4725 display_get_serial(window->display),
4726 window->x - ix,
4727 window->y - iy,
4728 0);
4729 fail_on_null(window->xdg_popup);
4730
4731 xdg_popup_set_user_data(window->xdg_popup, window);
4732 xdg_popup_add_listener(window->xdg_popup,
4733 &xdg_popup_listener, window);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004734}
4735
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004736void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04004737window_set_buffer_type(struct window *window, enum window_buffer_type type)
4738{
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004739 window->main_surface->buffer_type = type;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04004740}
4741
Manuel Bachmanncd186fb2014-04-04 10:04:18 +02004742enum window_buffer_type
4743window_get_buffer_type(struct window *window)
4744{
4745 return window->main_surface->buffer_type;
4746}
4747
Tomeu Vizosobee45a12013-08-06 20:05:54 +02004748void
4749window_set_preferred_format(struct window *window,
4750 enum preferred_format format)
4751{
4752 window->preferred_format = format;
4753}
4754
Pekka Paalanen35e82632013-04-25 13:57:48 +03004755struct widget *
4756window_add_subsurface(struct window *window, void *data,
4757 enum subsurface_mode default_mode)
4758{
4759 struct widget *widget;
4760 struct surface *surface;
4761 struct wl_surface *parent;
4762 struct wl_subcompositor *subcompo = window->display->subcompositor;
4763
Pekka Paalanen35e82632013-04-25 13:57:48 +03004764 surface = surface_create(window);
Manuel Bachmanncd186fb2014-04-04 10:04:18 +02004765 surface->buffer_type = window_get_buffer_type(window);
Pekka Paalanen35e82632013-04-25 13:57:48 +03004766 widget = widget_create(window, surface, data);
4767 wl_list_init(&widget->link);
4768 surface->widget = widget;
4769
4770 parent = window->main_surface->surface;
4771 surface->subsurface = wl_subcompositor_get_subsurface(subcompo,
4772 surface->surface,
4773 parent);
4774 surface->synchronized = 1;
4775
4776 switch (default_mode) {
4777 case SUBSURFACE_SYNCHRONIZED:
4778 surface->synchronized_default = 1;
4779 break;
4780 case SUBSURFACE_DESYNCHRONIZED:
4781 surface->synchronized_default = 0;
4782 break;
4783 default:
4784 assert(!"bad enum subsurface_mode");
4785 }
4786
Jasper St. Pierree22952b2013-11-11 20:07:33 -05004787 window->resize_needed = 1;
4788 window_schedule_redraw(window);
4789
Pekka Paalanen35e82632013-04-25 13:57:48 +03004790 return widget;
4791}
Kristian Høgsberg8357cd62011-05-13 13:24:56 -04004792
4793static void
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004794display_handle_geometry(void *data,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04004795 struct wl_output *wl_output,
4796 int x, int y,
4797 int physical_width,
4798 int physical_height,
4799 int subpixel,
4800 const char *make,
Kristian Høgsberg0e696472012-07-22 15:49:57 -04004801 const char *model,
4802 int transform)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004803{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004804 struct output *output = data;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004805
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004806 output->allocation.x = x;
4807 output->allocation.y = y;
Scott Moreau4e072362012-09-29 02:03:11 -06004808 output->transform = transform;
Jason Ekstrand738715d2014-04-02 19:53:50 -05004809
4810 if (output->make)
4811 free(output->make);
4812 output->make = strdup(make);
4813
4814 if (output->model)
4815 free(output->model);
4816 output->model = strdup(model);
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04004817}
4818
4819static void
Alexander Larssonafd319a2013-05-22 14:41:27 +02004820display_handle_done(void *data,
4821 struct wl_output *wl_output)
4822{
4823}
4824
4825static void
4826display_handle_scale(void *data,
4827 struct wl_output *wl_output,
Alexander Larssonedddbd12013-05-24 13:09:43 +02004828 int32_t scale)
Alexander Larssonafd319a2013-05-22 14:41:27 +02004829{
4830 struct output *output = data;
4831
4832 output->scale = scale;
4833}
4834
4835static void
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04004836display_handle_mode(void *data,
4837 struct wl_output *wl_output,
4838 uint32_t flags,
4839 int width,
4840 int height,
4841 int refresh)
4842{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004843 struct output *output = data;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004844 struct display *display = output->display;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04004845
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004846 if (flags & WL_OUTPUT_MODE_CURRENT) {
4847 output->allocation.width = width;
4848 output->allocation.height = height;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004849 if (display->output_configure_handler)
4850 (*display->output_configure_handler)(
4851 output, display->user_data);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004852 }
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004853}
4854
4855static const struct wl_output_listener output_listener = {
4856 display_handle_geometry,
Alexander Larssonafd319a2013-05-22 14:41:27 +02004857 display_handle_mode,
4858 display_handle_done,
4859 display_handle_scale
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004860};
4861
4862static void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004863display_add_output(struct display *d, uint32_t id)
4864{
4865 struct output *output;
4866
Kristian Høgsberg69594cc2013-08-15 14:28:25 -07004867 output = xzalloc(sizeof *output);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004868 output->display = d;
Alexander Larssonafd319a2013-05-22 14:41:27 +02004869 output->scale = 1;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004870 output->output =
Alexander Larssonafd319a2013-05-22 14:41:27 +02004871 wl_registry_bind(d->registry, id, &wl_output_interface, 2);
Xiong Zhang83d8ee72013-10-23 13:58:35 +08004872 output->server_output_id = id;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004873 wl_list_insert(d->output_list.prev, &output->link);
4874
4875 wl_output_add_listener(output->output, &output_listener, output);
4876}
4877
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02004878static void
4879output_destroy(struct output *output)
4880{
4881 if (output->destroy_handler)
4882 (*output->destroy_handler)(output, output->user_data);
4883
4884 wl_output_destroy(output->output);
4885 wl_list_remove(&output->link);
4886 free(output);
4887}
4888
Xiong Zhang83d8ee72013-10-23 13:58:35 +08004889static void
4890display_destroy_output(struct display *d, uint32_t id)
4891{
4892 struct output *output;
4893
4894 wl_list_for_each(output, &d->output_list, link) {
4895 if (output->server_output_id == id) {
4896 output_destroy(output);
4897 break;
4898 }
4899 }
4900}
4901
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004902void
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004903display_set_global_handler(struct display *display,
4904 display_global_handler_t handler)
4905{
4906 struct global *global;
4907
4908 display->global_handler = handler;
4909 if (!handler)
4910 return;
4911
4912 wl_list_for_each(global, &display->global_list, link)
4913 display->global_handler(display,
4914 global->name, global->interface,
4915 global->version, display->user_data);
4916}
4917
4918void
Xiong Zhang83d8ee72013-10-23 13:58:35 +08004919display_set_global_handler_remove(struct display *display,
4920 display_global_handler_t remove_handler)
4921{
4922 display->global_handler_remove = remove_handler;
4923 if (!remove_handler)
4924 return;
4925}
4926
4927void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004928display_set_output_configure_handler(struct display *display,
4929 display_output_handler_t handler)
4930{
4931 struct output *output;
4932
4933 display->output_configure_handler = handler;
4934 if (!handler)
4935 return;
4936
Pekka Paalanenb2f957a2012-10-15 12:06:53 +03004937 wl_list_for_each(output, &display->output_list, link) {
4938 if (output->allocation.width == 0 &&
4939 output->allocation.height == 0)
4940 continue;
4941
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004942 (*display->output_configure_handler)(output,
4943 display->user_data);
Pekka Paalanenb2f957a2012-10-15 12:06:53 +03004944 }
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004945}
4946
4947void
4948output_set_user_data(struct output *output, void *data)
4949{
4950 output->user_data = data;
4951}
4952
4953void *
4954output_get_user_data(struct output *output)
4955{
4956 return output->user_data;
4957}
4958
4959void
4960output_set_destroy_handler(struct output *output,
4961 display_output_handler_t handler)
4962{
4963 output->destroy_handler = handler;
4964 /* FIXME: implement this, once we have way to remove outputs */
4965}
4966
4967void
Scott Moreau4e072362012-09-29 02:03:11 -06004968output_get_allocation(struct output *output, struct rectangle *base)
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004969{
Scott Moreau4e072362012-09-29 02:03:11 -06004970 struct rectangle allocation = output->allocation;
4971
4972 switch (output->transform) {
4973 case WL_OUTPUT_TRANSFORM_90:
4974 case WL_OUTPUT_TRANSFORM_270:
4975 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
4976 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
4977 /* Swap width and height */
4978 allocation.width = output->allocation.height;
4979 allocation.height = output->allocation.width;
4980 break;
4981 }
4982
4983 *base = allocation;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004984}
4985
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004986struct wl_output *
4987output_get_wl_output(struct output *output)
4988{
4989 return output->output;
4990}
4991
Ander Conselvan de Oliveira15256f62012-11-30 17:34:25 +02004992enum wl_output_transform
4993output_get_transform(struct output *output)
4994{
4995 return output->transform;
4996}
4997
Alexander Larssonafd319a2013-05-22 14:41:27 +02004998uint32_t
4999output_get_scale(struct output *output)
5000{
5001 return output->scale;
5002}
5003
Jason Ekstrand738715d2014-04-02 19:53:50 -05005004const char *
5005output_get_make(struct output *output)
5006{
5007 return output->make;
5008}
5009
5010const char *
5011output_get_model(struct output *output)
5012{
5013 return output->model;
5014}
5015
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05005016static void
Daniel Stone97f68542012-05-30 16:32:01 +01005017fini_xkb(struct input *input)
5018{
5019 xkb_state_unref(input->xkb.state);
Ran Benita2e1968f2014-08-19 23:59:51 +03005020 xkb_keymap_unref(input->xkb.keymap);
Daniel Stone97f68542012-05-30 16:32:01 +01005021}
5022
Jasper St. Pierre47f10432013-11-12 14:37:20 -05005023#define MIN(a,b) ((a) < (b) ? a : b)
Rob Bradford08031182013-08-13 20:11:03 +01005024
Daniel Stone97f68542012-05-30 16:32:01 +01005025static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04005026display_add_input(struct display *d, uint32_t id)
Kristian Høgsberg808fd412010-07-20 17:06:19 -04005027{
5028 struct input *input;
5029
Kristian Høgsbergadcd54b2013-08-15 14:17:13 -07005030 input = xzalloc(sizeof *input);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04005031 input->display = d;
Rob Bradford08031182013-08-13 20:11:03 +01005032 input->seat = wl_registry_bind(d->registry, id, &wl_seat_interface,
Jonny Lamb06959082014-08-12 14:58:27 +02005033 MIN(d->seat_version, 4));
Rusty Lynch1084da52013-08-15 09:10:08 -07005034 input->touch_focus = NULL;
Kristian Høgsberg808fd412010-07-20 17:06:19 -04005035 input->pointer_focus = NULL;
5036 input->keyboard_focus = NULL;
Rusty Lynch041815a2013-08-08 21:20:38 -07005037 wl_list_init(&input->touch_point_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04005038 wl_list_insert(d->input_list.prev, &input->link);
5039
Daniel Stone37816df2012-05-16 18:45:18 +01005040 wl_seat_add_listener(input->seat, &seat_listener, input);
5041 wl_seat_set_user_data(input->seat, input);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04005042
Jason Ekstranda669bd52014-04-02 19:53:51 -05005043 if (d->data_device_manager) {
5044 input->data_device =
5045 wl_data_device_manager_get_data_device(d->data_device_manager,
5046 input->seat);
5047 wl_data_device_add_listener(input->data_device,
5048 &data_device_listener,
5049 input);
5050 }
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03005051
5052 input->pointer_surface = wl_compositor_create_surface(d->compositor);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04005053
Jonny Lamb06959082014-08-12 14:58:27 +02005054 set_repeat_info(input, 40, 400);
5055
Kristian Høgsberg8b19c642012-06-20 18:00:13 -04005056 input->repeat_timer_fd = timerfd_create(CLOCK_MONOTONIC,
5057 TFD_CLOEXEC | TFD_NONBLOCK);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04005058 input->repeat_task.run = keyboard_repeat_func;
5059 display_watch_fd(d, input->repeat_timer_fd,
5060 EPOLLIN, &input->repeat_task);
Kristian Høgsberg58eec362011-01-19 14:27:42 -05005061}
5062
Kristian Høgsberg808fd412010-07-20 17:06:19 -04005063static void
Pekka Paalanene1207c72011-12-16 12:02:09 +02005064input_destroy(struct input *input)
5065{
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05005066 input_remove_keyboard_focus(input);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04005067 input_remove_pointer_focus(input);
Pekka Paalanene1207c72011-12-16 12:02:09 +02005068
5069 if (input->drag_offer)
5070 data_offer_destroy(input->drag_offer);
5071
5072 if (input->selection_offer)
5073 data_offer_destroy(input->selection_offer);
5074
Jason Ekstranda669bd52014-04-02 19:53:51 -05005075 if (input->data_device)
5076 wl_data_device_destroy(input->data_device);
Rob Bradford08031182013-08-13 20:11:03 +01005077
5078 if (input->display->seat_version >= 3) {
5079 if (input->pointer)
5080 wl_pointer_release(input->pointer);
5081 if (input->keyboard)
5082 wl_keyboard_release(input->keyboard);
5083 }
5084
Daniel Stone97f68542012-05-30 16:32:01 +01005085 fini_xkb(input);
5086
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03005087 wl_surface_destroy(input->pointer_surface);
5088
Pekka Paalanene1207c72011-12-16 12:02:09 +02005089 wl_list_remove(&input->link);
Daniel Stone37816df2012-05-16 18:45:18 +01005090 wl_seat_destroy(input->seat);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04005091 close(input->repeat_timer_fd);
Pekka Paalanene1207c72011-12-16 12:02:09 +02005092 free(input);
5093}
5094
5095static void
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02005096init_workspace_manager(struct display *d, uint32_t id)
5097{
5098 d->workspace_manager =
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005099 wl_registry_bind(d->registry, id,
5100 &workspace_manager_interface, 1);
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02005101 if (d->workspace_manager != NULL)
5102 workspace_manager_add_listener(d->workspace_manager,
5103 &workspace_manager_listener,
5104 d);
5105}
5106
5107static void
Tomeu Vizosobee45a12013-08-06 20:05:54 +02005108shm_format(void *data, struct wl_shm *wl_shm, uint32_t format)
5109{
5110 struct display *d = data;
5111
5112 if (format == WL_SHM_FORMAT_RGB565)
5113 d->has_rgb565 = 1;
5114}
5115
5116struct wl_shm_listener shm_listener = {
5117 shm_format
5118};
5119
5120static void
Kristian Høgsberg2bff94e2014-02-11 12:22:51 -08005121xdg_shell_ping(void *data, struct xdg_shell *shell, uint32_t serial)
5122{
5123 xdg_shell_pong(shell, serial);
5124}
5125
5126static const struct xdg_shell_listener xdg_shell_listener = {
5127 xdg_shell_ping,
5128};
5129
Pekka Paalanen71182ae2014-08-21 17:47:20 +03005130#define XDG_VERSION 4 /* The version of xdg-shell that we implement */
Kristian Høgsberg239902b2014-02-11 13:50:08 -08005131#ifdef static_assert
5132static_assert(XDG_VERSION == XDG_SHELL_VERSION_CURRENT,
5133 "Interface version doesn't match implementation version");
5134#endif
5135
Kristian Høgsberg2bff94e2014-02-11 12:22:51 -08005136static void
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005137registry_handle_global(void *data, struct wl_registry *registry, uint32_t id,
5138 const char *interface, uint32_t version)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005139{
5140 struct display *d = data;
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005141 struct global *global;
5142
Brian Lovinbc919262013-08-07 15:34:59 -07005143 global = xmalloc(sizeof *global);
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005144 global->name = id;
5145 global->interface = strdup(interface);
5146 global->version = version;
5147 wl_list_insert(d->global_list.prev, &global->link);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005148
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04005149 if (strcmp(interface, "wl_compositor") == 0) {
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005150 d->compositor = wl_registry_bind(registry, id,
Jason Ekstrandd27cb092013-06-26 22:20:31 -05005151 &wl_compositor_interface, 3);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04005152 } else if (strcmp(interface, "wl_output") == 0) {
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05005153 display_add_output(d, id);
Daniel Stone37816df2012-05-16 18:45:18 +01005154 } else if (strcmp(interface, "wl_seat") == 0) {
Rob Bradford08031182013-08-13 20:11:03 +01005155 d->seat_version = version;
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04005156 display_add_input(d, id);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04005157 } else if (strcmp(interface, "wl_shm") == 0) {
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005158 d->shm = wl_registry_bind(registry, id, &wl_shm_interface, 1);
Tomeu Vizosobee45a12013-08-06 20:05:54 +02005159 wl_shm_add_listener(d->shm, &shm_listener, d);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04005160 } else if (strcmp(interface, "wl_data_device_manager") == 0) {
5161 d->data_device_manager =
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005162 wl_registry_bind(registry, id,
5163 &wl_data_device_manager_interface, 1);
Jasper St. Pierre0790e392013-12-09 14:58:00 -05005164 } else if (strcmp(interface, "xdg_shell") == 0) {
5165 d->xdg_shell = wl_registry_bind(registry, id,
5166 &xdg_shell_interface, 1);
Kristian Høgsberg239902b2014-02-11 13:50:08 -08005167 xdg_shell_use_unstable_version(d->xdg_shell, XDG_VERSION);
Kristian Høgsberg2bff94e2014-02-11 12:22:51 -08005168 xdg_shell_add_listener(d->xdg_shell, &xdg_shell_listener, d);
Scott Moreau7a1b32a2012-05-27 14:25:02 -06005169 } else if (strcmp(interface, "text_cursor_position") == 0) {
5170 d->text_cursor_position =
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005171 wl_registry_bind(registry, id,
5172 &text_cursor_position_interface, 1);
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02005173 } else if (strcmp(interface, "workspace_manager") == 0) {
5174 init_workspace_manager(d, id);
Pekka Paalanen35e82632013-04-25 13:57:48 +03005175 } else if (strcmp(interface, "wl_subcompositor") == 0) {
5176 d->subcompositor =
5177 wl_registry_bind(registry, id,
5178 &wl_subcompositor_interface, 1);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005179 }
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005180
5181 if (d->global_handler)
5182 d->global_handler(d, id, interface, version, d->user_data);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005183}
5184
Pekka Paalanen0eab05d2013-01-22 14:53:55 +02005185static void
5186registry_handle_global_remove(void *data, struct wl_registry *registry,
5187 uint32_t name)
5188{
5189 struct display *d = data;
5190 struct global *global;
5191 struct global *tmp;
5192
5193 wl_list_for_each_safe(global, tmp, &d->global_list, link) {
5194 if (global->name != name)
5195 continue;
5196
Xiong Zhang83d8ee72013-10-23 13:58:35 +08005197 if (strcmp(global->interface, "wl_output") == 0)
5198 display_destroy_output(d, name);
5199
5200 /* XXX: Should destroy remaining bound globals */
5201
5202 if (d->global_handler_remove)
5203 d->global_handler_remove(d, name, global->interface,
5204 global->version, d->user_data);
5205
Pekka Paalanen0eab05d2013-01-22 14:53:55 +02005206 wl_list_remove(&global->link);
5207 free(global->interface);
5208 free(global);
5209 }
5210}
5211
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005212void *
5213display_bind(struct display *display, uint32_t name,
5214 const struct wl_interface *interface, uint32_t version)
5215{
5216 return wl_registry_bind(display->registry, name, interface, version);
5217}
5218
5219static const struct wl_registry_listener registry_listener = {
Pekka Paalanen0eab05d2013-01-22 14:53:55 +02005220 registry_handle_global,
5221 registry_handle_global_remove
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005222};
5223
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005224#ifdef HAVE_CAIRO_EGL
Yuval Fledel45568f62010-12-06 09:18:12 -05005225static int
Kristian Høgsberg297c6312011-02-04 14:11:33 -05005226init_egl(struct display *d)
Yuval Fledel45568f62010-12-06 09:18:12 -05005227{
5228 EGLint major, minor;
Benjamin Franzke6693ac22011-02-10 12:04:30 +01005229 EGLint n;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -04005230
Rob Clark6396ed32012-03-11 19:48:41 -05005231#ifdef USE_CAIRO_GLESV2
5232# define GL_BIT EGL_OPENGL_ES2_BIT
5233#else
5234# define GL_BIT EGL_OPENGL_BIT
5235#endif
5236
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05005237 static const EGLint argb_cfg_attribs[] = {
Kristian Høgsberg31467562012-10-16 15:31:31 -04005238 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01005239 EGL_RED_SIZE, 1,
5240 EGL_GREEN_SIZE, 1,
5241 EGL_BLUE_SIZE, 1,
5242 EGL_ALPHA_SIZE, 1,
5243 EGL_DEPTH_SIZE, 1,
Rob Clark6396ed32012-03-11 19:48:41 -05005244 EGL_RENDERABLE_TYPE, GL_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01005245 EGL_NONE
5246 };
Yuval Fledel45568f62010-12-06 09:18:12 -05005247
Kristian Høgsberg2d574392012-01-18 14:50:58 -05005248#ifdef USE_CAIRO_GLESV2
5249 static const EGLint context_attribs[] = {
5250 EGL_CONTEXT_CLIENT_VERSION, 2,
5251 EGL_NONE
5252 };
5253 EGLint api = EGL_OPENGL_ES_API;
5254#else
5255 EGLint *context_attribs = NULL;
5256 EGLint api = EGL_OPENGL_API;
5257#endif
5258
Kristian Høgsberg91342c62011-04-14 14:44:58 -04005259 d->dpy = eglGetDisplay(d->display);
Yuval Fledel45568f62010-12-06 09:18:12 -05005260 if (!eglInitialize(d->dpy, &major, &minor)) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005261 fprintf(stderr, "failed to initialize EGL\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05005262 return -1;
5263 }
5264
Kristian Høgsberg2d574392012-01-18 14:50:58 -05005265 if (!eglBindAPI(api)) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005266 fprintf(stderr, "failed to bind EGL client API\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05005267 return -1;
5268 }
5269
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05005270 if (!eglChooseConfig(d->dpy, argb_cfg_attribs,
5271 &d->argb_config, 1, &n) || n != 1) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005272 fprintf(stderr, "failed to choose argb EGL config\n");
Benjamin Franzke6693ac22011-02-10 12:04:30 +01005273 return -1;
5274 }
5275
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05005276 d->argb_ctx = eglCreateContext(d->dpy, d->argb_config,
Kristian Høgsberg2d574392012-01-18 14:50:58 -05005277 EGL_NO_CONTEXT, context_attribs);
Benjamin Franzke0c991632011-09-27 21:57:31 +02005278 if (d->argb_ctx == NULL) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005279 fprintf(stderr, "failed to create EGL context\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05005280 return -1;
5281 }
5282
Benjamin Franzke0c991632011-09-27 21:57:31 +02005283 d->argb_device = cairo_egl_device_create(d->dpy, d->argb_ctx);
5284 if (cairo_device_status(d->argb_device) != CAIRO_STATUS_SUCCESS) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005285 fprintf(stderr, "failed to get cairo EGL argb device\n");
Benjamin Franzke0c991632011-09-27 21:57:31 +02005286 return -1;
5287 }
Yuval Fledel45568f62010-12-06 09:18:12 -05005288
5289 return 0;
5290}
5291
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005292static void
5293fini_egl(struct display *display)
5294{
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005295 cairo_device_destroy(display->argb_device);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005296
5297 eglMakeCurrent(display->dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
5298 EGL_NO_CONTEXT);
5299
5300 eglTerminate(display->dpy);
5301 eglReleaseThread();
5302}
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005303#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005304
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005305static void
Pekka Paalanen3cbb0892012-11-19 17:16:01 +02005306init_dummy_surface(struct display *display)
5307{
5308 int len;
5309 void *data;
5310
5311 len = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, 1);
5312 data = malloc(len);
5313 display->dummy_surface =
5314 cairo_image_surface_create_for_data(data, CAIRO_FORMAT_ARGB32,
5315 1, 1, len);
5316 display->dummy_surface_data = data;
5317}
5318
5319static void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005320handle_display_data(struct task *task, uint32_t events)
5321{
5322 struct display *display =
5323 container_of(task, struct display, display_task);
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005324 struct epoll_event ep;
5325 int ret;
U. Artie Eoff44874d92012-10-02 21:12:35 -07005326
5327 display->display_fd_events = events;
5328
5329 if (events & EPOLLERR || events & EPOLLHUP) {
5330 display_exit(display);
5331 return;
5332 }
5333
Kristian Høgsberga17f7a12012-10-16 13:16:10 -04005334 if (events & EPOLLIN) {
5335 ret = wl_display_dispatch(display->display);
5336 if (ret == -1) {
5337 display_exit(display);
5338 return;
5339 }
5340 }
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005341
5342 if (events & EPOLLOUT) {
5343 ret = wl_display_flush(display->display);
5344 if (ret == 0) {
5345 ep.events = EPOLLIN | EPOLLERR | EPOLLHUP;
5346 ep.data.ptr = &display->display_task;
5347 epoll_ctl(display->epoll_fd, EPOLL_CTL_MOD,
5348 display->display_fd, &ep);
5349 } else if (ret == -1 && errno != EAGAIN) {
5350 display_exit(display);
5351 return;
5352 }
5353 }
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005354}
5355
Kristian Høgsberg2e437202013-04-16 11:21:48 -04005356static void
5357log_handler(const char *format, va_list args)
5358{
5359 vfprintf(stderr, format, args);
5360}
5361
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005362struct display *
Kristian Høgsberg4172f662013-02-20 15:27:49 -05005363display_create(int *argc, char *argv[])
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005364{
5365 struct display *d;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04005366
Kristian Høgsberg2e437202013-04-16 11:21:48 -04005367 wl_log_set_handler_client(log_handler);
5368
Peter Huttererf3d62272013-08-08 11:57:05 +10005369 d = zalloc(sizeof *d);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005370 if (d == NULL)
5371 return NULL;
5372
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05005373 d->display = wl_display_connect(NULL);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04005374 if (d->display == NULL) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005375 fprintf(stderr, "failed to connect to Wayland display: %m\n");
Rob Bradfordf0a1af92013-01-10 19:48:54 +00005376 free(d);
Kristian Høgsberg7824d812010-06-08 14:59:44 -04005377 return NULL;
5378 }
5379
Rob Bradford5ab9c752013-07-26 16:29:43 +01005380 d->xkb_context = xkb_context_new(0);
5381 if (d->xkb_context == NULL) {
5382 fprintf(stderr, "Failed to create XKB context\n");
5383 free(d);
5384 return NULL;
5385 }
5386
Pekka Paalanen647f2bf2012-05-30 15:53:43 +03005387 d->epoll_fd = os_epoll_create_cloexec();
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005388 d->display_fd = wl_display_get_fd(d->display);
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005389 d->display_task.run = handle_display_data;
U. Artie Eoff44874d92012-10-02 21:12:35 -07005390 display_watch_fd(d, d->display_fd, EPOLLIN | EPOLLERR | EPOLLHUP,
5391 &d->display_task);
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005392
5393 wl_list_init(&d->deferred_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04005394 wl_list_init(&d->input_list);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05005395 wl_list_init(&d->output_list);
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005396 wl_list_init(&d->global_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04005397
Jonas Ådahlf77beeb2012-10-08 22:49:04 +02005398 d->workspace = 0;
5399 d->workspace_count = 1;
5400
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005401 d->registry = wl_display_get_registry(d->display);
5402 wl_registry_add_listener(d->registry, &registry_listener, d);
Pekka Paalanen33a68ea2013-02-14 12:18:00 +02005403
5404 if (wl_display_dispatch(d->display) < 0) {
5405 fprintf(stderr, "Failed to process Wayland connection: %m\n");
5406 return NULL;
5407 }
5408
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005409#ifdef HAVE_CAIRO_EGL
Pekka Paalanen4e106542013-02-14 11:49:12 +02005410 if (init_egl(d) < 0)
5411 fprintf(stderr, "EGL does not seem to work, "
5412 "falling back to software rendering and wl_shm.\n");
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005413#endif
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -05005414
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03005415 create_cursors(d);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04005416
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04005417 d->theme = theme_create();
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04005418
Kristian Høgsberg478d9262010-06-08 20:34:11 -04005419 wl_list_init(&d->window_list);
5420
Pekka Paalanen3cbb0892012-11-19 17:16:01 +02005421 init_dummy_surface(d);
5422
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005423 return d;
5424}
5425
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02005426static void
5427display_destroy_outputs(struct display *display)
5428{
5429 struct output *tmp;
5430 struct output *output;
5431
5432 wl_list_for_each_safe(output, tmp, &display->output_list, link)
5433 output_destroy(output);
5434}
5435
Pekka Paalanene1207c72011-12-16 12:02:09 +02005436static void
5437display_destroy_inputs(struct display *display)
5438{
5439 struct input *tmp;
5440 struct input *input;
5441
5442 wl_list_for_each_safe(input, tmp, &display->input_list, link)
5443 input_destroy(input);
5444}
5445
Pekka Paalanen999c5b52011-11-30 10:52:38 +02005446void
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005447display_destroy(struct display *display)
5448{
Pekka Paalanenc2052982011-12-16 11:41:32 +02005449 if (!wl_list_empty(&display->window_list))
U. Artie Eoff44874d92012-10-02 21:12:35 -07005450 fprintf(stderr, "toytoolkit warning: %d windows exist.\n",
5451 wl_list_length(&display->window_list));
Pekka Paalanenc2052982011-12-16 11:41:32 +02005452
5453 if (!wl_list_empty(&display->deferred_list))
5454 fprintf(stderr, "toytoolkit warning: deferred tasks exist.\n");
5455
Pekka Paalanen3cbb0892012-11-19 17:16:01 +02005456 cairo_surface_destroy(display->dummy_surface);
5457 free(display->dummy_surface_data);
5458
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02005459 display_destroy_outputs(display);
Pekka Paalanene1207c72011-12-16 12:02:09 +02005460 display_destroy_inputs(display);
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02005461
Daniel Stone97f68542012-05-30 16:32:01 +01005462 xkb_context_unref(display->xkb_context);
Pekka Paalanen325bb602011-12-19 10:31:45 +02005463
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04005464 theme_destroy(display->theme);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03005465 destroy_cursors(display);
Pekka Paalanen325bb602011-12-19 10:31:45 +02005466
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005467#ifdef HAVE_CAIRO_EGL
Kristian Høgsberg4e51b442013-01-07 15:47:14 -05005468 if (display->argb_device)
5469 fini_egl(display);
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005470#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005471
Pekka Paalanen35e82632013-04-25 13:57:48 +03005472 if (display->subcompositor)
5473 wl_subcompositor_destroy(display->subcompositor);
5474
Jasper St. Pierre0790e392013-12-09 14:58:00 -05005475 if (display->xdg_shell)
5476 xdg_shell_destroy(display->xdg_shell);
Pekka Paalanenc2052982011-12-16 11:41:32 +02005477
5478 if (display->shm)
5479 wl_shm_destroy(display->shm);
5480
5481 if (display->data_device_manager)
5482 wl_data_device_manager_destroy(display->data_device_manager);
5483
5484 wl_compositor_destroy(display->compositor);
Pekka Paalanenaac1c132012-12-04 16:01:15 +02005485 wl_registry_destroy(display->registry);
Pekka Paalanenc2052982011-12-16 11:41:32 +02005486
5487 close(display->epoll_fd);
5488
U. Artie Eoff44874d92012-10-02 21:12:35 -07005489 if (!(display->display_fd_events & EPOLLERR) &&
5490 !(display->display_fd_events & EPOLLHUP))
5491 wl_display_flush(display->display);
5492
Kristian Høgsbergfcfc83f2012-02-28 14:29:19 -05005493 wl_display_disconnect(display->display);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005494 free(display);
5495}
5496
5497void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02005498display_set_user_data(struct display *display, void *data)
5499{
5500 display->user_data = data;
5501}
5502
5503void *
5504display_get_user_data(struct display *display)
5505{
5506 return display->user_data;
5507}
5508
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -04005509struct wl_display *
5510display_get_display(struct display *display)
5511{
5512 return display->display;
5513}
5514
Kristian Høgsbergb20b0092013-08-15 11:54:03 -07005515int
5516display_has_subcompositor(struct display *display)
5517{
5518 if (display->subcompositor)
5519 return 1;
5520
5521 wl_display_roundtrip(display->display);
5522
5523 return display->subcompositor != NULL;
5524}
5525
Kristian Høgsberg1cc5ac32013-04-11 21:47:41 -04005526cairo_device_t *
5527display_get_cairo_device(struct display *display)
5528{
5529 return display->argb_device;
5530}
5531
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05005532struct output *
5533display_get_output(struct display *display)
5534{
5535 return container_of(display->output_list.next, struct output, link);
5536}
5537
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005538struct wl_compositor *
5539display_get_compositor(struct display *display)
5540{
5541 return display->compositor;
Kristian Høgsberg61017b12008-11-02 18:51:48 -05005542}
Kristian Høgsberg7824d812010-06-08 14:59:44 -04005543
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04005544uint32_t
5545display_get_serial(struct display *display)
5546{
5547 return display->serial;
5548}
5549
Kristian Høgsberg7824d812010-06-08 14:59:44 -04005550EGLDisplay
5551display_get_egl_display(struct display *d)
5552{
5553 return d->dpy;
5554}
5555
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04005556struct wl_data_source *
5557display_create_data_source(struct display *display)
5558{
Jason Ekstranda669bd52014-04-02 19:53:51 -05005559 if (display->data_device_manager)
5560 return wl_data_device_manager_create_data_source(display->data_device_manager);
5561 else
5562 return NULL;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04005563}
5564
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005565EGLConfig
Benjamin Franzke0c991632011-09-27 21:57:31 +02005566display_get_argb_egl_config(struct display *d)
5567{
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05005568 return d->argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +02005569}
5570
Benjamin Franzke1a89f282011-10-07 09:33:06 +02005571int
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005572display_acquire_window_surface(struct display *display,
5573 struct window *window,
5574 EGLContext ctx)
5575{
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02005576 struct surface *surface = window->main_surface;
5577
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02005578 if (surface->buffer_type != WINDOW_BUFFER_TYPE_EGL_WINDOW)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02005579 return -1;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005580
Pekka Paalanen6f41b072013-02-20 13:39:17 +02005581 widget_get_cairo_surface(window->main_surface->widget);
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02005582 return surface->toysurface->acquire(surface->toysurface, ctx);
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005583}
5584
5585void
Benjamin Franzke0c991632011-09-27 21:57:31 +02005586display_release_window_surface(struct display *display,
5587 struct window *window)
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005588{
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02005589 struct surface *surface = window->main_surface;
5590
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02005591 if (surface->buffer_type != WINDOW_BUFFER_TYPE_EGL_WINDOW)
Benjamin Franzke0c991632011-09-27 21:57:31 +02005592 return;
5593
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02005594 surface->toysurface->release(surface->toysurface);
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005595}
5596
5597void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005598display_defer(struct display *display, struct task *task)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04005599{
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005600 wl_list_insert(&display->deferred_list, &task->link);
5601}
5602
5603void
5604display_watch_fd(struct display *display,
5605 int fd, uint32_t events, struct task *task)
5606{
5607 struct epoll_event ep;
5608
5609 ep.events = events;
5610 ep.data.ptr = task;
5611 epoll_ctl(display->epoll_fd, EPOLL_CTL_ADD, fd, &ep);
5612}
5613
5614void
Dima Ryazanova85292e2012-11-29 00:27:09 -08005615display_unwatch_fd(struct display *display, int fd)
5616{
5617 epoll_ctl(display->epoll_fd, EPOLL_CTL_DEL, fd, NULL);
5618}
5619
5620void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005621display_run(struct display *display)
5622{
5623 struct task *task;
5624 struct epoll_event ep[16];
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005625 int i, count, ret;
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005626
Pekka Paalanen826d7952011-12-15 10:14:07 +02005627 display->running = 1;
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005628 while (1) {
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005629 while (!wl_list_empty(&display->deferred_list)) {
Tiago Vignatti6f093382012-09-27 14:46:23 +03005630 task = container_of(display->deferred_list.prev,
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005631 struct task, link);
5632 wl_list_remove(&task->link);
5633 task->run(task, 0);
5634 }
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05005635
Kristian Høgsbergfeb3c1d2012-10-15 12:56:11 -04005636 wl_display_dispatch_pending(display->display);
5637
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05005638 if (!display->running)
5639 break;
5640
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005641 ret = wl_display_flush(display->display);
5642 if (ret < 0 && errno == EAGAIN) {
5643 ep[0].events =
5644 EPOLLIN | EPOLLOUT | EPOLLERR | EPOLLHUP;
5645 ep[0].data.ptr = &display->display_task;
5646
5647 epoll_ctl(display->epoll_fd, EPOLL_CTL_MOD,
5648 display->display_fd, &ep[0]);
5649 } else if (ret < 0) {
5650 break;
5651 }
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05005652
5653 count = epoll_wait(display->epoll_fd,
5654 ep, ARRAY_LENGTH(ep), -1);
5655 for (i = 0; i < count; i++) {
5656 task = ep[i].data.ptr;
5657 task->run(task, ep[i].events);
5658 }
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005659 }
Kristian Høgsberg7824d812010-06-08 14:59:44 -04005660}
Pekka Paalanen826d7952011-12-15 10:14:07 +02005661
5662void
5663display_exit(struct display *display)
5664{
5665 display->running = 0;
5666}
Jan Arne Petersencd997062012-11-18 19:06:44 +01005667
5668void
5669keysym_modifiers_add(struct wl_array *modifiers_map,
5670 const char *name)
5671{
5672 size_t len = strlen(name) + 1;
5673 char *p;
5674
5675 p = wl_array_add(modifiers_map, len);
5676
5677 if (p == NULL)
5678 return;
5679
5680 strncpy(p, name, len);
5681}
5682
5683static xkb_mod_index_t
5684keysym_modifiers_get_index(struct wl_array *modifiers_map,
5685 const char *name)
5686{
5687 xkb_mod_index_t index = 0;
5688 char *p = modifiers_map->data;
5689
5690 while ((const char *)p < (const char *)(modifiers_map->data + modifiers_map->size)) {
5691 if (strcmp(p, name) == 0)
5692 return index;
5693
5694 index++;
5695 p += strlen(p) + 1;
5696 }
5697
5698 return XKB_MOD_INVALID;
5699}
5700
5701xkb_mod_mask_t
5702keysym_modifiers_get_mask(struct wl_array *modifiers_map,
5703 const char *name)
5704{
5705 xkb_mod_index_t index = keysym_modifiers_get_index(modifiers_map, name);
5706
5707 if (index == XKB_MOD_INVALID)
5708 return XKB_MOD_INVALID;
5709
5710 return 1 << index;
5711}
Kristian Høgsbergce278412013-07-25 15:20:20 -07005712
5713void *
5714fail_on_null(void *p)
5715{
5716 if (p == NULL) {
Peter Hutterer3ca59d32013-08-08 17:13:47 +10005717 fprintf(stderr, "%s: out of memory\n", program_invocation_short_name);
Kristian Høgsbergce278412013-07-25 15:20:20 -07005718 exit(EXIT_FAILURE);
5719 }
5720
5721 return p;
5722}
5723
5724void *
5725xmalloc(size_t s)
5726{
5727 return fail_on_null(malloc(s));
5728}
5729
Peter Huttererf3d62272013-08-08 11:57:05 +10005730void *
5731xzalloc(size_t s)
5732{
5733 return fail_on_null(zalloc(s));
5734}
5735
Kristian Høgsbergce278412013-07-25 15:20:20 -07005736char *
5737xstrdup(const char *s)
5738{
5739 return fail_on_null(strdup(s));
5740}
Kristian Høgsberg700d6ad2014-01-09 23:45:18 -08005741
5742void *
5743xrealloc(char *p, size_t s)
5744{
5745 return fail_on_null(realloc(p, s));
5746}