blob: 43761ca69313e194eb1a2581debe8adbd67adeb0 [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"
Scott Moreau7a1b32a2012-05-27 14:25:02 -060068#include "text-cursor-position-client-protocol.h"
Jonas Ådahl14c92ff2012-08-29 22:13:02 +020069#include "workspaces-client-protocol.h"
Pekka Paalanen647f2bf2012-05-30 15:53:43 +030070#include "../shared/os-compatibility.h"
Kristian Høgsberg2f2cfae2008-11-08 22:46:30 -050071
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -050072#include "window.h"
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -050073
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -070074struct shm_pool;
Ander Conselvan de Oliveira1493d2a2012-05-03 12:29:46 +030075
Kristian Høgsbergfa80e112012-10-10 21:34:26 -040076struct global {
77 uint32_t name;
78 char *interface;
79 uint32_t version;
80 struct wl_list link;
81};
82
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -050083struct display {
Kristian Høgsberg40979232008-11-25 22:40:39 -050084 struct wl_display *display;
Kristian Høgsbergfa80e112012-10-10 21:34:26 -040085 struct wl_registry *registry;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -050086 struct wl_compositor *compositor;
Pekka Paalanen35e82632013-04-25 13:57:48 +030087 struct wl_subcompositor *subcompositor;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -040088 struct wl_shell *shell;
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;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -040093 EGLDisplay dpy;
Kristian Høgsberg8e81df42012-01-11 14:24:46 -050094 EGLConfig argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +020095 EGLContext argb_ctx;
Benjamin Franzke0c991632011-09-27 21:57:31 +020096 cairo_device_t *argb_device;
Kristian Høgsbergeae5de72012-04-11 22:42:15 -040097 uint32_t serial;
Kristian Høgsberg3a696272011-09-14 17:33:48 -040098
99 int display_fd;
U. Artie Eoff44874d92012-10-02 21:12:35 -0700100 uint32_t display_fd_events;
Kristian Høgsberg3a696272011-09-14 17:33:48 -0400101 struct task display_task;
102
103 int epoll_fd;
104 struct wl_list deferred_list;
105
Pekka Paalanen826d7952011-12-15 10:14:07 +0200106 int running;
107
Kristian Høgsbergfa80e112012-10-10 21:34:26 -0400108 struct wl_list global_list;
Kristian Høgsberg478d9262010-06-08 20:34:11 -0400109 struct wl_list window_list;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400110 struct wl_list input_list;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500111 struct wl_list output_list;
Kristian Høgsberg291c69c2012-05-15 22:12:54 -0400112
Kristian Høgsberg5adb4802012-05-15 22:25:28 -0400113 struct theme *theme;
Kristian Høgsberg70163132012-05-08 15:55:39 -0400114
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +0300115 struct wl_cursor_theme *cursor_theme;
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +0300116 struct wl_cursor **cursors;
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -0400117
Pekka Paalanen999c5b52011-11-30 10:52:38 +0200118 display_output_handler_t output_configure_handler;
Kristian Høgsbergfa80e112012-10-10 21:34:26 -0400119 display_global_handler_t global_handler;
Xiong Zhang83d8ee72013-10-23 13:58:35 +0800120 display_global_handler_t global_handler_remove;
Pekka Paalanen999c5b52011-11-30 10:52:38 +0200121
122 void *user_data;
Daniel Stone97f68542012-05-30 16:32:01 +0100123
124 struct xkb_context *xkb_context;
Jonas Ådahl14c92ff2012-08-29 22:13:02 +0200125
126 uint32_t workspace;
127 uint32_t workspace_count;
Pekka Paalanen3cbb0892012-11-19 17:16:01 +0200128
129 /* A hack to get text extents for tooltips */
130 cairo_surface_t *dummy_surface;
131 void *dummy_surface_data;
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200132
133 int has_rgb565;
Rob Bradford08031182013-08-13 20:11:03 +0100134 int seat_version;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -0500135};
136
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400137enum {
Kristian Høgsberg407ef642012-04-27 17:17:12 -0400138 TYPE_NONE,
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400139 TYPE_TOPLEVEL,
Kristian Høgsbergf8ab46e2011-09-08 16:56:38 -0400140 TYPE_FULLSCREEN,
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -0500141 TYPE_MAXIMIZED,
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400142 TYPE_TRANSIENT,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -0500143 TYPE_MENU,
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400144 TYPE_CUSTOM
145};
Rob Bradford7507b572012-05-15 17:55:34 +0100146
147struct window_output {
148 struct output *output;
149 struct wl_list link;
150};
151
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200152struct toysurface {
153 /*
154 * Prepare the surface for drawing. Makes sure there is a surface
155 * of the right size available for rendering, and returns it.
156 * dx,dy are the x,y of wl_surface.attach.
Alexander Larsson5e9b6522013-05-22 14:41:28 +0200157 * width,height are the new buffer size.
Pekka Paalanenec076692012-11-30 13:37:27 +0200158 * If flags has SURFACE_HINT_RESIZE set, the user is
159 * doing continuous resizing.
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200160 * Returns the Cairo surface to draw to.
161 */
162 cairo_surface_t *(*prepare)(struct toysurface *base, int dx, int dy,
Alexander Larsson1818e312013-05-22 14:41:31 +0200163 int32_t width, int32_t height, uint32_t flags,
Alexander Larssonedddbd12013-05-24 13:09:43 +0200164 enum wl_output_transform buffer_transform, int32_t buffer_scale);
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200165
166 /*
167 * Post the surface to the server, returning the server allocation
168 * rectangle. The Cairo surface from prepare() must be destroyed
169 * after calling this.
170 */
171 void (*swap)(struct toysurface *base,
Alexander Larssonedddbd12013-05-24 13:09:43 +0200172 enum wl_output_transform buffer_transform, int32_t buffer_scale,
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200173 struct rectangle *server_allocation);
174
175 /*
176 * Make the toysurface current with the given EGL context.
177 * Returns 0 on success, and negative of failure.
178 */
179 int (*acquire)(struct toysurface *base, EGLContext ctx);
180
181 /*
182 * Release the toysurface from the EGL context, returning control
183 * to Cairo.
184 */
185 void (*release)(struct toysurface *base);
186
187 /*
188 * Destroy the toysurface, including the Cairo surface, any
189 * backing storage, and the Wayland protocol objects.
190 */
191 void (*destroy)(struct toysurface *base);
192};
193
Pekka Paalanen4e373742013-02-13 16:17:13 +0200194struct surface {
195 struct window *window;
196
197 struct wl_surface *surface;
Pekka Paalanen35e82632013-04-25 13:57:48 +0300198 struct wl_subsurface *subsurface;
199 int synchronized;
200 int synchronized_default;
Pekka Paalanen811ec4f2013-02-13 16:17:14 +0200201 struct toysurface *toysurface;
Pekka Paalanenac95f3e2013-02-13 16:17:17 +0200202 struct widget *widget;
Pekka Paalanen40cb67b2013-04-25 13:57:49 +0300203 int redraw_needed;
204 struct wl_callback *frame_cb;
Pekka Paalanen7ff7a802013-04-25 13:57:50 +0300205 uint32_t last_time;
Pekka Paalanen811ec4f2013-02-13 16:17:14 +0200206
207 struct rectangle allocation;
208 struct rectangle server_allocation;
Pekka Paalanen02bba7c2013-02-13 16:17:15 +0200209
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +0200210 struct wl_region *input_region;
211 struct wl_region *opaque_region;
212
Pekka Paalanen02bba7c2013-02-13 16:17:15 +0200213 enum window_buffer_type buffer_type;
214 enum wl_output_transform buffer_transform;
Alexander Larssonedddbd12013-05-24 13:09:43 +0200215 int32_t buffer_scale;
Pekka Paalanen89dee002013-02-13 16:17:20 +0200216
217 cairo_surface_t *cairo_surface;
Pekka Paalanen35e82632013-04-25 13:57:48 +0300218
219 struct wl_list link;
Pekka Paalanen4e373742013-02-13 16:17:13 +0200220};
221
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -0500222struct window {
223 struct display *display;
Rob Bradford7507b572012-05-15 17:55:34 +0100224 struct wl_list window_output_list;
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -0500225 char *title;
Pekka Paalanen811ec4f2013-02-13 16:17:14 +0200226 struct rectangle saved_allocation;
Kristian Høgsbergd3a19652012-07-20 11:32:51 -0400227 struct rectangle min_allocation;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -0500228 struct rectangle pending_allocation;
Kristian Høgsberg248c1b62011-01-21 18:03:15 -0500229 int x, y;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -0400230 int resize_edges;
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -0400231 int redraw_needed;
Pekka Paalanen40cb67b2013-04-25 13:57:49 +0300232 int redraw_task_scheduled;
Kristian Høgsberg3a696272011-09-14 17:33:48 -0400233 struct task redraw_task;
Kristian Høgsberg42b4f802012-03-26 13:49:29 -0400234 int resize_needed;
Rafal Mielniczukc1a3cd12013-03-11 19:26:56 +0100235 int saved_type;
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -0400236 int type;
Kristian Høgsberg86adef92012-08-13 22:25:53 -0400237 int focus_count;
238
Pekka Paalanen99436862012-11-19 17:15:59 +0200239 int resizing;
Ander Conselvan de Oliveira5403f522012-12-14 13:37:23 -0200240 int fullscreen_method;
MoD063a8822013-03-02 23:43:57 +0000241 int configure_requests;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400242
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200243 enum preferred_format preferred_format;
244
Kristian Høgsberg6e83d582008-12-08 00:01:36 -0500245 window_key_handler_t key_handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -0500246 window_keyboard_focus_handler_t keyboard_focus_handler;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -0400247 window_data_handler_t data_handler;
248 window_drop_handler_t drop_handler;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500249 window_close_handler_t close_handler;
Kristian Høgsberg67ace202012-07-23 21:56:31 -0400250 window_fullscreen_handler_t fullscreen_handler;
Ander Conselvan de Oliveira15256f62012-11-30 17:34:25 +0200251 window_output_handler_t output_handler;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400252
Pekka Paalanen4e373742013-02-13 16:17:13 +0200253 struct surface *main_surface;
254 struct wl_shell_surface *shell_surface;
Pekka Vuorela6e1e3852012-09-17 22:15:57 +0300255
Jason Ekstrand3f66cf92013-10-13 19:08:40 -0500256 struct window_frame *frame;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500257
Pekka Paalanen35e82632013-04-25 13:57:48 +0300258 /* struct surface::link, contains also main_surface */
259 struct wl_list subsurface_list;
260
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -0500261 void *user_data;
Kristian Høgsberg478d9262010-06-08 20:34:11 -0400262 struct wl_list link;
Kristian Høgsberg61017b12008-11-02 18:51:48 -0500263};
264
Kristian Høgsbergc51f7992012-01-08 15:09:53 -0500265struct widget {
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -0500266 struct window *window;
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +0200267 struct surface *surface;
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300268 struct tooltip *tooltip;
Kristian Høgsberg441338c2012-01-10 13:52:34 -0500269 struct wl_list child_list;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400270 struct wl_list link;
271 struct rectangle allocation;
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -0500272 widget_resize_handler_t resize_handler;
273 widget_redraw_handler_t redraw_handler;
Kristian Høgsbergee143232012-01-09 08:42:24 -0500274 widget_enter_handler_t enter_handler;
275 widget_leave_handler_t leave_handler;
Kristian Høgsberg04e98342012-01-09 09:36:16 -0500276 widget_motion_handler_t motion_handler;
Kristian Høgsberga8a0db32012-01-09 11:12:05 -0500277 widget_button_handler_t button_handler;
Rusty Lynch041815a2013-08-08 21:20:38 -0700278 widget_touch_down_handler_t touch_down_handler;
279 widget_touch_up_handler_t touch_up_handler;
280 widget_touch_motion_handler_t touch_motion_handler;
281 widget_touch_frame_handler_t touch_frame_handler;
282 widget_touch_cancel_handler_t touch_cancel_handler;
Philipp Brüschweiler7e0cc542012-08-14 11:02:41 +0200283 widget_axis_handler_t axis_handler;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400284 void *user_data;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -0500285 int opaque;
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300286 int tooltip_count;
Kristian Høgsbergbf74d522012-11-30 14:54:35 -0500287 int default_cursor;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -0400288};
289
Rusty Lynch041815a2013-08-08 21:20:38 -0700290struct touch_point {
291 int32_t id;
292 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
337 struct task repeat_task;
338 int repeat_timer_fd;
339 uint32_t repeat_sym;
340 uint32_t repeat_key;
341 uint32_t repeat_time;
Kristian Høgsberg808fd412010-07-20 17:06:19 -0400342};
343
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500344struct output {
345 struct display *display;
346 struct wl_output *output;
Xiong Zhang83d8ee72013-10-23 13:58:35 +0800347 uint32_t server_output_id;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500348 struct rectangle allocation;
349 struct wl_list link;
Scott Moreau4e072362012-09-29 02:03:11 -0600350 int transform;
Alexander Larssonafd319a2013-05-22 14:41:27 +0200351 int scale;
Pekka Paalanen999c5b52011-11-30 10:52:38 +0200352
353 display_output_handler_t destroy_handler;
354 void *user_data;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -0500355};
356
Jason Ekstrand3f66cf92013-10-13 19:08:40 -0500357struct window_frame {
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500358 struct widget *widget;
359 struct widget *child;
Jason Ekstrand3f66cf92013-10-13 19:08:40 -0500360 struct frame *frame;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -0500361};
362
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500363struct menu {
364 struct window *window;
Jasper St. Pierrebf175902013-11-12 20:19:58 -0500365 struct window *parent;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -0500366 struct widget *widget;
Kristian Høgsberg831dd522012-01-10 23:46:33 -0500367 struct input *input;
Kristian Høgsbergc680e902013-10-23 21:49:30 -0700368 struct frame *frame;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500369 const char **entries;
370 uint32_t time;
371 int current;
372 int count;
Kristian Høgsbergd2fbb382012-10-30 13:45:22 -0400373 int release_count;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -0500374 menu_func_t func;
375};
376
Tiago Vignatti82db9d82012-05-23 22:06:27 +0300377struct tooltip {
378 struct widget *parent;
379 struct window *window;
380 struct widget *widget;
381 char *entry;
382 struct task tooltip_task;
383 int tooltip_fd;
384 float x, y;
385};
386
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700387struct shm_pool {
388 struct wl_shm_pool *pool;
389 size_t size;
390 size_t used;
391 void *data;
392};
393
Kristian Høgsberg7d804062010-09-07 21:50:06 -0400394enum {
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +0300395 CURSOR_DEFAULT = 100,
396 CURSOR_UNSET
Kristian Høgsberg7d804062010-09-07 21:50:06 -0400397};
398
Kristian Høgsberg82da52b2010-12-17 09:53:12 -0500399enum window_location {
400 WINDOW_INTERIOR = 0,
401 WINDOW_RESIZING_TOP = 1,
402 WINDOW_RESIZING_BOTTOM = 2,
403 WINDOW_RESIZING_LEFT = 4,
404 WINDOW_RESIZING_TOP_LEFT = 5,
405 WINDOW_RESIZING_BOTTOM_LEFT = 6,
406 WINDOW_RESIZING_RIGHT = 8,
407 WINDOW_RESIZING_TOP_RIGHT = 9,
408 WINDOW_RESIZING_BOTTOM_RIGHT = 10,
409 WINDOW_RESIZING_MASK = 15,
410 WINDOW_EXTERIOR = 16,
411 WINDOW_TITLEBAR = 17,
412 WINDOW_CLIENT_AREA = 18,
413};
414
Pekka Paalanen32127ca2012-11-19 15:32:51 +0200415static const cairo_user_data_key_t shm_surface_data_key;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400416
Pekka Paalanen97777442013-05-22 10:20:05 +0300417/* #define DEBUG */
418
419#ifdef DEBUG
Pekka Paalanen71233882013-04-25 13:57:53 +0300420
421static void
422debug_print(void *proxy, int line, const char *func, const char *fmt, ...)
423__attribute__ ((format (printf, 4, 5)));
424
425static void
426debug_print(void *proxy, int line, const char *func, const char *fmt, ...)
427{
428 va_list ap;
429 struct timeval tv;
430
431 gettimeofday(&tv, NULL);
432 fprintf(stderr, "%8ld.%03ld ",
433 (long)tv.tv_sec & 0xffff, (long)tv.tv_usec / 1000);
434
435 if (proxy)
436 fprintf(stderr, "%s@%d ",
437 wl_proxy_get_class(proxy), wl_proxy_get_id(proxy));
438
439 /*fprintf(stderr, __FILE__ ":%d:%s ", line, func);*/
440 fprintf(stderr, "%s ", func);
441
442 va_start(ap, fmt);
443 vfprintf(stderr, fmt, ap);
444 va_end(ap);
445}
446
447#define DBG(fmt, ...) \
448 debug_print(NULL, __LINE__, __func__, fmt, ##__VA_ARGS__)
449
450#define DBG_OBJ(obj, fmt, ...) \
451 debug_print(obj, __LINE__, __func__, fmt, ##__VA_ARGS__)
452
453#else
454
455#define DBG(...) do {} while (0)
456#define DBG_OBJ(...) do {} while (0)
457
458#endif
459
Alexander Larsson1818e312013-05-22 14:41:31 +0200460static void
Alexander Larssonedddbd12013-05-24 13:09:43 +0200461surface_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 +0200462{
463 int32_t tmp;
464
465 switch (buffer_transform) {
466 case WL_OUTPUT_TRANSFORM_90:
467 case WL_OUTPUT_TRANSFORM_270:
468 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
469 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
470 tmp = *width;
471 *width = *height;
472 *height = tmp;
473 break;
474 default:
475 break;
476 }
477
478 *width *= buffer_scale;
479 *height *= buffer_scale;
480}
481
482static void
Alexander Larssonedddbd12013-05-24 13:09:43 +0200483buffer_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 +0200484{
485 int32_t tmp;
486
487 switch (buffer_transform) {
488 case WL_OUTPUT_TRANSFORM_90:
489 case WL_OUTPUT_TRANSFORM_270:
490 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
491 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
492 tmp = *width;
493 *width = *height;
494 *height = tmp;
495 break;
496 default:
497 break;
498 }
499
500 *width /= buffer_scale;
501 *height /= buffer_scale;
502}
503
Kristian Høgsberg8def2642011-01-14 17:41:33 -0500504#ifdef HAVE_CAIRO_EGL
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400505
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200506struct egl_window_surface {
507 struct toysurface base;
508 cairo_surface_t *cairo_surface;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100509 struct display *display;
510 struct wl_surface *surface;
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200511 struct wl_egl_window *egl_window;
512 EGLSurface egl_surface;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100513};
514
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200515static struct egl_window_surface *
516to_egl_window_surface(struct toysurface *base)
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100517{
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200518 return container_of(base, struct egl_window_surface, base);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100519}
520
521static cairo_surface_t *
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200522egl_window_surface_prepare(struct toysurface *base, int dx, int dy,
Alexander Larsson1818e312013-05-22 14:41:31 +0200523 int32_t width, int32_t height, uint32_t flags,
Alexander Larssonedddbd12013-05-24 13:09:43 +0200524 enum wl_output_transform buffer_transform, int32_t buffer_scale)
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100525{
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200526 struct egl_window_surface *surface = to_egl_window_surface(base);
527
Alexander Larsson1818e312013-05-22 14:41:31 +0200528 surface_to_buffer_size (buffer_transform, buffer_scale, &width, &height);
529
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200530 wl_egl_window_resize(surface->egl_window, width, height, dx, dy);
531 cairo_gl_surface_set_size(surface->cairo_surface, width, height);
532
533 return cairo_surface_reference(surface->cairo_surface);
534}
535
536static void
537egl_window_surface_swap(struct toysurface *base,
Alexander Larssonedddbd12013-05-24 13:09:43 +0200538 enum wl_output_transform buffer_transform, int32_t buffer_scale,
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200539 struct rectangle *server_allocation)
540{
541 struct egl_window_surface *surface = to_egl_window_surface(base);
542
543 cairo_gl_surface_swapbuffers(surface->cairo_surface);
544 wl_egl_window_get_attached_size(surface->egl_window,
545 &server_allocation->width,
546 &server_allocation->height);
Alexander Larsson1818e312013-05-22 14:41:31 +0200547
548 buffer_to_surface_size (buffer_transform, buffer_scale,
549 &server_allocation->width,
550 &server_allocation->height);
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200551}
552
553static int
554egl_window_surface_acquire(struct toysurface *base, EGLContext ctx)
555{
556 struct egl_window_surface *surface = to_egl_window_surface(base);
Benjamin Franzke0c991632011-09-27 21:57:31 +0200557 cairo_device_t *device;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100558
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200559 device = cairo_surface_get_device(surface->cairo_surface);
560 if (!device)
561 return -1;
562
563 if (!ctx) {
564 if (device == surface->display->argb_device)
565 ctx = surface->display->argb_ctx;
566 else
567 assert(0);
568 }
569
570 cairo_device_flush(device);
571 cairo_device_acquire(device);
572 if (!eglMakeCurrent(surface->display->dpy, surface->egl_surface,
573 surface->egl_surface, ctx))
574 fprintf(stderr, "failed to make surface current\n");
575
576 return 0;
577}
578
579static void
580egl_window_surface_release(struct toysurface *base)
581{
582 struct egl_window_surface *surface = to_egl_window_surface(base);
583 cairo_device_t *device;
584
585 device = cairo_surface_get_device(surface->cairo_surface);
586 if (!device)
587 return;
588
589 if (!eglMakeCurrent(surface->display->dpy, NULL, NULL,
590 surface->display->argb_ctx))
591 fprintf(stderr, "failed to make context current\n");
592
593 cairo_device_release(device);
594}
595
596static void
597egl_window_surface_destroy(struct toysurface *base)
598{
599 struct egl_window_surface *surface = to_egl_window_surface(base);
600 struct display *d = surface->display;
601
602 cairo_surface_destroy(surface->cairo_surface);
603 eglDestroySurface(d->dpy, surface->egl_surface);
604 wl_egl_window_destroy(surface->egl_window);
605 surface->surface = NULL;
606
607 free(surface);
608}
609
610static struct toysurface *
611egl_window_surface_create(struct display *display,
612 struct wl_surface *wl_surface,
613 uint32_t flags,
614 struct rectangle *rectangle)
615{
616 struct egl_window_surface *surface;
617
Pekka Paalanenb3627362012-11-19 17:16:00 +0200618 if (display->dpy == EGL_NO_DISPLAY)
619 return NULL;
620
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200621 surface = calloc(1, sizeof *surface);
622 if (!surface)
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100623 return NULL;
624
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200625 surface->base.prepare = egl_window_surface_prepare;
626 surface->base.swap = egl_window_surface_swap;
627 surface->base.acquire = egl_window_surface_acquire;
628 surface->base.release = egl_window_surface_release;
629 surface->base.destroy = egl_window_surface_destroy;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100630
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200631 surface->display = display;
632 surface->surface = wl_surface;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400633
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200634 surface->egl_window = wl_egl_window_create(surface->surface,
635 rectangle->width,
636 rectangle->height);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100637
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200638 surface->egl_surface = eglCreateWindowSurface(display->dpy,
639 display->argb_config,
640 surface->egl_window,
641 NULL);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100642
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200643 surface->cairo_surface =
644 cairo_gl_surface_create_for_egl(display->argb_device,
645 surface->egl_surface,
646 rectangle->width,
647 rectangle->height);
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100648
Pekka Paalanen03fc3162012-11-19 17:15:58 +0200649 return &surface->base;
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100650}
651
Pekka Paalanenb3627362012-11-19 17:16:00 +0200652#else
653
654static struct toysurface *
655egl_window_surface_create(struct display *display,
656 struct wl_surface *wl_surface,
657 uint32_t flags,
658 struct rectangle *rectangle)
659{
660 return NULL;
661}
662
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400663#endif
664
Pekka Paalanen0c6a3432012-11-19 15:32:50 +0200665struct shm_surface_data {
666 struct wl_buffer *buffer;
667 struct shm_pool *pool;
668};
669
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400670struct wl_buffer *
671display_get_buffer_for_surface(struct display *display,
672 cairo_surface_t *surface)
673{
Pekka Paalanen0c6a3432012-11-19 15:32:50 +0200674 struct shm_surface_data *data;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400675
Pekka Paalanen32127ca2012-11-19 15:32:51 +0200676 data = cairo_surface_get_user_data(surface, &shm_surface_data_key);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400677
678 return data->buffer;
679}
680
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500681static void
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700682shm_pool_destroy(struct shm_pool *pool);
683
684static void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400685shm_surface_data_destroy(void *p)
686{
687 struct shm_surface_data *data = p;
688
Pekka Paalanen0c6a3432012-11-19 15:32:50 +0200689 wl_buffer_destroy(data->buffer);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700690 if (data->pool)
691 shm_pool_destroy(data->pool);
Ander Conselvan de Oliveira2a3cd282012-06-19 13:45:55 +0300692
693 free(data);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400694}
695
Kristian Høgsberg16626282012-04-03 11:21:27 -0400696static struct wl_shm_pool *
697make_shm_pool(struct display *display, int size, void **data)
698{
Kristian Høgsberg16626282012-04-03 11:21:27 -0400699 struct wl_shm_pool *pool;
700 int fd;
701
Pekka Paalanen1da1b8f2012-06-06 16:59:43 +0300702 fd = os_create_anonymous_file(size);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400703 if (fd < 0) {
Pekka Paalanen1da1b8f2012-06-06 16:59:43 +0300704 fprintf(stderr, "creating a buffer file for %d B failed: %m\n",
705 size);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400706 return NULL;
707 }
708
709 *data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
Kristian Høgsberg16626282012-04-03 11:21:27 -0400710 if (*data == MAP_FAILED) {
711 fprintf(stderr, "mmap failed: %m\n");
712 close(fd);
713 return NULL;
714 }
715
716 pool = wl_shm_create_pool(display->shm, fd, size);
717
718 close(fd);
719
720 return pool;
721}
722
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700723static struct shm_pool *
724shm_pool_create(struct display *display, size_t size)
725{
726 struct shm_pool *pool = malloc(sizeof *pool);
727
728 if (!pool)
729 return NULL;
730
731 pool->pool = make_shm_pool(display, size, &pool->data);
732 if (!pool->pool) {
733 free(pool);
734 return NULL;
735 }
736
737 pool->size = size;
738 pool->used = 0;
739
740 return pool;
741}
742
743static void *
744shm_pool_allocate(struct shm_pool *pool, size_t size, int *offset)
745{
746 if (pool->used + size > pool->size)
747 return NULL;
748
749 *offset = pool->used;
750 pool->used += size;
751
752 return (char *) pool->data + *offset;
753}
754
755/* destroy the pool. this does not unmap the memory though */
756static void
757shm_pool_destroy(struct shm_pool *pool)
758{
759 munmap(pool->data, pool->size);
760 wl_shm_pool_destroy(pool->pool);
761 free(pool);
762}
763
764/* Start allocating from the beginning of the pool again */
765static void
766shm_pool_reset(struct shm_pool *pool)
767{
768 pool->used = 0;
769}
770
771static int
772data_length_for_shm_surface(struct rectangle *rect)
773{
774 int stride;
775
776 stride = cairo_format_stride_for_width (CAIRO_FORMAT_ARGB32,
777 rect->width);
778 return stride * rect->height;
779}
780
Kristian Høgsberg06bc2642010-12-01 09:50:16 -0500781static cairo_surface_t *
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700782display_create_shm_surface_from_pool(struct display *display,
783 struct rectangle *rectangle,
784 uint32_t flags, struct shm_pool *pool)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400785{
786 struct shm_surface_data *data;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400787 uint32_t format;
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400788 cairo_surface_t *surface;
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200789 cairo_format_t cairo_format;
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700790 int stride, length, offset;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400791 void *map;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400792
793 data = malloc(sizeof *data);
794 if (data == NULL)
795 return NULL;
796
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200797 if (flags & SURFACE_HINT_RGB565 && display->has_rgb565)
798 cairo_format = CAIRO_FORMAT_RGB16_565;
799 else
800 cairo_format = CAIRO_FORMAT_ARGB32;
801
802 stride = cairo_format_stride_for_width (cairo_format, rectangle->width);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700803 length = stride * rectangle->height;
804 data->pool = NULL;
805 map = shm_pool_allocate(pool, length, &offset);
806
807 if (!map) {
808 free(data);
809 return NULL;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400810 }
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400811
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -0400812 surface = cairo_image_surface_create_for_data (map,
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200813 cairo_format,
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400814 rectangle->width,
815 rectangle->height,
816 stride);
817
Pekka Paalanen32127ca2012-11-19 15:32:51 +0200818 cairo_surface_set_user_data(surface, &shm_surface_data_key,
819 data, shm_surface_data_destroy);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400820
Tomeu Vizosobee45a12013-08-06 20:05:54 +0200821 if (flags & SURFACE_HINT_RGB565 && display->has_rgb565)
822 format = WL_SHM_FORMAT_RGB565;
823 else {
824 if (flags & SURFACE_OPAQUE)
825 format = WL_SHM_FORMAT_XRGB8888;
826 else
827 format = WL_SHM_FORMAT_ARGB8888;
828 }
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400829
Pekka Paalanen0c6a3432012-11-19 15:32:50 +0200830 data->buffer = wl_shm_pool_create_buffer(pool->pool, offset,
831 rectangle->width,
832 rectangle->height,
833 stride, format);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400834
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700835 return surface;
836}
837
838static cairo_surface_t *
839display_create_shm_surface(struct display *display,
840 struct rectangle *rectangle, uint32_t flags,
Pekka Paalanen99436862012-11-19 17:15:59 +0200841 struct shm_pool *alternate_pool,
842 struct shm_surface_data **data_ret)
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700843{
844 struct shm_surface_data *data;
845 struct shm_pool *pool;
846 cairo_surface_t *surface;
847
Pekka Paalanen99436862012-11-19 17:15:59 +0200848 if (alternate_pool) {
849 shm_pool_reset(alternate_pool);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700850 surface = display_create_shm_surface_from_pool(display,
851 rectangle,
852 flags,
Pekka Paalanen99436862012-11-19 17:15:59 +0200853 alternate_pool);
854 if (surface) {
855 data = cairo_surface_get_user_data(surface,
856 &shm_surface_data_key);
857 goto out;
858 }
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700859 }
860
861 pool = shm_pool_create(display,
862 data_length_for_shm_surface(rectangle));
863 if (!pool)
864 return NULL;
865
866 surface =
867 display_create_shm_surface_from_pool(display, rectangle,
868 flags, pool);
869
870 if (!surface) {
871 shm_pool_destroy(pool);
872 return NULL;
873 }
874
875 /* make sure we destroy the pool when the surface is destroyed */
Pekka Paalanen32127ca2012-11-19 15:32:51 +0200876 data = cairo_surface_get_user_data(surface, &shm_surface_data_key);
Ander Conselvan de Oliveira001de542012-05-07 11:34:26 -0700877 data->pool = pool;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400878
Pekka Paalanen99436862012-11-19 17:15:59 +0200879out:
880 if (data_ret)
881 *data_ret = data;
882
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400883 return surface;
884}
885
nobled7b87cb02011-02-01 18:51:47 +0000886static int
887check_size(struct rectangle *rect)
888{
889 if (rect->width && rect->height)
890 return 0;
891
892 fprintf(stderr, "tried to create surface of "
893 "width: %d, height: %d\n", rect->width, rect->height);
894 return -1;
895}
896
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400897cairo_surface_t *
898display_create_surface(struct display *display,
Benjamin Franzke6693ac22011-02-10 12:04:30 +0100899 struct wl_surface *surface,
Kristian Høgsberg3be87d12011-05-13 13:45:17 -0400900 struct rectangle *rectangle,
901 uint32_t flags)
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -0400902{
nobled7b87cb02011-02-01 18:51:47 +0000903 if (check_size(rectangle) < 0)
904 return NULL;
Pekka Paalanen768117f2012-11-19 17:15:57 +0200905
906 assert(flags & SURFACE_SHM);
Pekka Paalanen99436862012-11-19 17:15:59 +0200907 return display_create_shm_surface(display, rectangle, flags,
908 NULL, NULL);
909}
910
Pekka Paalanena4eda732012-11-19 17:16:02 +0200911struct shm_surface_leaf {
912 cairo_surface_t *cairo_surface;
913 /* 'data' is automatically destroyed, when 'cairo_surface' is */
914 struct shm_surface_data *data;
915
916 struct shm_pool *resize_pool;
917 int busy;
918};
919
920static void
921shm_surface_leaf_release(struct shm_surface_leaf *leaf)
922{
923 if (leaf->cairo_surface)
924 cairo_surface_destroy(leaf->cairo_surface);
925 /* leaf->data already destroyed via cairo private */
926
927 if (leaf->resize_pool)
928 shm_pool_destroy(leaf->resize_pool);
Pekka Paalanen550d66b2013-02-13 16:17:12 +0200929
930 memset(leaf, 0, sizeof *leaf);
Pekka Paalanena4eda732012-11-19 17:16:02 +0200931}
932
Pekka Paalanenaef02542013-04-25 13:57:47 +0300933#define MAX_LEAVES 3
934
Pekka Paalanen99436862012-11-19 17:15:59 +0200935struct shm_surface {
936 struct toysurface base;
937 struct display *display;
938 struct wl_surface *surface;
939 uint32_t flags;
940 int dx, dy;
941
Pekka Paalanenaef02542013-04-25 13:57:47 +0300942 struct shm_surface_leaf leaf[MAX_LEAVES];
Pekka Paalanena4eda732012-11-19 17:16:02 +0200943 struct shm_surface_leaf *current;
Pekka Paalanen99436862012-11-19 17:15:59 +0200944};
945
946static struct shm_surface *
947to_shm_surface(struct toysurface *base)
948{
949 return container_of(base, struct shm_surface, base);
950}
951
Pekka Paalanena4eda732012-11-19 17:16:02 +0200952static void
Pekka Paalanen97777442013-05-22 10:20:05 +0300953shm_surface_buffer_state_debug(struct shm_surface *surface, const char *msg)
954{
955#ifdef DEBUG
956 struct shm_surface_leaf *leaf;
957 char bufs[MAX_LEAVES + 1];
958 int i;
959
960 for (i = 0; i < MAX_LEAVES; i++) {
961 leaf = &surface->leaf[i];
962
963 if (leaf->busy)
964 bufs[i] = 'b';
965 else if (leaf->cairo_surface)
966 bufs[i] = 'a';
967 else
968 bufs[i] = ' ';
969 }
970
971 bufs[MAX_LEAVES] = '\0';
972 DBG_OBJ(surface->surface, "%s, leaves [%s]\n", msg, bufs);
973#endif
974}
975
976static void
Pekka Paalanena4eda732012-11-19 17:16:02 +0200977shm_surface_buffer_release(void *data, struct wl_buffer *buffer)
978{
Pekka Paalanen550d66b2013-02-13 16:17:12 +0200979 struct shm_surface *surface = data;
Pekka Paalanenaef02542013-04-25 13:57:47 +0300980 struct shm_surface_leaf *leaf;
981 int i;
982 int free_found;
Pekka Paalanen97777442013-05-22 10:20:05 +0300983
984 shm_surface_buffer_state_debug(surface, "buffer_release before");
Pekka Paalanena4eda732012-11-19 17:16:02 +0200985
Pekka Paalanenaef02542013-04-25 13:57:47 +0300986 for (i = 0; i < MAX_LEAVES; i++) {
987 leaf = &surface->leaf[i];
988 if (leaf->data && leaf->data->buffer == buffer) {
989 leaf->busy = 0;
990 break;
991 }
992 }
993 assert(i < MAX_LEAVES && "unknown buffer released");
Pekka Paalanen4dd0c412012-12-04 16:01:16 +0200994
Pekka Paalanenaef02542013-04-25 13:57:47 +0300995 /* Leave one free leaf with storage, release others */
996 free_found = 0;
997 for (i = 0; i < MAX_LEAVES; i++) {
998 leaf = &surface->leaf[i];
999
1000 if (!leaf->cairo_surface || leaf->busy)
1001 continue;
1002
1003 if (!free_found)
1004 free_found = 1;
Pekka Paalanen97777442013-05-22 10:20:05 +03001005 else
Pekka Paalanenaef02542013-04-25 13:57:47 +03001006 shm_surface_leaf_release(leaf);
1007 }
Pekka Paalanen71233882013-04-25 13:57:53 +03001008
Pekka Paalanen97777442013-05-22 10:20:05 +03001009 shm_surface_buffer_state_debug(surface, "buffer_release after");
Pekka Paalanena4eda732012-11-19 17:16:02 +02001010}
1011
1012static const struct wl_buffer_listener shm_surface_buffer_listener = {
1013 shm_surface_buffer_release
1014};
1015
Pekka Paalanen99436862012-11-19 17:15:59 +02001016static cairo_surface_t *
1017shm_surface_prepare(struct toysurface *base, int dx, int dy,
Alexander Larsson1818e312013-05-22 14:41:31 +02001018 int32_t width, int32_t height, uint32_t flags,
Alexander Larssonedddbd12013-05-24 13:09:43 +02001019 enum wl_output_transform buffer_transform, int32_t buffer_scale)
Pekka Paalanen99436862012-11-19 17:15:59 +02001020{
Pekka Paalanenec076692012-11-30 13:37:27 +02001021 int resize_hint = !!(flags & SURFACE_HINT_RESIZE);
Pekka Paalanen99436862012-11-19 17:15:59 +02001022 struct shm_surface *surface = to_shm_surface(base);
Alexander Larsson1818e312013-05-22 14:41:31 +02001023 struct rectangle rect = { 0};
Pekka Paalanenaef02542013-04-25 13:57:47 +03001024 struct shm_surface_leaf *leaf = NULL;
1025 int i;
Pekka Paalanen99436862012-11-19 17:15:59 +02001026
1027 surface->dx = dx;
1028 surface->dy = dy;
1029
Pekka Paalanenaef02542013-04-25 13:57:47 +03001030 /* pick a free buffer, preferrably one that already has storage */
1031 for (i = 0; i < MAX_LEAVES; i++) {
1032 if (surface->leaf[i].busy)
1033 continue;
Pekka Paalanen4dd0c412012-12-04 16:01:16 +02001034
Pekka Paalanenaef02542013-04-25 13:57:47 +03001035 if (!leaf || surface->leaf[i].cairo_surface)
1036 leaf = &surface->leaf[i];
1037 }
Pekka Paalanen71233882013-04-25 13:57:53 +03001038 DBG_OBJ(surface->surface, "pick leaf %d\n",
1039 (int)(leaf - &surface->leaf[0]));
1040
Pekka Paalanenaef02542013-04-25 13:57:47 +03001041 if (!leaf) {
1042 fprintf(stderr, "%s: all buffers are held by the server.\n",
Pekka Paalanena4eda732012-11-19 17:16:02 +02001043 __func__);
Pekka Paalanen71233882013-04-25 13:57:53 +03001044 exit(1);
Pekka Paalanena4eda732012-11-19 17:16:02 +02001045 return NULL;
Pekka Paalanen99436862012-11-19 17:15:59 +02001046 }
1047
Pekka Paalanena4eda732012-11-19 17:16:02 +02001048 if (!resize_hint && leaf->resize_pool) {
1049 cairo_surface_destroy(leaf->cairo_surface);
1050 leaf->cairo_surface = NULL;
1051 shm_pool_destroy(leaf->resize_pool);
1052 leaf->resize_pool = NULL;
1053 }
1054
Alexander Larsson1818e312013-05-22 14:41:31 +02001055 surface_to_buffer_size (buffer_transform, buffer_scale, &width, &height);
1056
Pekka Paalanena4eda732012-11-19 17:16:02 +02001057 if (leaf->cairo_surface &&
1058 cairo_image_surface_get_width(leaf->cairo_surface) == width &&
1059 cairo_image_surface_get_height(leaf->cairo_surface) == height)
Pekka Paalanen99436862012-11-19 17:15:59 +02001060 goto out;
1061
Pekka Paalanena4eda732012-11-19 17:16:02 +02001062 if (leaf->cairo_surface)
1063 cairo_surface_destroy(leaf->cairo_surface);
Pekka Paalanen99436862012-11-19 17:15:59 +02001064
Louis-Francis Ratté-Boulianne6cd1de32013-05-22 18:03:11 +03001065#ifdef USE_RESIZE_POOL
Pekka Paalanena4eda732012-11-19 17:16:02 +02001066 if (resize_hint && !leaf->resize_pool) {
Pekka Paalanen99436862012-11-19 17:15:59 +02001067 /* Create a big pool to allocate from, while continuously
1068 * resizing. Mmapping a new pool in the server
1069 * is relatively expensive, so reusing a pool performs
1070 * better, but may temporarily reserve unneeded memory.
1071 */
1072 /* We should probably base this number on the output size. */
Pekka Paalanena4eda732012-11-19 17:16:02 +02001073 leaf->resize_pool = shm_pool_create(surface->display,
1074 6 * 1024 * 1024);
Pekka Paalanen99436862012-11-19 17:15:59 +02001075 }
Louis-Francis Ratté-Boulianne6cd1de32013-05-22 18:03:11 +03001076#endif
Pekka Paalanen99436862012-11-19 17:15:59 +02001077
Alexander Larsson1818e312013-05-22 14:41:31 +02001078 rect.width = width;
1079 rect.height = height;
1080
Pekka Paalanena4eda732012-11-19 17:16:02 +02001081 leaf->cairo_surface =
Pekka Paalanen99436862012-11-19 17:15:59 +02001082 display_create_shm_surface(surface->display, &rect,
1083 surface->flags,
Pekka Paalanena4eda732012-11-19 17:16:02 +02001084 leaf->resize_pool,
1085 &leaf->data);
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02001086 if (!leaf->cairo_surface)
1087 return NULL;
1088
Pekka Paalanena4eda732012-11-19 17:16:02 +02001089 wl_buffer_add_listener(leaf->data->buffer,
Pekka Paalanen550d66b2013-02-13 16:17:12 +02001090 &shm_surface_buffer_listener, surface);
Pekka Paalanen99436862012-11-19 17:15:59 +02001091
1092out:
Pekka Paalanena4eda732012-11-19 17:16:02 +02001093 surface->current = leaf;
1094
1095 return cairo_surface_reference(leaf->cairo_surface);
Pekka Paalanen99436862012-11-19 17:15:59 +02001096}
1097
1098static void
1099shm_surface_swap(struct toysurface *base,
Alexander Larssonedddbd12013-05-24 13:09:43 +02001100 enum wl_output_transform buffer_transform, int32_t buffer_scale,
Pekka Paalanen99436862012-11-19 17:15:59 +02001101 struct rectangle *server_allocation)
1102{
1103 struct shm_surface *surface = to_shm_surface(base);
Pekka Paalanena4eda732012-11-19 17:16:02 +02001104 struct shm_surface_leaf *leaf = surface->current;
Pekka Paalanen99436862012-11-19 17:15:59 +02001105
1106 server_allocation->width =
Pekka Paalanena4eda732012-11-19 17:16:02 +02001107 cairo_image_surface_get_width(leaf->cairo_surface);
Pekka Paalanen99436862012-11-19 17:15:59 +02001108 server_allocation->height =
Pekka Paalanena4eda732012-11-19 17:16:02 +02001109 cairo_image_surface_get_height(leaf->cairo_surface);
Pekka Paalanen99436862012-11-19 17:15:59 +02001110
Alexander Larsson1818e312013-05-22 14:41:31 +02001111 buffer_to_surface_size (buffer_transform, buffer_scale,
1112 &server_allocation->width,
1113 &server_allocation->height);
1114
Pekka Paalanena4eda732012-11-19 17:16:02 +02001115 wl_surface_attach(surface->surface, leaf->data->buffer,
Pekka Paalanen99436862012-11-19 17:15:59 +02001116 surface->dx, surface->dy);
1117 wl_surface_damage(surface->surface, 0, 0,
1118 server_allocation->width, server_allocation->height);
1119 wl_surface_commit(surface->surface);
Pekka Paalanena4eda732012-11-19 17:16:02 +02001120
Pekka Paalanen71233882013-04-25 13:57:53 +03001121 DBG_OBJ(surface->surface, "leaf %d busy\n",
1122 (int)(leaf - &surface->leaf[0]));
1123
Pekka Paalanena4eda732012-11-19 17:16:02 +02001124 leaf->busy = 1;
1125 surface->current = NULL;
Pekka Paalanen99436862012-11-19 17:15:59 +02001126}
1127
1128static int
1129shm_surface_acquire(struct toysurface *base, EGLContext ctx)
1130{
1131 return -1;
1132}
1133
1134static void
1135shm_surface_release(struct toysurface *base)
1136{
1137}
1138
1139static void
1140shm_surface_destroy(struct toysurface *base)
1141{
1142 struct shm_surface *surface = to_shm_surface(base);
Pekka Paalanenaef02542013-04-25 13:57:47 +03001143 int i;
Pekka Paalanen99436862012-11-19 17:15:59 +02001144
Pekka Paalanenaef02542013-04-25 13:57:47 +03001145 for (i = 0; i < MAX_LEAVES; i++)
1146 shm_surface_leaf_release(&surface->leaf[i]);
Pekka Paalanen99436862012-11-19 17:15:59 +02001147
1148 free(surface);
1149}
1150
1151static struct toysurface *
1152shm_surface_create(struct display *display, struct wl_surface *wl_surface,
1153 uint32_t flags, struct rectangle *rectangle)
1154{
1155 struct shm_surface *surface;
Pekka Paalanen71233882013-04-25 13:57:53 +03001156 DBG_OBJ(wl_surface, "\n");
Pekka Paalanen99436862012-11-19 17:15:59 +02001157
Brian Lovinbc919262013-08-07 15:34:59 -07001158 surface = xmalloc(sizeof *surface);
1159 memset(surface, 0, sizeof *surface);
1160
Pekka Paalanen99436862012-11-19 17:15:59 +02001161 if (!surface)
1162 return NULL;
1163
1164 surface->base.prepare = shm_surface_prepare;
1165 surface->base.swap = shm_surface_swap;
1166 surface->base.acquire = shm_surface_acquire;
1167 surface->base.release = shm_surface_release;
1168 surface->base.destroy = shm_surface_destroy;
1169
1170 surface->display = display;
1171 surface->surface = wl_surface;
1172 surface->flags = flags;
Pekka Paalanen99436862012-11-19 17:15:59 +02001173
1174 return &surface->base;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04001175}
1176
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001177/*
1178 * The following correspondences between file names and cursors was copied
1179 * from: https://bugs.kde.org/attachment.cgi?id=67313
1180 */
1181
1182static const char *bottom_left_corners[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001183 "bottom_left_corner",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001184 "sw-resize",
1185 "size_bdiag"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001186};
1187
1188static const char *bottom_right_corners[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001189 "bottom_right_corner",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001190 "se-resize",
1191 "size_fdiag"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001192};
1193
1194static const char *bottom_sides[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001195 "bottom_side",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001196 "s-resize",
1197 "size_ver"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001198};
1199
1200static const char *grabbings[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001201 "grabbing",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001202 "closedhand",
1203 "208530c400c041818281048008011002"
1204};
1205
1206static const char *left_ptrs[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001207 "left_ptr",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001208 "default",
1209 "top_left_arrow",
1210 "left-arrow"
1211};
1212
1213static const char *left_sides[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001214 "left_side",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001215 "w-resize",
1216 "size_hor"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001217};
1218
1219static const char *right_sides[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001220 "right_side",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001221 "e-resize",
1222 "size_hor"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001223};
1224
1225static const char *top_left_corners[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001226 "top_left_corner",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001227 "nw-resize",
1228 "size_fdiag"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001229};
1230
1231static const char *top_right_corners[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001232 "top_right_corner",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001233 "ne-resize",
1234 "size_bdiag"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001235};
1236
1237static const char *top_sides[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001238 "top_side",
Dima Ryazanovf6128fc2013-05-13 23:51:11 -07001239 "n-resize",
1240 "size_ver"
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001241};
1242
1243static const char *xterms[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001244 "xterm",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001245 "ibeam",
1246 "text"
1247};
1248
1249static const char *hand1s[] = {
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001250 "hand1",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001251 "pointer",
1252 "pointing_hand",
1253 "e29285e634086352946a0e7090d73106"
1254};
1255
1256static const char *watches[] = {
Kristian Høgsberg8591dbf2012-06-04 16:10:40 -04001257 "watch",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001258 "wait",
1259 "0426c94ea35c87780ff01dc239897213"
1260};
1261
1262struct cursor_alternatives {
1263 const char **names;
1264 size_t count;
1265};
1266
1267static const struct cursor_alternatives cursors[] = {
1268 {bottom_left_corners, ARRAY_LENGTH(bottom_left_corners)},
1269 {bottom_right_corners, ARRAY_LENGTH(bottom_right_corners)},
1270 {bottom_sides, ARRAY_LENGTH(bottom_sides)},
1271 {grabbings, ARRAY_LENGTH(grabbings)},
1272 {left_ptrs, ARRAY_LENGTH(left_ptrs)},
1273 {left_sides, ARRAY_LENGTH(left_sides)},
1274 {right_sides, ARRAY_LENGTH(right_sides)},
1275 {top_left_corners, ARRAY_LENGTH(top_left_corners)},
1276 {top_right_corners, ARRAY_LENGTH(top_right_corners)},
1277 {top_sides, ARRAY_LENGTH(top_sides)},
1278 {xterms, ARRAY_LENGTH(xterms)},
1279 {hand1s, ARRAY_LENGTH(hand1s)},
1280 {watches, ARRAY_LENGTH(watches)},
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001281};
1282
1283static void
1284create_cursors(struct display *display)
1285{
Kristian Høgsberg8c079ae2013-09-21 22:26:10 -07001286 struct weston_config *config;
1287 struct weston_config_section *s;
Kristian Høgsberg1abe0482013-09-21 23:02:31 -07001288 int size;
Christopher Michaelac3e5f22012-08-11 15:12:09 +01001289 char *theme = NULL;
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001290 unsigned int i, j;
1291 struct wl_cursor *cursor;
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001292
Kristian Høgsberg1abe0482013-09-21 23:02:31 -07001293 config = weston_config_parse("weston.ini");
Kristian Høgsberg8c079ae2013-09-21 22:26:10 -07001294 s = weston_config_get_section(config, "shell", NULL, NULL);
1295 weston_config_section_get_string(s, "cursor-theme", &theme, NULL);
1296 weston_config_section_get_int(s, "cursor-size", &size, 32);
1297 weston_config_destroy(config);
1298
Emilio Pozuelo Monfortab44b0c2013-03-14 17:23:37 +01001299 display->cursor_theme = wl_cursor_theme_load(theme, size, display->shm);
Kristian Høgsbergb5c973c2013-10-09 13:02:04 -07001300 free(theme);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001301 display->cursors =
Brian Lovinbc919262013-08-07 15:34:59 -07001302 xmalloc(ARRAY_LENGTH(cursors) * sizeof display->cursors[0]);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001303
Pekka Paalanene288a0f2012-07-31 13:21:09 +03001304 for (i = 0; i < ARRAY_LENGTH(cursors); i++) {
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001305 cursor = NULL;
1306 for (j = 0; !cursor && j < cursors[i].count; ++j)
1307 cursor = wl_cursor_theme_get_cursor(
1308 display->cursor_theme, cursors[i].names[j]);
1309
1310 if (!cursor)
Pekka Paalanene288a0f2012-07-31 13:21:09 +03001311 fprintf(stderr, "could not load cursor '%s'\n",
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001312 cursors[i].names[0]);
1313
1314 display->cursors[i] = cursor;
Pekka Paalanene288a0f2012-07-31 13:21:09 +03001315 }
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001316}
1317
1318static void
1319destroy_cursors(struct display *display)
1320{
1321 wl_cursor_theme_destroy(display->cursor_theme);
Yan Wanga261f7e2012-05-28 14:07:25 +08001322 free(display->cursors);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03001323}
1324
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03001325struct wl_cursor_image *
1326display_get_pointer_image(struct display *display, int pointer)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001327{
Philipp Brüschweilerbd3f2192012-08-21 20:36:16 +02001328 struct wl_cursor *cursor = display->cursors[pointer];
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04001329
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03001330 return cursor ? cursor->images[0] : NULL;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04001331}
1332
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -04001333static void
Pekka Paalanen89dee002013-02-13 16:17:20 +02001334surface_flush(struct surface *surface)
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001335{
Pekka Paalanen89dee002013-02-13 16:17:20 +02001336 if (!surface->cairo_surface)
1337 return;
1338
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02001339 if (surface->opaque_region) {
1340 wl_surface_set_opaque_region(surface->surface,
1341 surface->opaque_region);
1342 wl_region_destroy(surface->opaque_region);
1343 surface->opaque_region = NULL;
1344 }
1345
1346 if (surface->input_region) {
1347 wl_surface_set_input_region(surface->surface,
1348 surface->input_region);
1349 wl_region_destroy(surface->input_region);
1350 surface->input_region = NULL;
1351 }
1352
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001353 surface->toysurface->swap(surface->toysurface,
Alexander Larsson1818e312013-05-22 14:41:31 +02001354 surface->buffer_transform, surface->buffer_scale,
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001355 &surface->server_allocation);
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001356
Pekka Paalanen89dee002013-02-13 16:17:20 +02001357 cairo_surface_destroy(surface->cairo_surface);
1358 surface->cairo_surface = NULL;
Kristian Høgsberg6a1b2012009-12-16 14:43:37 -05001359}
1360
Kristian Høgsberg86adef92012-08-13 22:25:53 -04001361int
1362window_has_focus(struct window *window)
1363{
1364 return window->focus_count > 0;
1365}
1366
Pekka Paalanena8d4c842012-11-19 15:32:48 +02001367static void
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -04001368window_flush(struct window *window)
Kristian Høgsberga341fa02010-01-24 18:10:15 -05001369{
Pekka Paalanen35e82632013-04-25 13:57:48 +03001370 struct surface *surface;
1371
Pekka Paalanen89dee002013-02-13 16:17:20 +02001372 if (window->type == TYPE_NONE) {
1373 window->type = TYPE_TOPLEVEL;
1374 if (window->shell_surface)
1375 wl_shell_surface_set_toplevel(window->shell_surface);
1376 }
Pekka Paalanen03fc3162012-11-19 17:15:58 +02001377
Pekka Paalanen35e82632013-04-25 13:57:48 +03001378 wl_list_for_each(surface, &window->subsurface_list, link) {
1379 if (surface == window->main_surface)
1380 continue;
1381
1382 surface_flush(surface);
1383 }
1384
Pekka Paalanen89dee002013-02-13 16:17:20 +02001385 surface_flush(window->main_surface);
Kristian Høgsberga341fa02010-01-24 18:10:15 -05001386}
1387
Kristian Høgsbergbcee9a42011-10-12 00:36:16 -04001388struct display *
1389window_get_display(struct window *window)
1390{
1391 return window->display;
1392}
1393
Pekka Paalanen89dee002013-02-13 16:17:20 +02001394static void
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001395surface_create_surface(struct surface *surface, int dx, int dy, uint32_t flags)
Kristian Høgsberg012a0072010-10-26 00:02:20 -04001396{
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001397 struct display *display = surface->window->display;
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001398 struct rectangle allocation = surface->allocation;
Pekka Paalanen03fc3162012-11-19 17:15:58 +02001399
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001400 if (!surface->toysurface && display->dpy &&
1401 surface->buffer_type == WINDOW_BUFFER_TYPE_EGL_WINDOW) {
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001402 surface->toysurface =
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001403 egl_window_surface_create(display,
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001404 surface->surface,
Pekka Paalanen4e373742013-02-13 16:17:13 +02001405 flags,
Ander Conselvan de Oliveira6d4cb4e2012-11-30 17:34:24 +02001406 &allocation);
Pekka Paalanenb3627362012-11-19 17:16:00 +02001407 }
Pekka Paalanen03fc3162012-11-19 17:15:58 +02001408
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001409 if (!surface->toysurface)
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001410 surface->toysurface = shm_surface_create(display,
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001411 surface->surface,
1412 flags, &allocation);
Kristian Høgsberg012a0072010-10-26 00:02:20 -04001413
Pekka Paalanen89dee002013-02-13 16:17:20 +02001414 surface->cairo_surface = surface->toysurface->prepare(
1415 surface->toysurface, dx, dy,
Alexander Larsson1818e312013-05-22 14:41:31 +02001416 allocation.width, allocation.height, flags,
1417 surface->buffer_transform, surface->buffer_scale);
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001418}
1419
1420static void
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001421window_create_main_surface(struct window *window)
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001422{
Pekka Paalanen7bcfead2013-02-13 16:17:16 +02001423 struct surface *surface = window->main_surface;
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001424 uint32_t flags = 0;
Pekka Paalanen7bcfead2013-02-13 16:17:16 +02001425 int dx = 0;
1426 int dy = 0;
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001427
Pekka Paalanenec076692012-11-30 13:37:27 +02001428 if (window->resizing)
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001429 flags |= SURFACE_HINT_RESIZE;
Pekka Paalanenec076692012-11-30 13:37:27 +02001430
Tomeu Vizosobee45a12013-08-06 20:05:54 +02001431 if (window->preferred_format == WINDOW_PREFERRED_FORMAT_RGB565)
1432 flags |= SURFACE_HINT_RGB565;
1433
Pekka Paalanen7bcfead2013-02-13 16:17:16 +02001434 if (window->resize_edges & WINDOW_RESIZING_LEFT)
1435 dx = surface->server_allocation.width -
1436 surface->allocation.width;
1437
1438 if (window->resize_edges & WINDOW_RESIZING_TOP)
1439 dy = surface->server_allocation.height -
1440 surface->allocation.height;
1441
1442 window->resize_edges = 0;
1443
Pekka Paalanen89dee002013-02-13 16:17:20 +02001444 surface_create_surface(surface, dx, dy, flags);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04001445}
1446
Ander Conselvan de Oliveira6d4cb4e2012-11-30 17:34:24 +02001447int
1448window_get_buffer_transform(struct window *window)
1449{
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001450 return window->main_surface->buffer_transform;
Ander Conselvan de Oliveira6d4cb4e2012-11-30 17:34:24 +02001451}
1452
1453void
1454window_set_buffer_transform(struct window *window,
1455 enum wl_output_transform transform)
1456{
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02001457 window->main_surface->buffer_transform = transform;
Pekka Paalanen4e373742013-02-13 16:17:13 +02001458 wl_surface_set_buffer_transform(window->main_surface->surface,
1459 transform);
Ander Conselvan de Oliveira6d4cb4e2012-11-30 17:34:24 +02001460}
1461
Alexander Larsson5e9b6522013-05-22 14:41:28 +02001462void
1463window_set_buffer_scale(struct window *window,
Alexander Larssonedddbd12013-05-24 13:09:43 +02001464 int32_t scale)
Alexander Larsson5e9b6522013-05-22 14:41:28 +02001465{
1466 window->main_surface->buffer_scale = scale;
1467 wl_surface_set_buffer_scale(window->main_surface->surface,
1468 scale);
1469}
1470
1471uint32_t
1472window_get_buffer_scale(struct window *window)
1473{
1474 return window->main_surface->buffer_scale;
1475}
1476
Alexander Larssond68f5232013-05-22 14:41:33 +02001477uint32_t
1478window_get_output_scale(struct window *window)
1479{
1480 struct window_output *window_output;
1481 struct window_output *window_output_tmp;
1482 int scale = 1;
1483
1484 wl_list_for_each_safe(window_output, window_output_tmp,
1485 &window->window_output_list, link) {
1486 if (window_output->output->scale > scale)
1487 scale = window_output->output->scale;
1488 }
1489
1490 return scale;
1491}
1492
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05001493static void window_frame_destroy(struct window_frame *frame);
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001494
Pekka Paalanen4e373742013-02-13 16:17:13 +02001495static void
1496surface_destroy(struct surface *surface)
1497{
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03001498 if (surface->frame_cb)
1499 wl_callback_destroy(surface->frame_cb);
1500
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02001501 if (surface->input_region)
1502 wl_region_destroy(surface->input_region);
1503
1504 if (surface->opaque_region)
1505 wl_region_destroy(surface->opaque_region);
1506
Pekka Paalanen35e82632013-04-25 13:57:48 +03001507 if (surface->subsurface)
1508 wl_subsurface_destroy(surface->subsurface);
1509
Pekka Paalanen4e373742013-02-13 16:17:13 +02001510 wl_surface_destroy(surface->surface);
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02001511
1512 if (surface->toysurface)
1513 surface->toysurface->destroy(surface->toysurface);
1514
Pekka Paalanen35e82632013-04-25 13:57:48 +03001515 wl_list_remove(&surface->link);
Pekka Paalanen4e373742013-02-13 16:17:13 +02001516 free(surface);
1517}
1518
Kristian Høgsberge968f9c2010-08-27 22:18:00 -04001519void
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001520window_destroy(struct window *window)
1521{
Pekka Paalanen77cbc952011-11-15 13:34:55 +02001522 struct display *display = window->display;
1523 struct input *input;
Rob Bradford7507b572012-05-15 17:55:34 +01001524 struct window_output *window_output;
1525 struct window_output *window_output_tmp;
Pekka Paalanen77cbc952011-11-15 13:34:55 +02001526
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03001527 wl_list_remove(&window->redraw_task.link);
Pekka Paalanen77cbc952011-11-15 13:34:55 +02001528
Rusty Lynch1084da52013-08-15 09:10:08 -07001529 wl_list_for_each(input, &display->input_list, link) {
1530 if (input->touch_focus == window)
1531 input->touch_focus = NULL;
Pekka Paalanen77cbc952011-11-15 13:34:55 +02001532 if (input->pointer_focus == window)
1533 input->pointer_focus = NULL;
1534 if (input->keyboard_focus == window)
1535 input->keyboard_focus = NULL;
Kristian Høgsbergae6e2712012-01-26 11:09:20 -05001536 if (input->focus_widget &&
1537 input->focus_widget->window == window)
1538 input->focus_widget = NULL;
Pekka Paalanen77cbc952011-11-15 13:34:55 +02001539 }
1540
Rob Bradford7507b572012-05-15 17:55:34 +01001541 wl_list_for_each_safe(window_output, window_output_tmp,
1542 &window->window_output_list, link) {
1543 free (window_output);
1544 }
1545
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001546 if (window->frame)
Jason Ekstrandee7fefc2013-10-13 19:08:38 -05001547 window_frame_destroy(window->frame);
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02001548
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02001549 if (window->shell_surface)
1550 wl_shell_surface_destroy(window->shell_surface);
Pekka Paalanen4e373742013-02-13 16:17:13 +02001551
1552 surface_destroy(window->main_surface);
1553
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001554 wl_list_remove(&window->link);
Pekka Paalanen5ec65852011-12-16 10:09:29 +02001555
Pekka Paalanen5ec65852011-12-16 10:09:29 +02001556 free(window->title);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001557 free(window);
1558}
1559
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001560static struct widget *
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001561widget_find_widget(struct widget *widget, int32_t x, int32_t y)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001562{
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001563 struct widget *child, *target;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001564
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001565 wl_list_for_each(child, &widget->child_list, link) {
1566 target = widget_find_widget(child, x, y);
1567 if (target)
1568 return target;
1569 }
1570
1571 if (widget->allocation.x <= x &&
1572 x < widget->allocation.x + widget->allocation.width &&
1573 widget->allocation.y <= y &&
1574 y < widget->allocation.y + widget->allocation.height) {
1575 return widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001576 }
1577
1578 return NULL;
1579}
1580
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001581static struct widget *
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02001582window_find_widget(struct window *window, int32_t x, int32_t y)
1583{
Pekka Paalanen35e82632013-04-25 13:57:48 +03001584 struct surface *surface;
1585 struct widget *widget;
1586
1587 wl_list_for_each(surface, &window->subsurface_list, link) {
1588 widget = widget_find_widget(surface->widget, x, y);
1589 if (widget)
1590 return widget;
1591 }
1592
1593 return NULL;
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02001594}
1595
1596static struct widget *
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +02001597widget_create(struct window *window, struct surface *surface, void *data)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001598{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001599 struct widget *widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001600
Peter Huttererf3d62272013-08-08 11:57:05 +10001601 widget = xzalloc(sizeof *widget);
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001602 widget->window = window;
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +02001603 widget->surface = surface;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001604 widget->user_data = data;
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +02001605 widget->allocation = surface->allocation;
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001606 wl_list_init(&widget->child_list);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001607 widget->opaque = 0;
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001608 widget->tooltip = NULL;
1609 widget->tooltip_count = 0;
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05001610 widget->default_cursor = CURSOR_LEFT_PTR;
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001611
1612 return widget;
1613}
1614
1615struct widget *
1616window_add_widget(struct window *window, void *data)
1617{
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02001618 struct widget *widget;
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001619
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +02001620 widget = widget_create(window, window->main_surface, data);
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02001621 wl_list_init(&widget->link);
1622 window->main_surface->widget = widget;
1623
1624 return widget;
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001625}
1626
1627struct widget *
1628widget_add_widget(struct widget *parent, void *data)
1629{
1630 struct widget *widget;
1631
Pekka Paalanen2d8a32a2013-02-13 16:17:19 +02001632 widget = widget_create(parent->window, parent->surface, data);
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001633 wl_list_insert(parent->child_list.prev, &widget->link);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001634
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001635 return widget;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001636}
1637
1638void
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001639widget_destroy(struct widget *widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001640{
Pekka Paalanene156fb62012-01-19 13:51:38 +02001641 struct display *display = widget->window->display;
Pekka Paalanen35e82632013-04-25 13:57:48 +03001642 struct surface *surface = widget->surface;
Pekka Paalanene156fb62012-01-19 13:51:38 +02001643 struct input *input;
1644
Pekka Paalanen35e82632013-04-25 13:57:48 +03001645 /* Destroy the sub-surface along with the root widget */
1646 if (surface->widget == widget && surface->subsurface)
1647 surface_destroy(widget->surface);
1648
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001649 if (widget->tooltip) {
1650 free(widget->tooltip);
1651 widget->tooltip = NULL;
1652 }
1653
Pekka Paalanene156fb62012-01-19 13:51:38 +02001654 wl_list_for_each(input, &display->input_list, link) {
1655 if (input->focus_widget == widget)
1656 input->focus_widget = NULL;
1657 }
1658
Kristian Høgsberg441338c2012-01-10 13:52:34 -05001659 wl_list_remove(&widget->link);
1660 free(widget);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001661}
1662
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001663void
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05001664widget_set_default_cursor(struct widget *widget, int cursor)
1665{
1666 widget->default_cursor = cursor;
1667}
1668
1669void
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001670widget_get_allocation(struct widget *widget, struct rectangle *allocation)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001671{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001672 *allocation = widget->allocation;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001673}
1674
1675void
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001676widget_set_size(struct widget *widget, int32_t width, int32_t height)
1677{
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001678 widget->allocation.width = width;
1679 widget->allocation.height = height;
Kristian Høgsbergbb977002012-01-10 19:11:42 -05001680}
1681
1682void
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001683widget_set_allocation(struct widget *widget,
1684 int32_t x, int32_t y, int32_t width, int32_t height)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001685{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001686 widget->allocation.x = x;
1687 widget->allocation.y = y;
Tiago Vignattic5528d82012-02-09 19:06:55 +02001688 widget_set_size(widget, width, height);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001689}
1690
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05001691void
1692widget_set_transparent(struct widget *widget, int transparent)
1693{
1694 widget->opaque = !transparent;
1695}
1696
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001697void *
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001698widget_get_user_data(struct widget *widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001699{
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05001700 return widget->user_data;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04001701}
1702
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001703static cairo_surface_t *
1704widget_get_cairo_surface(struct widget *widget)
1705{
1706 struct surface *surface = widget->surface;
1707 struct window *window = widget->window;
1708
1709 if (!surface->cairo_surface) {
1710 if (surface == window->main_surface)
1711 window_create_main_surface(window);
1712 else
1713 surface_create_surface(surface, 0, 0, 0);
1714 }
1715
1716 return surface->cairo_surface;
1717}
1718
Alexander Larsson15901f02013-05-22 14:41:25 +02001719static void
1720widget_cairo_update_transform(struct widget *widget, cairo_t *cr)
1721{
1722 struct surface *surface = widget->surface;
1723 double angle;
1724 cairo_matrix_t m;
1725 enum wl_output_transform transform;
1726 int surface_width, surface_height;
1727 int translate_x, translate_y;
Alexander Larssonedddbd12013-05-24 13:09:43 +02001728 int32_t scale;
Alexander Larsson15901f02013-05-22 14:41:25 +02001729
1730 surface_width = surface->allocation.width;
1731 surface_height = surface->allocation.height;
1732
Alexander Larsson5e9b6522013-05-22 14:41:28 +02001733 transform = surface->buffer_transform;
Alexander Larsson2aaa8b72013-05-22 14:41:29 +02001734 scale = surface->buffer_scale;
Alexander Larsson5e9b6522013-05-22 14:41:28 +02001735
Alexander Larsson15901f02013-05-22 14:41:25 +02001736 switch (transform) {
1737 case WL_OUTPUT_TRANSFORM_FLIPPED:
1738 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
1739 case WL_OUTPUT_TRANSFORM_FLIPPED_180:
1740 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
1741 cairo_matrix_init(&m, -1, 0, 0, 1, 0, 0);
1742 break;
1743 default:
1744 cairo_matrix_init_identity(&m);
1745 break;
1746 }
1747
1748 switch (transform) {
1749 case WL_OUTPUT_TRANSFORM_NORMAL:
1750 default:
1751 angle = 0;
1752 translate_x = 0;
1753 translate_y = 0;
1754 break;
1755 case WL_OUTPUT_TRANSFORM_FLIPPED:
1756 angle = 0;
1757 translate_x = surface_width;
1758 translate_y = 0;
1759 break;
1760 case WL_OUTPUT_TRANSFORM_90:
1761 angle = M_PI_2;
1762 translate_x = surface_height;
1763 translate_y = 0;
1764 break;
1765 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
1766 angle = M_PI_2;
1767 translate_x = surface_height;
1768 translate_y = surface_width;
1769 break;
1770 case WL_OUTPUT_TRANSFORM_180:
1771 angle = M_PI;
1772 translate_x = surface_width;
1773 translate_y = surface_height;
1774 break;
1775 case WL_OUTPUT_TRANSFORM_FLIPPED_180:
1776 angle = M_PI;
1777 translate_x = 0;
1778 translate_y = surface_height;
1779 break;
1780 case WL_OUTPUT_TRANSFORM_270:
1781 angle = M_PI + M_PI_2;
1782 translate_x = 0;
1783 translate_y = surface_width;
1784 break;
1785 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
1786 angle = M_PI + M_PI_2;
1787 translate_x = 0;
1788 translate_y = 0;
1789 break;
1790 }
1791
Alexander Larsson2aaa8b72013-05-22 14:41:29 +02001792 cairo_scale(cr, scale, scale);
Alexander Larsson15901f02013-05-22 14:41:25 +02001793 cairo_translate(cr, translate_x, translate_y);
1794 cairo_rotate(cr, angle);
1795 cairo_transform(cr, &m);
1796}
1797
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001798cairo_t *
1799widget_cairo_create(struct widget *widget)
1800{
Pekka Paalanen35e82632013-04-25 13:57:48 +03001801 struct surface *surface = widget->surface;
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001802 cairo_surface_t *cairo_surface;
1803 cairo_t *cr;
1804
1805 cairo_surface = widget_get_cairo_surface(widget);
1806 cr = cairo_create(cairo_surface);
1807
Alexander Larsson15901f02013-05-22 14:41:25 +02001808 widget_cairo_update_transform(widget, cr);
1809
Pekka Paalanen35e82632013-04-25 13:57:48 +03001810 cairo_translate(cr, -surface->allocation.x, -surface->allocation.y);
1811
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001812 return cr;
1813}
1814
Pekka Paalanen7ff7a802013-04-25 13:57:50 +03001815struct wl_surface *
1816widget_get_wl_surface(struct widget *widget)
1817{
1818 return widget->surface->surface;
1819}
1820
Neil Roberts5e10a042013-09-09 00:40:17 +01001821struct wl_subsurface *
1822widget_get_wl_subsurface(struct widget *widget)
1823{
1824 return widget->surface->subsurface;
1825}
1826
Pekka Paalanen7ff7a802013-04-25 13:57:50 +03001827uint32_t
1828widget_get_last_time(struct widget *widget)
1829{
1830 return widget->surface->last_time;
1831}
1832
1833void
1834widget_input_region_add(struct widget *widget, const struct rectangle *rect)
1835{
1836 struct wl_compositor *comp = widget->window->display->compositor;
1837 struct surface *surface = widget->surface;
1838
1839 if (!surface->input_region)
1840 surface->input_region = wl_compositor_create_region(comp);
1841
1842 if (rect) {
1843 wl_region_add(surface->input_region,
1844 rect->x, rect->y, rect->width, rect->height);
1845 }
1846}
1847
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05001848void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05001849widget_set_resize_handler(struct widget *widget,
1850 widget_resize_handler_t handler)
1851{
1852 widget->resize_handler = handler;
1853}
1854
1855void
1856widget_set_redraw_handler(struct widget *widget,
1857 widget_redraw_handler_t handler)
1858{
1859 widget->redraw_handler = handler;
1860}
1861
1862void
Kristian Høgsbergee143232012-01-09 08:42:24 -05001863widget_set_enter_handler(struct widget *widget, widget_enter_handler_t handler)
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001864{
Kristian Høgsbergee143232012-01-09 08:42:24 -05001865 widget->enter_handler = handler;
1866}
1867
1868void
1869widget_set_leave_handler(struct widget *widget, widget_leave_handler_t handler)
1870{
1871 widget->leave_handler = handler;
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001872}
1873
1874void
Kristian Høgsberg04e98342012-01-09 09:36:16 -05001875widget_set_motion_handler(struct widget *widget,
1876 widget_motion_handler_t handler)
1877{
1878 widget->motion_handler = handler;
1879}
1880
1881void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05001882widget_set_button_handler(struct widget *widget,
1883 widget_button_handler_t handler)
1884{
1885 widget->button_handler = handler;
1886}
1887
1888void
Rusty Lynch041815a2013-08-08 21:20:38 -07001889widget_set_touch_up_handler(struct widget *widget,
1890 widget_touch_up_handler_t handler)
1891{
1892 widget->touch_up_handler = handler;
1893}
1894
1895void
1896widget_set_touch_down_handler(struct widget *widget,
1897 widget_touch_down_handler_t handler)
1898{
1899 widget->touch_down_handler = handler;
1900}
1901
1902void
1903widget_set_touch_motion_handler(struct widget *widget,
1904 widget_touch_motion_handler_t handler)
1905{
1906 widget->touch_motion_handler = handler;
1907}
1908
1909void
1910widget_set_touch_frame_handler(struct widget *widget,
1911 widget_touch_frame_handler_t handler)
1912{
1913 widget->touch_frame_handler = handler;
1914}
1915
1916void
1917widget_set_touch_cancel_handler(struct widget *widget,
1918 widget_touch_cancel_handler_t handler)
1919{
1920 widget->touch_cancel_handler = handler;
1921}
1922
1923void
Philipp Brüschweiler7e0cc542012-08-14 11:02:41 +02001924widget_set_axis_handler(struct widget *widget,
1925 widget_axis_handler_t handler)
1926{
1927 widget->axis_handler = handler;
1928}
1929
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03001930static void
1931window_schedule_redraw_task(struct window *window);
1932
Philipp Brüschweiler7e0cc542012-08-14 11:02:41 +02001933void
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001934widget_schedule_redraw(struct widget *widget)
1935{
Pekka Paalanen71233882013-04-25 13:57:53 +03001936 DBG_OBJ(widget->surface->surface, "widget %p\n", widget);
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03001937 widget->surface->redraw_needed = 1;
1938 window_schedule_redraw_task(widget->window);
Kristian Høgsberg9a13dab2012-01-08 15:18:19 -05001939}
1940
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04001941cairo_surface_t *
1942window_get_surface(struct window *window)
1943{
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001944 cairo_surface_t *cairo_surface;
1945
1946 cairo_surface = widget_get_cairo_surface(window->main_surface->widget);
1947
1948 return cairo_surface_reference(cairo_surface);
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04001949}
1950
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001951struct wl_surface *
1952window_get_wl_surface(struct window *window)
1953{
Pekka Paalanen4e373742013-02-13 16:17:13 +02001954 return window->main_surface->surface;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +01001955}
1956
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05001957static void
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001958tooltip_redraw_handler(struct widget *widget, void *data)
1959{
1960 cairo_t *cr;
1961 const int32_t r = 3;
1962 struct tooltip *tooltip = data;
1963 int32_t width, height;
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001964
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02001965 cr = widget_cairo_create(widget);
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001966 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
1967 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.0);
1968 cairo_paint(cr);
1969
Pekka Paalanen0a9686f2013-02-13 16:17:22 +02001970 width = widget->allocation.width;
1971 height = widget->allocation.height;
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001972 rounded_rect(cr, 0, 0, width, height, r);
1973
1974 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
1975 cairo_set_source_rgba(cr, 0.0, 0.0, 0.4, 0.8);
1976 cairo_fill(cr);
1977
1978 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
1979 cairo_move_to(cr, 10, 16);
1980 cairo_show_text(cr, tooltip->entry);
1981 cairo_destroy(cr);
1982}
1983
1984static cairo_text_extents_t
1985get_text_extents(struct tooltip *tooltip)
1986{
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001987 cairo_t *cr;
1988 cairo_text_extents_t extents;
1989
Pekka Paalanen3cbb0892012-11-19 17:16:01 +02001990 /* Use the dummy_surface because tooltip's surface was not
1991 * created yet, and parent does not have a valid surface
1992 * outside repaint, either.
1993 */
1994 cr = cairo_create(tooltip->window->display->dummy_surface);
Tiago Vignatti82db9d82012-05-23 22:06:27 +03001995 cairo_text_extents(cr, tooltip->entry, &extents);
1996 cairo_destroy(cr);
1997
1998 return extents;
1999}
2000
2001static int
2002window_create_tooltip(struct tooltip *tooltip)
2003{
2004 struct widget *parent = tooltip->parent;
2005 struct display *display = parent->window->display;
2006 struct window *window;
2007 const int offset_y = 27;
2008 const int margin = 3;
2009 cairo_text_extents_t extents;
2010
2011 if (tooltip->widget)
2012 return 0;
2013
2014 window = window_create_transient(display, parent->window, tooltip->x,
2015 tooltip->y + offset_y,
2016 WL_SHELL_SURFACE_TRANSIENT_INACTIVE);
2017 if (!window)
2018 return -1;
2019
2020 tooltip->window = window;
2021 tooltip->widget = window_add_widget(tooltip->window, tooltip);
2022
2023 extents = get_text_extents(tooltip);
2024 widget_set_redraw_handler(tooltip->widget, tooltip_redraw_handler);
2025 window_schedule_resize(window, extents.width + 20, 20 + margin * 2);
2026
2027 return 0;
2028}
2029
2030void
2031widget_destroy_tooltip(struct widget *parent)
2032{
2033 struct tooltip *tooltip = parent->tooltip;
2034
2035 parent->tooltip_count = 0;
2036 if (!tooltip)
2037 return;
2038
2039 if (tooltip->widget) {
2040 widget_destroy(tooltip->widget);
2041 window_destroy(tooltip->window);
2042 tooltip->widget = NULL;
2043 tooltip->window = NULL;
2044 }
2045
2046 close(tooltip->tooltip_fd);
2047 free(tooltip->entry);
2048 free(tooltip);
2049 parent->tooltip = NULL;
2050}
2051
2052static void
2053tooltip_func(struct task *task, uint32_t events)
2054{
2055 struct tooltip *tooltip =
2056 container_of(task, struct tooltip, tooltip_task);
2057 uint64_t exp;
2058
Martin Olsson8df662a2012-07-08 03:03:47 +02002059 if (read(tooltip->tooltip_fd, &exp, sizeof (uint64_t)) != sizeof (uint64_t))
2060 abort();
Tiago Vignatti82db9d82012-05-23 22:06:27 +03002061 window_create_tooltip(tooltip);
2062}
2063
2064#define TOOLTIP_TIMEOUT 500
2065static int
2066tooltip_timer_reset(struct tooltip *tooltip)
2067{
2068 struct itimerspec its;
2069
2070 its.it_interval.tv_sec = 0;
2071 its.it_interval.tv_nsec = 0;
2072 its.it_value.tv_sec = TOOLTIP_TIMEOUT / 1000;
2073 its.it_value.tv_nsec = (TOOLTIP_TIMEOUT % 1000) * 1000 * 1000;
2074 if (timerfd_settime(tooltip->tooltip_fd, 0, &its, NULL) < 0) {
2075 fprintf(stderr, "could not set timerfd\n: %m");
2076 return -1;
2077 }
2078
2079 return 0;
2080}
2081
2082int
2083widget_set_tooltip(struct widget *parent, char *entry, float x, float y)
2084{
2085 struct tooltip *tooltip = parent->tooltip;
2086
2087 parent->tooltip_count++;
2088 if (tooltip) {
2089 tooltip->x = x;
2090 tooltip->y = y;
2091 tooltip_timer_reset(tooltip);
2092 return 0;
2093 }
2094
2095 /* the handler might be triggered too fast via input device motion, so
2096 * we need this check here to make sure tooltip is fully initialized */
2097 if (parent->tooltip_count > 1)
2098 return 0;
2099
2100 tooltip = malloc(sizeof *tooltip);
2101 if (!tooltip)
2102 return -1;
2103
2104 parent->tooltip = tooltip;
2105 tooltip->parent = parent;
2106 tooltip->widget = NULL;
2107 tooltip->window = NULL;
2108 tooltip->x = x;
2109 tooltip->y = y;
2110 tooltip->entry = strdup(entry);
2111 tooltip->tooltip_fd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
2112 if (tooltip->tooltip_fd < 0) {
2113 fprintf(stderr, "could not create timerfd\n: %m");
2114 return -1;
2115 }
2116
2117 tooltip->tooltip_task.run = tooltip_func;
2118 display_watch_fd(parent->window->display, tooltip->tooltip_fd,
2119 EPOLLIN, &tooltip->tooltip_task);
2120 tooltip_timer_reset(tooltip);
2121
2122 return 0;
2123}
2124
2125static void
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02002126workspace_manager_state(void *data,
2127 struct workspace_manager *workspace_manager,
2128 uint32_t current,
2129 uint32_t count)
2130{
2131 struct display *display = data;
2132
2133 display->workspace = current;
2134 display->workspace_count = count;
2135}
2136
2137static const struct workspace_manager_listener workspace_manager_listener = {
2138 workspace_manager_state
2139};
2140
2141static void
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002142frame_resize_handler(struct widget *widget,
2143 int32_t width, int32_t height, void *data)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002144{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002145 struct window_frame *frame = data;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002146 struct widget *child = frame->child;
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002147 struct rectangle interior;
2148 struct rectangle input;
2149 struct rectangle opaque;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002150
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002151 if (widget->window->type == TYPE_FULLSCREEN) {
2152 interior.x = 0;
2153 interior.y = 0;
2154 interior.width = width;
2155 interior.height = height;
2156 } else {
2157 if (widget->window->type == TYPE_MAXIMIZED) {
2158 frame_set_flag(frame->frame, FRAME_FLAG_MAXIMIZED);
2159 } else {
2160 frame_unset_flag(frame->frame, FRAME_FLAG_MAXIMIZED);
2161 }
Scott Moreauc6a7e4b2012-09-28 02:45:06 -06002162
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002163 frame_resize(frame->frame, width, height);
2164 frame_interior(frame->frame, &interior.x, &interior.y,
2165 &interior.width, &interior.height);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05002166 }
2167
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002168 widget_set_allocation(child, interior.x, interior.y,
2169 interior.width, interior.height);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002170
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002171 if (child->resize_handler) {
2172 child->resize_handler(child, interior.width, interior.height,
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002173 child->user_data);
2174
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002175 if (widget->window->type == TYPE_FULLSCREEN) {
2176 width = child->allocation.width;
2177 height = child->allocation.height;
2178 } else {
2179 frame_resize_inside(frame->frame,
2180 child->allocation.width,
2181 child->allocation.height);
2182 width = frame_width(frame->frame);
2183 height = frame_height(frame->frame);
2184 }
Kristian Høgsberg023be102012-07-31 11:59:12 -04002185 }
2186
Scott Moreauf7e498c2012-05-14 11:39:29 -06002187 widget_set_allocation(widget, 0, 0, width, height);
Kristian Høgsbergf10df852012-02-28 21:52:12 -05002188
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002189 widget->surface->input_region =
2190 wl_compositor_create_region(widget->window->display->compositor);
2191 if (widget->window->type != TYPE_FULLSCREEN) {
2192 frame_input_rect(frame->frame, &input.x, &input.y,
2193 &input.width, &input.height);
2194 wl_region_add(widget->surface->input_region,
2195 input.x, input.y, input.width, input.height);
Pekka Vuorela4e363d22012-09-26 15:05:45 +03002196 } else {
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002197 wl_region_add(widget->surface->input_region, 0, 0, width, height);
Pekka Vuorela4e363d22012-09-26 15:05:45 +03002198 }
2199
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002200 widget_set_allocation(widget, 0, 0, width, height);
Pekka Vuorela4e363d22012-09-26 15:05:45 +03002201
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002202 if (child->opaque) {
Kristian Høgsberg598477d2013-10-16 16:06:18 -07002203 if (widget->window->type != TYPE_FULLSCREEN) {
2204 frame_opaque_rect(frame->frame, &opaque.x, &opaque.y,
2205 &opaque.width, &opaque.height);
2206
2207 wl_region_add(widget->surface->opaque_region,
2208 opaque.x, opaque.y,
2209 opaque.width, opaque.height);
2210 } else {
2211 wl_region_add(widget->surface->opaque_region,
2212 0, 0, width, height);
2213 }
Martin Minarik1998b152012-05-10 02:04:35 +02002214 }
2215
Martin Minarik1998b152012-05-10 02:04:35 +02002216
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002217 widget_schedule_redraw(widget);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002218}
2219
2220static void
2221frame_redraw_handler(struct widget *widget, void *data)
2222{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002223 cairo_t *cr;
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002224 struct window_frame *frame = data;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002225 struct window *window = widget->window;
2226
Kristian Høgsberg2675dc12012-02-16 22:57:21 -05002227 if (window->type == TYPE_FULLSCREEN)
2228 return;
2229
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002230 if (window->focus_count) {
2231 frame_set_flag(frame->frame, FRAME_FLAG_ACTIVE);
2232 } else {
2233 frame_unset_flag(frame->frame, FRAME_FLAG_ACTIVE);
2234 }
2235
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02002236 cr = widget_cairo_create(widget);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002237
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002238 frame_repaint(frame->frame, cr);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002239
2240 cairo_destroy(cr);
2241}
2242
2243static int
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002244frame_get_pointer_image_for_location(struct window_frame *frame,
2245 enum theme_location location)
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002246{
Scott Moreauc6a7e4b2012-09-28 02:45:06 -06002247 struct window *window = frame->widget->window;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002248
Kristian Høgsberge994edd2013-02-14 16:31:42 -05002249 if (window->type != TYPE_TOPLEVEL)
2250 return CURSOR_LEFT_PTR;
2251
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002252 switch (location) {
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002253 case THEME_LOCATION_RESIZING_TOP:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002254 return CURSOR_TOP;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002255 case THEME_LOCATION_RESIZING_BOTTOM:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002256 return CURSOR_BOTTOM;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002257 case THEME_LOCATION_RESIZING_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002258 return CURSOR_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002259 case THEME_LOCATION_RESIZING_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002260 return CURSOR_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002261 case THEME_LOCATION_RESIZING_TOP_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002262 return CURSOR_TOP_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002263 case THEME_LOCATION_RESIZING_TOP_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002264 return CURSOR_TOP_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002265 case THEME_LOCATION_RESIZING_BOTTOM_LEFT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002266 return CURSOR_BOTTOM_LEFT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002267 case THEME_LOCATION_RESIZING_BOTTOM_RIGHT:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002268 return CURSOR_BOTTOM_RIGHT;
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -04002269 case THEME_LOCATION_EXTERIOR:
2270 case THEME_LOCATION_TITLEBAR:
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002271 default:
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03002272 return CURSOR_LEFT_PTR;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002273 }
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05002274}
2275
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002276static void
Kristian Høgsberg67b82152013-10-23 16:52:05 -07002277frame_menu_func(struct window *window,
2278 struct input *input, int index, void *data)
Kristian Høgsbergcd9ac1d2011-12-15 09:14:34 -05002279{
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02002280 struct display *display;
2281
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002282 switch (index) {
2283 case 0: /* close */
2284 if (window->close_handler)
Jasper St. Pierrebf175902013-11-12 20:19:58 -05002285 window->close_handler(window->user_data);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002286 else
2287 display_exit(window->display);
2288 break;
Kristian Høgsbergefb94882012-10-30 18:07:02 -04002289 case 1: /* move to workspace above */
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02002290 display = window->display;
2291 if (display->workspace > 0)
Pekka Paalanen4e373742013-02-13 16:17:13 +02002292 workspace_manager_move_surface(
2293 display->workspace_manager,
2294 window->main_surface->surface,
2295 display->workspace - 1);
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02002296 break;
Kristian Høgsbergefb94882012-10-30 18:07:02 -04002297 case 2: /* move to workspace below */
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02002298 display = window->display;
Philipp Brüschweiler067abf62012-09-01 16:03:05 +02002299 if (display->workspace < display->workspace_count - 1)
Pekka Paalanen4e373742013-02-13 16:17:13 +02002300 workspace_manager_move_surface(
2301 display->workspace_manager,
2302 window->main_surface->surface,
2303 display->workspace + 1);
Kristian Høgsberg0f7a2852012-11-05 20:20:53 -05002304 break;
Kristian Høgsbergefb94882012-10-30 18:07:02 -04002305 case 3: /* fullscreen */
2306 /* we don't have a way to get out of fullscreen for now */
2307 if (window->fullscreen_handler)
2308 window->fullscreen_handler(window, window->user_data);
2309 break;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002310 }
2311}
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002312
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05002313void
2314window_show_frame_menu(struct window *window,
2315 struct input *input, uint32_t time)
2316{
2317 int32_t x, y;
Kristian Høgsbergefb94882012-10-30 18:07:02 -04002318 int count;
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05002319
2320 static const char *entries[] = {
Kristian Høgsbergefb94882012-10-30 18:07:02 -04002321 "Close",
2322 "Move to workspace above", "Move to workspace below",
2323 "Fullscreen"
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05002324 };
2325
Kristian Høgsbergefb94882012-10-30 18:07:02 -04002326 if (window->fullscreen_handler)
2327 count = ARRAY_LENGTH(entries);
2328 else
2329 count = ARRAY_LENGTH(entries) - 1;
2330
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05002331 input_get_position(input, &x, &y);
2332 window_show_menu(window->display, input, time, window,
Kristian Høgsbergefb94882012-10-30 18:07:02 -04002333 x - 10, y - 10, frame_menu_func, entries, count);
Kristian Høgsbergd31fcab2012-01-31 09:53:44 -05002334}
2335
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002336static int
2337frame_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002338 struct input *input, float x, float y, void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002339{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002340 struct window_frame *frame = data;
2341 enum theme_location location;
2342
2343 location = frame_pointer_enter(frame->frame, input, x, y);
2344 if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2345 widget_schedule_redraw(frame->widget);
2346
2347 return frame_get_pointer_image_for_location(data, location);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002348}
Kristian Høgsberg7d804062010-09-07 21:50:06 -04002349
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002350static int
2351frame_motion_handler(struct widget *widget,
2352 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002353 float x, float y, void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002354{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002355 struct window_frame *frame = data;
2356 enum theme_location location;
2357
2358 location = frame_pointer_motion(frame->frame, input, x, y);
2359 if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2360 widget_schedule_redraw(frame->widget);
2361
2362 return frame_get_pointer_image_for_location(data, location);
2363}
2364
2365static void
2366frame_leave_handler(struct widget *widget,
2367 struct input *input, void *data)
2368{
2369 struct window_frame *frame = data;
2370
2371 frame_pointer_leave(frame->frame, input);
2372 if (frame_status(frame->frame) & FRAME_STATUS_REPAINT)
2373 widget_schedule_redraw(frame->widget);
2374}
2375
2376static void
2377frame_handle_status(struct window_frame *frame, struct input *input,
2378 uint32_t time, enum theme_location location)
2379{
2380 struct window *window = frame->widget->window;
2381 uint32_t status;
2382
2383 status = frame_status(frame->frame);
2384 if (status & FRAME_STATUS_REPAINT)
2385 widget_schedule_redraw(frame->widget);
2386
2387 if (status & FRAME_STATUS_MINIMIZE)
2388 fprintf(stderr,"Minimize stub\n");
2389
2390 if (status & FRAME_STATUS_MENU) {
2391 window_show_frame_menu(window, input, time);
2392 frame_status_clear(frame->frame, FRAME_STATUS_MENU);
2393 }
2394
2395 if (status & FRAME_STATUS_MAXIMIZE) {
2396 window_set_maximized(window, window->type != TYPE_MAXIMIZED);
2397 frame_status_clear(frame->frame, FRAME_STATUS_MAXIMIZE);
2398 }
2399
2400 if (status & FRAME_STATUS_CLOSE) {
2401 if (window->close_handler)
Jasper St. Pierrebf175902013-11-12 20:19:58 -05002402 window->close_handler(window->user_data);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002403 else
2404 display_exit(window->display);
Jason Ekstrand4a7409a2013-10-27 21:32:54 -05002405 return;
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002406 }
2407
2408 if ((status & FRAME_STATUS_MOVE) && window->shell_surface) {
2409 input_ungrab(input);
2410 wl_shell_surface_move(window->shell_surface,
2411 input_get_seat(input),
2412 window->display->serial);
2413
2414 frame_status_clear(frame->frame, FRAME_STATUS_MOVE);
2415 }
2416
2417 if ((status & FRAME_STATUS_RESIZE) && window->shell_surface) {
2418 input_ungrab(input);
2419
2420 window->resizing = 1;
2421 wl_shell_surface_resize(window->shell_surface,
2422 input_get_seat(input),
2423 window->display->serial,
2424 location);
2425
2426 frame_status_clear(frame->frame, FRAME_STATUS_RESIZE);
2427 }
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002428}
Rob Bradford8bd35c72011-10-25 12:20:51 +01002429
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002430static void
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002431frame_button_handler(struct widget *widget,
2432 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01002433 uint32_t button, enum wl_pointer_button_state state,
2434 void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002435
2436{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002437 struct window_frame *frame = data;
2438 enum theme_location location;
Kristian Høgsberg1103a1a2012-04-03 12:00:48 -04002439
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002440 location = frame_pointer_button(frame->frame, input, button, state);
2441 frame_handle_status(frame, input, time, location);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002442}
2443
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002444static void
Rusty Lynch1084da52013-08-15 09:10:08 -07002445frame_touch_down_handler(struct widget *widget, struct input *input,
2446 uint32_t serial, uint32_t time, int32_t id,
2447 float x, float y, void *data)
2448{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002449 struct window_frame *frame = data;
2450
2451 frame_touch_down(frame->frame, input, id, x, y);
2452 frame_handle_status(frame, input, time, THEME_LOCATION_CLIENT_AREA);
2453}
2454
2455static void
2456frame_touch_up_handler(struct widget *widget,
2457 struct input *input, uint32_t serial, uint32_t time,
2458 int32_t id, void *data)
2459{
2460 struct window_frame *frame = data;
2461
2462 frame_touch_up(frame->frame, input, id);
2463 frame_handle_status(frame, input, time, THEME_LOCATION_CLIENT_AREA);
Rusty Lynch1084da52013-08-15 09:10:08 -07002464}
2465
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002466struct widget *
Jason Ekstrandee7fefc2013-10-13 19:08:38 -05002467window_frame_create(struct window *window, void *data)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002468{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002469 struct window_frame *frame;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002470
Peter Huttererf3d62272013-08-08 11:57:05 +10002471 frame = xzalloc(sizeof *frame);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002472 frame->frame = frame_create(window->display->theme, 0, 0,
2473 FRAME_BUTTON_ALL, window->title);
2474
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002475 frame->widget = window_add_widget(window, frame);
2476 frame->child = widget_add_widget(frame->widget, data);
Martin Minarik1998b152012-05-10 02:04:35 +02002477
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002478 widget_set_redraw_handler(frame->widget, frame_redraw_handler);
2479 widget_set_resize_handler(frame->widget, frame_resize_handler);
2480 widget_set_enter_handler(frame->widget, frame_enter_handler);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002481 widget_set_leave_handler(frame->widget, frame_leave_handler);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002482 widget_set_motion_handler(frame->widget, frame_motion_handler);
2483 widget_set_button_handler(frame->widget, frame_button_handler);
Rusty Lynch1084da52013-08-15 09:10:08 -07002484 widget_set_touch_down_handler(frame->widget, frame_touch_down_handler);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002485 widget_set_touch_up_handler(frame->widget, frame_touch_up_handler);
Martin Minarik1998b152012-05-10 02:04:35 +02002486
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02002487 window->frame = frame;
2488
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002489 return frame->child;
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04002490}
2491
Kristian Høgsberga1627922012-06-20 17:30:03 -04002492void
Jason Ekstrandee7fefc2013-10-13 19:08:38 -05002493window_frame_set_child_size(struct widget *widget, int child_width,
2494 int child_height)
Kristian Høgsberga1627922012-06-20 17:30:03 -04002495{
2496 struct display *display = widget->window->display;
2497 struct theme *t = display->theme;
2498 int decoration_width, decoration_height;
2499 int width, height;
Scott Moreauc6a7e4b2012-09-28 02:45:06 -06002500 int margin = widget->window->type == TYPE_MAXIMIZED ? 0 : t->margin;
Kristian Høgsberga1627922012-06-20 17:30:03 -04002501
2502 if (widget->window->type != TYPE_FULLSCREEN) {
Scott Moreauc6a7e4b2012-09-28 02:45:06 -06002503 decoration_width = (t->width + margin) * 2;
Kristian Høgsberga1627922012-06-20 17:30:03 -04002504 decoration_height = t->width +
Scott Moreauc6a7e4b2012-09-28 02:45:06 -06002505 t->titlebar_height + margin * 2;
Kristian Høgsberga1627922012-06-20 17:30:03 -04002506
2507 width = child_width + decoration_width;
2508 height = child_height + decoration_height;
2509 } else {
2510 width = child_width;
2511 height = child_height;
2512 }
2513
2514 window_schedule_resize(widget->window, width, height);
2515}
2516
Kristian Høgsberge4feb562008-11-08 18:53:37 -05002517static void
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002518window_frame_destroy(struct window_frame *frame)
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02002519{
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05002520 frame_destroy(frame->frame);
Martin Minarik1998b152012-05-10 02:04:35 +02002521
Pekka Paalanen4dde2fc2012-01-19 13:33:50 +02002522 /* frame->child must be destroyed by the application */
2523 widget_destroy(frame->widget);
2524 free(frame);
2525}
2526
2527static void
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002528input_set_focus_widget(struct input *input, struct widget *focus,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002529 float x, float y)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002530{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002531 struct widget *old, *widget;
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05002532 int cursor;
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002533
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002534 if (focus == input->focus_widget)
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002535 return;
2536
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002537 old = input->focus_widget;
Kristian Høgsbergee143232012-01-09 08:42:24 -05002538 if (old) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002539 widget = old;
2540 if (input->grab)
2541 widget = input->grab;
2542 if (widget->leave_handler)
2543 widget->leave_handler(old, input, widget->user_data);
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002544 input->focus_widget = NULL;
Kristian Høgsbergee143232012-01-09 08:42:24 -05002545 }
2546
2547 if (focus) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002548 widget = focus;
2549 if (input->grab)
2550 widget = input->grab;
Kristian Høgsbergf33984e2012-06-04 23:36:32 -04002551 input->focus_widget = focus;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002552 if (widget->enter_handler)
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05002553 cursor = widget->enter_handler(focus, input, x, y,
2554 widget->user_data);
2555 else
2556 cursor = widget->default_cursor;
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05002557
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05002558 input_set_pointer_image(input, cursor);
Kristian Høgsbergee143232012-01-09 08:42:24 -05002559 }
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002560}
2561
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002562void
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08002563touch_grab(struct input *input, int32_t touch_id)
2564{
2565 input->touch_grab = 1;
2566 input->touch_grab_id = touch_id;
2567}
2568
2569void
2570touch_ungrab(struct input *input)
2571{
2572 struct touch_point *tp, *tmp;
2573
2574 input->touch_grab = 0;
2575
2576 wl_list_for_each_safe(tp, tmp,
2577 &input->touch_point_list, link) {
2578 if (tp->id != input->touch_grab_id)
2579 continue;
2580 wl_list_remove(&tp->link);
2581 free(tp);
2582
2583 return;
2584 }
2585}
2586
2587void
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002588input_grab(struct input *input, struct widget *widget, uint32_t button)
2589{
2590 input->grab = widget;
2591 input->grab_button = button;
2592}
2593
2594void
2595input_ungrab(struct input *input)
2596{
2597 struct widget *widget;
2598
2599 input->grab = NULL;
2600 if (input->pointer_focus) {
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02002601 widget = window_find_widget(input->pointer_focus,
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002602 input->sx, input->sy);
2603 input_set_focus_widget(input, widget, input->sx, input->sy);
2604 }
2605}
2606
2607static void
2608input_remove_pointer_focus(struct input *input)
2609{
2610 struct window *window = input->pointer_focus;
2611
2612 if (!window)
2613 return;
2614
2615 input_set_focus_widget(input, NULL, 0, 0);
2616
2617 input->pointer_focus = NULL;
2618 input->current_cursor = CURSOR_UNSET;
2619}
2620
2621static void
2622pointer_handle_enter(void *data, struct wl_pointer *pointer,
2623 uint32_t serial, struct wl_surface *surface,
2624 wl_fixed_t sx_w, wl_fixed_t sy_w)
2625{
2626 struct input *input = data;
2627 struct window *window;
2628 struct widget *widget;
2629 float sx = wl_fixed_to_double(sx_w);
2630 float sy = wl_fixed_to_double(sy_w);
2631
2632 if (!surface) {
2633 /* enter event for a window we've just destroyed */
2634 return;
2635 }
2636
2637 input->display->serial = serial;
2638 input->pointer_enter_serial = serial;
2639 input->pointer_focus = wl_surface_get_user_data(surface);
2640 window = input->pointer_focus;
2641
Pekka Paalanen99436862012-11-19 17:15:59 +02002642 if (window->resizing) {
2643 window->resizing = 0;
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002644 /* Schedule a redraw to free the pool */
2645 window_schedule_redraw(window);
2646 }
2647
2648 input->sx = sx;
2649 input->sy = sy;
2650
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02002651 widget = window_find_widget(window, sx, sy);
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002652 input_set_focus_widget(input, widget, sx, sy);
2653}
2654
2655static void
2656pointer_handle_leave(void *data, struct wl_pointer *pointer,
2657 uint32_t serial, struct wl_surface *surface)
2658{
2659 struct input *input = data;
2660
2661 input->display->serial = serial;
2662 input_remove_pointer_focus(input);
2663}
2664
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002665static void
Daniel Stone37816df2012-05-16 18:45:18 +01002666pointer_handle_motion(void *data, struct wl_pointer *pointer,
2667 uint32_t time, wl_fixed_t sx_w, wl_fixed_t sy_w)
Kristian Høgsberg61017b12008-11-02 18:51:48 -05002668{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002669 struct input *input = data;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002670 struct window *window = input->pointer_focus;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05002671 struct widget *widget;
Kristian Høgsbergbf74d522012-11-30 14:54:35 -05002672 int cursor;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04002673 float sx = wl_fixed_to_double(sx_w);
2674 float sy = wl_fixed_to_double(sy_w);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002675
Paul Winwoodb22bf572013-08-29 10:52:54 +01002676 input->sx = sx;
2677 input->sy = sy;
2678
2679 if (!window)
2680 return;
2681
Rob Bradford5f087742013-07-11 19:41:27 +01002682 /* when making the window smaller - e.g. after a unmaximise we might
2683 * still have a pending motion event that the compositor has picked
2684 * based on the old surface dimensions
2685 */
2686 if (sx > window->main_surface->allocation.width ||
2687 sy > window->main_surface->allocation.height)
2688 return;
2689
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002690 if (!(input->grab && input->grab_button)) {
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02002691 widget = window_find_widget(window, sx, sy);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002692 input_set_focus_widget(input, widget, sx, sy);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002693 }
2694
Kristian Høgsberg831dd522012-01-10 23:46:33 -05002695 if (input->grab)
2696 widget = input->grab;
2697 else
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002698 widget = input->focus_widget;
Kristian Høgsberg1a5f0c32013-08-15 14:15:18 -07002699 if (widget) {
2700 if (widget->motion_handler)
2701 cursor = widget->motion_handler(input->focus_widget,
2702 input, time, sx, sy,
2703 widget->user_data);
2704 else
2705 cursor = widget->default_cursor;
2706 } else
2707 cursor = CURSOR_LEFT_PTR;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04002708
Kristian Høgsberg5a4e9ff2012-06-04 16:04:07 -04002709 input_set_pointer_image(input, cursor);
Kristian Høgsberg61017b12008-11-02 18:51:48 -05002710}
2711
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04002712static void
Daniel Stone37816df2012-05-16 18:45:18 +01002713pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial,
Daniel Stone4dbadb12012-05-30 16:31:51 +01002714 uint32_t time, uint32_t button, uint32_t state_w)
Kristian Høgsberg94448c02008-12-30 11:03:33 -05002715{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002716 struct input *input = data;
Kristian Høgsbergc51f7992012-01-08 15:09:53 -05002717 struct widget *widget;
Daniel Stone4dbadb12012-05-30 16:31:51 +01002718 enum wl_pointer_button_state state = state_w;
Kristian Høgsbergbf6ceda2010-06-14 20:25:06 -04002719
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002720 input->display->serial = serial;
Daniel Stone4dbadb12012-05-30 16:31:51 +01002721 if (input->focus_widget && input->grab == NULL &&
2722 state == WL_POINTER_BUTTON_STATE_PRESSED)
Kristian Høgsbergb6323512012-01-11 00:04:42 -05002723 input_grab(input, input->focus_widget, button);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002724
Neil Roberts6b28aad2012-01-23 19:11:18 +00002725 widget = input->grab;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05002726 if (widget && widget->button_handler)
Neil Roberts6b28aad2012-01-23 19:11:18 +00002727 (*widget->button_handler)(widget,
2728 input, time,
2729 button, state,
2730 input->grab->user_data);
Kristian Høgsberge28d05b2011-09-20 21:43:54 -04002731
Daniel Stone4dbadb12012-05-30 16:31:51 +01002732 if (input->grab && input->grab_button == button &&
2733 state == WL_POINTER_BUTTON_STATE_RELEASED)
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002734 input_ungrab(input);
Kristian Høgsberg94448c02008-12-30 11:03:33 -05002735}
2736
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05002737static void
Daniel Stone37816df2012-05-16 18:45:18 +01002738pointer_handle_axis(void *data, struct wl_pointer *pointer,
Daniel Stone2fce4022012-05-30 16:32:00 +01002739 uint32_t time, uint32_t axis, wl_fixed_t value)
Scott Moreau210d0792012-03-22 10:47:01 -06002740{
Philipp Brüschweiler7e0cc542012-08-14 11:02:41 +02002741 struct input *input = data;
2742 struct widget *widget;
2743
2744 widget = input->focus_widget;
2745 if (input->grab)
2746 widget = input->grab;
2747 if (widget && widget->axis_handler)
2748 (*widget->axis_handler)(widget,
2749 input, time,
2750 axis, value,
2751 widget->user_data);
Scott Moreau210d0792012-03-22 10:47:01 -06002752}
2753
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002754static const struct wl_pointer_listener pointer_listener = {
2755 pointer_handle_enter,
2756 pointer_handle_leave,
2757 pointer_handle_motion,
2758 pointer_handle_button,
2759 pointer_handle_axis,
2760};
2761
2762static void
2763input_remove_keyboard_focus(struct input *input)
2764{
2765 struct window *window = input->keyboard_focus;
2766 struct itimerspec its;
2767
2768 its.it_interval.tv_sec = 0;
2769 its.it_interval.tv_nsec = 0;
2770 its.it_value.tv_sec = 0;
2771 its.it_value.tv_nsec = 0;
2772 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2773
2774 if (!window)
2775 return;
2776
Kristian Høgsberg86adef92012-08-13 22:25:53 -04002777 window->focus_count--;
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002778 if (window->keyboard_focus_handler)
2779 (*window->keyboard_focus_handler)(window, NULL,
2780 window->user_data);
2781
2782 input->keyboard_focus = NULL;
2783}
2784
2785static void
2786keyboard_repeat_func(struct task *task, uint32_t events)
2787{
2788 struct input *input =
2789 container_of(task, struct input, repeat_task);
2790 struct window *window = input->keyboard_focus;
2791 uint64_t exp;
2792
2793 if (read(input->repeat_timer_fd, &exp, sizeof exp) != sizeof exp)
2794 /* If we change the timer between the fd becoming
2795 * readable and getting here, there'll be nothing to
2796 * read and we get EAGAIN. */
2797 return;
2798
2799 if (window && window->key_handler) {
2800 (*window->key_handler)(window, input, input->repeat_time,
2801 input->repeat_key, input->repeat_sym,
2802 WL_KEYBOARD_KEY_STATE_PRESSED,
2803 window->user_data);
2804 }
2805}
2806
2807static void
2808keyboard_handle_keymap(void *data, struct wl_keyboard *keyboard,
2809 uint32_t format, int fd, uint32_t size)
2810{
2811 struct input *input = data;
Rui Matos3eccb862013-10-10 19:44:22 +02002812 struct xkb_keymap *keymap;
2813 struct xkb_state *state;
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002814 char *map_str;
2815
2816 if (!data) {
2817 close(fd);
2818 return;
2819 }
2820
2821 if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1) {
2822 close(fd);
2823 return;
2824 }
2825
2826 map_str = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
2827 if (map_str == MAP_FAILED) {
2828 close(fd);
2829 return;
2830 }
2831
Rui Matos3eccb862013-10-10 19:44:22 +02002832 keymap = xkb_map_new_from_string(input->display->xkb_context,
2833 map_str,
2834 XKB_KEYMAP_FORMAT_TEXT_V1,
2835 0);
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002836 munmap(map_str, size);
2837 close(fd);
2838
Rui Matos3eccb862013-10-10 19:44:22 +02002839 if (!keymap) {
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002840 fprintf(stderr, "failed to compile keymap\n");
2841 return;
2842 }
2843
Rui Matos3eccb862013-10-10 19:44:22 +02002844 state = xkb_state_new(keymap);
2845 if (!state) {
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002846 fprintf(stderr, "failed to create XKB state\n");
Rui Matos3eccb862013-10-10 19:44:22 +02002847 xkb_map_unref(keymap);
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002848 return;
2849 }
2850
Rui Matos3eccb862013-10-10 19:44:22 +02002851 xkb_keymap_unref(input->xkb.keymap);
2852 xkb_state_unref(input->xkb.state);
2853 input->xkb.keymap = keymap;
2854 input->xkb.state = state;
2855
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002856 input->xkb.control_mask =
2857 1 << xkb_map_mod_get_index(input->xkb.keymap, "Control");
2858 input->xkb.alt_mask =
2859 1 << xkb_map_mod_get_index(input->xkb.keymap, "Mod1");
2860 input->xkb.shift_mask =
2861 1 << xkb_map_mod_get_index(input->xkb.keymap, "Shift");
2862}
2863
2864static void
2865keyboard_handle_enter(void *data, struct wl_keyboard *keyboard,
2866 uint32_t serial, struct wl_surface *surface,
2867 struct wl_array *keys)
2868{
2869 struct input *input = data;
2870 struct window *window;
2871
2872 input->display->serial = serial;
2873 input->keyboard_focus = wl_surface_get_user_data(surface);
2874
2875 window = input->keyboard_focus;
Kristian Høgsberg86adef92012-08-13 22:25:53 -04002876 window->focus_count++;
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002877 if (window->keyboard_focus_handler)
2878 (*window->keyboard_focus_handler)(window,
Kristian Høgsberg86adef92012-08-13 22:25:53 -04002879 input, window->user_data);
Kristian Høgsbergb29798b2012-08-11 14:56:08 -04002880}
2881
2882static void
2883keyboard_handle_leave(void *data, struct wl_keyboard *keyboard,
2884 uint32_t serial, struct wl_surface *surface)
2885{
2886 struct input *input = data;
2887
2888 input->display->serial = serial;
2889 input_remove_keyboard_focus(input);
2890}
2891
Scott Moreau210d0792012-03-22 10:47:01 -06002892static void
Daniel Stone37816df2012-05-16 18:45:18 +01002893keyboard_handle_key(void *data, struct wl_keyboard *keyboard,
Daniel Stonec9785ea2012-05-30 16:31:52 +01002894 uint32_t serial, uint32_t time, uint32_t key,
2895 uint32_t state_w)
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05002896{
Kristian Høgsberg808fd412010-07-20 17:06:19 -04002897 struct input *input = data;
2898 struct window *window = input->keyboard_focus;
Kristian Høgsberg70163132012-05-08 15:55:39 -04002899 uint32_t code, num_syms;
Daniel Stonec9785ea2012-05-30 16:31:52 +01002900 enum wl_keyboard_key_state state = state_w;
Kristian Høgsberg70163132012-05-08 15:55:39 -04002901 const xkb_keysym_t *syms;
2902 xkb_keysym_t sym;
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04002903 struct itimerspec its;
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05002904
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04002905 input->display->serial = serial;
Daniel Stone0d5a5092012-02-16 12:48:00 +00002906 code = key + 8;
Kristian Høgsberg86adef92012-08-13 22:25:53 -04002907 if (!window || !input->xkb.state)
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05002908 return;
2909
Daniel Stone97f68542012-05-30 16:32:01 +01002910 num_syms = xkb_key_get_syms(input->xkb.state, code, &syms);
Kristian Høgsberg99f090d2009-02-23 22:37:14 -05002911
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04002912 sym = XKB_KEY_NoSymbol;
2913 if (num_syms == 1)
2914 sym = syms[0];
2915
2916 if (sym == XKB_KEY_F5 && input->modifiers == MOD_ALT_MASK) {
Daniel Stonec9785ea2012-05-30 16:31:52 +01002917 if (state == WL_KEYBOARD_KEY_STATE_PRESSED)
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05002918 window_set_maximized(window,
2919 window->type != TYPE_MAXIMIZED);
Kristian Høgsberg67ace202012-07-23 21:56:31 -04002920 } else if (sym == XKB_KEY_F11 &&
2921 window->fullscreen_handler &&
2922 state == WL_KEYBOARD_KEY_STATE_PRESSED) {
2923 window->fullscreen_handler(window, window->user_data);
Kristian Høgsberg4fc15352012-07-25 16:35:28 -04002924 } else if (sym == XKB_KEY_F4 &&
2925 input->modifiers == MOD_ALT_MASK &&
2926 state == WL_KEYBOARD_KEY_STATE_PRESSED) {
2927 if (window->close_handler)
Jasper St. Pierrebf175902013-11-12 20:19:58 -05002928 window->close_handler(window->user_data);
Kristian Høgsberg4fc15352012-07-25 16:35:28 -04002929 else
2930 display_exit(window->display);
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05002931 } else if (window->key_handler) {
2932 (*window->key_handler)(window, input, time, key,
2933 sym, state, window->user_data);
2934 }
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04002935
2936 if (state == WL_KEYBOARD_KEY_STATE_RELEASED &&
2937 key == input->repeat_key) {
2938 its.it_interval.tv_sec = 0;
2939 its.it_interval.tv_nsec = 0;
2940 its.it_value.tv_sec = 0;
2941 its.it_value.tv_nsec = 0;
2942 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2943 } else if (state == WL_KEYBOARD_KEY_STATE_PRESSED) {
2944 input->repeat_sym = sym;
2945 input->repeat_key = key;
2946 input->repeat_time = time;
2947 its.it_interval.tv_sec = 0;
2948 its.it_interval.tv_nsec = 25 * 1000 * 1000;
2949 its.it_value.tv_sec = 0;
2950 its.it_value.tv_nsec = 400 * 1000 * 1000;
2951 timerfd_settime(input->repeat_timer_fd, 0, &its, NULL);
2952 }
2953}
2954
2955static void
Daniel Stone351eb612012-05-31 15:27:47 -04002956keyboard_handle_modifiers(void *data, struct wl_keyboard *keyboard,
2957 uint32_t serial, uint32_t mods_depressed,
2958 uint32_t mods_latched, uint32_t mods_locked,
2959 uint32_t group)
2960{
2961 struct input *input = data;
Jonas Ådahld9f6b072012-09-27 18:40:45 +02002962 xkb_mod_mask_t mask;
Daniel Stone351eb612012-05-31 15:27:47 -04002963
Matt Ropere61561f2013-06-24 16:52:43 +01002964 /* If we're not using a keymap, then we don't handle PC-style modifiers */
2965 if (!input->xkb.keymap)
2966 return;
2967
Daniel Stoneb7452fe2012-06-01 12:14:06 +01002968 xkb_state_update_mask(input->xkb.state, mods_depressed, mods_latched,
2969 mods_locked, 0, 0, group);
Jonas Ådahld9f6b072012-09-27 18:40:45 +02002970 mask = xkb_state_serialize_mods(input->xkb.state,
2971 XKB_STATE_DEPRESSED |
2972 XKB_STATE_LATCHED);
2973 input->modifiers = 0;
2974 if (mask & input->xkb.control_mask)
2975 input->modifiers |= MOD_CONTROL_MASK;
2976 if (mask & input->xkb.alt_mask)
2977 input->modifiers |= MOD_ALT_MASK;
2978 if (mask & input->xkb.shift_mask)
2979 input->modifiers |= MOD_SHIFT_MASK;
Daniel Stone351eb612012-05-31 15:27:47 -04002980}
2981
Daniel Stone37816df2012-05-16 18:45:18 +01002982static const struct wl_keyboard_listener keyboard_listener = {
Daniel Stoneb7452fe2012-06-01 12:14:06 +01002983 keyboard_handle_keymap,
Daniel Stone37816df2012-05-16 18:45:18 +01002984 keyboard_handle_enter,
2985 keyboard_handle_leave,
2986 keyboard_handle_key,
Daniel Stone351eb612012-05-31 15:27:47 -04002987 keyboard_handle_modifiers,
Daniel Stone37816df2012-05-16 18:45:18 +01002988};
Kristian Høgsberge04ad572011-12-21 17:14:54 -05002989
2990static void
Rusty Lynch041815a2013-08-08 21:20:38 -07002991touch_handle_down(void *data, struct wl_touch *wl_touch,
2992 uint32_t serial, uint32_t time, struct wl_surface *surface,
2993 int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
2994{
2995 struct input *input = data;
2996 struct widget *widget;
2997 float sx = wl_fixed_to_double(x_w);
2998 float sy = wl_fixed_to_double(y_w);
2999
Rusty Lynch1084da52013-08-15 09:10:08 -07003000 input->display->serial = serial;
Rusty Lynch041815a2013-08-08 21:20:38 -07003001 input->touch_focus = wl_surface_get_user_data(surface);
3002 if (!input->touch_focus) {
3003 DBG("Failed to find to touch focus for surface %p\n", surface);
3004 return;
3005 }
3006
3007 widget = window_find_widget(input->touch_focus,
3008 wl_fixed_to_double(x_w),
3009 wl_fixed_to_double(y_w));
3010 if (widget) {
3011 struct touch_point *tp = xmalloc(sizeof *tp);
3012 if (tp) {
3013 tp->id = id;
3014 tp->widget = widget;
3015 wl_list_insert(&input->touch_point_list, &tp->link);
3016
3017 if (widget->touch_down_handler)
Rusty Lynch1084da52013-08-15 09:10:08 -07003018 (*widget->touch_down_handler)(widget, input,
3019 serial, time, id,
Rusty Lynch041815a2013-08-08 21:20:38 -07003020 sx, sy,
3021 widget->user_data);
3022 }
3023 }
3024}
3025
3026static void
3027touch_handle_up(void *data, struct wl_touch *wl_touch,
3028 uint32_t serial, uint32_t time, int32_t id)
3029{
3030 struct input *input = data;
3031 struct touch_point *tp, *tmp;
3032
Rusty Lynch041815a2013-08-08 21:20:38 -07003033 if (!input->touch_focus) {
3034 DBG("No touch focus found for touch up event!\n");
3035 return;
3036 }
3037
3038 wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3039 if (tp->id != id)
3040 continue;
3041
3042 if (tp->widget->touch_up_handler)
Rusty Lynch1084da52013-08-15 09:10:08 -07003043 (*tp->widget->touch_up_handler)(tp->widget, input, serial,
Rusty Lynch041815a2013-08-08 21:20:38 -07003044 time, id,
3045 tp->widget->user_data);
3046
3047 wl_list_remove(&tp->link);
3048 free(tp);
3049
3050 return;
3051 }
3052}
3053
3054static void
3055touch_handle_motion(void *data, struct wl_touch *wl_touch,
3056 uint32_t time, int32_t id, wl_fixed_t x_w, wl_fixed_t y_w)
3057{
3058 struct input *input = data;
3059 struct touch_point *tp;
3060 float sx = wl_fixed_to_double(x_w);
3061 float sy = wl_fixed_to_double(y_w);
3062
3063 DBG("touch_handle_motion: %i %i\n", id, wl_list_length(&input->touch_point_list));
3064
3065 if (!input->touch_focus) {
3066 DBG("No touch focus found for touch motion event!\n");
3067 return;
3068 }
3069
3070 wl_list_for_each(tp, &input->touch_point_list, link) {
3071 if (tp->id != id)
3072 continue;
3073
3074 if (tp->widget->touch_motion_handler)
Rusty Lynch1084da52013-08-15 09:10:08 -07003075 (*tp->widget->touch_motion_handler)(tp->widget, input, time,
Rusty Lynch041815a2013-08-08 21:20:38 -07003076 id, sx, sy,
3077 tp->widget->user_data);
3078 return;
3079 }
3080}
3081
3082static void
3083touch_handle_frame(void *data, struct wl_touch *wl_touch)
3084{
3085 struct input *input = data;
3086 struct touch_point *tp, *tmp;
3087
3088 DBG("touch_handle_frame\n");
3089
3090 if (!input->touch_focus) {
3091 DBG("No touch focus found for touch frame event!\n");
3092 return;
3093 }
3094
3095 wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3096 if (tp->widget->touch_frame_handler)
Rusty Lynch1084da52013-08-15 09:10:08 -07003097 (*tp->widget->touch_frame_handler)(tp->widget, input,
3098 tp->widget->user_data);
Rusty Lynch041815a2013-08-08 21:20:38 -07003099
3100 wl_list_remove(&tp->link);
3101 free(tp);
3102 }
3103}
3104
3105static void
3106touch_handle_cancel(void *data, struct wl_touch *wl_touch)
3107{
3108 struct input *input = data;
3109 struct touch_point *tp, *tmp;
3110
3111 DBG("touch_handle_cancel\n");
3112
3113 if (!input->touch_focus) {
3114 DBG("No touch focus found for touch cancel event!\n");
3115 return;
3116 }
3117
3118 wl_list_for_each_safe(tp, tmp, &input->touch_point_list, link) {
3119 if (tp->widget->touch_cancel_handler)
Rusty Lynch1084da52013-08-15 09:10:08 -07003120 (*tp->widget->touch_cancel_handler)(tp->widget, input,
3121 tp->widget->user_data);
Rusty Lynch041815a2013-08-08 21:20:38 -07003122
3123 wl_list_remove(&tp->link);
3124 free(tp);
3125 }
3126}
3127
3128static const struct wl_touch_listener touch_listener = {
3129 touch_handle_down,
3130 touch_handle_up,
3131 touch_handle_motion,
3132 touch_handle_frame,
3133 touch_handle_cancel,
3134};
3135
3136static void
Daniel Stone37816df2012-05-16 18:45:18 +01003137seat_handle_capabilities(void *data, struct wl_seat *seat,
3138 enum wl_seat_capability caps)
Kristian Høgsberge04ad572011-12-21 17:14:54 -05003139{
Daniel Stone37816df2012-05-16 18:45:18 +01003140 struct input *input = data;
3141
3142 if ((caps & WL_SEAT_CAPABILITY_POINTER) && !input->pointer) {
3143 input->pointer = wl_seat_get_pointer(seat);
3144 wl_pointer_set_user_data(input->pointer, input);
3145 wl_pointer_add_listener(input->pointer, &pointer_listener,
3146 input);
3147 } else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && input->pointer) {
3148 wl_pointer_destroy(input->pointer);
3149 input->pointer = NULL;
3150 }
3151
3152 if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !input->keyboard) {
3153 input->keyboard = wl_seat_get_keyboard(seat);
3154 wl_keyboard_set_user_data(input->keyboard, input);
3155 wl_keyboard_add_listener(input->keyboard, &keyboard_listener,
3156 input);
3157 } else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && input->keyboard) {
3158 wl_keyboard_destroy(input->keyboard);
3159 input->keyboard = NULL;
3160 }
Rusty Lynch041815a2013-08-08 21:20:38 -07003161
3162 if ((caps & WL_SEAT_CAPABILITY_TOUCH) && !input->touch) {
3163 input->touch = wl_seat_get_touch(seat);
3164 wl_touch_set_user_data(input->touch, input);
3165 wl_touch_add_listener(input->touch, &touch_listener, input);
3166 } else if (!(caps & WL_SEAT_CAPABILITY_TOUCH) && input->touch) {
3167 wl_touch_destroy(input->touch);
3168 input->touch = NULL;
3169 }
Kristian Høgsberge04ad572011-12-21 17:14:54 -05003170}
3171
Rob Bradford08031182013-08-13 20:11:03 +01003172static void
3173seat_handle_name(void *data, struct wl_seat *seat,
3174 const char *name)
3175{
3176
3177}
3178
Daniel Stone37816df2012-05-16 18:45:18 +01003179static const struct wl_seat_listener seat_listener = {
3180 seat_handle_capabilities,
Rob Bradford08031182013-08-13 20:11:03 +01003181 seat_handle_name
Kristian Høgsberg94448c02008-12-30 11:03:33 -05003182};
3183
Kristian Høgsberg9a686242010-08-18 15:28:04 -04003184void
3185input_get_position(struct input *input, int32_t *x, int32_t *y)
3186{
3187 *x = input->sx;
3188 *y = input->sy;
3189}
3190
Kristian Høgsbergd56bd902012-06-05 09:58:51 -04003191struct display *
3192input_get_display(struct input *input)
3193{
3194 return input->display;
3195}
3196
Daniel Stone37816df2012-05-16 18:45:18 +01003197struct wl_seat *
3198input_get_seat(struct input *input)
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04003199{
Daniel Stone37816df2012-05-16 18:45:18 +01003200 return input->seat;
Kristian Høgsberg1d7ffd32010-08-25 16:34:05 -04003201}
3202
Kristian Høgsberg67cac8a2011-01-19 14:20:33 -05003203uint32_t
3204input_get_modifiers(struct input *input)
3205{
3206 return input->modifiers;
3207}
3208
Kristian Høgsbergb6323512012-01-11 00:04:42 -05003209struct widget *
3210input_get_focus_widget(struct input *input)
3211{
3212 return input->focus_widget;
3213}
3214
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003215struct data_offer {
3216 struct wl_data_offer *offer;
3217 struct input *input;
3218 struct wl_array types;
3219 int refcount;
Kristian Høgsberg9a686242010-08-18 15:28:04 -04003220
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003221 struct task io_task;
3222 int fd;
3223 data_func_t func;
3224 int32_t x, y;
3225 void *user_data;
3226};
3227
3228static void
3229data_offer_offer(void *data, struct wl_data_offer *wl_data_offer, const char *type)
3230{
3231 struct data_offer *offer = data;
3232 char **p;
3233
3234 p = wl_array_add(&offer->types, sizeof *p);
3235 *p = strdup(type);
3236}
3237
3238static const struct wl_data_offer_listener data_offer_listener = {
3239 data_offer_offer,
3240};
3241
3242static void
3243data_offer_destroy(struct data_offer *offer)
3244{
3245 char **p;
3246
3247 offer->refcount--;
3248 if (offer->refcount == 0) {
3249 wl_data_offer_destroy(offer->offer);
3250 for (p = offer->types.data; *p; p++)
3251 free(*p);
3252 wl_array_release(&offer->types);
3253 free(offer);
3254 }
3255}
3256
3257static void
3258data_device_data_offer(void *data,
Kristian Høgsberg8733b332012-06-28 22:04:06 -04003259 struct wl_data_device *data_device,
3260 struct wl_data_offer *_offer)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003261{
3262 struct data_offer *offer;
3263
Brian Lovinbc919262013-08-07 15:34:59 -07003264 offer = xmalloc(sizeof *offer);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003265
3266 wl_array_init(&offer->types);
3267 offer->refcount = 1;
3268 offer->input = data;
Kristian Høgsberg8733b332012-06-28 22:04:06 -04003269 offer->offer = _offer;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003270 wl_data_offer_add_listener(offer->offer,
3271 &data_offer_listener, offer);
3272}
3273
3274static void
3275data_device_enter(void *data, struct wl_data_device *data_device,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003276 uint32_t serial, struct wl_surface *surface,
Daniel Stone103db7f2012-05-08 17:17:55 +01003277 wl_fixed_t x_w, wl_fixed_t y_w,
3278 struct wl_data_offer *offer)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003279{
3280 struct input *input = data;
3281 struct window *window;
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003282 void *types_data;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003283 float x = wl_fixed_to_double(x_w);
3284 float y = wl_fixed_to_double(y_w);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003285 char **p;
3286
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003287 window = wl_surface_get_user_data(surface);
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003288 input->drag_enter_serial = serial;
3289 input->drag_focus = window,
3290 input->drag_x = x;
3291 input->drag_y = y;
3292
3293 if (!input->touch_grab)
3294 input->pointer_enter_serial = serial;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003295
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003296 if (offer) {
3297 input->drag_offer = wl_data_offer_get_user_data(offer);
3298
3299 p = wl_array_add(&input->drag_offer->types, sizeof *p);
3300 *p = NULL;
3301
3302 types_data = input->drag_offer->types.data;
3303 } else {
3304 input->drag_offer = NULL;
3305 types_data = NULL;
3306 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003307
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003308 if (window->data_handler)
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003309 window->data_handler(window, input, x, y, types_data,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003310 window->user_data);
3311}
3312
3313static void
3314data_device_leave(void *data, struct wl_data_device *data_device)
3315{
3316 struct input *input = data;
3317
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003318 if (input->drag_offer) {
3319 data_offer_destroy(input->drag_offer);
3320 input->drag_offer = NULL;
3321 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003322}
3323
3324static void
3325data_device_motion(void *data, struct wl_data_device *data_device,
Daniel Stone103db7f2012-05-08 17:17:55 +01003326 uint32_t time, wl_fixed_t x_w, wl_fixed_t y_w)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003327{
3328 struct input *input = data;
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003329 struct window *window = input->drag_focus;
Kristian Høgsberg80680c72012-05-10 12:21:37 -04003330 float x = wl_fixed_to_double(x_w);
3331 float y = wl_fixed_to_double(y_w);
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003332 void *types_data;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003333
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003334 input->drag_x = x;
3335 input->drag_y = y;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003336
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003337 if (input->drag_offer)
3338 types_data = input->drag_offer->types.data;
3339 else
3340 types_data = NULL;
3341
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003342 if (window->data_handler)
Ander Conselvan de Oliveira08bcf142012-05-29 10:58:27 +03003343 window->data_handler(window, input, x, y, types_data,
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003344 window->user_data);
3345}
3346
3347static void
3348data_device_drop(void *data, struct wl_data_device *data_device)
3349{
3350 struct input *input = data;
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003351 struct window *window = input->drag_focus;
3352 float x, y;
3353
3354 x = input->drag_x;
3355 y = input->drag_y;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003356
3357 if (window->drop_handler)
3358 window->drop_handler(window, input,
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003359 x, y, window->user_data);
3360
3361 if (input->touch_grab)
3362 touch_ungrab(input);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003363}
3364
3365static void
3366data_device_selection(void *data,
3367 struct wl_data_device *wl_data_device,
3368 struct wl_data_offer *offer)
3369{
3370 struct input *input = data;
3371 char **p;
3372
3373 if (input->selection_offer)
3374 data_offer_destroy(input->selection_offer);
3375
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05003376 if (offer) {
3377 input->selection_offer = wl_data_offer_get_user_data(offer);
3378 p = wl_array_add(&input->selection_offer->types, sizeof *p);
3379 *p = NULL;
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04003380 } else {
3381 input->selection_offer = NULL;
Kristian Høgsberg42c8f602012-01-27 11:04:18 -05003382 }
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003383}
3384
3385static const struct wl_data_device_listener data_device_listener = {
3386 data_device_data_offer,
3387 data_device_enter,
3388 data_device_leave,
3389 data_device_motion,
3390 data_device_drop,
3391 data_device_selection
3392};
3393
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003394static void
3395input_set_pointer_image_index(struct input *input, int index)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003396{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003397 struct wl_buffer *buffer;
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03003398 struct wl_cursor *cursor;
3399 struct wl_cursor_image *image;
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003400
Daniel Stone80972742012-11-07 17:51:39 +11003401 if (!input->pointer)
3402 return;
3403
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003404 cursor = input->display->cursors[input->current_cursor];
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03003405 if (!cursor)
Dima Ryazanovff1c2d72012-05-08 21:02:33 -07003406 return;
3407
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04003408 if (index >= (int) cursor->image_count) {
3409 fprintf(stderr, "cursor index out of range\n");
3410 return;
3411 }
3412
3413 image = cursor->images[index];
Ander Conselvan de Oliveira1042dc12012-05-22 15:39:42 +03003414 buffer = wl_cursor_image_get_buffer(image);
3415 if (!buffer)
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003416 return;
3417
Kristian Høgsbergae277372012-08-01 09:41:08 -04003418 wl_pointer_set_cursor(input->pointer, input->pointer_enter_serial,
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03003419 input->pointer_surface,
3420 image->hotspot_x, image->hotspot_y);
3421 wl_surface_attach(input->pointer_surface, buffer, 0, 0);
3422 wl_surface_damage(input->pointer_surface, 0, 0,
3423 image->width, image->height);
Pekka Paalanenc9e00c02012-10-10 12:49:24 +03003424 wl_surface_commit(input->pointer_surface);
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003425}
3426
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003427static const struct wl_callback_listener pointer_surface_listener;
3428
3429static void
3430pointer_surface_frame_callback(void *data, struct wl_callback *callback,
3431 uint32_t time)
3432{
3433 struct input *input = data;
Daniel Stonea494f1d2012-06-18 19:31:12 +01003434 struct wl_cursor *cursor;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003435 int i;
3436
3437 if (callback) {
3438 assert(callback == input->cursor_frame_cb);
3439 wl_callback_destroy(callback);
3440 input->cursor_frame_cb = NULL;
3441 }
3442
Daniel Stone80972742012-11-07 17:51:39 +11003443 if (!input->pointer)
3444 return;
3445
Kristian Høgsbergf3370522012-06-20 23:04:41 -04003446 if (input->current_cursor == CURSOR_BLANK) {
Kristian Høgsbergae277372012-08-01 09:41:08 -04003447 wl_pointer_set_cursor(input->pointer,
3448 input->pointer_enter_serial,
Kristian Høgsbergf3370522012-06-20 23:04:41 -04003449 NULL, 0, 0);
3450 return;
3451 }
3452
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003453 if (input->current_cursor == CURSOR_UNSET)
3454 return;
Daniel Stonea494f1d2012-06-18 19:31:12 +01003455 cursor = input->display->cursors[input->current_cursor];
3456 if (!cursor)
3457 return;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003458
3459 /* FIXME We don't have the current time on the first call so we set
3460 * the animation start to the time of the first frame callback. */
3461 if (time == 0)
3462 input->cursor_anim_start = 0;
3463 else if (input->cursor_anim_start == 0)
3464 input->cursor_anim_start = time;
3465
3466 if (time == 0 || input->cursor_anim_start == 0)
3467 i = 0;
3468 else
3469 i = wl_cursor_frame(cursor, time - input->cursor_anim_start);
3470
Pekka Paalanenbc106382012-10-10 12:49:31 +03003471 if (cursor->image_count > 1) {
3472 input->cursor_frame_cb =
3473 wl_surface_frame(input->pointer_surface);
3474 wl_callback_add_listener(input->cursor_frame_cb,
3475 &pointer_surface_listener, input);
3476 }
3477
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003478 input_set_pointer_image_index(input, i);
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003479}
3480
3481static const struct wl_callback_listener pointer_surface_listener = {
3482 pointer_surface_frame_callback
3483};
3484
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04003485void
3486input_set_pointer_image(struct input *input, int pointer)
3487{
Ander Conselvan de Oliveiraddca4962012-07-16 14:15:49 +03003488 int force = 0;
3489
Kristian Høgsberge530a0a2012-10-29 16:42:26 -04003490 if (!input->pointer)
3491 return;
3492
Ander Conselvan de Oliveiraddca4962012-07-16 14:15:49 +03003493 if (input->pointer_enter_serial > input->cursor_serial)
3494 force = 1;
3495
3496 if (!force && pointer == input->current_cursor)
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04003497 return;
3498
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003499 input->current_cursor = pointer;
Kristian Høgsberg11f600d2012-06-22 10:52:58 -04003500 input->cursor_serial = input->pointer_enter_serial;
Ander Conselvan de Oliveira80620072012-06-15 17:27:36 +03003501 if (!input->cursor_frame_cb)
3502 pointer_surface_frame_callback(input, NULL, 0);
Ander Conselvan de Oliveiraddca4962012-07-16 14:15:49 +03003503 else if (force) {
3504 /* The current frame callback may be stuck if, for instance,
3505 * the set cursor request was processed by the server after
3506 * this client lost the focus. In this case the cursor surface
3507 * might not be mapped and the frame callback wouldn't ever
3508 * complete. Send a set_cursor and attach to try to map the
3509 * cursor surface again so that the callback will finish */
3510 input_set_pointer_image_index(input, 0);
3511 }
Kristian Høgsberg7cee1972012-06-04 23:37:42 -04003512}
3513
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003514struct wl_data_device *
3515input_get_data_device(struct input *input)
3516{
3517 return input->data_device;
3518}
3519
3520void
3521input_set_selection(struct input *input,
3522 struct wl_data_source *source, uint32_t time)
3523{
3524 wl_data_device_set_selection(input->data_device, source, time);
3525}
3526
3527void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003528input_accept(struct input *input, const char *type)
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003529{
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003530 wl_data_offer_accept(input->drag_offer->offer,
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003531 input->drag_enter_serial, type);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003532}
3533
3534static void
3535offer_io_func(struct task *task, uint32_t events)
3536{
3537 struct data_offer *offer =
3538 container_of(task, struct data_offer, io_task);
3539 unsigned int len;
3540 char buffer[4096];
3541
3542 len = read(offer->fd, buffer, sizeof buffer);
3543 offer->func(buffer, len,
3544 offer->x, offer->y, offer->user_data);
3545
3546 if (len == 0) {
3547 close(offer->fd);
3548 data_offer_destroy(offer);
3549 }
3550}
3551
3552static void
3553data_offer_receive_data(struct data_offer *offer, const char *mime_type,
3554 data_func_t func, void *user_data)
3555{
3556 int p[2];
3557
Jonas Ådahl3685c3a2012-03-30 23:10:27 +02003558 if (pipe2(p, O_CLOEXEC) == -1)
3559 return;
3560
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003561 wl_data_offer_receive(offer->offer, mime_type, p[1]);
3562 close(p[1]);
3563
3564 offer->io_task.run = offer_io_func;
3565 offer->fd = p[0];
3566 offer->func = func;
3567 offer->refcount++;
3568 offer->user_data = user_data;
3569
3570 display_watch_fd(offer->input->display,
3571 offer->fd, EPOLLIN, &offer->io_task);
3572}
3573
3574void
3575input_receive_drag_data(struct input *input, const char *mime_type,
3576 data_func_t func, void *data)
3577{
3578 data_offer_receive_data(input->drag_offer, mime_type, func, data);
Xiong Zhangbf3c1c62013-11-25 18:42:51 +08003579 input->drag_offer->x = input->drag_x;
3580 input->drag_offer->y = input->drag_y;
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003581}
3582
3583int
Kristian Høgsberg0749e3f2013-09-04 20:41:06 -07003584input_receive_drag_data_to_fd(struct input *input,
3585 const char *mime_type, int fd)
3586{
3587 if (input->drag_offer)
3588 wl_data_offer_receive(input->drag_offer->offer, mime_type, fd);
3589
3590 return 0;
3591}
3592
3593int
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04003594input_receive_selection_data(struct input *input, const char *mime_type,
3595 data_func_t func, void *data)
3596{
3597 char **p;
3598
3599 if (input->selection_offer == NULL)
3600 return -1;
3601
3602 for (p = input->selection_offer->types.data; *p; p++)
3603 if (strcmp(mime_type, *p) == 0)
3604 break;
3605
3606 if (*p == NULL)
3607 return -1;
3608
3609 data_offer_receive_data(input->selection_offer,
3610 mime_type, func, data);
3611 return 0;
Kristian Høgsberg41da9082010-11-30 14:01:07 -05003612}
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04003613
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05003614int
3615input_receive_selection_data_to_fd(struct input *input,
3616 const char *mime_type, int fd)
3617{
Kristian Høgsberga4b3d0e2012-05-31 23:30:32 -04003618 if (input->selection_offer)
3619 wl_data_offer_receive(input->selection_offer->offer,
3620 mime_type, fd);
Kristian Høgsberge7aaec32011-12-27 13:50:04 -05003621
3622 return 0;
3623}
3624
Kristian Høgsberg41da9082010-11-30 14:01:07 -05003625void
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003626window_move(struct window *window, struct input *input, uint32_t serial)
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05003627{
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02003628 if (!window->shell_surface)
3629 return;
3630
Daniel Stone37816df2012-05-16 18:45:18 +01003631 wl_shell_surface_move(window->shell_surface, input->seat, serial);
Kristian Høgsberg82da52b2010-12-17 09:53:12 -05003632}
3633
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04003634static void
Pekka Paalanen35e82632013-04-25 13:57:48 +03003635surface_set_synchronized(struct surface *surface)
3636{
3637 if (!surface->subsurface)
3638 return;
3639
3640 if (surface->synchronized)
3641 return;
3642
3643 wl_subsurface_set_sync(surface->subsurface);
3644 surface->synchronized = 1;
3645}
3646
3647static void
3648surface_set_synchronized_default(struct surface *surface)
3649{
3650 if (!surface->subsurface)
3651 return;
3652
3653 if (surface->synchronized == surface->synchronized_default)
3654 return;
3655
3656 if (surface->synchronized_default)
3657 wl_subsurface_set_sync(surface->subsurface);
3658 else
3659 wl_subsurface_set_desync(surface->subsurface);
3660
3661 surface->synchronized = surface->synchronized_default;
3662}
3663
3664static void
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003665surface_resize(struct surface *surface)
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02003666{
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003667 struct widget *widget = surface->widget;
3668 struct wl_compositor *compositor = widget->window->display->compositor;
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02003669
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003670 if (surface->input_region) {
3671 wl_region_destroy(surface->input_region);
3672 surface->input_region = NULL;
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05003673 }
3674
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003675 if (surface->opaque_region)
3676 wl_region_destroy(surface->opaque_region);
Ander Conselvan de Oliveiraddd3e272012-11-30 17:34:23 +02003677
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003678 surface->opaque_region = wl_compositor_create_region(compositor);
Kristian Høgsberg010f98b2012-02-23 17:30:45 -05003679
Kristian Høgsbergbb977002012-01-10 19:11:42 -05003680 if (widget->resize_handler)
3681 widget->resize_handler(widget,
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05003682 widget->allocation.width,
3683 widget->allocation.height,
Kristian Høgsbergbb977002012-01-10 19:11:42 -05003684 widget->user_data);
3685
Pekka Paalanen35e82632013-04-25 13:57:48 +03003686 if (surface->subsurface &&
3687 (surface->allocation.x != widget->allocation.x ||
3688 surface->allocation.y != widget->allocation.y)) {
3689 wl_subsurface_set_position(surface->subsurface,
3690 widget->allocation.x,
3691 widget->allocation.y);
3692 }
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003693 if (surface->allocation.width != widget->allocation.width ||
3694 surface->allocation.height != widget->allocation.height) {
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003695 window_schedule_redraw(widget->window);
3696 }
Pekka Paalanen35e82632013-04-25 13:57:48 +03003697 surface->allocation = widget->allocation;
Ander Conselvan de Oliveiraddd3e272012-11-30 17:34:23 +02003698
3699 if (widget->opaque)
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003700 wl_region_add(surface->opaque_region, 0, 0,
Ander Conselvan de Oliveiraddd3e272012-11-30 17:34:23 +02003701 widget->allocation.width,
3702 widget->allocation.height);
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003703}
3704
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003705static void
Pekka Paalanene9297f82013-04-25 13:57:51 +03003706hack_prevent_EGL_sub_surface_deadlock(struct window *window)
3707{
3708 /*
3709 * This hack should be removed, when EGL respects
3710 * eglSwapInterval(0).
3711 *
3712 * If this window has sub-surfaces, especially a free-running
3713 * EGL-widget, we need to post the parent surface once with
3714 * all the old state to guarantee, that the EGL-widget will
3715 * receive its frame callback soon. Otherwise, a forced call
3716 * to eglSwapBuffers may end up blocking, waiting for a frame
3717 * event that will never come, because we will commit the parent
3718 * surface with all new state only after eglSwapBuffers returns.
3719 *
3720 * This assumes, that:
3721 * 1. When the EGL widget's resize hook is called, it pauses.
3722 * 2. When the EGL widget's redraw hook is called, it forces a
3723 * repaint and a call to eglSwapBuffers(), and maybe resumes.
3724 * In a single threaded application condition 1 is a no-op.
3725 *
3726 * XXX: This should actually be after the surface_resize() calls,
3727 * but cannot, because then it would commit the incomplete state
3728 * accumulated from the widget resize hooks.
3729 */
3730 if (window->subsurface_list.next != &window->main_surface->link ||
3731 window->subsurface_list.prev != &window->main_surface->link)
3732 wl_surface_commit(window->main_surface->surface);
3733}
3734
3735static void
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003736window_do_resize(struct window *window)
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003737{
Pekka Paalanen35e82632013-04-25 13:57:48 +03003738 struct surface *surface;
3739
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003740 widget_set_allocation(window->main_surface->widget,
3741 window->pending_allocation.x,
3742 window->pending_allocation.y,
3743 window->pending_allocation.width,
3744 window->pending_allocation.height);
3745
3746 surface_resize(window->main_surface);
Pekka Paalanen35e82632013-04-25 13:57:48 +03003747
3748 /* The main surface is in the list, too. Main surface's
3749 * resize_handler is responsible for calling widget_set_allocation()
3750 * on all sub-surface root widgets, so they will be resized
3751 * properly.
3752 */
3753 wl_list_for_each(surface, &window->subsurface_list, link) {
3754 if (surface == window->main_surface)
3755 continue;
3756
3757 surface_set_synchronized(surface);
3758 surface_resize(surface);
3759 }
Pekka Paalanenb1cd9b12013-02-13 16:17:18 +02003760}
3761
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003762static void
3763idle_resize(struct window *window)
3764{
3765 window->resize_needed = 0;
3766 window->redraw_needed = 1;
3767
3768 DBG("from %dx%d to %dx%d\n",
3769 window->main_surface->server_allocation.width,
3770 window->main_surface->server_allocation.height,
3771 window->pending_allocation.width,
3772 window->pending_allocation.height);
3773
3774 hack_prevent_EGL_sub_surface_deadlock(window);
3775
3776 window_do_resize(window);
3777}
3778
3779static void
3780undo_resize(struct window *window)
3781{
3782 window->pending_allocation.width =
3783 window->main_surface->server_allocation.width;
3784 window->pending_allocation.height =
3785 window->main_surface->server_allocation.height;
3786
3787 DBG("back to %dx%d\n",
3788 window->main_surface->server_allocation.width,
3789 window->main_surface->server_allocation.height);
3790
3791 window_do_resize(window);
3792
3793 if (window->pending_allocation.width == 0 &&
3794 window->pending_allocation.height == 0) {
3795 fprintf(stderr, "Error: Could not draw a surface, "
3796 "most likely due to insufficient disk space in "
3797 "%s (XDG_RUNTIME_DIR).\n", getenv("XDG_RUNTIME_DIR"));
3798 exit(EXIT_FAILURE);
3799 }
3800}
3801
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003802void
3803window_schedule_resize(struct window *window, int width, int height)
3804{
Kristian Høgsberg53ec5602013-10-21 15:05:49 -07003805 /* We should probably get these numbers from the theme. */
3806 const int min_width = 200, min_height = 200;
3807
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05003808 window->pending_allocation.x = 0;
3809 window->pending_allocation.y = 0;
3810 window->pending_allocation.width = width;
3811 window->pending_allocation.height = height;
3812
Kristian Høgsberg53ec5602013-10-21 15:05:49 -07003813 if (window->min_allocation.width == 0) {
Kristian Høgsbergafb98282013-10-21 15:23:17 -07003814 if (width < min_width && window->frame)
Kristian Høgsberg53ec5602013-10-21 15:05:49 -07003815 window->min_allocation.width = min_width;
3816 else
3817 window->min_allocation.width = width;
Kristian Høgsbergafb98282013-10-21 15:23:17 -07003818 if (height < min_height && window->frame)
Kristian Høgsberg53ec5602013-10-21 15:05:49 -07003819 window->min_allocation.height = min_height;
3820 else
Kristian Høgsbergafb98282013-10-21 15:23:17 -07003821 window->min_allocation.height = height;
Kristian Høgsberg53ec5602013-10-21 15:05:49 -07003822 }
3823
Kristian Høgsbergd3a19652012-07-20 11:32:51 -04003824 if (window->pending_allocation.width < window->min_allocation.width)
3825 window->pending_allocation.width = window->min_allocation.width;
3826 if (window->pending_allocation.height < window->min_allocation.height)
3827 window->pending_allocation.height = window->min_allocation.height;
3828
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04003829 window->resize_needed = 1;
3830 window_schedule_redraw(window);
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003831}
3832
Kristian Høgsbergbb977002012-01-10 19:11:42 -05003833void
3834widget_schedule_resize(struct widget *widget, int32_t width, int32_t height)
3835{
Kristian Høgsberg29af3eb2012-01-10 22:41:05 -05003836 window_schedule_resize(widget->window, width, height);
Kristian Høgsbergbb977002012-01-10 19:11:42 -05003837}
3838
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05003839static void
Scott Moreauff1db4a2012-04-17 19:06:18 -06003840handle_ping(void *data, struct wl_shell_surface *shell_surface,
3841 uint32_t serial)
3842{
3843 wl_shell_surface_pong(shell_surface, serial);
3844}
3845
3846static void
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02003847handle_configure(void *data, struct wl_shell_surface *shell_surface,
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003848 uint32_t edges, int32_t width, int32_t height)
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04003849{
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02003850 struct window *window = data;
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04003851
Tim Wiederhakeb6761dc2011-01-17 17:50:07 +01003852 window->resize_edges = edges;
Kristian Høgsberg0d1c0622012-01-31 15:30:47 -05003853 window_schedule_resize(window, width, height);
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04003854}
3855
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003856static void
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003857menu_destroy(struct menu *menu)
3858{
3859 widget_destroy(menu->widget);
3860 window_destroy(menu->window);
Kristian Høgsbergc680e902013-10-23 21:49:30 -07003861 frame_destroy(menu->frame);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003862 free(menu);
3863}
3864
3865static void
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003866handle_popup_done(void *data, struct wl_shell_surface *shell_surface)
3867{
3868 struct window *window = data;
Pekka Paalanenac95f3e2013-02-13 16:17:17 +02003869 struct menu *menu = window->main_surface->widget->user_data;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003870
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003871 /* FIXME: Need more context in this event, at least the input
Kristian Høgsberg831dd522012-01-10 23:46:33 -05003872 * device. Or just use wl_callback. And this really needs to
3873 * be a window vfunc that the menu can set. And we need the
3874 * time. */
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003875
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04003876 input_ungrab(menu->input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02003877 menu_destroy(menu);
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003878}
3879
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02003880static const struct wl_shell_surface_listener shell_surface_listener = {
Scott Moreauff1db4a2012-04-17 19:06:18 -06003881 handle_ping,
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04003882 handle_configure,
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05003883 handle_popup_done
Kristian Høgsberg83fc0612010-08-04 22:44:55 -04003884};
3885
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05003886void
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003887window_get_allocation(struct window *window,
3888 struct rectangle *allocation)
3889{
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02003890 *allocation = window->main_surface->allocation;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01003891}
3892
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003893static void
Kristian Høgsberg441338c2012-01-10 13:52:34 -05003894widget_redraw(struct widget *widget)
3895{
3896 struct widget *child;
3897
3898 if (widget->redraw_handler)
3899 widget->redraw_handler(widget, widget->user_data);
3900 wl_list_for_each(child, &widget->child_list, link)
3901 widget_redraw(child);
3902}
3903
3904static void
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04003905frame_callback(void *data, struct wl_callback *callback, uint32_t time)
3906{
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003907 struct surface *surface = data;
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04003908
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003909 assert(callback == surface->frame_cb);
Pekka Paalanen71233882013-04-25 13:57:53 +03003910 DBG_OBJ(callback, "done\n");
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04003911 wl_callback_destroy(callback);
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003912 surface->frame_cb = NULL;
3913
Pekka Paalanen7ff7a802013-04-25 13:57:50 +03003914 surface->last_time = time;
3915
Pekka Paalanen71233882013-04-25 13:57:53 +03003916 if (surface->redraw_needed || surface->window->redraw_needed) {
3917 DBG_OBJ(surface->surface, "window_schedule_redraw_task\n");
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003918 window_schedule_redraw_task(surface->window);
Pekka Paalanen71233882013-04-25 13:57:53 +03003919 }
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04003920}
3921
3922static const struct wl_callback_listener listener = {
3923 frame_callback
3924};
3925
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003926static int
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003927surface_redraw(struct surface *surface)
3928{
Pekka Paalanen71233882013-04-25 13:57:53 +03003929 DBG_OBJ(surface->surface, "begin\n");
3930
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003931 if (!surface->window->redraw_needed && !surface->redraw_needed)
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003932 return 0;
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003933
3934 /* Whole-window redraw forces a redraw even if the previous has
3935 * not yet hit the screen.
3936 */
3937 if (surface->frame_cb) {
3938 if (!surface->window->redraw_needed)
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003939 return 0;
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003940
Pekka Paalanen71233882013-04-25 13:57:53 +03003941 DBG_OBJ(surface->frame_cb, "cancelled\n");
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003942 wl_callback_destroy(surface->frame_cb);
3943 }
3944
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003945 if (!widget_get_cairo_surface(surface->widget)) {
3946 DBG_OBJ(surface->surface, "cancelled due buffer failure\n");
3947 return -1;
3948 }
3949
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003950 surface->frame_cb = wl_surface_frame(surface->surface);
3951 wl_callback_add_listener(surface->frame_cb, &listener, surface);
Pekka Paalanen71233882013-04-25 13:57:53 +03003952 DBG_OBJ(surface->frame_cb, "new\n");
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003953
3954 surface->redraw_needed = 0;
Pekka Paalanen71233882013-04-25 13:57:53 +03003955 DBG_OBJ(surface->surface, "-> widget_redraw\n");
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003956 widget_redraw(surface->widget);
Pekka Paalanen71233882013-04-25 13:57:53 +03003957 DBG_OBJ(surface->surface, "done\n");
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003958 return 0;
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03003959}
3960
3961static void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04003962idle_redraw(struct task *task, uint32_t events)
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04003963{
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04003964 struct window *window = container_of(task, struct window, redraw_task);
Pekka Paalanen35e82632013-04-25 13:57:48 +03003965 struct surface *surface;
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003966 int failed = 0;
3967 int resized = 0;
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04003968
Pekka Paalanen71233882013-04-25 13:57:53 +03003969 DBG(" --------- \n");
3970
Pekka Paalaneneebff542013-04-25 13:57:52 +03003971 wl_list_init(&window->redraw_task.link);
3972 window->redraw_task_scheduled = 0;
3973
3974 if (window->resize_needed) {
3975 /* throttle resizing to the main surface display */
Pekka Paalanen71233882013-04-25 13:57:53 +03003976 if (window->main_surface->frame_cb) {
3977 DBG_OBJ(window->main_surface->frame_cb, "pending\n");
Pekka Paalaneneebff542013-04-25 13:57:52 +03003978 return;
Pekka Paalanen71233882013-04-25 13:57:53 +03003979 }
Pekka Paalaneneebff542013-04-25 13:57:52 +03003980
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04003981 idle_resize(window);
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003982 resized = 1;
Pekka Paalaneneebff542013-04-25 13:57:52 +03003983 }
Kristian Høgsberg42b4f802012-03-26 13:49:29 -04003984
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02003985 if (surface_redraw(window->main_surface) < 0) {
3986 /*
3987 * Only main_surface failure will cause us to undo the resize.
3988 * If sub-surfaces fail, they will just be broken with old
3989 * content.
3990 */
3991 failed = 1;
3992 } else {
3993 wl_list_for_each(surface, &window->subsurface_list, link) {
3994 if (surface == window->main_surface)
3995 continue;
3996
3997 surface_redraw(surface);
3998 }
3999 }
Pekka Paalanen35e82632013-04-25 13:57:48 +03004000
Kristian Høgsberg6bd4d972012-03-24 14:42:09 -04004001 window->redraw_needed = 0;
Pekka Paalanenbc106382012-10-10 12:49:31 +03004002 window_flush(window);
Pekka Paalanen35e82632013-04-25 13:57:48 +03004003
4004 wl_list_for_each(surface, &window->subsurface_list, link)
4005 surface_set_synchronized_default(surface);
Pekka Paalanenfdca95c2013-11-29 17:48:52 +02004006
4007 if (resized && failed) {
4008 /* Restore widget tree to correspond to what is on screen. */
4009 undo_resize(window);
4010 }
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04004011}
4012
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004013static void
4014window_schedule_redraw_task(struct window *window)
4015{
4016 if (window->configure_requests)
4017 return;
4018 if (!window->redraw_task_scheduled) {
4019 window->redraw_task.run = idle_redraw;
4020 display_defer(window->display, &window->redraw_task);
4021 window->redraw_task_scheduled = 1;
4022 }
4023}
4024
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04004025void
4026window_schedule_redraw(struct window *window)
4027{
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004028 struct surface *surface;
4029
Pekka Paalanen71233882013-04-25 13:57:53 +03004030 DBG_OBJ(window->main_surface->surface, "window %p\n", window);
4031
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004032 wl_list_for_each(surface, &window->subsurface_list, link)
4033 surface->redraw_needed = 1;
4034
4035 window_schedule_redraw_task(window);
Kristian Høgsberg80d746f2010-06-14 23:52:50 -04004036}
4037
Kristian Høgsberg1671e112012-10-10 11:36:24 -04004038int
4039window_is_fullscreen(struct window *window)
4040{
4041 return window->type == TYPE_FULLSCREEN;
4042}
4043
Philip Withnallc971d2a2013-11-25 18:01:33 +00004044int
4045window_is_transient(struct window *window)
4046{
4047 return window->type == TYPE_TRANSIENT;
4048}
4049
MoD063a8822013-03-02 23:43:57 +00004050static void
4051configure_request_completed(void *data, struct wl_callback *callback, uint32_t time)
4052{
4053 struct window *window = data;
4054
4055 wl_callback_destroy(callback);
4056 window->configure_requests--;
4057
4058 if (!window->configure_requests)
4059 window_schedule_redraw(window);
4060}
4061
4062static struct wl_callback_listener configure_request_listener = {
4063 configure_request_completed,
4064};
4065
4066static void
4067window_defer_redraw_until_configure(struct window* window)
4068{
4069 struct wl_callback *callback;
4070
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004071 if (window->redraw_task_scheduled) {
MoD063a8822013-03-02 23:43:57 +00004072 wl_list_remove(&window->redraw_task.link);
Pekka Paalanen40cb67b2013-04-25 13:57:49 +03004073 window->redraw_task_scheduled = 0;
MoD063a8822013-03-02 23:43:57 +00004074 }
4075
4076 callback = wl_display_sync(window->display->display);
4077 wl_callback_add_listener(callback, &configure_request_listener, window);
4078 window->configure_requests++;
4079}
4080
Kristian Høgsberg0ac16f02009-01-15 11:37:43 -05004081void
Kristian Høgsberg0395f302008-12-22 12:14:50 -05004082window_set_fullscreen(struct window *window, int fullscreen)
4083{
Kristian Høgsberg1517def2012-02-16 22:56:12 -05004084 if (!window->display->shell)
4085 return;
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05004086
Kristian Høgsberg547da5a2011-09-13 20:58:00 -04004087 if ((window->type == TYPE_FULLSCREEN) == fullscreen)
Kristian Høgsberg0ce24572011-01-28 15:18:33 -05004088 return;
4089
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04004090 if (fullscreen) {
Rafal Mielniczukc1a3cd12013-03-11 19:26:56 +01004091 window->saved_type = window->type;
Rafal Mielniczukfc22be02013-03-11 19:26:55 +01004092 if (window->type == TYPE_TOPLEVEL) {
4093 window->saved_allocation = window->main_surface->allocation;
4094 }
Kristian Høgsberg0c29eb22011-09-06 18:02:34 -04004095 window->type = TYPE_FULLSCREEN;
Kristian Høgsberg1517def2012-02-16 22:56:12 -05004096 wl_shell_surface_set_fullscreen(window->shell_surface,
Ander Conselvan de Oliveira5403f522012-12-14 13:37:23 -02004097 window->fullscreen_method,
Kristian Høgsberg1517def2012-02-16 22:56:12 -05004098 0, NULL);
MoD063a8822013-03-02 23:43:57 +00004099 window_defer_redraw_until_configure (window);
Kristian Høgsberg0395f302008-12-22 12:14:50 -05004100 } else {
Rafal Mielniczukc1a3cd12013-03-11 19:26:56 +01004101 if (window->saved_type == TYPE_MAXIMIZED) {
4102 window_set_maximized(window, 1);
4103 } else {
4104 window->type = TYPE_TOPLEVEL;
4105 wl_shell_surface_set_toplevel(window->shell_surface);
4106 window_schedule_resize(window,
4107 window->saved_allocation.width,
4108 window->saved_allocation.height);
4109 }
4110
Kristian Høgsberg0395f302008-12-22 12:14:50 -05004111 }
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04004112}
4113
Ander Conselvan de Oliveira5403f522012-12-14 13:37:23 -02004114void
4115window_set_fullscreen_method(struct window *window,
4116 enum wl_shell_surface_fullscreen_method method)
4117{
4118 window->fullscreen_method = method;
4119}
4120
Kristian Høgsberg1671e112012-10-10 11:36:24 -04004121int
4122window_is_maximized(struct window *window)
4123{
4124 return window->type == TYPE_MAXIMIZED;
4125}
4126
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04004127void
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05004128window_set_maximized(struct window *window, int maximized)
4129{
4130 if (!window->display->shell)
4131 return;
4132
4133 if ((window->type == TYPE_MAXIMIZED) == maximized)
4134 return;
4135
4136 if (window->type == TYPE_TOPLEVEL) {
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02004137 window->saved_allocation = window->main_surface->allocation;
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05004138 wl_shell_surface_set_maximized(window->shell_surface, NULL);
4139 window->type = TYPE_MAXIMIZED;
MoD063a8822013-03-02 23:43:57 +00004140 window_defer_redraw_until_configure(window);
Rafal Mielniczukc1a3cd12013-03-11 19:26:56 +01004141 } else if (window->type == TYPE_FULLSCREEN) {
4142 wl_shell_surface_set_maximized(window->shell_surface, NULL);
4143 window->type = TYPE_MAXIMIZED;
MoD063a8822013-03-02 23:43:57 +00004144 window_defer_redraw_until_configure(window);
Kristian Høgsbergd6bcd7d2012-02-16 15:53:46 -05004145 } else {
4146 wl_shell_surface_set_toplevel(window->shell_surface);
4147 window->type = TYPE_TOPLEVEL;
4148 window_schedule_resize(window,
4149 window->saved_allocation.width,
4150 window->saved_allocation.height);
4151 }
4152}
4153
4154void
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04004155window_set_user_data(struct window *window, void *data)
4156{
4157 window->user_data = data;
4158}
4159
Kristian Høgsberge9d37bd2010-09-02 20:22:42 -04004160void *
4161window_get_user_data(struct window *window)
4162{
4163 return window->user_data;
4164}
4165
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04004166void
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05004167window_set_key_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04004168 window_key_handler_t handler)
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05004169{
4170 window->key_handler = handler;
Kristian Høgsberg6e83d582008-12-08 00:01:36 -05004171}
4172
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05004173void
4174window_set_keyboard_focus_handler(struct window *window,
Kristian Høgsbergc8c37342010-06-25 11:19:22 -04004175 window_keyboard_focus_handler_t handler)
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05004176{
4177 window->keyboard_focus_handler = handler;
Kristian Høgsberg3c248cc2009-02-22 23:01:35 -05004178}
4179
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04004180void
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04004181window_set_data_handler(struct window *window, window_data_handler_t handler)
4182{
4183 window->data_handler = handler;
4184}
4185
4186void
4187window_set_drop_handler(struct window *window, window_drop_handler_t handler)
4188{
4189 window->drop_handler = handler;
4190}
4191
4192void
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05004193window_set_close_handler(struct window *window,
4194 window_close_handler_t handler)
4195{
4196 window->close_handler = handler;
4197}
4198
4199void
Kristian Høgsberg67ace202012-07-23 21:56:31 -04004200window_set_fullscreen_handler(struct window *window,
4201 window_fullscreen_handler_t handler)
4202{
4203 window->fullscreen_handler = handler;
4204}
4205
4206void
Ander Conselvan de Oliveira15256f62012-11-30 17:34:25 +02004207window_set_output_handler(struct window *window,
4208 window_output_handler_t handler)
4209{
4210 window->output_handler = handler;
4211}
4212
4213void
Callum Lowcayef57a9b2011-01-14 20:46:23 +13004214window_set_title(struct window *window, const char *title)
4215{
Kristian Høgsbergd5fb9cc2011-01-25 12:45:37 -05004216 free(window->title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13004217 window->title = strdup(title);
Jason Ekstrand3f66cf92013-10-13 19:08:40 -05004218 if (window->frame) {
4219 frame_set_title(window->frame->frame, title);
4220 widget_schedule_redraw(window->frame->widget);
4221 }
Kristian Høgsberg3e0fe5c2012-05-02 09:47:55 -04004222 if (window->shell_surface)
4223 wl_shell_surface_set_title(window->shell_surface, title);
Callum Lowcayef57a9b2011-01-14 20:46:23 +13004224}
4225
4226const char *
4227window_get_title(struct window *window)
4228{
4229 return window->title;
4230}
4231
4232void
Scott Moreau7a1b32a2012-05-27 14:25:02 -06004233window_set_text_cursor_position(struct window *window, int32_t x, int32_t y)
4234{
4235 struct text_cursor_position *text_cursor_position =
4236 window->display->text_cursor_position;
4237
Scott Moreau9295ce02012-06-01 12:46:10 -06004238 if (!text_cursor_position)
Scott Moreau7a1b32a2012-05-27 14:25:02 -06004239 return;
4240
4241 text_cursor_position_notify(text_cursor_position,
Pekka Paalanen4e373742013-02-13 16:17:13 +02004242 window->main_surface->surface,
4243 wl_fixed_from_int(x),
4244 wl_fixed_from_int(y));
Scott Moreau7a1b32a2012-05-27 14:25:02 -06004245}
4246
4247void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04004248window_damage(struct window *window, int32_t x, int32_t y,
4249 int32_t width, int32_t height)
4250{
Pekka Paalanen4e373742013-02-13 16:17:13 +02004251 wl_surface_damage(window->main_surface->surface, x, y, width, height);
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04004252}
4253
Casey Dahlin9074db52012-04-19 22:50:09 -04004254static void
4255surface_enter(void *data,
Rob Bradford7507b572012-05-15 17:55:34 +01004256 struct wl_surface *wl_surface, struct wl_output *wl_output)
Casey Dahlin9074db52012-04-19 22:50:09 -04004257{
Rob Bradford7507b572012-05-15 17:55:34 +01004258 struct window *window = data;
4259 struct output *output;
4260 struct output *output_found = NULL;
4261 struct window_output *window_output;
4262
4263 wl_list_for_each(output, &window->display->output_list, link) {
4264 if (output->output == wl_output) {
4265 output_found = output;
4266 break;
4267 }
4268 }
4269
4270 if (!output_found)
4271 return;
4272
Brian Lovinbc919262013-08-07 15:34:59 -07004273 window_output = xmalloc(sizeof *window_output);
Rob Bradford7507b572012-05-15 17:55:34 +01004274 window_output->output = output_found;
4275
4276 wl_list_insert (&window->window_output_list, &window_output->link);
Ander Conselvan de Oliveira15256f62012-11-30 17:34:25 +02004277
4278 if (window->output_handler)
4279 window->output_handler(window, output_found, 1,
4280 window->user_data);
Casey Dahlin9074db52012-04-19 22:50:09 -04004281}
4282
4283static void
4284surface_leave(void *data,
4285 struct wl_surface *wl_surface, struct wl_output *output)
4286{
Rob Bradford7507b572012-05-15 17:55:34 +01004287 struct window *window = data;
4288 struct window_output *window_output;
4289 struct window_output *window_output_found = NULL;
4290
4291 wl_list_for_each(window_output, &window->window_output_list, link) {
4292 if (window_output->output->output == output) {
4293 window_output_found = window_output;
4294 break;
4295 }
4296 }
4297
4298 if (window_output_found) {
4299 wl_list_remove(&window_output_found->link);
Ander Conselvan de Oliveira15256f62012-11-30 17:34:25 +02004300
4301 if (window->output_handler)
4302 window->output_handler(window, window_output->output,
4303 0, window->user_data);
4304
Rob Bradford7507b572012-05-15 17:55:34 +01004305 free(window_output_found);
4306 }
Casey Dahlin9074db52012-04-19 22:50:09 -04004307}
4308
4309static const struct wl_surface_listener surface_listener = {
4310 surface_enter,
4311 surface_leave
4312};
4313
Pekka Paalanen4e373742013-02-13 16:17:13 +02004314static struct surface *
4315surface_create(struct window *window)
4316{
4317 struct display *display = window->display;
4318 struct surface *surface;
4319
Brian Lovinbc919262013-08-07 15:34:59 -07004320 surface = xmalloc(sizeof *surface);
4321 memset(surface, 0, sizeof *surface);
Pekka Paalanen4e373742013-02-13 16:17:13 +02004322 if (!surface)
4323 return NULL;
4324
4325 surface->window = window;
4326 surface->surface = wl_compositor_create_surface(display->compositor);
Alexander Larsson5e9b6522013-05-22 14:41:28 +02004327 surface->buffer_scale = 1;
Pekka Paalanen4e373742013-02-13 16:17:13 +02004328 wl_surface_add_listener(surface->surface, &surface_listener, window);
4329
Pekka Paalanen35e82632013-04-25 13:57:48 +03004330 wl_list_insert(&window->subsurface_list, &surface->link);
4331
Pekka Paalanen4e373742013-02-13 16:17:13 +02004332 return surface;
4333}
4334
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004335static struct window *
Jasper St. Pierrebf175902013-11-12 20:19:58 -05004336window_create_internal(struct display *display, int type)
Kristian Høgsberg0c4457f2008-12-07 19:59:11 -05004337{
Kristian Høgsberg1cbaa6a2008-11-07 15:54:48 -05004338 struct window *window;
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004339 struct surface *surface;
Kristian Høgsberg1cbaa6a2008-11-07 15:54:48 -05004340
Peter Huttererf3d62272013-08-08 11:57:05 +10004341 window = xzalloc(sizeof *window);
Pekka Paalanen35e82632013-04-25 13:57:48 +03004342 wl_list_init(&window->subsurface_list);
Kristian Høgsberg40979232008-11-25 22:40:39 -05004343 window->display = display;
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004344
4345 surface = surface_create(window);
4346 window->main_surface = surface;
4347
Kristian Høgsberg962342c2012-06-26 16:29:50 -04004348 if (type != TYPE_CUSTOM && display->shell) {
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02004349 window->shell_surface =
4350 wl_shell_get_shell_surface(display->shell,
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004351 surface->surface);
Kristian Høgsbergce278412013-07-25 15:20:20 -07004352 fail_on_null(window->shell_surface);
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02004353 }
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02004354
Kristian Høgsberg962342c2012-06-26 16:29:50 -04004355 window->type = type;
Ander Conselvan de Oliveira5403f522012-12-14 13:37:23 -02004356 window->fullscreen_method = WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT;
MoD063a8822013-03-02 23:43:57 +00004357 window->configure_requests = 0;
Tomeu Vizosobee45a12013-08-06 20:05:54 +02004358 window->preferred_format = WINDOW_PREFERRED_FORMAT_NONE;
Kristian Høgsberg87a57bb2012-01-09 10:34:35 -05004359
Kristian Høgsberg4e51b442013-01-07 15:47:14 -05004360 if (display->argb_device)
Benjamin Franzke22d54812011-07-16 19:50:32 +00004361#ifdef HAVE_CAIRO_EGL
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004362 surface->buffer_type = WINDOW_BUFFER_TYPE_EGL_WINDOW;
Benjamin Franzke22d54812011-07-16 19:50:32 +00004363#else
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004364 surface->buffer_type = WINDOW_BUFFER_TYPE_SHM;
Benjamin Franzke22d54812011-07-16 19:50:32 +00004365#endif
Yuval Fledel45568f62010-12-06 09:18:12 -05004366 else
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004367 surface->buffer_type = WINDOW_BUFFER_TYPE_SHM;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04004368
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004369 wl_surface_set_user_data(surface->surface, window);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04004370 wl_list_insert(display->window_list.prev, &window->link);
Kristian Høgsberg84b76c72012-04-13 12:01:18 -04004371 wl_list_init(&window->redraw_task.link);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004372
Pekka Paalanen6b2dc912011-11-29 10:25:08 +02004373 if (window->shell_surface) {
4374 wl_shell_surface_set_user_data(window->shell_surface, window);
4375 wl_shell_surface_add_listener(window->shell_surface,
4376 &shell_surface_listener, window);
4377 }
Pekka Paalanen9d1613e2011-11-25 12:09:16 +02004378
Rob Bradford7507b572012-05-15 17:55:34 +01004379 wl_list_init (&window->window_output_list);
4380
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004381 return window;
4382}
4383
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004384struct window *
Kristian Høgsberg009ac0a2012-01-31 15:24:48 -05004385window_create(struct display *display)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004386{
Jasper St. Pierrebf175902013-11-12 20:19:58 -05004387 return window_create_internal(display, TYPE_NONE);
Kristian Høgsberg962342c2012-06-26 16:29:50 -04004388}
4389
4390struct window *
4391window_create_custom(struct display *display)
4392{
Jasper St. Pierrebf175902013-11-12 20:19:58 -05004393 return window_create_internal(display, TYPE_CUSTOM);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004394}
4395
4396struct window *
4397window_create_transient(struct display *display, struct window *parent,
Tiago Vignattidec76582012-05-21 16:47:46 +03004398 int32_t x, int32_t y, uint32_t flags)
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004399{
4400 struct window *window;
4401
Jasper St. Pierrebf175902013-11-12 20:19:58 -05004402 window = window_create_internal(parent->display, TYPE_TRANSIENT);
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004403
4404 window->x = x;
4405 window->y = y;
4406
Kristian Høgsberg1517def2012-02-16 22:56:12 -05004407 if (display->shell)
Pekka Paalanen4e373742013-02-13 16:17:13 +02004408 wl_shell_surface_set_transient(
4409 window->shell_surface,
Jasper St. Pierrebf175902013-11-12 20:19:58 -05004410 parent->main_surface->surface,
Pekka Paalanen4e373742013-02-13 16:17:13 +02004411 window->x, window->y, flags);
Kristian Høgsberg1517def2012-02-16 22:56:12 -05004412
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004413 return window;
4414}
4415
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004416static void
Kristian Høgsberg19dd1d72012-01-09 10:42:41 -05004417menu_set_item(struct menu *menu, int sy)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004418{
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004419 int32_t x, y, width, height;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004420 int next;
4421
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004422 frame_interior(menu->frame, &x, &y, &width, &height);
4423 next = (sy - y) / 20;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004424 if (menu->current != next) {
4425 menu->current = next;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05004426 widget_schedule_redraw(menu->widget);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004427 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004428}
4429
4430static int
Kristian Høgsberg5f190ef2012-01-09 09:44:45 -05004431menu_motion_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004432 struct input *input, uint32_t time,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04004433 float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004434{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004435 struct menu *menu = data;
4436
4437 if (widget == menu->widget)
4438 menu_set_item(data, y);
4439
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03004440 return CURSOR_LEFT_PTR;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004441}
4442
Kristian Høgsbergbb901fa2012-01-09 11:22:32 -05004443static int
Kristian Høgsberg391649b2012-01-09 09:22:30 -05004444menu_enter_handler(struct widget *widget,
Kristian Høgsberg80680c72012-05-10 12:21:37 -04004445 struct input *input, float x, float y, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004446{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004447 struct menu *menu = data;
4448
4449 if (widget == menu->widget)
4450 menu_set_item(data, y);
4451
Ander Conselvan de Oliveiradc8c8fc2012-05-25 16:01:41 +03004452 return CURSOR_LEFT_PTR;
Kristian Høgsberg391649b2012-01-09 09:22:30 -05004453}
4454
4455static void
4456menu_leave_handler(struct widget *widget, struct input *input, void *data)
4457{
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004458 struct menu *menu = data;
4459
4460 if (widget == menu->widget)
4461 menu_set_item(data, -200);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004462}
4463
4464static void
Kristian Høgsberga8a0db32012-01-09 11:12:05 -05004465menu_button_handler(struct widget *widget,
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004466 struct input *input, uint32_t time,
Daniel Stone4dbadb12012-05-30 16:31:51 +01004467 uint32_t button, enum wl_pointer_button_state state,
4468 void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004469
4470{
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05004471 struct menu *menu = data;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004472
Kristian Høgsbergd2fbb382012-10-30 13:45:22 -04004473 if (state == WL_POINTER_BUTTON_STATE_RELEASED &&
4474 (menu->release_count > 0 || time - menu->time > 500)) {
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004475 /* Either relase after press-drag-release or
4476 * click-motion-click. */
Jasper St. Pierrebf175902013-11-12 20:19:58 -05004477 menu->func(menu->parent, input,
4478 menu->current, menu->parent->user_data);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04004479 input_ungrab(input);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02004480 menu_destroy(menu);
Kristian Høgsberge77d7572012-10-30 18:10:30 -04004481 } else if (state == WL_POINTER_BUTTON_STATE_RELEASED) {
Kristian Høgsbergd2fbb382012-10-30 13:45:22 -04004482 menu->release_count++;
Kristian Høgsberge77d7572012-10-30 18:10:30 -04004483 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004484}
4485
4486static void
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05004487menu_redraw_handler(struct widget *widget, void *data)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004488{
4489 cairo_t *cr;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004490 struct menu *menu = data;
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004491 int32_t x, y, width, height, i;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004492
Pekka Paalanen0c4445b2013-02-13 16:17:23 +02004493 cr = widget_cairo_create(widget);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004494
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004495 frame_repaint(menu->frame, cr);
4496 frame_interior(menu->frame, &x, &y, &width, &height);
Kristian Høgsberg824c6d02012-01-19 13:54:09 -05004497
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004498 theme_set_background_source(menu->window->display->theme,
4499 cr, THEME_FRAME_ACTIVE);
4500 cairo_rectangle(cr, x, y, width, height);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004501 cairo_fill(cr);
4502
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004503 cairo_select_font_face(cr, "sans",
4504 CAIRO_FONT_SLANT_NORMAL,
4505 CAIRO_FONT_WEIGHT_NORMAL);
4506 cairo_set_font_size(cr, 12);
4507
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004508 for (i = 0; i < menu->count; i++) {
4509 if (i == menu->current) {
4510 cairo_set_source_rgb(cr, 1.0, 1.0, 1.0);
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004511 cairo_rectangle(cr, x, y + i * 20, width, 20);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004512 cairo_fill(cr);
4513 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004514 cairo_move_to(cr, x + 10, y + i * 20 + 16);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004515 cairo_show_text(cr, menu->entries[i]);
4516 } else {
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004517 cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
4518 cairo_move_to(cr, x + 10, y + i * 20 + 16);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004519 cairo_show_text(cr, menu->entries[i]);
4520 }
4521 }
4522
4523 cairo_destroy(cr);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004524}
4525
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02004526void
4527window_show_menu(struct display *display,
4528 struct input *input, uint32_t time, struct window *parent,
4529 int32_t x, int32_t y,
4530 menu_func_t func, const char **entries, int count)
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004531{
4532 struct window *window;
4533 struct menu *menu;
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004534 int32_t ix, iy;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004535
4536 menu = malloc(sizeof *menu);
4537 if (!menu)
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02004538 return;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004539
Jasper St. Pierrebf175902013-11-12 20:19:58 -05004540 window = window_create_internal(parent->display, TYPE_MENU);
Martin Olsson444799a2012-07-08 03:03:40 +02004541 if (!window) {
4542 free(menu);
Pekka Paalanen6d174cf2012-01-19 15:17:59 +02004543 return;
Martin Olsson444799a2012-07-08 03:03:40 +02004544 }
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004545
4546 menu->window = window;
Jasper St. Pierrebf175902013-11-12 20:19:58 -05004547 menu->parent = parent;
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05004548 menu->widget = window_add_widget(menu->window, menu);
Alexander Larssond68f5232013-05-22 14:41:33 +02004549 window_set_buffer_scale (menu->window, window_get_buffer_scale (parent));
4550 window_set_buffer_transform (menu->window, window_get_buffer_transform (parent));
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004551 menu->frame = frame_create(window->display->theme, 0, 0,
Kristian Høgsberg89f4bc42013-10-23 22:12:13 -07004552 FRAME_BUTTON_NONE, NULL);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004553 menu->entries = entries;
4554 menu->count = count;
Kristian Høgsbergd2fbb382012-10-30 13:45:22 -04004555 menu->release_count = 0;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004556 menu->current = -1;
Kristian Høgsbergb3cca0a2012-01-04 22:19:14 -05004557 menu->time = time;
Kristian Høgsberg4f7dcd62012-01-06 21:59:05 -05004558 menu->func = func;
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004559 menu->input = input;
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004560 window->type = TYPE_MENU;
4561 window->x = x;
4562 window->y = y;
4563
Kristian Høgsberg8ae63852013-10-28 22:06:11 -07004564 input_ungrab(input);
4565
Kristian Høgsbergb67e94b2012-01-10 12:23:19 -05004566 widget_set_redraw_handler(menu->widget, menu_redraw_handler);
Kristian Høgsberg75bc6672012-01-10 09:43:58 -05004567 widget_set_enter_handler(menu->widget, menu_enter_handler);
4568 widget_set_leave_handler(menu->widget, menu_leave_handler);
4569 widget_set_motion_handler(menu->widget, menu_motion_handler);
4570 widget_set_button_handler(menu->widget, menu_button_handler);
Kristian Høgsberg391649b2012-01-09 09:22:30 -05004571
Kristian Høgsberg831dd522012-01-10 23:46:33 -05004572 input_grab(input, menu->widget, 0);
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004573 frame_resize_inside(menu->frame, 200, count * 20);
4574 frame_set_flag(menu->frame, FRAME_FLAG_ACTIVE);
4575 window_schedule_resize(window, frame_width(menu->frame),
4576 frame_height(menu->frame));
4577
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004578 frame_interior(menu->frame, &ix, &iy, NULL, NULL);
4579 wl_shell_surface_set_popup(window->shell_surface, input->seat,
4580 display_get_serial(window->display),
Jasper St. Pierrebf175902013-11-12 20:19:58 -05004581 parent->main_surface->surface,
Kristian Høgsbergc680e902013-10-23 21:49:30 -07004582 window->x - ix, window->y - iy, 0);
Kristian Høgsbergbbedd7e2011-12-19 15:40:10 -05004583}
4584
Kristian Høgsberg248c1b62011-01-21 18:03:15 -05004585void
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04004586window_set_buffer_type(struct window *window, enum window_buffer_type type)
4587{
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02004588 window->main_surface->buffer_type = type;
Kristian Høgsbergd0c3b9d2010-10-25 11:40:03 -04004589}
4590
Tomeu Vizosobee45a12013-08-06 20:05:54 +02004591void
4592window_set_preferred_format(struct window *window,
4593 enum preferred_format format)
4594{
4595 window->preferred_format = format;
4596}
4597
Pekka Paalanen35e82632013-04-25 13:57:48 +03004598struct widget *
4599window_add_subsurface(struct window *window, void *data,
4600 enum subsurface_mode default_mode)
4601{
4602 struct widget *widget;
4603 struct surface *surface;
4604 struct wl_surface *parent;
4605 struct wl_subcompositor *subcompo = window->display->subcompositor;
4606
Pekka Paalanen35e82632013-04-25 13:57:48 +03004607 surface = surface_create(window);
4608 widget = widget_create(window, surface, data);
4609 wl_list_init(&widget->link);
4610 surface->widget = widget;
4611
4612 parent = window->main_surface->surface;
4613 surface->subsurface = wl_subcompositor_get_subsurface(subcompo,
4614 surface->surface,
4615 parent);
4616 surface->synchronized = 1;
4617
4618 switch (default_mode) {
4619 case SUBSURFACE_SYNCHRONIZED:
4620 surface->synchronized_default = 1;
4621 break;
4622 case SUBSURFACE_DESYNCHRONIZED:
4623 surface->synchronized_default = 0;
4624 break;
4625 default:
4626 assert(!"bad enum subsurface_mode");
4627 }
4628
4629 return widget;
4630}
Kristian Høgsberg8357cd62011-05-13 13:24:56 -04004631
4632static void
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004633display_handle_geometry(void *data,
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04004634 struct wl_output *wl_output,
4635 int x, int y,
4636 int physical_width,
4637 int physical_height,
4638 int subpixel,
4639 const char *make,
Kristian Høgsberg0e696472012-07-22 15:49:57 -04004640 const char *model,
4641 int transform)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004642{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004643 struct output *output = data;
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004644
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004645 output->allocation.x = x;
4646 output->allocation.y = y;
Scott Moreau4e072362012-09-29 02:03:11 -06004647 output->transform = transform;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04004648}
4649
4650static void
Alexander Larssonafd319a2013-05-22 14:41:27 +02004651display_handle_done(void *data,
4652 struct wl_output *wl_output)
4653{
4654}
4655
4656static void
4657display_handle_scale(void *data,
4658 struct wl_output *wl_output,
Alexander Larssonedddbd12013-05-24 13:09:43 +02004659 int32_t scale)
Alexander Larssonafd319a2013-05-22 14:41:27 +02004660{
4661 struct output *output = data;
4662
4663 output->scale = scale;
4664}
4665
4666static void
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04004667display_handle_mode(void *data,
4668 struct wl_output *wl_output,
4669 uint32_t flags,
4670 int width,
4671 int height,
4672 int refresh)
4673{
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004674 struct output *output = data;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004675 struct display *display = output->display;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -04004676
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004677 if (flags & WL_OUTPUT_MODE_CURRENT) {
4678 output->allocation.width = width;
4679 output->allocation.height = height;
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004680 if (display->output_configure_handler)
4681 (*display->output_configure_handler)(
4682 output, display->user_data);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004683 }
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004684}
4685
4686static const struct wl_output_listener output_listener = {
4687 display_handle_geometry,
Alexander Larssonafd319a2013-05-22 14:41:27 +02004688 display_handle_mode,
4689 display_handle_done,
4690 display_handle_scale
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004691};
4692
4693static void
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004694display_add_output(struct display *d, uint32_t id)
4695{
4696 struct output *output;
4697
Kristian Høgsberg69594cc2013-08-15 14:28:25 -07004698 output = xzalloc(sizeof *output);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004699 output->display = d;
Alexander Larssonafd319a2013-05-22 14:41:27 +02004700 output->scale = 1;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004701 output->output =
Alexander Larssonafd319a2013-05-22 14:41:27 +02004702 wl_registry_bind(d->registry, id, &wl_output_interface, 2);
Xiong Zhang83d8ee72013-10-23 13:58:35 +08004703 output->server_output_id = id;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004704 wl_list_insert(d->output_list.prev, &output->link);
4705
4706 wl_output_add_listener(output->output, &output_listener, output);
4707}
4708
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02004709static void
4710output_destroy(struct output *output)
4711{
4712 if (output->destroy_handler)
4713 (*output->destroy_handler)(output, output->user_data);
4714
4715 wl_output_destroy(output->output);
4716 wl_list_remove(&output->link);
4717 free(output);
4718}
4719
Xiong Zhang83d8ee72013-10-23 13:58:35 +08004720static void
4721display_destroy_output(struct display *d, uint32_t id)
4722{
4723 struct output *output;
4724
4725 wl_list_for_each(output, &d->output_list, link) {
4726 if (output->server_output_id == id) {
4727 output_destroy(output);
4728 break;
4729 }
4730 }
4731}
4732
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004733void
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004734display_set_global_handler(struct display *display,
4735 display_global_handler_t handler)
4736{
4737 struct global *global;
4738
4739 display->global_handler = handler;
4740 if (!handler)
4741 return;
4742
4743 wl_list_for_each(global, &display->global_list, link)
4744 display->global_handler(display,
4745 global->name, global->interface,
4746 global->version, display->user_data);
4747}
4748
4749void
Xiong Zhang83d8ee72013-10-23 13:58:35 +08004750display_set_global_handler_remove(struct display *display,
4751 display_global_handler_t remove_handler)
4752{
4753 display->global_handler_remove = remove_handler;
4754 if (!remove_handler)
4755 return;
4756}
4757
4758void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004759display_set_output_configure_handler(struct display *display,
4760 display_output_handler_t handler)
4761{
4762 struct output *output;
4763
4764 display->output_configure_handler = handler;
4765 if (!handler)
4766 return;
4767
Pekka Paalanenb2f957a2012-10-15 12:06:53 +03004768 wl_list_for_each(output, &display->output_list, link) {
4769 if (output->allocation.width == 0 &&
4770 output->allocation.height == 0)
4771 continue;
4772
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004773 (*display->output_configure_handler)(output,
4774 display->user_data);
Pekka Paalanenb2f957a2012-10-15 12:06:53 +03004775 }
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004776}
4777
4778void
4779output_set_user_data(struct output *output, void *data)
4780{
4781 output->user_data = data;
4782}
4783
4784void *
4785output_get_user_data(struct output *output)
4786{
4787 return output->user_data;
4788}
4789
4790void
4791output_set_destroy_handler(struct output *output,
4792 display_output_handler_t handler)
4793{
4794 output->destroy_handler = handler;
4795 /* FIXME: implement this, once we have way to remove outputs */
4796}
4797
4798void
Scott Moreau4e072362012-09-29 02:03:11 -06004799output_get_allocation(struct output *output, struct rectangle *base)
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004800{
Scott Moreau4e072362012-09-29 02:03:11 -06004801 struct rectangle allocation = output->allocation;
4802
4803 switch (output->transform) {
4804 case WL_OUTPUT_TRANSFORM_90:
4805 case WL_OUTPUT_TRANSFORM_270:
4806 case WL_OUTPUT_TRANSFORM_FLIPPED_90:
4807 case WL_OUTPUT_TRANSFORM_FLIPPED_270:
4808 /* Swap width and height */
4809 allocation.width = output->allocation.height;
4810 allocation.height = output->allocation.width;
4811 break;
4812 }
4813
4814 *base = allocation;
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004815}
4816
Pekka Paalanen999c5b52011-11-30 10:52:38 +02004817struct wl_output *
4818output_get_wl_output(struct output *output)
4819{
4820 return output->output;
4821}
4822
Ander Conselvan de Oliveira15256f62012-11-30 17:34:25 +02004823enum wl_output_transform
4824output_get_transform(struct output *output)
4825{
4826 return output->transform;
4827}
4828
Alexander Larssonafd319a2013-05-22 14:41:27 +02004829uint32_t
4830output_get_scale(struct output *output)
4831{
4832 return output->scale;
4833}
4834
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004835static void
Daniel Stone97f68542012-05-30 16:32:01 +01004836fini_xkb(struct input *input)
4837{
4838 xkb_state_unref(input->xkb.state);
4839 xkb_map_unref(input->xkb.keymap);
4840}
4841
Jasper St. Pierre47f10432013-11-12 14:37:20 -05004842#define MIN(a,b) ((a) < (b) ? a : b)
Rob Bradford08031182013-08-13 20:11:03 +01004843
Daniel Stone97f68542012-05-30 16:32:01 +01004844static void
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04004845display_add_input(struct display *d, uint32_t id)
Kristian Høgsberg808fd412010-07-20 17:06:19 -04004846{
4847 struct input *input;
4848
Kristian Høgsbergadcd54b2013-08-15 14:17:13 -07004849 input = xzalloc(sizeof *input);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04004850 input->display = d;
Rob Bradford08031182013-08-13 20:11:03 +01004851 input->seat = wl_registry_bind(d->registry, id, &wl_seat_interface,
Jasper St. Pierre47f10432013-11-12 14:37:20 -05004852 MIN(d->seat_version, 3));
Rusty Lynch1084da52013-08-15 09:10:08 -07004853 input->touch_focus = NULL;
Kristian Høgsberg808fd412010-07-20 17:06:19 -04004854 input->pointer_focus = NULL;
4855 input->keyboard_focus = NULL;
Rusty Lynch041815a2013-08-08 21:20:38 -07004856 wl_list_init(&input->touch_point_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04004857 wl_list_insert(d->input_list.prev, &input->link);
4858
Daniel Stone37816df2012-05-16 18:45:18 +01004859 wl_seat_add_listener(input->seat, &seat_listener, input);
4860 wl_seat_set_user_data(input->seat, input);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04004861
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04004862 input->data_device =
4863 wl_data_device_manager_get_data_device(d->data_device_manager,
Daniel Stone37816df2012-05-16 18:45:18 +01004864 input->seat);
4865 wl_data_device_add_listener(input->data_device, &data_device_listener,
4866 input);
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03004867
4868 input->pointer_surface = wl_compositor_create_surface(d->compositor);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04004869
Kristian Høgsberg8b19c642012-06-20 18:00:13 -04004870 input->repeat_timer_fd = timerfd_create(CLOCK_MONOTONIC,
4871 TFD_CLOEXEC | TFD_NONBLOCK);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04004872 input->repeat_task.run = keyboard_repeat_func;
4873 display_watch_fd(d, input->repeat_timer_fd,
4874 EPOLLIN, &input->repeat_task);
Kristian Høgsberg58eec362011-01-19 14:27:42 -05004875}
4876
Kristian Høgsberg808fd412010-07-20 17:06:19 -04004877static void
Pekka Paalanene1207c72011-12-16 12:02:09 +02004878input_destroy(struct input *input)
4879{
Kristian Høgsberg8a1d10d2011-12-21 17:11:45 -05004880 input_remove_keyboard_focus(input);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04004881 input_remove_pointer_focus(input);
Pekka Paalanene1207c72011-12-16 12:02:09 +02004882
4883 if (input->drag_offer)
4884 data_offer_destroy(input->drag_offer);
4885
4886 if (input->selection_offer)
4887 data_offer_destroy(input->selection_offer);
4888
4889 wl_data_device_destroy(input->data_device);
Rob Bradford08031182013-08-13 20:11:03 +01004890
4891 if (input->display->seat_version >= 3) {
4892 if (input->pointer)
4893 wl_pointer_release(input->pointer);
4894 if (input->keyboard)
4895 wl_keyboard_release(input->keyboard);
4896 }
4897
Daniel Stone97f68542012-05-30 16:32:01 +01004898 fini_xkb(input);
4899
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +03004900 wl_surface_destroy(input->pointer_surface);
4901
Pekka Paalanene1207c72011-12-16 12:02:09 +02004902 wl_list_remove(&input->link);
Daniel Stone37816df2012-05-16 18:45:18 +01004903 wl_seat_destroy(input->seat);
Kristian Høgsbergcf4d2442012-06-20 14:52:12 -04004904 close(input->repeat_timer_fd);
Pekka Paalanene1207c72011-12-16 12:02:09 +02004905 free(input);
4906}
4907
4908static void
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02004909init_workspace_manager(struct display *d, uint32_t id)
4910{
4911 d->workspace_manager =
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004912 wl_registry_bind(d->registry, id,
4913 &workspace_manager_interface, 1);
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02004914 if (d->workspace_manager != NULL)
4915 workspace_manager_add_listener(d->workspace_manager,
4916 &workspace_manager_listener,
4917 d);
4918}
4919
4920static void
Tomeu Vizosobee45a12013-08-06 20:05:54 +02004921shm_format(void *data, struct wl_shm *wl_shm, uint32_t format)
4922{
4923 struct display *d = data;
4924
4925 if (format == WL_SHM_FORMAT_RGB565)
4926 d->has_rgb565 = 1;
4927}
4928
4929struct wl_shm_listener shm_listener = {
4930 shm_format
4931};
4932
4933static void
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004934registry_handle_global(void *data, struct wl_registry *registry, uint32_t id,
4935 const char *interface, uint32_t version)
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004936{
4937 struct display *d = data;
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004938 struct global *global;
4939
Brian Lovinbc919262013-08-07 15:34:59 -07004940 global = xmalloc(sizeof *global);
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004941 global->name = id;
4942 global->interface = strdup(interface);
4943 global->version = version;
4944 wl_list_insert(d->global_list.prev, &global->link);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004945
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04004946 if (strcmp(interface, "wl_compositor") == 0) {
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004947 d->compositor = wl_registry_bind(registry, id,
Jason Ekstrandd27cb092013-06-26 22:20:31 -05004948 &wl_compositor_interface, 3);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04004949 } else if (strcmp(interface, "wl_output") == 0) {
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05004950 display_add_output(d, id);
Daniel Stone37816df2012-05-16 18:45:18 +01004951 } else if (strcmp(interface, "wl_seat") == 0) {
Rob Bradford08031182013-08-13 20:11:03 +01004952 d->seat_version = version;
Kristian Høgsberg4fe1a3e2010-08-10 14:02:48 -04004953 display_add_input(d, id);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04004954 } else if (strcmp(interface, "wl_shell") == 0) {
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004955 d->shell = wl_registry_bind(registry,
4956 id, &wl_shell_interface, 1);
Kristian Høgsberg7cbdb642011-04-20 18:53:07 -04004957 } else if (strcmp(interface, "wl_shm") == 0) {
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004958 d->shm = wl_registry_bind(registry, id, &wl_shm_interface, 1);
Tomeu Vizosobee45a12013-08-06 20:05:54 +02004959 wl_shm_add_listener(d->shm, &shm_listener, d);
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04004960 } else if (strcmp(interface, "wl_data_device_manager") == 0) {
4961 d->data_device_manager =
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004962 wl_registry_bind(registry, id,
4963 &wl_data_device_manager_interface, 1);
Scott Moreau7a1b32a2012-05-27 14:25:02 -06004964 } else if (strcmp(interface, "text_cursor_position") == 0) {
4965 d->text_cursor_position =
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004966 wl_registry_bind(registry, id,
4967 &text_cursor_position_interface, 1);
Jonas Ådahl14c92ff2012-08-29 22:13:02 +02004968 } else if (strcmp(interface, "workspace_manager") == 0) {
4969 init_workspace_manager(d, id);
Pekka Paalanen35e82632013-04-25 13:57:48 +03004970 } else if (strcmp(interface, "wl_subcompositor") == 0) {
4971 d->subcompositor =
4972 wl_registry_bind(registry, id,
4973 &wl_subcompositor_interface, 1);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004974 }
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04004975
4976 if (d->global_handler)
4977 d->global_handler(d, id, interface, version, d->user_data);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05004978}
4979
Pekka Paalanen0eab05d2013-01-22 14:53:55 +02004980static void
4981registry_handle_global_remove(void *data, struct wl_registry *registry,
4982 uint32_t name)
4983{
4984 struct display *d = data;
4985 struct global *global;
4986 struct global *tmp;
4987
4988 wl_list_for_each_safe(global, tmp, &d->global_list, link) {
4989 if (global->name != name)
4990 continue;
4991
Xiong Zhang83d8ee72013-10-23 13:58:35 +08004992 if (strcmp(global->interface, "wl_output") == 0)
4993 display_destroy_output(d, name);
4994
4995 /* XXX: Should destroy remaining bound globals */
4996
4997 if (d->global_handler_remove)
4998 d->global_handler_remove(d, name, global->interface,
4999 global->version, d->user_data);
5000
Pekka Paalanen0eab05d2013-01-22 14:53:55 +02005001 wl_list_remove(&global->link);
5002 free(global->interface);
5003 free(global);
5004 }
5005}
5006
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005007void *
5008display_bind(struct display *display, uint32_t name,
5009 const struct wl_interface *interface, uint32_t version)
5010{
5011 return wl_registry_bind(display->registry, name, interface, version);
5012}
5013
5014static const struct wl_registry_listener registry_listener = {
Pekka Paalanen0eab05d2013-01-22 14:53:55 +02005015 registry_handle_global,
5016 registry_handle_global_remove
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005017};
5018
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005019#ifdef HAVE_CAIRO_EGL
Yuval Fledel45568f62010-12-06 09:18:12 -05005020static int
Kristian Høgsberg297c6312011-02-04 14:11:33 -05005021init_egl(struct display *d)
Yuval Fledel45568f62010-12-06 09:18:12 -05005022{
5023 EGLint major, minor;
Benjamin Franzke6693ac22011-02-10 12:04:30 +01005024 EGLint n;
Kristian Høgsbergf389cac2011-08-31 16:21:38 -04005025
Rob Clark6396ed32012-03-11 19:48:41 -05005026#ifdef USE_CAIRO_GLESV2
5027# define GL_BIT EGL_OPENGL_ES2_BIT
5028#else
5029# define GL_BIT EGL_OPENGL_BIT
5030#endif
5031
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05005032 static const EGLint argb_cfg_attribs[] = {
Kristian Høgsberg31467562012-10-16 15:31:31 -04005033 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01005034 EGL_RED_SIZE, 1,
5035 EGL_GREEN_SIZE, 1,
5036 EGL_BLUE_SIZE, 1,
5037 EGL_ALPHA_SIZE, 1,
5038 EGL_DEPTH_SIZE, 1,
Rob Clark6396ed32012-03-11 19:48:41 -05005039 EGL_RENDERABLE_TYPE, GL_BIT,
Benjamin Franzke6693ac22011-02-10 12:04:30 +01005040 EGL_NONE
5041 };
Yuval Fledel45568f62010-12-06 09:18:12 -05005042
Kristian Høgsberg2d574392012-01-18 14:50:58 -05005043#ifdef USE_CAIRO_GLESV2
5044 static const EGLint context_attribs[] = {
5045 EGL_CONTEXT_CLIENT_VERSION, 2,
5046 EGL_NONE
5047 };
5048 EGLint api = EGL_OPENGL_ES_API;
5049#else
5050 EGLint *context_attribs = NULL;
5051 EGLint api = EGL_OPENGL_API;
5052#endif
5053
Kristian Høgsberg91342c62011-04-14 14:44:58 -04005054 d->dpy = eglGetDisplay(d->display);
Yuval Fledel45568f62010-12-06 09:18:12 -05005055 if (!eglInitialize(d->dpy, &major, &minor)) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005056 fprintf(stderr, "failed to initialize EGL\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05005057 return -1;
5058 }
5059
Kristian Høgsberg2d574392012-01-18 14:50:58 -05005060 if (!eglBindAPI(api)) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005061 fprintf(stderr, "failed to bind EGL client API\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05005062 return -1;
5063 }
5064
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05005065 if (!eglChooseConfig(d->dpy, argb_cfg_attribs,
5066 &d->argb_config, 1, &n) || n != 1) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005067 fprintf(stderr, "failed to choose argb EGL config\n");
Benjamin Franzke6693ac22011-02-10 12:04:30 +01005068 return -1;
5069 }
5070
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05005071 d->argb_ctx = eglCreateContext(d->dpy, d->argb_config,
Kristian Høgsberg2d574392012-01-18 14:50:58 -05005072 EGL_NO_CONTEXT, context_attribs);
Benjamin Franzke0c991632011-09-27 21:57:31 +02005073 if (d->argb_ctx == NULL) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005074 fprintf(stderr, "failed to create EGL context\n");
Yuval Fledel45568f62010-12-06 09:18:12 -05005075 return -1;
5076 }
5077
Benjamin Franzke0c991632011-09-27 21:57:31 +02005078 d->argb_device = cairo_egl_device_create(d->dpy, d->argb_ctx);
5079 if (cairo_device_status(d->argb_device) != CAIRO_STATUS_SUCCESS) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005080 fprintf(stderr, "failed to get cairo EGL argb device\n");
Benjamin Franzke0c991632011-09-27 21:57:31 +02005081 return -1;
5082 }
Yuval Fledel45568f62010-12-06 09:18:12 -05005083
5084 return 0;
5085}
5086
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005087static void
5088fini_egl(struct display *display)
5089{
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005090 cairo_device_destroy(display->argb_device);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005091
5092 eglMakeCurrent(display->dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
5093 EGL_NO_CONTEXT);
5094
5095 eglTerminate(display->dpy);
5096 eglReleaseThread();
5097}
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005098#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005099
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005100static void
Pekka Paalanen3cbb0892012-11-19 17:16:01 +02005101init_dummy_surface(struct display *display)
5102{
5103 int len;
5104 void *data;
5105
5106 len = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, 1);
5107 data = malloc(len);
5108 display->dummy_surface =
5109 cairo_image_surface_create_for_data(data, CAIRO_FORMAT_ARGB32,
5110 1, 1, len);
5111 display->dummy_surface_data = data;
5112}
5113
5114static void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005115handle_display_data(struct task *task, uint32_t events)
5116{
5117 struct display *display =
5118 container_of(task, struct display, display_task);
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005119 struct epoll_event ep;
5120 int ret;
U. Artie Eoff44874d92012-10-02 21:12:35 -07005121
5122 display->display_fd_events = events;
5123
5124 if (events & EPOLLERR || events & EPOLLHUP) {
5125 display_exit(display);
5126 return;
5127 }
5128
Kristian Høgsberga17f7a12012-10-16 13:16:10 -04005129 if (events & EPOLLIN) {
5130 ret = wl_display_dispatch(display->display);
5131 if (ret == -1) {
5132 display_exit(display);
5133 return;
5134 }
5135 }
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005136
5137 if (events & EPOLLOUT) {
5138 ret = wl_display_flush(display->display);
5139 if (ret == 0) {
5140 ep.events = EPOLLIN | EPOLLERR | EPOLLHUP;
5141 ep.data.ptr = &display->display_task;
5142 epoll_ctl(display->epoll_fd, EPOLL_CTL_MOD,
5143 display->display_fd, &ep);
5144 } else if (ret == -1 && errno != EAGAIN) {
5145 display_exit(display);
5146 return;
5147 }
5148 }
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005149}
5150
Kristian Høgsberg2e437202013-04-16 11:21:48 -04005151static void
5152log_handler(const char *format, va_list args)
5153{
5154 vfprintf(stderr, format, args);
5155}
5156
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005157struct display *
Kristian Høgsberg4172f662013-02-20 15:27:49 -05005158display_create(int *argc, char *argv[])
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005159{
5160 struct display *d;
Kristian Høgsberga85fe3c2010-06-08 14:08:30 -04005161
Kristian Høgsberg2e437202013-04-16 11:21:48 -04005162 wl_log_set_handler_client(log_handler);
5163
Peter Huttererf3d62272013-08-08 11:57:05 +10005164 d = zalloc(sizeof *d);
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005165 if (d == NULL)
5166 return NULL;
5167
Kristian Høgsberg2bb3ebe2010-12-01 15:36:20 -05005168 d->display = wl_display_connect(NULL);
Kristian Høgsberg478d9262010-06-08 20:34:11 -04005169 if (d->display == NULL) {
Pekka Paalanen4e106542013-02-14 11:49:12 +02005170 fprintf(stderr, "failed to connect to Wayland display: %m\n");
Rob Bradfordf0a1af92013-01-10 19:48:54 +00005171 free(d);
Kristian Høgsberg7824d812010-06-08 14:59:44 -04005172 return NULL;
5173 }
5174
Rob Bradford5ab9c752013-07-26 16:29:43 +01005175 d->xkb_context = xkb_context_new(0);
5176 if (d->xkb_context == NULL) {
5177 fprintf(stderr, "Failed to create XKB context\n");
5178 free(d);
5179 return NULL;
5180 }
5181
Pekka Paalanen647f2bf2012-05-30 15:53:43 +03005182 d->epoll_fd = os_epoll_create_cloexec();
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005183 d->display_fd = wl_display_get_fd(d->display);
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005184 d->display_task.run = handle_display_data;
U. Artie Eoff44874d92012-10-02 21:12:35 -07005185 display_watch_fd(d, d->display_fd, EPOLLIN | EPOLLERR | EPOLLHUP,
5186 &d->display_task);
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005187
5188 wl_list_init(&d->deferred_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04005189 wl_list_init(&d->input_list);
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05005190 wl_list_init(&d->output_list);
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005191 wl_list_init(&d->global_list);
Kristian Høgsberg808fd412010-07-20 17:06:19 -04005192
Jonas Ådahlf77beeb2012-10-08 22:49:04 +02005193 d->workspace = 0;
5194 d->workspace_count = 1;
5195
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005196 d->registry = wl_display_get_registry(d->display);
5197 wl_registry_add_listener(d->registry, &registry_listener, d);
Pekka Paalanen33a68ea2013-02-14 12:18:00 +02005198
5199 if (wl_display_dispatch(d->display) < 0) {
5200 fprintf(stderr, "Failed to process Wayland connection: %m\n");
5201 return NULL;
5202 }
5203
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005204#ifdef HAVE_CAIRO_EGL
Pekka Paalanen4e106542013-02-14 11:49:12 +02005205 if (init_egl(d) < 0)
5206 fprintf(stderr, "EGL does not seem to work, "
5207 "falling back to software rendering and wl_shm.\n");
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005208#endif
Kristian Høgsberg8a9cda82008-11-03 15:31:30 -05005209
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03005210 create_cursors(d);
Kristian Høgsbergda275dd2010-08-16 17:47:07 -04005211
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04005212 d->theme = theme_create();
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -04005213
Kristian Høgsberg478d9262010-06-08 20:34:11 -04005214 wl_list_init(&d->window_list);
5215
Pekka Paalanen3cbb0892012-11-19 17:16:01 +02005216 init_dummy_surface(d);
5217
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005218 return d;
5219}
5220
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02005221static void
5222display_destroy_outputs(struct display *display)
5223{
5224 struct output *tmp;
5225 struct output *output;
5226
5227 wl_list_for_each_safe(output, tmp, &display->output_list, link)
5228 output_destroy(output);
5229}
5230
Pekka Paalanene1207c72011-12-16 12:02:09 +02005231static void
5232display_destroy_inputs(struct display *display)
5233{
5234 struct input *tmp;
5235 struct input *input;
5236
5237 wl_list_for_each_safe(input, tmp, &display->input_list, link)
5238 input_destroy(input);
5239}
5240
Pekka Paalanen999c5b52011-11-30 10:52:38 +02005241void
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005242display_destroy(struct display *display)
5243{
Pekka Paalanenc2052982011-12-16 11:41:32 +02005244 if (!wl_list_empty(&display->window_list))
U. Artie Eoff44874d92012-10-02 21:12:35 -07005245 fprintf(stderr, "toytoolkit warning: %d windows exist.\n",
5246 wl_list_length(&display->window_list));
Pekka Paalanenc2052982011-12-16 11:41:32 +02005247
5248 if (!wl_list_empty(&display->deferred_list))
5249 fprintf(stderr, "toytoolkit warning: deferred tasks exist.\n");
5250
Pekka Paalanen3cbb0892012-11-19 17:16:01 +02005251 cairo_surface_destroy(display->dummy_surface);
5252 free(display->dummy_surface_data);
5253
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02005254 display_destroy_outputs(display);
Pekka Paalanene1207c72011-12-16 12:02:09 +02005255 display_destroy_inputs(display);
Pekka Paalanen2c1426a2011-12-16 11:35:34 +02005256
Daniel Stone97f68542012-05-30 16:32:01 +01005257 xkb_context_unref(display->xkb_context);
Pekka Paalanen325bb602011-12-19 10:31:45 +02005258
Kristian Høgsberg5adb4802012-05-15 22:25:28 -04005259 theme_destroy(display->theme);
Ander Conselvan de Oliveirad8f527c2012-05-25 09:30:02 +03005260 destroy_cursors(display);
Pekka Paalanen325bb602011-12-19 10:31:45 +02005261
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005262#ifdef HAVE_CAIRO_EGL
Kristian Høgsberg4e51b442013-01-07 15:47:14 -05005263 if (display->argb_device)
5264 fini_egl(display);
Kristian Høgsberg8f64ed02012-04-03 11:57:44 -04005265#endif
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005266
Pekka Paalanen35e82632013-04-25 13:57:48 +03005267 if (display->subcompositor)
5268 wl_subcompositor_destroy(display->subcompositor);
5269
Pekka Paalanenc2052982011-12-16 11:41:32 +02005270 if (display->shell)
5271 wl_shell_destroy(display->shell);
5272
5273 if (display->shm)
5274 wl_shm_destroy(display->shm);
5275
5276 if (display->data_device_manager)
5277 wl_data_device_manager_destroy(display->data_device_manager);
5278
5279 wl_compositor_destroy(display->compositor);
Pekka Paalanenaac1c132012-12-04 16:01:15 +02005280 wl_registry_destroy(display->registry);
Pekka Paalanenc2052982011-12-16 11:41:32 +02005281
5282 close(display->epoll_fd);
5283
U. Artie Eoff44874d92012-10-02 21:12:35 -07005284 if (!(display->display_fd_events & EPOLLERR) &&
5285 !(display->display_fd_events & EPOLLHUP))
5286 wl_display_flush(display->display);
5287
Kristian Høgsbergfcfc83f2012-02-28 14:29:19 -05005288 wl_display_disconnect(display->display);
Pekka Paalanenfe6079a2011-12-15 15:20:04 +02005289 free(display);
5290}
5291
5292void
Pekka Paalanen999c5b52011-11-30 10:52:38 +02005293display_set_user_data(struct display *display, void *data)
5294{
5295 display->user_data = data;
5296}
5297
5298void *
5299display_get_user_data(struct display *display)
5300{
5301 return display->user_data;
5302}
5303
Kristian Høgsberg9d69f8e2010-09-03 14:46:38 -04005304struct wl_display *
5305display_get_display(struct display *display)
5306{
5307 return display->display;
5308}
5309
Kristian Høgsbergb20b0092013-08-15 11:54:03 -07005310int
5311display_has_subcompositor(struct display *display)
5312{
5313 if (display->subcompositor)
5314 return 1;
5315
5316 wl_display_roundtrip(display->display);
5317
5318 return display->subcompositor != NULL;
5319}
5320
Kristian Høgsberg1cc5ac32013-04-11 21:47:41 -04005321cairo_device_t *
5322display_get_cairo_device(struct display *display)
5323{
5324 return display->argb_device;
5325}
5326
Kristian Høgsberg53ff2f62011-11-26 17:27:37 -05005327struct output *
5328display_get_output(struct display *display)
5329{
5330 return container_of(display->output_list.next, struct output, link);
5331}
5332
Kristian Høgsberg43c28ee2009-01-26 23:42:46 -05005333struct wl_compositor *
5334display_get_compositor(struct display *display)
5335{
5336 return display->compositor;
Kristian Høgsberg61017b12008-11-02 18:51:48 -05005337}
Kristian Høgsberg7824d812010-06-08 14:59:44 -04005338
Kristian Høgsbergeae5de72012-04-11 22:42:15 -04005339uint32_t
5340display_get_serial(struct display *display)
5341{
5342 return display->serial;
5343}
5344
Kristian Høgsberg7824d812010-06-08 14:59:44 -04005345EGLDisplay
5346display_get_egl_display(struct display *d)
5347{
5348 return d->dpy;
5349}
5350
Kristian Høgsberg47fe08a2011-10-28 12:26:06 -04005351struct wl_data_source *
5352display_create_data_source(struct display *display)
5353{
5354 return wl_data_device_manager_create_data_source(display->data_device_manager);
5355}
5356
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005357EGLConfig
Benjamin Franzke0c991632011-09-27 21:57:31 +02005358display_get_argb_egl_config(struct display *d)
5359{
Kristian Høgsberg8e81df42012-01-11 14:24:46 -05005360 return d->argb_config;
Benjamin Franzke0c991632011-09-27 21:57:31 +02005361}
5362
Benjamin Franzke1a89f282011-10-07 09:33:06 +02005363int
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005364display_acquire_window_surface(struct display *display,
5365 struct window *window,
5366 EGLContext ctx)
5367{
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02005368 struct surface *surface = window->main_surface;
5369
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02005370 if (surface->buffer_type != WINDOW_BUFFER_TYPE_EGL_WINDOW)
Benjamin Franzke1a89f282011-10-07 09:33:06 +02005371 return -1;
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005372
Pekka Paalanen6f41b072013-02-20 13:39:17 +02005373 widget_get_cairo_surface(window->main_surface->widget);
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02005374 return surface->toysurface->acquire(surface->toysurface, ctx);
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005375}
5376
5377void
Benjamin Franzke0c991632011-09-27 21:57:31 +02005378display_release_window_surface(struct display *display,
5379 struct window *window)
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005380{
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02005381 struct surface *surface = window->main_surface;
5382
Pekka Paalanen02bba7c2013-02-13 16:17:15 +02005383 if (surface->buffer_type != WINDOW_BUFFER_TYPE_EGL_WINDOW)
Benjamin Franzke0c991632011-09-27 21:57:31 +02005384 return;
5385
Pekka Paalanen811ec4f2013-02-13 16:17:14 +02005386 surface->toysurface->release(surface->toysurface);
Benjamin Franzkecff904e2011-02-18 23:00:55 +01005387}
5388
5389void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005390display_defer(struct display *display, struct task *task)
Kristian Høgsberg7824d812010-06-08 14:59:44 -04005391{
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005392 wl_list_insert(&display->deferred_list, &task->link);
5393}
5394
5395void
5396display_watch_fd(struct display *display,
5397 int fd, uint32_t events, struct task *task)
5398{
5399 struct epoll_event ep;
5400
5401 ep.events = events;
5402 ep.data.ptr = task;
5403 epoll_ctl(display->epoll_fd, EPOLL_CTL_ADD, fd, &ep);
5404}
5405
5406void
Dima Ryazanova85292e2012-11-29 00:27:09 -08005407display_unwatch_fd(struct display *display, int fd)
5408{
5409 epoll_ctl(display->epoll_fd, EPOLL_CTL_DEL, fd, NULL);
5410}
5411
5412void
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005413display_run(struct display *display)
5414{
5415 struct task *task;
5416 struct epoll_event ep[16];
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005417 int i, count, ret;
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005418
Pekka Paalanen826d7952011-12-15 10:14:07 +02005419 display->running = 1;
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005420 while (1) {
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005421 while (!wl_list_empty(&display->deferred_list)) {
Tiago Vignatti6f093382012-09-27 14:46:23 +03005422 task = container_of(display->deferred_list.prev,
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005423 struct task, link);
5424 wl_list_remove(&task->link);
5425 task->run(task, 0);
5426 }
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05005427
Kristian Høgsbergfeb3c1d2012-10-15 12:56:11 -04005428 wl_display_dispatch_pending(display->display);
5429
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05005430 if (!display->running)
5431 break;
5432
Kristian Høgsbergfa80e112012-10-10 21:34:26 -04005433 ret = wl_display_flush(display->display);
5434 if (ret < 0 && errno == EAGAIN) {
5435 ep[0].events =
5436 EPOLLIN | EPOLLOUT | EPOLLERR | EPOLLHUP;
5437 ep[0].data.ptr = &display->display_task;
5438
5439 epoll_ctl(display->epoll_fd, EPOLL_CTL_MOD,
5440 display->display_fd, &ep[0]);
5441 } else if (ret < 0) {
5442 break;
5443 }
Kristian Høgsberg9ca2d082012-01-09 18:48:14 -05005444
5445 count = epoll_wait(display->epoll_fd,
5446 ep, ARRAY_LENGTH(ep), -1);
5447 for (i = 0; i < count; i++) {
5448 task = ep[i].data.ptr;
5449 task->run(task, ep[i].events);
5450 }
Kristian Høgsberg3a696272011-09-14 17:33:48 -04005451 }
Kristian Høgsberg7824d812010-06-08 14:59:44 -04005452}
Pekka Paalanen826d7952011-12-15 10:14:07 +02005453
5454void
5455display_exit(struct display *display)
5456{
5457 display->running = 0;
5458}
Jan Arne Petersencd997062012-11-18 19:06:44 +01005459
5460void
5461keysym_modifiers_add(struct wl_array *modifiers_map,
5462 const char *name)
5463{
5464 size_t len = strlen(name) + 1;
5465 char *p;
5466
5467 p = wl_array_add(modifiers_map, len);
5468
5469 if (p == NULL)
5470 return;
5471
5472 strncpy(p, name, len);
5473}
5474
5475static xkb_mod_index_t
5476keysym_modifiers_get_index(struct wl_array *modifiers_map,
5477 const char *name)
5478{
5479 xkb_mod_index_t index = 0;
5480 char *p = modifiers_map->data;
5481
5482 while ((const char *)p < (const char *)(modifiers_map->data + modifiers_map->size)) {
5483 if (strcmp(p, name) == 0)
5484 return index;
5485
5486 index++;
5487 p += strlen(p) + 1;
5488 }
5489
5490 return XKB_MOD_INVALID;
5491}
5492
5493xkb_mod_mask_t
5494keysym_modifiers_get_mask(struct wl_array *modifiers_map,
5495 const char *name)
5496{
5497 xkb_mod_index_t index = keysym_modifiers_get_index(modifiers_map, name);
5498
5499 if (index == XKB_MOD_INVALID)
5500 return XKB_MOD_INVALID;
5501
5502 return 1 << index;
5503}
Kristian Høgsbergce278412013-07-25 15:20:20 -07005504
5505void *
5506fail_on_null(void *p)
5507{
5508 if (p == NULL) {
Peter Hutterer3ca59d32013-08-08 17:13:47 +10005509 fprintf(stderr, "%s: out of memory\n", program_invocation_short_name);
Kristian Høgsbergce278412013-07-25 15:20:20 -07005510 exit(EXIT_FAILURE);
5511 }
5512
5513 return p;
5514}
5515
5516void *
5517xmalloc(size_t s)
5518{
5519 return fail_on_null(malloc(s));
5520}
5521
Peter Huttererf3d62272013-08-08 11:57:05 +10005522void *
5523xzalloc(size_t s)
5524{
5525 return fail_on_null(zalloc(s));
5526}
5527
Kristian Høgsbergce278412013-07-25 15:20:20 -07005528char *
5529xstrdup(const char *s)
5530{
5531 return fail_on_null(strdup(s));
5532}