2 * Copyright © 2008 Kristian Høgsberg
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
26 #include <xkbcommon/xkbcommon.h>
27 #include <wayland-client.h>
29 #include "../shared/config-parser.h"
30 #include "../shared/zalloc.h"
31 #include "subsurface-client-protocol.h"
33 #define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0])
35 #define container_of(ptr, type, member) ({ \
36 const __typeof__( ((type *)0)->member ) *__mptr = (ptr); \
37 (type *)( (char *)__mptr - offsetof(type,member) );})
46 void (*run)(struct task *task, uint32_t events);
58 fail_on_null(void *p);
64 xstrdup(const char *s);
67 display_create(int *argc, char *argv[]);
70 display_destroy(struct display *display);
73 display_set_user_data(struct display *display, void *data);
76 display_get_user_data(struct display *display);
79 display_get_display(struct display *display);
82 display_has_subcompositor(struct display *display);
85 display_get_cairo_device(struct display *display);
87 struct wl_compositor *
88 display_get_compositor(struct display *display);
91 display_get_shell(struct display *display);
94 display_get_output(struct display *display);
97 display_get_serial(struct display *display);
99 typedef void (*display_global_handler_t)(struct display *display,
101 const char *interface,
102 uint32_t version, void *data);
105 display_set_global_handler(struct display *display,
106 display_global_handler_t handler);
108 display_set_global_handler_remove(struct display *display,
109 display_global_handler_t remove_handler);
111 display_bind(struct display *display, uint32_t name,
112 const struct wl_interface *interface, uint32_t version);
114 typedef void (*display_output_handler_t)(struct output *output, void *data);
117 * The output configure handler is called, when a new output is connected
118 * and we know its current mode, or when the current mode changes.
119 * Test and set the output user data in your handler to know, if the
120 * output is new. Note: 'data' in the configure handler is the display
124 display_set_output_configure_handler(struct display *display,
125 display_output_handler_t handler);
127 struct wl_data_source *
128 display_create_data_source(struct display *display);
130 #ifdef EGL_NO_DISPLAY
132 display_get_egl_display(struct display *d);
135 display_get_argb_egl_config(struct display *d);
138 display_acquire_window_surface(struct display *display,
139 struct window *window,
142 display_release_window_surface(struct display *display,
143 struct window *window);
146 #define SURFACE_OPAQUE 0x01
147 #define SURFACE_SHM 0x02
149 #define SURFACE_HINT_RESIZE 0x10
151 #define SURFACE_HINT_RGB565 0x100
154 display_create_surface(struct display *display,
155 struct wl_surface *surface,
156 struct rectangle *rectangle,
160 display_get_buffer_for_surface(struct display *display,
161 cairo_surface_t *surface);
163 struct wl_cursor_image *
164 display_get_pointer_image(struct display *display, int pointer);
167 display_defer(struct display *display, struct task *task);
170 display_watch_fd(struct display *display,
171 int fd, uint32_t events, struct task *task);
174 display_unwatch_fd(struct display *display, int fd);
177 display_run(struct display *d);
180 display_exit(struct display *d);
200 typedef void (*window_key_handler_t)(struct window *window, struct input *input,
201 uint32_t time, uint32_t key, uint32_t unicode,
202 enum wl_keyboard_key_state state, void *data);
204 typedef void (*window_keyboard_focus_handler_t)(struct window *window,
205 struct input *device, void *data);
207 typedef void (*window_data_handler_t)(struct window *window,
213 typedef void (*window_drop_handler_t)(struct window *window,
215 int32_t x, int32_t y, void *data);
217 typedef void (*window_close_handler_t)(struct window *window, void *data);
218 typedef void (*window_fullscreen_handler_t)(struct window *window, void *data);
220 typedef void (*window_output_handler_t)(struct window *window, struct output *output,
221 int enter, void *data);
223 typedef void (*widget_resize_handler_t)(struct widget *widget,
224 int32_t width, int32_t height,
226 typedef void (*widget_redraw_handler_t)(struct widget *widget, void *data);
228 typedef int (*widget_enter_handler_t)(struct widget *widget,
230 float x, float y, void *data);
231 typedef void (*widget_leave_handler_t)(struct widget *widget,
232 struct input *input, void *data);
233 typedef int (*widget_motion_handler_t)(struct widget *widget,
234 struct input *input, uint32_t time,
235 float x, float y, void *data);
236 typedef void (*widget_button_handler_t)(struct widget *widget,
237 struct input *input, uint32_t time,
239 enum wl_pointer_button_state state,
241 typedef void (*widget_touch_down_handler_t)(struct widget *widget,
249 typedef void (*widget_touch_up_handler_t)(struct widget *widget,
255 typedef void (*widget_touch_motion_handler_t)(struct widget *widget,
262 typedef void (*widget_touch_frame_handler_t)(struct widget *widget,
263 struct input *input, void *data);
264 typedef void (*widget_touch_cancel_handler_t)(struct widget *widget,
265 struct input *input, void *data);
266 typedef void (*widget_axis_handler_t)(struct widget *widget,
267 struct input *input, uint32_t time,
273 window_create(struct display *display);
275 window_create_transient(struct display *display, struct window *parent,
276 int32_t x, int32_t y, uint32_t flags);
278 window_create_custom(struct display *display);
281 window_has_focus(struct window *window);
283 typedef void (*menu_func_t)(struct window *window,
284 struct input *input, int index, void *data);
287 window_show_menu(struct display *display,
288 struct input *input, uint32_t time, struct window *parent,
289 int32_t x, int32_t y,
290 menu_func_t func, const char **entries, int count);
293 window_show_frame_menu(struct window *window,
294 struct input *input, uint32_t time);
297 window_get_buffer_transform(struct window *window);
300 window_set_buffer_transform(struct window *window,
301 enum wl_output_transform transform);
304 window_get_buffer_scale(struct window *window);
307 window_set_buffer_scale(struct window *window,
311 window_get_output_scale(struct window *window);
314 window_destroy(struct window *window);
317 window_add_widget(struct window *window, void *data);
319 enum subsurface_mode {
320 SUBSURFACE_SYNCHRONIZED,
321 SUBSURFACE_DESYNCHRONIZED
325 window_add_subsurface(struct window *window, void *data,
326 enum subsurface_mode default_mode);
328 typedef void (*data_func_t)(void *data, size_t len,
329 int32_t x, int32_t y, void *user_data);
332 window_get_display(struct window *window);
334 window_move(struct window *window, struct input *input, uint32_t time);
336 window_touch_move(struct window *window, struct input *input, uint32_t time);
338 window_get_allocation(struct window *window, struct rectangle *allocation);
340 window_schedule_redraw(struct window *window);
342 window_schedule_resize(struct window *window, int width, int height);
345 window_damage(struct window *window, int32_t x, int32_t y,
346 int32_t width, int32_t height);
349 window_get_surface(struct window *window);
352 window_get_wl_surface(struct window *window);
354 struct wl_shell_surface *
355 window_get_wl_shell_surface(struct window *window);
357 enum window_buffer_type {
358 WINDOW_BUFFER_TYPE_EGL_WINDOW,
359 WINDOW_BUFFER_TYPE_SHM,
363 display_surface_damage(struct display *display, cairo_surface_t *cairo_surface,
364 int32_t x, int32_t y, int32_t width, int32_t height);
367 window_set_buffer_type(struct window *window, enum window_buffer_type type);
370 window_is_fullscreen(struct window *window);
373 window_set_fullscreen(struct window *window, int fullscreen);
376 window_set_fullscreen_method(struct window *window,
377 enum wl_shell_surface_fullscreen_method method);
379 window_is_maximized(struct window *window);
382 window_set_maximized(struct window *window, int maximized);
385 window_set_user_data(struct window *window, void *data);
388 window_get_user_data(struct window *window);
391 window_set_key_handler(struct window *window,
392 window_key_handler_t handler);
395 window_set_keyboard_focus_handler(struct window *window,
396 window_keyboard_focus_handler_t handler);
399 window_set_data_handler(struct window *window,
400 window_data_handler_t handler);
403 window_set_drop_handler(struct window *window,
404 window_drop_handler_t handler);
407 window_set_close_handler(struct window *window,
408 window_close_handler_t handler);
410 window_set_fullscreen_handler(struct window *window,
411 window_fullscreen_handler_t handler);
413 window_set_output_handler(struct window *window,
414 window_output_handler_t handler);
417 window_set_title(struct window *window, const char *title);
420 window_get_title(struct window *window);
423 window_set_text_cursor_position(struct window *window, int32_t x, int32_t y);
425 enum preferred_format {
426 WINDOW_PREFERRED_FORMAT_NONE,
427 WINDOW_PREFERRED_FORMAT_RGB565
431 window_set_preferred_format(struct window *window,
432 enum preferred_format format);
435 widget_set_tooltip(struct widget *parent, char *entry, float x, float y);
438 widget_destroy_tooltip(struct widget *parent);
441 widget_add_widget(struct widget *parent, void *data);
444 widget_destroy(struct widget *widget);
446 widget_set_default_cursor(struct widget *widget, int cursor);
448 widget_get_allocation(struct widget *widget, struct rectangle *allocation);
451 widget_set_allocation(struct widget *widget,
452 int32_t x, int32_t y, int32_t width, int32_t height);
454 widget_set_size(struct widget *widget, int32_t width, int32_t height);
456 widget_set_transparent(struct widget *widget, int transparent);
458 widget_schedule_resize(struct widget *widget, int32_t width, int32_t height);
461 widget_get_user_data(struct widget *widget);
464 widget_cairo_create(struct widget *widget);
467 widget_get_wl_surface(struct widget *widget);
470 widget_get_last_time(struct widget *widget);
473 widget_input_region_add(struct widget *widget, const struct rectangle *rect);
476 widget_set_redraw_handler(struct widget *widget,
477 widget_redraw_handler_t handler);
479 widget_set_resize_handler(struct widget *widget,
480 widget_resize_handler_t handler);
482 widget_set_enter_handler(struct widget *widget,
483 widget_enter_handler_t handler);
485 widget_set_leave_handler(struct widget *widget,
486 widget_leave_handler_t handler);
488 widget_set_motion_handler(struct widget *widget,
489 widget_motion_handler_t handler);
491 widget_set_button_handler(struct widget *widget,
492 widget_button_handler_t handler);
494 widget_set_touch_down_handler(struct widget *widget,
495 widget_touch_down_handler_t handler);
497 widget_set_touch_up_handler(struct widget *widget,
498 widget_touch_up_handler_t handler);
500 widget_set_touch_motion_handler(struct widget *widget,
501 widget_touch_motion_handler_t handler);
503 widget_set_touch_frame_handler(struct widget *widget,
504 widget_touch_frame_handler_t handler);
506 widget_set_touch_cancel_handler(struct widget *widget,
507 widget_touch_cancel_handler_t handler);
509 widget_set_axis_handler(struct widget *widget,
510 widget_axis_handler_t handler);
512 widget_schedule_redraw(struct widget *widget);
515 window_frame_create(struct window *window, void *data);
518 window_frame_set_child_size(struct widget *widget, int child_width,
522 input_set_pointer_image(struct input *input, int pointer);
525 input_get_position(struct input *input, int32_t *x, int32_t *y);
527 #define MOD_SHIFT_MASK 0x01
528 #define MOD_ALT_MASK 0x02
529 #define MOD_CONTROL_MASK 0x04
532 input_get_modifiers(struct input *input);
535 input_grab(struct input *input, struct widget *widget, uint32_t button);
538 input_ungrab(struct input *input);
541 input_get_focus_widget(struct input *input);
544 input_get_display(struct input *input);
547 input_get_seat(struct input *input);
549 struct wl_data_device *
550 input_get_data_device(struct input *input);
553 input_set_selection(struct input *input,
554 struct wl_data_source *source, uint32_t time);
557 input_accept(struct input *input, const char *type);
561 input_receive_drag_data(struct input *input, const char *mime_type,
562 data_func_t func, void *user_data);
564 input_receive_drag_data_to_fd(struct input *input,
565 const char *mime_type, int fd);
568 input_receive_selection_data(struct input *input, const char *mime_type,
569 data_func_t func, void *data);
571 input_receive_selection_data_to_fd(struct input *input,
572 const char *mime_type, int fd);
575 output_set_user_data(struct output *output, void *data);
578 output_get_user_data(struct output *output);
581 output_set_destroy_handler(struct output *output,
582 display_output_handler_t handler);
585 output_get_allocation(struct output *output, struct rectangle *allocation);
588 output_get_wl_output(struct output *output);
590 enum wl_output_transform
591 output_get_transform(struct output *output);
594 output_get_scale(struct output *output);
597 keysym_modifiers_add(struct wl_array *modifiers_map,
601 keysym_modifiers_get_mask(struct wl_array *modifiers_map,