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