dfe995166537537b2045977fac5c79ca67826b35
[profile/ivi/wayland.git] / compositor / compositor.h
1 /*
2  * Copyright © 2008 Kristian Høgsberg
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software Foundation,
16  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */
18
19 #ifndef _WAYLAND_SYSTEM_COMPOSITOR_H_
20 #define _WAYLAND_SYSTEM_COMPOSITOR_H_
21
22 #include <xf86drm.h>
23 #include <xf86drmMode.h>
24 #include <libudev.h>
25 #include "wayland-server.h"
26 #include "wayland-util.h"
27
28 #define GL_GLEXT_PROTOTYPES
29 #define EGL_EGLEXT_PROTOTYPES
30 #include <GLES2/gl2.h>
31 #include <GLES2/gl2ext.h>
32 #include <EGL/egl.h>
33 #include <EGL/eglext.h>
34
35 #define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0])
36
37 struct wlsc_matrix {
38         GLfloat d[16];
39 };
40
41 struct wlsc_surface;
42
43 struct wlsc_output {
44         struct wl_object object;
45         struct wl_list link;
46         struct wlsc_compositor *compositor;
47         struct wlsc_surface *background;
48         struct wlsc_matrix matrix;
49         int32_t x, y, width, height;
50 };
51
52 enum wlsc_pointer_type {
53         WLSC_POINTER_BOTTOM_LEFT,
54         WLSC_POINTER_BOTTOM_RIGHT,
55         WLSC_POINTER_BOTTOM,
56         WLSC_POINTER_DRAGGING,
57         WLSC_POINTER_LEFT_PTR,
58         WLSC_POINTER_LEFT,
59         WLSC_POINTER_RIGHT,
60         WLSC_POINTER_TOP_LEFT,
61         WLSC_POINTER_TOP_RIGHT,
62         WLSC_POINTER_TOP,
63         WLSC_POINTER_IBEAM,
64 };
65
66 struct wlsc_input_device {
67         struct wl_input_device input_device;
68         struct wlsc_surface *sprite;
69         int32_t hotspot_x, hotspot_y;
70         struct wl_list link;
71         uint32_t modifier_state;
72         struct wl_selection *selection;
73 };
74
75 struct wlsc_drm {
76         struct wl_object object;
77         int fd;
78         char *filename;
79 };
80
81 struct wlsc_shm {
82         struct wl_object object;
83 };
84
85 struct wlsc_compositor {
86         struct wl_compositor compositor;
87
88         struct wlsc_drm drm;
89         struct wlsc_shm shm;
90         EGLDisplay display;
91         EGLContext context;
92         GLuint fbo, vbo;
93         GLuint proj_uniform, tex_uniform;
94         struct wl_buffer **pointer_buffers;
95         struct wl_display *wl_display;
96
97         /* We implement the shell interface. */
98         struct wl_shell shell;
99
100         /* There can be more than one, but not right now... */
101         struct wl_input_device *input_device;
102
103         struct wl_list output_list;
104         struct wl_list input_device_list;
105         struct wl_list surface_list;
106
107         /* Repaint state. */
108         struct wl_event_source *timer_source;
109         int repaint_needed;
110         int repaint_on_timeout;
111         struct timespec previous_swap;
112
113         struct wlsc_switcher *switcher;
114         uint32_t focus;
115
116         void (*destroy)(struct wlsc_compositor *ec);
117         int (*authenticate)(struct wlsc_compositor *c, uint32_t id);
118         void (*present)(struct wlsc_compositor *c);
119         struct wl_buffer *(*create_buffer)(struct wlsc_compositor *c,
120                                            int32_t width, int32_t height,
121                                            struct wl_visual *visual,
122                                            const void *data);
123 };
124
125 #define MODIFIER_CTRL   (1 << 8)
126 #define MODIFIER_ALT    (1 << 9)
127 #define MODIFIER_SUPER  (1 << 10)
128
129 struct wlsc_vector {
130         GLfloat f[4];
131 };
132
133 enum wlsc_surface_map_type {
134         WLSC_SURFACE_MAP_UNMAPPED,
135         WLSC_SURFACE_MAP_TOPLEVEL,
136         WLSC_SURFACE_MAP_TRANSIENT,
137         WLSC_SURFACE_MAP_FULLSCREEN
138 };
139
140 struct wlsc_surface {
141         struct wl_surface surface;
142         struct wlsc_compositor *compositor;
143         GLuint texture;
144         int32_t x, y, width, height;
145         int32_t saved_x, saved_y;
146         struct wl_list link;
147         struct wlsc_matrix matrix;
148         struct wlsc_matrix matrix_inv;
149         struct wl_visual *visual;
150         struct wl_buffer *buffer;
151         enum wlsc_surface_map_type map_type;
152         struct wlsc_output *fullscreen_output;
153 };
154
155 void
156 wlsc_surface_update_matrix(struct wlsc_surface *es);
157
158 void
159 notify_motion(struct wl_input_device *device,
160               uint32_t time, int x, int y);
161 void
162 notify_button(struct wl_input_device *device,
163               uint32_t time, int32_t button, int32_t state);
164 void
165 notify_key(struct wl_input_device *device,
166            uint32_t time, uint32_t key, uint32_t state);
167
168 void
169 notify_pointer_focus(struct wl_input_device *device,
170                      uint32_t time,
171                      struct wlsc_output *output,
172                      int32_t x, int32_t y);
173
174 void
175 notify_keyboard_focus(struct wl_input_device *device,
176                       uint32_t time, struct wlsc_output *output,
177                       struct wl_array *keys);
178
179 void
180 wlsc_compositor_finish_frame(struct wlsc_compositor *compositor, int msecs);
181 void
182 wlsc_compositor_schedule_repaint(struct wlsc_compositor *compositor);
183
184 void
185 wlsc_input_device_set_pointer_image(struct wlsc_input_device *device,
186                                     enum wlsc_pointer_type type);
187 struct wlsc_surface *
188 pick_surface(struct wl_input_device *device, int32_t *sx, int32_t *sy);
189
190 void
191 wlsc_selection_set_focus(struct wl_selection *selection,
192                          struct wl_surface *surface, uint32_t time);
193
194 uint32_t
195 get_time(void);
196
197 struct wl_buffer *
198 wlsc_drm_buffer_create(struct wlsc_compositor *ec,
199                        int width, int height,
200                        struct wl_visual *visual, const void *data);
201
202 int
203 wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display);
204 void
205 wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c,
206                  int x, int y, int width, int height);
207 void
208 wlsc_input_device_init(struct wlsc_input_device *device,
209                        struct wlsc_compositor *ec);
210 int
211 wlsc_drm_init(struct wlsc_compositor *ec, int fd, const char *filename);
212
213 int
214 wlsc_shm_init(struct wlsc_compositor *ec);
215
216 int
217 wlsc_shell_init(struct wlsc_compositor *ec);
218
219 void
220 shell_move(struct wl_client *client, struct wl_shell *shell,
221            struct wl_surface *surface,
222            struct wl_input_device *device, uint32_t time);
223
224 void
225 shell_resize(struct wl_client *client, struct wl_shell *shell,
226              struct wl_surface *surface,
227              struct wl_input_device *device, uint32_t time, uint32_t edges);
228
229 struct wl_buffer *
230 wl_buffer_create_drm(struct wlsc_compositor *compositor,
231                      struct wl_visual *visual);
232
233 struct wlsc_compositor *
234 x11_compositor_create(struct wl_display *display, int width, int height);
235
236 struct wlsc_compositor *
237 drm_compositor_create(struct wl_display *display, int connector);
238
239 struct wlsc_compositor *
240 wayland_compositor_create(struct wl_display *display, int width, int height);
241
242 void
243 evdev_input_add_devices(struct wlsc_compositor *c, struct udev *udev);
244
245 struct tty *
246 tty_create(struct wlsc_compositor *compositor);
247
248 void
249 tty_destroy(struct tty *tty);
250
251 void
252 screenshooter_create(struct wlsc_compositor *ec);
253
254 uint32_t *
255 wlsc_load_image(const char *filename, int width, int height);
256
257 #endif