window: Create a widget for the window, drop window motion handler
[profile/ivi/weston.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 <X11/extensions/XKBcommon.h>
27 #include <glib.h>
28 #include <wayland-client.h>
29 #include <cairo.h>
30
31 struct window;
32 struct widget;
33 struct display;
34 struct input;
35 struct output;
36
37 struct task {
38         void (*run)(struct task *task, uint32_t events);
39         struct wl_list link;
40 };
41
42 struct rectangle {
43         int32_t x;
44         int32_t y;
45         int32_t width;
46         int32_t height;
47 };
48
49 struct display *
50 display_create(int *argc, char **argv[], const GOptionEntry *option_entries);
51
52 void
53 display_destroy(struct display *display);
54
55 void
56 display_set_user_data(struct display *display, void *data);
57
58 void *
59 display_get_user_data(struct display *display);
60
61 struct wl_display *
62 display_get_display(struct display *display);
63
64 struct wl_compositor *
65 display_get_compositor(struct display *display);
66
67 struct wl_shell *
68 display_get_shell(struct display *display);
69
70 struct output *
71 display_get_output(struct display *display);
72
73 typedef void (*display_output_handler_t)(struct output *output, void *data);
74
75 /*
76  * The output configure handler is called, when a new output is connected
77  * and we know its current mode, or when the current mode changes.
78  * Test and set the output user data in your handler to know, if the
79  * output is new. Note: 'data' in the configure handler is the display
80  * user data.
81  */
82 void
83 display_set_output_configure_handler(struct display *display,
84                                      display_output_handler_t handler);
85
86 struct wl_data_source *
87 display_create_data_source(struct display *display);
88
89 #ifdef EGL_NO_DISPLAY
90 EGLDisplay
91 display_get_egl_display(struct display *d);
92
93 EGLConfig
94 display_get_rgb_egl_config(struct display *d);
95
96 EGLConfig
97 display_get_argb_egl_config(struct display *d);
98
99 int
100 display_acquire_window_surface(struct display *display,
101                                struct window *window,
102                                EGLContext ctx);
103 void
104 display_release_window_surface(struct display *display,
105                                struct window *window);
106
107 #ifdef HAVE_CAIRO_EGL
108 EGLImageKHR
109 display_get_image_for_egl_image_surface(struct display *display,
110                                         cairo_surface_t *surface);
111 #endif
112 #endif
113
114 #define SURFACE_OPAQUE 0x01
115
116 cairo_surface_t *
117 display_create_surface(struct display *display,
118                        struct wl_surface *surface,
119                        struct rectangle *rectangle,
120                        uint32_t flags);
121
122 struct wl_buffer *
123 display_get_buffer_for_surface(struct display *display,
124                                cairo_surface_t *surface);
125
126 cairo_surface_t *
127 display_get_pointer_surface(struct display *display, int pointer,
128                             int *width, int *height,
129                             int *hotspot_x, int *hotspot_y);
130
131 void
132 display_defer(struct display *display, struct task *task);
133
134 void
135 display_watch_fd(struct display *display,
136                  int fd, uint32_t events, struct task *task);
137
138 void
139 display_run(struct display *d);
140
141 void
142 display_exit(struct display *d);
143
144 enum pointer_type {
145         POINTER_BOTTOM_LEFT,
146         POINTER_BOTTOM_RIGHT,
147         POINTER_BOTTOM,
148         POINTER_DRAGGING,
149         POINTER_LEFT_PTR,
150         POINTER_LEFT,
151         POINTER_RIGHT,
152         POINTER_TOP_LEFT,
153         POINTER_TOP_RIGHT,
154         POINTER_TOP,
155         POINTER_IBEAM,
156         POINTER_HAND1,
157 };
158
159 typedef void (*window_resize_handler_t)(struct window *window,
160                                         int32_t width, int32_t height,
161                                         void *data);
162 typedef void (*window_redraw_handler_t)(struct window *window, void *data);
163
164 typedef void (*window_key_handler_t)(struct window *window, struct input *input,
165                                      uint32_t time, uint32_t key, uint32_t unicode,
166                                      uint32_t state, void *data);
167
168 typedef void (*window_keyboard_focus_handler_t)(struct window *window,
169                                                 struct input *device, void *data);
170
171 typedef void (*window_button_handler_t)(struct window *window,
172                                         struct input *input, uint32_t time,
173                                         int button, int state, void *data);
174
175 typedef int (*window_motion_handler_t)(struct window *window,
176                                        struct input *input, uint32_t time,
177                                        int32_t x, int32_t y,
178                                        int32_t sx, int32_t sy, void *data);
179
180 typedef void (*window_data_handler_t)(struct window *window,
181                                       struct input *input, uint32_t time,
182                                       int32_t x, int32_t y,
183                                       const char **types,
184                                       void *data);
185
186 typedef void (*window_drop_handler_t)(struct window *window,
187                                       struct input *input,
188                                       int32_t x, int32_t y, void *data);
189
190 typedef void (*window_close_handler_t)(struct window *window, void *data);
191
192 typedef void (*widget_enter_handler_t)(struct widget *widget,
193                                        struct input *input, uint32_t time,
194                                        int32_t x, int32_t y, void *data);
195 typedef void (*widget_leave_handler_t)(struct widget *widget,
196                                        struct input *input, void *data);
197 typedef int (*widget_motion_handler_t)(struct widget *widget,
198                                        struct input *input, uint32_t time,
199                                        int32_t x, int32_t y, void *data);
200
201 struct window *
202 window_create(struct display *display, int32_t width, int32_t height);
203 struct window *
204 window_create_transient(struct display *display, struct window *parent,
205                         int32_t x, int32_t y, int32_t width, int32_t height);
206
207 typedef void (*menu_func_t)(struct window *window, int index, void *data);
208
209 struct window *
210 window_create_menu(struct display *display,
211                    struct input *input, uint32_t time, struct window *parent,
212                    int32_t x, int32_t y,
213                    menu_func_t func, const char **entries, int count);
214
215 void
216 window_destroy(struct window *window);
217
218 struct widget *
219 window_add_widget(struct window *window, void *data);
220
221 typedef void (*widget_func_t)(struct widget *widget, void *data);
222
223 typedef void (*data_func_t)(void *data, size_t len,
224                             int32_t x, int32_t y, void *user_data);
225
226 void
227 window_for_each_widget(struct window *window, widget_func_t func, void *data);
228
229 struct widget *
230 window_get_focus_widget(struct window *window);
231 struct display *
232 window_get_display(struct window *window);
233 struct widget *
234 window_get_widget(struct window *window);
235
236 void
237 window_move(struct window *window, struct input *input, uint32_t time);
238
239 void
240 window_draw(struct window *window);
241
242 void
243 window_get_allocation(struct window *window,
244                       struct rectangle *allocation);
245
246 void
247 window_get_child_allocation(struct window *window,
248                             struct rectangle *allocation);
249
250 void
251 window_set_transparent(struct window *window, int transparent);
252 void
253 window_set_child_size(struct window *window, int32_t width, int32_t height);
254 void
255 window_schedule_redraw(struct window *window);
256
257 void
258 window_damage(struct window *window, int32_t x, int32_t y,
259               int32_t width, int32_t height);
260
261 cairo_surface_t *
262 window_get_surface(struct window *window);
263
264 struct wl_surface *
265 window_get_wl_surface(struct window *window);
266
267 struct wl_shell_surface *
268 window_get_wl_shell_surface(struct window *window);
269
270 void
271 window_flush(struct window *window);
272
273 void
274 window_set_surface(struct window *window, cairo_surface_t *surface);
275
276 void
277 window_create_surface(struct window *window);
278
279 enum window_buffer_type {
280         WINDOW_BUFFER_TYPE_EGL_WINDOW,
281         WINDOW_BUFFER_TYPE_EGL_IMAGE,
282         WINDOW_BUFFER_TYPE_SHM,
283 };
284
285 void
286 display_surface_damage(struct display *display, cairo_surface_t *cairo_surface,
287                        int32_t x, int32_t y, int32_t width, int32_t height);
288
289 void
290 window_set_buffer_type(struct window *window, enum window_buffer_type type);
291
292 void
293 window_set_fullscreen(struct window *window, int fullscreen);
294
295 void
296 window_set_custom(struct window *window);
297
298 void
299 window_set_user_data(struct window *window, void *data);
300
301 void *
302 window_get_user_data(struct window *window);
303
304 void
305 window_set_redraw_handler(struct window *window,
306                           window_redraw_handler_t handler);
307
308 void
309 window_set_decoration(struct window *window, int decoration);
310
311 void
312 window_set_resize_handler(struct window *window,
313                           window_resize_handler_t handler);
314
315 void
316 window_set_key_handler(struct window *window,
317                        window_key_handler_t handler);
318
319 void
320 window_set_button_handler(struct window *window,
321                           window_button_handler_t handler);
322
323 void
324 window_set_motion_handler(struct window *window,
325                           window_motion_handler_t handler);
326
327 void
328 window_set_keyboard_focus_handler(struct window *window,
329                                   window_keyboard_focus_handler_t handler);
330
331 void
332 window_set_data_handler(struct window *window,
333                         window_data_handler_t handler);
334
335 void
336 window_set_drop_handler(struct window *window,
337                         window_drop_handler_t handler);
338
339 void
340 window_set_close_handler(struct window *window,
341                          window_close_handler_t handler);
342
343 void
344 window_set_title(struct window *window, const char *title);
345
346 const char *
347 window_get_title(struct window *window);
348
349 void
350 widget_get_allocation(struct widget *widget, struct rectangle *allocation);
351
352 void
353 widget_set_allocation(struct widget *widget,
354                       int32_t x, int32_t y, int32_t width, int32_t height);
355
356 void *
357 widget_get_user_data(struct widget *widget);
358
359 void
360 widget_set_enter_handler(struct widget *widget,
361                          widget_enter_handler_t handler);
362 void
363 widget_set_leave_handler(struct widget *widget,
364                          widget_leave_handler_t handler);
365 void
366 widget_set_motion_handler(struct widget *widget,
367                           widget_motion_handler_t handler);
368 void
369 widget_schedule_redraw(struct widget *widget);
370
371 void
372 input_set_pointer_image(struct input *input, uint32_t time, int pointer);
373
374 void
375 input_get_position(struct input *input, int32_t *x, int32_t *y);
376
377 uint32_t
378 input_get_modifiers(struct input *input);
379
380 struct wl_input_device *
381 input_get_input_device(struct input *input);
382
383 struct wl_data_device *
384 input_get_data_device(struct input *input);
385
386 void
387 input_set_selection(struct input *input,
388                     struct wl_data_source *source, uint32_t time);
389
390 void
391 input_accept(struct input *input, uint32_t time, const char *type);
392
393
394 void
395 input_receive_drag_data(struct input *input, const char *mime_type,
396                         data_func_t func, void *user_data);
397
398 int
399 input_receive_selection_data(struct input *input, const char *mime_type,
400                              data_func_t func, void *data);
401 int
402 input_receive_selection_data_to_fd(struct input *input,
403                                    const char *mime_type, int fd);
404
405 void
406 output_set_user_data(struct output *output, void *data);
407
408 void *
409 output_get_user_data(struct output *output);
410
411 void
412 output_set_destroy_handler(struct output *output,
413                            display_output_handler_t handler);
414
415 void
416 output_get_allocation(struct output *output, struct rectangle *allocation);
417
418 struct wl_output *
419 output_get_wl_output(struct output *output);
420
421 #endif