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