461ec1e2613ccdf674d956e697cb32c207b83b50
[profile/ivi/weston-ivi-shell.git] / clients / window.h
1 /*
2  * Copyright © 2008 Kristian Høgsberg
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that copyright
7  * notice and this permission notice appear in supporting documentation, and
8  * that the name of the copyright holders not be used in advertising or
9  * publicity pertaining to distribution of the software without specific,
10  * written prior permission.  The copyright holders make no representations
11  * about the suitability of this software for any purpose.  It is provided "as
12  * is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20  * OF THIS SOFTWARE.
21  */
22
23 #ifndef _WINDOW_H_
24 #define _WINDOW_H_
25
26 #include <xkbcommon/xkbcommon.h>
27 #include <wayland-client.h>
28 #include <cairo.h>
29 #include "../shared/config-parser.h"
30 #include "../shared/zalloc.h"
31 #include "subsurface-client-protocol.h"
32
33 #define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0])
34
35 #define container_of(ptr, type, member) ({                              \
36         const __typeof__( ((type *)0)->member ) *__mptr = (ptr);        \
37         (type *)( (char *)__mptr - offsetof(type,member) );})
38
39 struct window;
40 struct widget;
41 struct display;
42 struct input;
43 struct output;
44
45 struct task {
46         void (*run)(struct task *task, uint32_t events);
47         struct wl_list link;
48 };
49
50 struct rectangle {
51         int32_t x;
52         int32_t y;
53         int32_t width;
54         int32_t height;
55 };
56
57 void *
58 fail_on_null(void *p);
59 void *
60 xmalloc(size_t s);
61 void *
62 xzalloc(size_t s);
63 char *
64 xstrdup(const char *s);
65
66 struct display *
67 display_create(int *argc, char *argv[]);
68
69 void
70 display_destroy(struct display *display);
71
72 void
73 display_set_user_data(struct display *display, void *data);
74
75 void *
76 display_get_user_data(struct display *display);
77
78 struct wl_display *
79 display_get_display(struct display *display);
80
81 int
82 display_has_subcompositor(struct display *display);
83
84 cairo_device_t *
85 display_get_cairo_device(struct display *display);
86
87 struct wl_compositor *
88 display_get_compositor(struct display *display);
89
90 struct wl_shell *
91 display_get_shell(struct display *display);
92
93 struct output *
94 display_get_output(struct display *display);
95
96 uint32_t
97 display_get_serial(struct display *display);
98
99 typedef void (*display_global_handler_t)(struct display *display,
100                                          uint32_t name,
101                                          const char *interface,
102                                          uint32_t version, void *data);
103
104 void
105 display_set_global_handler(struct display *display,
106                            display_global_handler_t handler);
107 void *
108 display_bind(struct display *display, uint32_t name,
109              const struct wl_interface *interface, uint32_t version);
110
111 typedef void (*display_output_handler_t)(struct output *output, void *data);
112
113 /*
114  * The output configure handler is called, when a new output is connected
115  * and we know its current mode, or when the current mode changes.
116  * Test and set the output user data in your handler to know, if the
117  * output is new. Note: 'data' in the configure handler is the display
118  * user data.
119  */
120 void
121 display_set_output_configure_handler(struct display *display,
122                                      display_output_handler_t handler);
123
124 struct wl_data_source *
125 display_create_data_source(struct display *display);
126
127 #ifdef EGL_NO_DISPLAY
128 EGLDisplay
129 display_get_egl_display(struct display *d);
130
131 EGLConfig
132 display_get_argb_egl_config(struct display *d);
133
134 int
135 display_acquire_window_surface(struct display *display,
136                                struct window *window,
137                                EGLContext ctx);
138 void
139 display_release_window_surface(struct display *display,
140                                struct window *window);
141 #endif
142
143 #define SURFACE_OPAQUE 0x01
144 #define SURFACE_SHM    0x02
145
146 #define SURFACE_HINT_RESIZE 0x10
147
148 #define SURFACE_HINT_RGB565 0x100
149
150 cairo_surface_t *
151 display_create_surface(struct display *display,
152                        struct wl_surface *surface,
153                        struct rectangle *rectangle,
154                        uint32_t flags);
155
156 struct wl_buffer *
157 display_get_buffer_for_surface(struct display *display,
158                                cairo_surface_t *surface);
159
160 struct wl_cursor_image *
161 display_get_pointer_image(struct display *display, int pointer);
162
163 void
164 display_defer(struct display *display, struct task *task);
165
166 void
167 display_watch_fd(struct display *display,
168                  int fd, uint32_t events, struct task *task);
169
170 void
171 display_unwatch_fd(struct display *display, int fd);
172
173 void
174 display_run(struct display *d);
175
176 void
177 display_exit(struct display *d);
178
179 enum cursor_type {
180         CURSOR_BOTTOM_LEFT,
181         CURSOR_BOTTOM_RIGHT,
182         CURSOR_BOTTOM,
183         CURSOR_DRAGGING,
184         CURSOR_LEFT_PTR,
185         CURSOR_LEFT,
186         CURSOR_RIGHT,
187         CURSOR_TOP_LEFT,
188         CURSOR_TOP_RIGHT,
189         CURSOR_TOP,
190         CURSOR_IBEAM,
191         CURSOR_HAND1,
192         CURSOR_WATCH,
193
194         CURSOR_BLANK
195 };
196
197 typedef void (*window_key_handler_t)(struct window *window, struct input *input,
198                                      uint32_t time, uint32_t key, uint32_t unicode,
199                                      enum wl_keyboard_key_state state, void *data);
200
201 typedef void (*window_keyboard_focus_handler_t)(struct window *window,
202                                                 struct input *device, void *data);
203
204 typedef void (*window_data_handler_t)(struct window *window,
205                                       struct input *input,
206                                       float x, float y,
207                                       const char **types,
208                                       void *data);
209
210 typedef void (*window_drop_handler_t)(struct window *window,
211                                       struct input *input,
212                                       int32_t x, int32_t y, void *data);
213
214 typedef void (*window_close_handler_t)(struct window *window, void *data);
215 typedef void (*window_fullscreen_handler_t)(struct window *window, void *data);
216
217 typedef void (*window_output_handler_t)(struct window *window, struct output *output,
218                                         int enter, void *data);
219
220 typedef void (*widget_resize_handler_t)(struct widget *widget,
221                                         int32_t width, int32_t height,
222                                         void *data);
223 typedef void (*widget_redraw_handler_t)(struct widget *widget, void *data);
224
225 typedef int (*widget_enter_handler_t)(struct widget *widget,
226                                       struct input *input,
227                                       float x, float y, void *data);
228 typedef void (*widget_leave_handler_t)(struct widget *widget,
229                                        struct input *input, void *data);
230 typedef int (*widget_motion_handler_t)(struct widget *widget,
231                                        struct input *input, uint32_t time,
232                                        float x, float y, void *data);
233 typedef void (*widget_button_handler_t)(struct widget *widget,
234                                         struct input *input, uint32_t time,
235                                         uint32_t button,
236                                         enum wl_pointer_button_state state,
237                                         void *data);
238 typedef void (*widget_touch_down_handler_t)(struct widget *widget,
239                                             struct input *input,
240                                             uint32_t serial,
241                                             uint32_t time,
242                                             int32_t id,
243                                             float x,
244                                             float y,
245                                             void *data);
246 typedef void (*widget_touch_up_handler_t)(struct widget *widget,
247                                           struct input *input,
248                                           uint32_t serial,
249                                           uint32_t time,
250                                           int32_t id,
251                                           void *data);
252 typedef void (*widget_touch_motion_handler_t)(struct widget *widget,
253                                               struct input *input,
254                                               uint32_t time,
255                                               int32_t id,
256                                               float x,
257                                               float y,
258                                               void *data);
259 typedef void (*widget_touch_frame_handler_t)(struct widget *widget, 
260                                              struct input *input, void *data);
261 typedef void (*widget_touch_cancel_handler_t)(struct widget *widget, 
262                                               struct input *input, void *data);
263 typedef void (*widget_axis_handler_t)(struct widget *widget,
264                                       struct input *input, uint32_t time,
265                                       uint32_t axis,
266                                       wl_fixed_t value,
267                                       void *data);
268
269 struct window *
270 window_create(struct display *display);
271 struct window *
272 window_create_transient(struct display *display, struct window *parent,
273                         int32_t x, int32_t y, uint32_t flags);
274 struct window *
275 window_create_custom(struct display *display);
276
277 int
278 window_has_focus(struct window *window);
279
280 typedef void (*menu_func_t)(struct window *window,
281                             struct input *input, int index, void *data);
282
283 void
284 window_show_menu(struct display *display,
285                  struct input *input, uint32_t time, struct window *parent,
286                  int32_t x, int32_t y,
287                  menu_func_t func, const char **entries, int count);
288
289 void
290 window_show_frame_menu(struct window *window,
291                        struct input *input, uint32_t time);
292
293 int
294 window_get_buffer_transform(struct window *window);
295
296 void
297 window_set_buffer_transform(struct window *window,
298                             enum wl_output_transform transform);
299
300 uint32_t
301 window_get_buffer_scale(struct window *window);
302
303 void
304 window_set_buffer_scale(struct window *window,
305                         int32_t scale);
306
307 uint32_t
308 window_get_output_scale(struct window *window);
309
310 void
311 window_destroy(struct window *window);
312
313 struct widget *
314 window_add_widget(struct window *window, void *data);
315
316 enum subsurface_mode {
317         SUBSURFACE_SYNCHRONIZED,
318         SUBSURFACE_DESYNCHRONIZED
319 };
320
321 struct widget *
322 window_add_subsurface(struct window *window, void *data,
323                       enum subsurface_mode default_mode);
324
325 typedef void (*data_func_t)(void *data, size_t len,
326                             int32_t x, int32_t y, void *user_data);
327
328 struct display *
329 window_get_display(struct window *window);
330 void
331 window_move(struct window *window, struct input *input, uint32_t time);
332 void
333 window_touch_move(struct window *window, struct input *input, uint32_t time);
334 void
335 window_get_allocation(struct window *window, struct rectangle *allocation);
336 void
337 window_schedule_redraw(struct window *window);
338 void
339 window_schedule_resize(struct window *window, int width, int height);
340
341 void
342 window_damage(struct window *window, int32_t x, int32_t y,
343               int32_t width, int32_t height);
344
345 cairo_surface_t *
346 window_get_surface(struct window *window);
347
348 struct wl_surface *
349 window_get_wl_surface(struct window *window);
350
351 struct wl_shell_surface *
352 window_get_wl_shell_surface(struct window *window);
353
354 enum window_buffer_type {
355         WINDOW_BUFFER_TYPE_EGL_WINDOW,
356         WINDOW_BUFFER_TYPE_SHM,
357 };
358
359 void
360 display_surface_damage(struct display *display, cairo_surface_t *cairo_surface,
361                        int32_t x, int32_t y, int32_t width, int32_t height);
362
363 void
364 window_set_buffer_type(struct window *window, enum window_buffer_type type);
365
366 int
367 window_is_fullscreen(struct window *window);
368
369 void
370 window_set_fullscreen(struct window *window, int fullscreen);
371
372 void
373 window_set_fullscreen_method(struct window *window,
374                              enum wl_shell_surface_fullscreen_method method);
375 int
376 window_is_maximized(struct window *window);
377
378 void
379 window_set_maximized(struct window *window, int maximized);
380
381 void
382 window_set_user_data(struct window *window, void *data);
383
384 void *
385 window_get_user_data(struct window *window);
386
387 void
388 window_set_key_handler(struct window *window,
389                        window_key_handler_t handler);
390
391 void
392 window_set_keyboard_focus_handler(struct window *window,
393                                   window_keyboard_focus_handler_t handler);
394
395 void
396 window_set_data_handler(struct window *window,
397                         window_data_handler_t handler);
398
399 void
400 window_set_drop_handler(struct window *window,
401                         window_drop_handler_t handler);
402
403 void
404 window_set_close_handler(struct window *window,
405                          window_close_handler_t handler);
406 void
407 window_set_fullscreen_handler(struct window *window,
408                               window_fullscreen_handler_t handler);
409 void
410 window_set_output_handler(struct window *window,
411                           window_output_handler_t handler);
412
413 void
414 window_set_title(struct window *window, const char *title);
415
416 const char *
417 window_get_title(struct window *window);
418
419 void
420 window_set_text_cursor_position(struct window *window, int32_t x, int32_t y);
421
422 enum preferred_format {
423         WINDOW_PREFERRED_FORMAT_NONE,
424         WINDOW_PREFERRED_FORMAT_RGB565
425 };
426
427 void
428 window_set_preferred_format(struct window *window,
429                             enum preferred_format format);
430
431 int
432 widget_set_tooltip(struct widget *parent, char *entry, float x, float y);
433
434 void
435 widget_destroy_tooltip(struct widget *parent);
436
437 struct widget *
438 widget_add_widget(struct widget *parent, void *data);
439
440 void
441 widget_destroy(struct widget *widget);
442 void
443 widget_set_default_cursor(struct widget *widget, int cursor);
444 void
445 widget_get_allocation(struct widget *widget, struct rectangle *allocation);
446
447 void
448 widget_set_allocation(struct widget *widget,
449                       int32_t x, int32_t y, int32_t width, int32_t height);
450 void
451 widget_set_size(struct widget *widget, int32_t width, int32_t height);
452 void
453 widget_set_transparent(struct widget *widget, int transparent);
454 void
455 widget_schedule_resize(struct widget *widget, int32_t width, int32_t height);
456
457 void *
458 widget_get_user_data(struct widget *widget);
459
460 cairo_t *
461 widget_cairo_create(struct widget *widget);
462
463 struct wl_surface *
464 widget_get_wl_surface(struct widget *widget);
465
466 uint32_t
467 widget_get_last_time(struct widget *widget);
468
469 void
470 widget_input_region_add(struct widget *widget, const struct rectangle *rect);
471
472 void
473 widget_set_redraw_handler(struct widget *widget,
474                           widget_redraw_handler_t handler);
475 void
476 widget_set_resize_handler(struct widget *widget,
477                           widget_resize_handler_t handler);
478 void
479 widget_set_enter_handler(struct widget *widget,
480                          widget_enter_handler_t handler);
481 void
482 widget_set_leave_handler(struct widget *widget,
483                          widget_leave_handler_t handler);
484 void
485 widget_set_motion_handler(struct widget *widget,
486                           widget_motion_handler_t handler);
487 void
488 widget_set_button_handler(struct widget *widget,
489                           widget_button_handler_t handler);
490 void
491 widget_set_touch_down_handler(struct widget *widget,
492                               widget_touch_down_handler_t handler);
493 void
494 widget_set_touch_up_handler(struct widget *widget,
495                             widget_touch_up_handler_t handler);
496 void
497 widget_set_touch_motion_handler(struct widget *widget,
498                                 widget_touch_motion_handler_t handler);
499 void
500 widget_set_touch_frame_handler(struct widget *widget,
501                                widget_touch_frame_handler_t handler);
502 void
503 widget_set_touch_cancel_handler(struct widget *widget,
504                                 widget_touch_cancel_handler_t handler);
505 void
506 widget_set_axis_handler(struct widget *widget,
507                         widget_axis_handler_t handler);
508 void
509 widget_schedule_redraw(struct widget *widget);
510
511 struct widget *
512 window_frame_create(struct window *window, void *data);
513
514 void
515 window_frame_set_child_size(struct widget *widget, int child_width,
516                             int child_height);
517
518 void
519 input_set_pointer_image(struct input *input, int pointer);
520
521 void
522 input_get_position(struct input *input, int32_t *x, int32_t *y);
523
524 #define MOD_SHIFT_MASK          0x01
525 #define MOD_ALT_MASK            0x02
526 #define MOD_CONTROL_MASK        0x04
527
528 uint32_t
529 input_get_modifiers(struct input *input);
530
531 void
532 input_grab(struct input *input, struct widget *widget, uint32_t button);
533
534 void
535 input_ungrab(struct input *input);
536
537 struct widget *
538 input_get_focus_widget(struct input *input);
539
540 struct display *
541 input_get_display(struct input *input);
542
543 struct wl_seat *
544 input_get_seat(struct input *input);
545
546 struct wl_data_device *
547 input_get_data_device(struct input *input);
548
549 void
550 input_set_selection(struct input *input,
551                     struct wl_data_source *source, uint32_t time);
552
553 void
554 input_accept(struct input *input, const char *type);
555
556
557 void
558 input_receive_drag_data(struct input *input, const char *mime_type,
559                         data_func_t func, void *user_data);
560 int
561 input_receive_drag_data_to_fd(struct input *input,
562                               const char *mime_type, int fd);
563
564 int
565 input_receive_selection_data(struct input *input, const char *mime_type,
566                              data_func_t func, void *data);
567 int
568 input_receive_selection_data_to_fd(struct input *input,
569                                    const char *mime_type, int fd);
570
571 void
572 output_set_user_data(struct output *output, void *data);
573
574 void *
575 output_get_user_data(struct output *output);
576
577 void
578 output_set_destroy_handler(struct output *output,
579                            display_output_handler_t handler);
580
581 void
582 output_get_allocation(struct output *output, struct rectangle *allocation);
583
584 struct wl_output *
585 output_get_wl_output(struct output *output);
586
587 enum wl_output_transform
588 output_get_transform(struct output *output);
589
590 uint32_t
591 output_get_scale(struct output *output);
592
593 void
594 keysym_modifiers_add(struct wl_array *modifiers_map,
595                      const char *name);
596
597 xkb_mod_mask_t
598 keysym_modifiers_get_mask(struct wl_array *modifiers_map,
599                           const char *name);
600
601 #endif