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