window: Stop using glib mainloop in toy toolkit
[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
33 struct task {
34         void (*run)(struct task *task, uint32_t events);
35         struct wl_list link;
36 };
37
38 struct rectangle {
39         int32_t x;
40         int32_t y;
41         int32_t width;
42         int32_t height;
43 };
44
45 struct display;
46 struct input;
47
48 struct display *
49 display_create(int *argc, char **argv[], const GOptionEntry *option_entries);
50
51 struct wl_display *
52 display_get_display(struct display *display);
53
54 struct wl_compositor *
55 display_get_compositor(struct display *display);
56
57 struct wl_shell *
58 display_get_shell(struct display *display);
59
60 #ifdef EGL_NO_DISPLAY
61 EGLDisplay
62 display_get_egl_display(struct display *d);
63
64 EGLConfig
65 display_get_egl_config(struct display *d);
66
67 void
68 display_acquire_window_surface(struct display *display,
69                                struct window *window,
70                                EGLContext ctx);
71 void
72 display_release(struct display *display);
73
74 #ifdef HAVE_CAIRO_EGL
75 EGLImageKHR
76 display_get_image_for_egl_image_surface(struct display *display,
77                                         cairo_surface_t *surface);
78 #endif
79 #endif
80
81 #define SURFACE_OPAQUE 0x01
82
83 cairo_surface_t *
84 display_create_surface(struct display *display,
85                        struct wl_surface *surface,
86                        struct rectangle *rectangle,
87                        uint32_t flags);
88
89 struct wl_buffer *
90 display_get_buffer_for_surface(struct display *display,
91                                cairo_surface_t *surface);
92
93 cairo_surface_t *
94 display_get_pointer_surface(struct display *display, int pointer,
95                             int *width, int *height,
96                             int *hotspot_x, int *hotspot_y);
97
98 void
99 display_add_drag_listener(struct display *display,
100                           const struct wl_drag_listener *drag_listener,
101                           void *data);
102
103 void
104 display_flush_cairo_device(struct display *display);
105
106 void
107 display_defer(struct display *display, struct task *task);
108
109 void
110 display_watch_fd(struct display *display,
111                  int fd, uint32_t events, struct task *task);
112
113 void
114 display_run(struct display *d);
115
116 enum pointer_type {
117         POINTER_BOTTOM_LEFT,
118         POINTER_BOTTOM_RIGHT,
119         POINTER_BOTTOM,
120         POINTER_DRAGGING,
121         POINTER_LEFT_PTR,
122         POINTER_LEFT,
123         POINTER_RIGHT,
124         POINTER_TOP_LEFT,
125         POINTER_TOP_RIGHT,
126         POINTER_TOP,
127         POINTER_IBEAM,
128         POINTER_HAND1,
129 };
130
131 typedef void (*window_resize_handler_t)(struct window *window,
132                                         int32_t width, int32_t height,
133                                         void *data);
134 typedef void (*window_redraw_handler_t)(struct window *window, void *data);
135
136 typedef void (*window_key_handler_t)(struct window *window, struct input *input,
137                                      uint32_t time, uint32_t key, uint32_t unicode,
138                                      uint32_t state, void *data);
139
140 typedef void (*window_keyboard_focus_handler_t)(struct window *window,
141                                                 struct input *device, void *data);
142
143 typedef void (*window_button_handler_t)(struct window *window,
144                                         struct input *input, uint32_t time,
145                                         int button, int state, void *data);
146
147 typedef int (*window_enter_handler_t)(struct window *window,
148                                       struct input *input, uint32_t time,
149                                       int32_t x, int32_t y, void *data);
150 typedef void (*window_leave_handler_t)(struct window *window,
151                                        struct input *input, uint32_t time,
152                                        void *data);
153
154 typedef int (*window_motion_handler_t)(struct window *window,
155                                        struct input *input, uint32_t time,
156                                        int32_t x, int32_t y,
157                                        int32_t sx, int32_t sy, void *data);
158
159 struct window *
160 window_create(struct display *display, int32_t width, int32_t height);
161 struct window *
162 window_create_transient(struct display *display, struct window *parent,
163                         int32_t x, int32_t y, int32_t width, int32_t height);
164
165 void
166 window_destroy(struct window *window);
167
168 void
169 window_move(struct window *window, struct input *input, uint32_t time);
170
171 void
172 window_draw(struct window *window);
173
174 void
175 window_get_allocation(struct window *window,
176                       struct rectangle *allocation);
177
178 void
179 window_get_child_allocation(struct window *window,
180                             struct rectangle *allocation);
181
182 void
183 window_set_transparent(struct window *window, int transparent);
184 void
185 window_set_child_size(struct window *window, int32_t width, int32_t height);
186 void
187 window_schedule_redraw(struct window *window);
188
189 void
190 window_damage(struct window *window, int32_t x, int32_t y,
191               int32_t width, int32_t height);
192
193 cairo_surface_t *
194 window_get_surface(struct window *window);
195
196 struct wl_surface *
197 window_get_wl_surface(struct window *window);
198
199 void
200 window_flush(struct window *window);
201
202 void
203 window_set_surface(struct window *window, cairo_surface_t *surface);
204
205 void
206 window_create_surface(struct window *window);
207
208 enum window_buffer_type {
209         WINDOW_BUFFER_TYPE_EGL_WINDOW,
210         WINDOW_BUFFER_TYPE_EGL_IMAGE,
211         WINDOW_BUFFER_TYPE_SHM,
212 };
213
214 void
215 display_surface_damage(struct display *display, cairo_surface_t *cairo_surface,
216                        int32_t x, int32_t y, int32_t width, int32_t height);
217
218 void
219 window_set_buffer_type(struct window *window, enum window_buffer_type type);
220
221 void
222 window_set_fullscreen(struct window *window, int fullscreen);
223
224 void
225 window_set_custom(struct window *window);
226
227 void
228 window_set_user_data(struct window *window, void *data);
229
230 void *
231 window_get_user_data(struct window *window);
232
233 void
234 window_set_redraw_handler(struct window *window,
235                           window_redraw_handler_t handler);
236
237 void
238 window_set_decoration(struct window *window, int decoration);
239
240 void
241 window_set_resize_handler(struct window *window,
242                           window_resize_handler_t handler);
243
244 void
245 window_set_key_handler(struct window *window,
246                        window_key_handler_t handler);
247
248 void
249 window_set_button_handler(struct window *window,
250                           window_button_handler_t handler);
251
252 void
253 window_set_motion_handler(struct window *window,
254                           window_motion_handler_t handler);
255
256 void
257 window_set_enter_handler(struct window *window,
258                          window_enter_handler_t handler);
259 void
260 window_set_leave_handler(struct window *window,
261                          window_leave_handler_t handler);
262
263 void
264 window_set_keyboard_focus_handler(struct window *window,
265                                   window_keyboard_focus_handler_t handler);
266
267 void
268 window_set_title(struct window *window, const char *title);
269
270 const char *
271 window_get_title(struct window *window);
272
273 struct wl_drag *
274 window_create_drag(struct window *window);
275
276 void
277 window_activate_drag(struct wl_drag *drag, struct window *window,
278                      struct input *input, uint32_t time);
279
280 void
281 input_get_position(struct input *input, int32_t *x, int32_t *y);
282
283 uint32_t
284 input_get_modifiers(struct input *input);
285
286 struct wl_input_device *
287 input_get_input_device(struct input *input);
288
289 int
290 input_offers_mime_type(struct input *input, const char *type);
291 void
292 input_receive_mime_type(struct input *input, const char *type, int fd);
293
294
295 #endif