shell: Make create_shell_surface() just return the shsurf
[profile/ivi/weston.git] / src / compositor.h
1 /*
2  * Copyright © 2008-2011 Kristian Høgsberg
3  * Copyright © 2012 Collabora, Ltd.
4  *
5  * Permission to use, copy, modify, distribute, and sell this software and
6  * its documentation for any purpose is hereby granted without fee, provided
7  * that the above copyright notice appear in all copies and that both that
8  * copyright notice and this permission notice appear in supporting
9  * documentation, and that the name of the copyright holders not be used in
10  * advertising or publicity pertaining to distribution of the software
11  * without specific, written prior permission.  The copyright holders make
12  * no representations about the suitability of this software for any
13  * purpose.  It is provided "as is" without express or implied warranty.
14  *
15  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
16  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
18  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
20  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  */
23
24 #ifndef _WAYLAND_SYSTEM_COMPOSITOR_H_
25 #define _WAYLAND_SYSTEM_COMPOSITOR_H_
26
27 #include <pixman.h>
28 #include <xkbcommon/xkbcommon.h>
29 #include <wayland-server.h>
30
31 #include <GLES2/gl2.h>
32 #include <GLES2/gl2ext.h>
33 #include <EGL/egl.h>
34 #include <EGL/eglext.h>
35
36 #include "matrix.h"
37 #include "../shared/config-parser.h"
38 #include "weston-egl-ext.h"
39
40
41 struct weston_transform {
42         struct weston_matrix matrix;
43         struct wl_list link;
44 };
45
46 struct weston_surface;
47 struct shell_surface;
48 struct weston_seat;
49 struct weston_output;
50
51 struct weston_mode {
52         uint32_t flags;
53         int32_t width, height;
54         uint32_t refresh;
55         struct wl_list link;
56 };
57
58 struct weston_shell_interface {
59         void *shell;                    /* either desktop or tablet */
60
61         struct shell_surface *(*create_shell_surface)(void *shell,
62                                                       struct weston_surface *surface);
63
64         void (*set_toplevel)(struct shell_surface *shsurf);
65
66         void (*set_transient)(struct shell_surface *shsurf,
67                               struct shell_surface *pshsurf,
68                               int x, int y, uint32_t flags);
69         int (*move)(struct shell_surface *shsurf, struct weston_seat *ws);
70 };
71
72 struct weston_border {
73         int32_t left, right, top, bottom;
74 };
75
76 struct weston_output_zoom {
77         int active;
78         float increment;
79         float level;
80         float magnification;
81         float trans_x, trans_y;
82 };
83
84 /* bit compatible with drm definitions. */
85 enum dpms_enum {
86         WESTON_DPMS_ON,
87         WESTON_DPMS_STANDBY,
88         WESTON_DPMS_SUSPEND,
89         WESTON_DPMS_OFF
90 };
91
92 struct weston_read_pixels {
93         void *data;
94         int x, y, width, height;
95         void (*done)(struct weston_read_pixels *read_pixels,
96                      struct weston_output *output);
97         struct wl_list link;
98 };
99
100 struct weston_output {
101         uint32_t id;
102
103         struct wl_list link;
104         struct wl_list resource_list;
105         struct wl_global *global;
106         struct weston_compositor *compositor;
107         struct weston_matrix matrix;
108         struct wl_list frame_callback_list;
109         int32_t x, y, mm_width, mm_height;
110         struct weston_border border;
111         pixman_region32_t region;
112         pixman_region32_t previous_damage;
113         uint32_t flags;
114         int repaint_needed;
115         int repaint_scheduled;
116         struct weston_output_zoom zoom;
117         int dirty;
118         struct wl_list read_pixels_list;
119
120         char *make, *model;
121         uint32_t subpixel;
122         
123         struct weston_mode *current;
124         struct weston_mode *origin;
125         struct wl_list mode_list;
126
127         void (*repaint)(struct weston_output *output,
128                         pixman_region32_t *damage);
129         void (*destroy)(struct weston_output *output);
130         void (*assign_planes)(struct weston_output *output);
131         int (*switch_mode)(struct weston_output *output, struct weston_mode *mode);
132
133         /* backlight values are on 0-255 range, where higher is brighter */
134         uint32_t backlight_current;
135         void (*set_backlight)(struct weston_output *output, uint32_t value);
136         void (*set_dpms)(struct weston_output *output, enum dpms_enum level);
137 };
138
139 struct weston_seat {
140         struct wl_seat seat;
141         struct wl_pointer pointer;
142         struct wl_keyboard keyboard;
143         struct wl_touch touch;
144         struct weston_compositor *compositor;
145         struct weston_surface *sprite;
146         struct weston_surface *drag_surface;
147         struct wl_listener drag_surface_destroy_listener;
148         int32_t hotspot_x, hotspot_y;
149         struct wl_list link;
150         uint32_t modifier_state;
151         int hw_cursor;
152         struct wl_surface *saved_kbd_focus;
153         struct wl_listener saved_kbd_focus_listener;
154
155         uint32_t num_tp;
156         struct wl_surface *touch_focus;
157         struct wl_listener touch_focus_listener;
158         struct wl_resource *touch_focus_resource;
159         struct wl_listener touch_focus_resource_listener;
160
161         struct wl_listener new_drag_icon_listener;
162 };
163
164 struct weston_shader {
165         GLuint program;
166         GLuint vertex_shader, fragment_shader;
167         GLint proj_uniform;
168         GLint tex_uniform;
169         GLint alpha_uniform;
170         GLint brightness_uniform;
171         GLint saturation_uniform;
172         GLint color_uniform;
173         GLint texwidth_uniform;
174         GLint opaque_uniform;
175 };
176
177 struct weston_animation {
178         void (*frame)(struct weston_animation *animation,
179                       struct weston_output *output, uint32_t msecs);
180         struct wl_list link;
181 };
182
183 struct weston_spring {
184         double k;
185         double friction;
186         double current;
187         double target;
188         double previous;
189         uint32_t timestamp;
190 };
191
192 enum {
193         WESTON_COMPOSITOR_ACTIVE,
194         WESTON_COMPOSITOR_IDLE,         /* shell->unlock called on activity */
195         WESTON_COMPOSITOR_SLEEPING      /* no rendering, no frame events */
196 };
197
198 struct weston_layer {
199         struct wl_list surface_list;
200         struct wl_list link;
201 };
202
203 struct weston_compositor {
204         struct wl_shm *shm;
205         struct wl_signal destroy_signal;
206
207         EGLDisplay display;
208         EGLContext context;
209         EGLConfig config;
210         GLuint fbo;
211         struct weston_shader texture_shader;
212         struct weston_shader solid_shader;
213         struct weston_shader *current_shader;
214         struct wl_display *wl_display;
215         struct weston_shell_interface shell_interface;
216
217         struct wl_signal activate_signal;
218         struct wl_signal lock_signal;
219         struct wl_signal unlock_signal;
220
221         struct wl_event_loop *input_loop;
222         struct wl_event_source *input_loop_source;
223
224         /* There can be more than one, but not right now... */
225         struct weston_seat *seat;
226
227         struct weston_layer fade_layer;
228         struct weston_layer cursor_layer;
229
230         struct wl_list output_list;
231         struct wl_list seat_list;
232         struct wl_list layer_list;
233         struct wl_list surface_list;
234         struct wl_list binding_list;
235         struct wl_list animation_list;
236         struct {
237                 struct weston_spring spring;
238                 struct weston_animation animation;
239                 struct weston_surface *surface;
240         } fade;
241
242         uint32_t state;
243         struct wl_event_source *idle_source;
244         uint32_t idle_inhibit;
245         int option_idle_time;           /* default timeout, s */
246         int idle_time;                  /* effective timeout, s */
247
248         /* Repaint state. */
249         struct wl_array vertices, indices;
250         pixman_region32_t damage;
251
252         uint32_t focus;
253
254         PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC
255                 image_target_renderbuffer_storage;
256         PFNGLEGLIMAGETARGETTEXTURE2DOESPROC image_target_texture_2d;
257         PFNEGLCREATEIMAGEKHRPROC create_image;
258         PFNEGLDESTROYIMAGEKHRPROC destroy_image;
259
260         int has_unpack_subimage;
261         GLenum read_format;
262
263         PFNEGLBINDWAYLANDDISPLAYWL bind_display;
264         PFNEGLUNBINDWAYLANDDISPLAYWL unbind_display;
265         int has_bind_display;
266
267         void (*destroy)(struct weston_compositor *ec);
268         int (*authenticate)(struct weston_compositor *c, uint32_t id);
269
270         void (*ping_handler)(struct weston_surface *surface, uint32_t serial);
271
272         int launcher_sock;
273
274         uint32_t output_id_pool;
275
276         struct {
277                 struct xkb_rule_names names;
278                 struct xkb_context *context;
279                 struct xkb_keymap *keymap;
280                 struct xkb_state *state;
281         } xkb_info;
282 };
283
284 #define MODIFIER_CTRL   (1 << 8)
285 #define MODIFIER_ALT    (1 << 9)
286 #define MODIFIER_SUPER  (1 << 10)
287
288 enum weston_output_flags {
289         WL_OUTPUT_FLIPPED = 0x01
290 };
291
292 struct weston_region {
293         struct wl_resource resource;
294         pixman_region32_t region;
295 };
296
297 /* Using weston_surface transformations
298  *
299  * To add a transformation to a surface, create a struct weston_transform, and
300  * add it to the list surface->geometry.transformation_list. Whenever you
301  * change the list, anything under surface->geometry, or anything in the
302  * weston_transforms linked into the list, you must set
303  * surface->geometry.dirty = 1.
304  *
305  * The order in the list defines the order of transformations. Let the list
306  * contain the transformation matrices M1, ..., Mn as head to tail. The
307  * transformation is applied to surface-local coordinate vector p as
308  *    P = Mn * ... * M2 * M1 * p
309  * to produce the global coordinate vector P. The total transform
310  *    Mn * ... * M2 * M1
311  * is cached in surface->transform.matrix, and the inverse of it in
312  * surface->transform.inverse.
313  *
314  * The list always contains surface->transform.position transformation, which
315  * is the translation by surface->geometry.x and y.
316  *
317  * If you want to apply a transformation in local coordinates, add your
318  * weston_transform to the head of the list. If you want to apply a
319  * transformation in global coordinates, add it to the tail of the list.
320  */
321
322 struct weston_surface {
323         struct wl_surface surface;
324         struct weston_compositor *compositor;
325         GLuint texture;
326         pixman_region32_t clip;
327         pixman_region32_t damage;
328         pixman_region32_t opaque;
329         pixman_region32_t input;
330         int32_t pitch;
331         struct wl_list link;
332         struct wl_list layer_link;
333         struct weston_shader *shader;
334         GLfloat color[4];
335         GLfloat opaque_rect[4];
336         GLfloat alpha;
337         GLfloat brightness;
338         GLfloat saturation;
339         int blend;
340
341         /* Surface geometry state, mutable.
342          * If you change anything, set dirty = 1.
343          * That includes the transformations referenced from the list.
344          */
345         struct {
346                 GLfloat x, y; /* surface translation on display */
347                 int32_t width, height;
348
349                 /* struct weston_transform */
350                 struct wl_list transformation_list;
351
352                 int dirty;
353         } geometry;
354
355         /* State derived from geometry state, read-only.
356          * This is updated by weston_surface_update_transform().
357          */
358         struct {
359                 pixman_region32_t boundingbox;
360                 pixman_region32_t opaque;
361
362                 /* matrix and inverse are used only if enabled = 1.
363                  * If enabled = 0, use x, y, width, height directly.
364                  */
365                 int enabled;
366                 struct weston_matrix matrix;
367                 struct weston_matrix inverse;
368
369                 struct weston_transform position; /* matrix from x, y */
370         } transform;
371
372         /*
373          * Which output to vsync this surface to.
374          * Used to determine, whether to send or queue frame events.
375          * Must be NULL, if 'link' is not in weston_compositor::surface_list.
376          */
377         struct weston_output *output;
378
379         /*
380          * A more complete representation of all outputs this surface is
381          * displayed on.
382          */
383         uint32_t output_mask;
384
385         struct wl_list frame_callback_list;
386
387         EGLImageKHR image;
388
389         struct wl_buffer *buffer;
390         struct wl_listener buffer_destroy_listener;
391
392         /*
393          * If non-NULL, this function will be called on surface::attach after
394          * a new buffer has been set up for this surface. The integer params
395          * are the sx and sy paramerters supplied to surface::attach .
396          */
397         void (*configure)(struct weston_surface *es, int32_t sx, int32_t sy);
398         void *private;
399 };
400
401 void
402 weston_surface_update_transform(struct weston_surface *surface);
403
404 void
405 weston_surface_to_global(struct weston_surface *surface,
406                          int32_t sx, int32_t sy, int32_t *x, int32_t *y);
407 void
408 weston_surface_to_global_fixed(struct weston_surface *surface,
409                                wl_fixed_t sx, wl_fixed_t sy,
410                                wl_fixed_t *x, wl_fixed_t *y);
411 void
412 weston_surface_to_global_float(struct weston_surface *surface,
413                                GLfloat sx, GLfloat sy, GLfloat *x, GLfloat *y);
414
415 void
416 weston_surface_from_global(struct weston_surface *surface,
417                            int32_t x, int32_t y, int32_t *sx, int32_t *sy);
418 void
419 weston_surface_from_global_fixed(struct weston_surface *surface,
420                                  wl_fixed_t x, wl_fixed_t y,
421                                  wl_fixed_t *sx, wl_fixed_t *sy);
422
423 void
424 weston_spring_init(struct weston_spring *spring,
425                    double k, double current, double target);
426 void
427 weston_spring_update(struct weston_spring *spring, uint32_t msec);
428 int
429 weston_spring_done(struct weston_spring *spring);
430
431 void
432 weston_surface_activate(struct weston_surface *surface,
433                         struct weston_seat *seat);
434 void
435 weston_surface_draw(struct weston_surface *es,
436                     struct weston_output *output, pixman_region32_t *damage);
437
438 void
439 notify_motion(struct wl_seat *seat, uint32_t time,
440               wl_fixed_t x, wl_fixed_t y);
441 void
442 notify_button(struct wl_seat *seat, uint32_t time, int32_t button,
443               uint32_t state);
444 void
445 notify_axis(struct wl_seat *seat, uint32_t time, uint32_t axis,
446             int32_t value);
447 void
448 notify_key(struct wl_seat *seat, uint32_t time, uint32_t key,
449            uint32_t state);
450
451 void
452 notify_pointer_focus(struct wl_seat *seat, struct weston_output *output,
453                      wl_fixed_t x, wl_fixed_t y);
454
455 void
456 notify_keyboard_focus(struct wl_seat *seat, struct wl_array *keys);
457
458 void
459 notify_touch(struct wl_seat *seat, uint32_t time, int touch_id,
460              wl_fixed_t x, wl_fixed_t y, int touch_type);
461
462 void
463 weston_layer_init(struct weston_layer *layer, struct wl_list *below);
464
465 void
466 weston_output_finish_frame(struct weston_output *output, int msecs);
467 void
468 weston_output_damage(struct weston_output *output);
469 void
470 weston_output_do_read_pixels(struct weston_output *output);
471 void
472 weston_compositor_repick(struct weston_compositor *compositor);
473 void
474 weston_compositor_schedule_repaint(struct weston_compositor *compositor);
475 void
476 weston_compositor_fade(struct weston_compositor *compositor, float tint);
477 void
478 weston_compositor_damage_all(struct weston_compositor *compositor);
479 void
480 weston_compositor_unlock(struct weston_compositor *compositor);
481 void
482 weston_compositor_wake(struct weston_compositor *compositor);
483 void
484 weston_compositor_activity(struct weston_compositor *compositor);
485 void
486 weston_compositor_update_drag_surfaces(struct weston_compositor *compositor);
487
488
489 struct weston_binding;
490 typedef void (*weston_binding_handler_t)(struct wl_seat *seat,
491                                          uint32_t time, uint32_t key,
492                                          uint32_t button,
493                                          uint32_t axis,
494                                          int32_t value, void *data);
495 struct weston_binding *
496 weston_compositor_add_binding(struct weston_compositor *compositor,
497                               uint32_t key, uint32_t button, uint32_t axis,
498                               uint32_t modifier,
499                               weston_binding_handler_t binding, void *data);
500 void
501 weston_binding_destroy(struct weston_binding *binding);
502
503 void
504 weston_binding_list_destroy_all(struct wl_list *list);
505
506 void
507 weston_compositor_run_binding(struct weston_compositor *compositor,
508                               struct weston_seat *seat,
509                               uint32_t time,
510                               uint32_t key, uint32_t button, uint32_t axis,
511                               int32_t value);
512 int
513 weston_environment_get_fd(const char *env);
514
515 struct wl_list *
516 weston_compositor_top(struct weston_compositor *compositor);
517
518 struct weston_surface *
519 weston_surface_create(struct weston_compositor *compositor);
520
521 void
522 weston_surface_configure(struct weston_surface *surface,
523                          GLfloat x, GLfloat y, int width, int height);
524
525 void
526 weston_surface_restack(struct weston_surface *surface, struct wl_list *below);
527
528 void
529 weston_surface_set_position(struct weston_surface *surface,
530                             GLfloat x, GLfloat y);
531
532 int
533 weston_surface_is_mapped(struct weston_surface *surface);
534
535 void
536 weston_surface_assign_output(struct weston_surface *surface);
537
538 void
539 weston_surface_damage(struct weston_surface *surface);
540
541 void
542 weston_surface_damage_below(struct weston_surface *surface);
543
544 void
545 weston_buffer_post_release(struct wl_buffer *buffer);
546
547 uint32_t
548 weston_compositor_get_time(void);
549
550 int
551 weston_compositor_init(struct weston_compositor *ec, struct wl_display *display);
552 void
553 weston_compositor_shutdown(struct weston_compositor *ec);
554 void
555 weston_output_update_zoom(struct weston_output *output, int x, int y);
556 void
557 weston_output_update_matrix(struct weston_output *output);
558 void
559 weston_output_move(struct weston_output *output, int x, int y);
560 void
561 weston_output_init(struct weston_output *output, struct weston_compositor *c,
562                    int x, int y, int width, int height, uint32_t flags);
563 void
564 weston_output_destroy(struct weston_output *output);
565
566 void
567 weston_seat_init(struct weston_seat *seat, struct weston_compositor *ec);
568
569 void
570 weston_seat_release(struct weston_seat *seat);
571
572 enum {
573         TTY_ENTER_VT,
574         TTY_LEAVE_VT
575 };
576
577 typedef void (*tty_vt_func_t)(struct weston_compositor *compositor, int event);
578
579 struct tty *
580 tty_create(struct weston_compositor *compositor,
581            tty_vt_func_t vt_func, int tty_nr);
582
583 void
584 tty_destroy(struct tty *tty);
585
586 int
587 tty_activate_vt(struct tty *tty, int vt);
588
589 void
590 screenshooter_create(struct weston_compositor *ec);
591
592 struct weston_process;
593 typedef void (*weston_process_cleanup_func_t)(struct weston_process *process,
594                                             int status);
595
596 struct weston_process {
597         pid_t pid;
598         weston_process_cleanup_func_t cleanup;
599         struct wl_list link;
600 };
601
602 struct wl_client *
603 weston_client_launch(struct weston_compositor *compositor,
604                      struct weston_process *proc,
605                      const char *path,
606                      weston_process_cleanup_func_t cleanup);
607
608 void
609 weston_watch_process(struct weston_process *process);
610
611 int
612 weston_xserver_init(struct weston_compositor *compositor);
613
614 struct weston_zoom;
615 typedef void (*weston_zoom_done_func_t)(struct weston_zoom *zoom, void *data);
616
617 struct weston_zoom *
618 weston_zoom_run(struct weston_surface *surface, GLfloat start, GLfloat stop,
619                 weston_zoom_done_func_t done, void *data);
620
621 struct weston_fade;
622 typedef void (*weston_fade_done_func_t)(struct weston_fade *fade, void *data);
623
624 struct weston_fade *
625 weston_fade_run(struct weston_surface *surface,
626                 weston_fade_done_func_t done, void *data);
627
628
629 void
630 weston_surface_set_color(struct weston_surface *surface,
631                          GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
632
633 void
634 weston_surface_destroy(struct weston_surface *surface);
635
636 struct weston_compositor *
637 backend_init(struct wl_display *display, int argc, char *argv[]);
638
639 int
640 weston_output_switch_mode(struct weston_output *output, struct weston_mode *mode);
641
642 #endif