move config parser to a convenience library
[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 item;
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 struct wl_display *
53 display_get_display(struct display *display);
54
55 struct wl_compositor *
56 display_get_compositor(struct display *display);
57
58 struct wl_shell *
59 display_get_shell(struct display *display);
60
61 struct output *
62 display_get_output(struct display *display);
63
64 struct wl_data_source *
65 display_create_data_source(struct display *display);
66
67 #ifdef EGL_NO_DISPLAY
68 EGLDisplay
69 display_get_egl_display(struct display *d);
70
71 EGLConfig
72 display_get_rgb_egl_config(struct display *d);
73
74 EGLConfig
75 display_get_argb_egl_config(struct display *d);
76
77 int
78 display_acquire_window_surface(struct display *display,
79                                struct window *window,
80                                EGLContext ctx);
81 void
82 display_release_window_surface(struct display *display,
83                                struct window *window);
84
85 #ifdef HAVE_CAIRO_EGL
86 EGLImageKHR
87 display_get_image_for_egl_image_surface(struct display *display,
88                                         cairo_surface_t *surface);
89 #endif
90 #endif
91
92 #define SURFACE_OPAQUE 0x01
93
94 cairo_surface_t *
95 display_create_surface(struct display *display,
96                        struct wl_surface *surface,
97                        struct rectangle *rectangle,
98                        uint32_t flags);
99
100 struct wl_buffer *
101 display_get_buffer_for_surface(struct display *display,
102                                cairo_surface_t *surface);
103
104 cairo_surface_t *
105 display_get_pointer_surface(struct display *display, int pointer,
106                             int *width, int *height,
107                             int *hotspot_x, int *hotspot_y);
108
109 void
110 display_defer(struct display *display, struct task *task);
111
112 void
113 display_watch_fd(struct display *display,
114                  int fd, uint32_t events, struct task *task);
115
116 void
117 display_run(struct display *d);
118
119 enum pointer_type {
120         POINTER_BOTTOM_LEFT,
121         POINTER_BOTTOM_RIGHT,
122         POINTER_BOTTOM,
123         POINTER_DRAGGING,
124         POINTER_LEFT_PTR,
125         POINTER_LEFT,
126         POINTER_RIGHT,
127         POINTER_TOP_LEFT,
128         POINTER_TOP_RIGHT,
129         POINTER_TOP,
130         POINTER_IBEAM,
131         POINTER_HAND1,
132 };
133
134 typedef void (*window_resize_handler_t)(struct window *window,
135                                         int32_t width, int32_t height,
136                                         void *data);
137 typedef void (*window_redraw_handler_t)(struct window *window, void *data);
138
139 typedef void (*window_key_handler_t)(struct window *window, struct input *input,
140                                      uint32_t time, uint32_t key, uint32_t unicode,
141                                      uint32_t state, void *data);
142
143 typedef void (*window_keyboard_focus_handler_t)(struct window *window,
144                                                 struct input *device, void *data);
145
146 typedef void (*window_button_handler_t)(struct window *window,
147                                         struct input *input, uint32_t time,
148                                         int button, int state, void *data);
149
150 typedef int (*window_enter_handler_t)(struct window *window,
151                                       struct input *input, uint32_t time,
152                                       int32_t x, int32_t y, void *data);
153 typedef void (*window_leave_handler_t)(struct window *window,
154                                        struct input *input, uint32_t time,
155                                        void *data);
156
157 typedef int (*window_motion_handler_t)(struct window *window,
158                                        struct input *input, uint32_t time,
159                                        int32_t x, int32_t y,
160                                        int32_t sx, int32_t sy, void *data);
161
162 typedef void (*window_data_handler_t)(struct window *window,
163                                       struct input *input, uint32_t time,
164                                       int32_t x, int32_t y,
165                                       const char **types,
166                                       void *data);
167
168 typedef void (*window_drop_handler_t)(struct window *window,
169                                       struct input *input,
170                                       int32_t x, int32_t y, void *data);
171
172 typedef void (*window_item_focus_handler_t)(struct window *window,
173                                             struct item *focus, void *data);
174
175 struct window *
176 window_create(struct display *display, int32_t width, int32_t height);
177 struct window *
178 window_create_transient(struct display *display, struct window *parent,
179                         int32_t x, int32_t y, int32_t width, int32_t height);
180
181 void
182 window_destroy(struct window *window);
183
184 struct item *
185 window_add_item(struct window *window, void *data);
186
187 typedef void (*item_func_t)(struct item *item, void *data);
188
189 typedef void (*data_func_t)(void *data, size_t len,
190                             int32_t x, int32_t y, void *user_data);
191
192 void
193 window_for_each_item(struct window *window, item_func_t func, void *data);
194
195 struct item *
196 window_get_focus_item(struct window *window);
197 struct display *
198 window_get_display(struct window *window);
199
200 void
201 window_move(struct window *window, struct input *input, uint32_t time);
202
203 void
204 window_draw(struct window *window);
205
206 void
207 window_get_allocation(struct window *window,
208                       struct rectangle *allocation);
209
210 void
211 window_get_child_allocation(struct window *window,
212                             struct rectangle *allocation);
213
214 void
215 window_set_transparent(struct window *window, int transparent);
216 void
217 window_set_child_size(struct window *window, int32_t width, int32_t height);
218 void
219 window_schedule_redraw(struct window *window);
220
221 void
222 window_damage(struct window *window, int32_t x, int32_t y,
223               int32_t width, int32_t height);
224
225 cairo_surface_t *
226 window_get_surface(struct window *window);
227
228 struct wl_surface *
229 window_get_wl_surface(struct window *window);
230
231 struct wl_shell_surface *
232 window_get_wl_shell_surface(struct window *window);
233
234 void
235 window_flush(struct window *window);
236
237 void
238 window_set_surface(struct window *window, cairo_surface_t *surface);
239
240 void
241 window_create_surface(struct window *window);
242
243 enum window_buffer_type {
244         WINDOW_BUFFER_TYPE_EGL_WINDOW,
245         WINDOW_BUFFER_TYPE_EGL_IMAGE,
246         WINDOW_BUFFER_TYPE_SHM,
247 };
248
249 void
250 display_surface_damage(struct display *display, cairo_surface_t *cairo_surface,
251                        int32_t x, int32_t y, int32_t width, int32_t height);
252
253 void
254 window_set_buffer_type(struct window *window, enum window_buffer_type type);
255
256 void
257 window_set_fullscreen(struct window *window, int fullscreen);
258
259 void
260 window_set_custom(struct window *window);
261
262 void
263 window_set_user_data(struct window *window, void *data);
264
265 void *
266 window_get_user_data(struct window *window);
267
268 void
269 window_set_redraw_handler(struct window *window,
270                           window_redraw_handler_t handler);
271
272 void
273 window_set_decoration(struct window *window, int decoration);
274
275 void
276 window_set_resize_handler(struct window *window,
277                           window_resize_handler_t handler);
278
279 void
280 window_set_key_handler(struct window *window,
281                        window_key_handler_t handler);
282
283 void
284 window_set_button_handler(struct window *window,
285                           window_button_handler_t handler);
286
287 void
288 window_set_motion_handler(struct window *window,
289                           window_motion_handler_t handler);
290
291 void
292 window_set_enter_handler(struct window *window,
293                          window_enter_handler_t handler);
294 void
295 window_set_leave_handler(struct window *window,
296                          window_leave_handler_t handler);
297
298 void
299 window_set_keyboard_focus_handler(struct window *window,
300                                   window_keyboard_focus_handler_t handler);
301
302 void
303 window_set_item_focus_handler(struct window *window,
304                               window_item_focus_handler_t handler);
305
306 void
307 window_set_data_handler(struct window *window,
308                         window_data_handler_t handler);
309
310 void
311 window_set_drop_handler(struct window *window,
312                         window_drop_handler_t handler);
313
314 void
315 window_set_title(struct window *window, const char *title);
316
317 const char *
318 window_get_title(struct window *window);
319
320 void
321 item_get_allocation(struct item *item, struct rectangle *allocation);
322
323 void
324 item_set_allocation(struct item *item,
325                     int32_t x, int32_t y, int32_t width, int32_t height);
326
327 void *
328 item_get_user_data(struct item *item);
329
330 void
331 input_set_pointer_image(struct input *input, uint32_t time, int pointer);
332
333 void
334 input_get_position(struct input *input, int32_t *x, int32_t *y);
335
336 uint32_t
337 input_get_modifiers(struct input *input);
338
339 struct wl_input_device *
340 input_get_input_device(struct input *input);
341
342 struct wl_data_device *
343 input_get_data_device(struct input *input);
344
345 void
346 input_set_selection(struct input *input,
347                     struct wl_data_source *source, uint32_t time);
348
349 void
350 input_accept(struct input *input, uint32_t time, const char *type);
351
352
353 void
354 input_receive_drag_data(struct input *input, const char *mime_type,
355                         data_func_t func, void *user_data);
356
357 int
358 input_receive_selection_data(struct input *input, const char *mime_type,
359                              data_func_t func, void *data);
360
361 void
362 output_get_allocation(struct output *output, struct rectangle *allocation);
363
364
365 #endif