Update package changelog.
[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 "version.h"
37 #include "matrix.h"
38 #include "config-parser.h"
39
40 #define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0])
41
42 #define container_of(ptr, type, member) ({                              \
43         const __typeof__( ((type *)0)->member ) *__mptr = (ptr);        \
44         (type *)( (char *)__mptr - offsetof(type,member) );})
45
46 struct weston_transform {
47         struct weston_matrix matrix;
48         struct wl_list link;
49 };
50
51 struct weston_surface;
52 struct shell_surface;
53 struct weston_seat;
54 struct weston_output;
55 struct input_method;
56
57 enum weston_keyboard_modifier {
58         MODIFIER_CTRL = (1 << 0),
59         MODIFIER_ALT = (1 << 1),
60         MODIFIER_SUPER = (1 << 2),
61         MODIFIER_SHIFT = (1 << 3),
62 };
63
64 enum weston_led {
65         LED_NUM_LOCK = (1 << 0),
66         LED_CAPS_LOCK = (1 << 1),
67         LED_SCROLL_LOCK = (1 << 2),
68 };
69
70 struct weston_mode {
71         uint32_t flags;
72         int32_t width, height;
73         uint32_t refresh;
74         struct wl_list link;
75 };
76
77 struct weston_shell_client {
78         void (*send_configure)(struct weston_surface *surface,
79                                uint32_t edges, int32_t width, int32_t height);
80 };
81
82 struct weston_shell_interface {
83         void *shell;                    /* either desktop or tablet */
84
85         struct shell_surface *(*create_shell_surface)(void *shell,
86                                                       struct weston_surface *surface,
87                                                       const struct weston_shell_client *client);
88
89         void (*set_toplevel)(struct shell_surface *shsurf);
90
91         void (*set_transient)(struct shell_surface *shsurf,
92                               struct weston_surface *parent,
93                               int x, int y, uint32_t flags);
94         int (*move)(struct shell_surface *shsurf, struct weston_seat *ws);
95         int (*resize)(struct shell_surface *shsurf,
96                       struct weston_seat *ws, uint32_t edges);
97
98 };
99
100 struct weston_border {
101         int32_t left, right, top, bottom;
102 };
103
104 struct weston_animation {
105         void (*frame)(struct weston_animation *animation,
106                       struct weston_output *output, uint32_t msecs);
107         int frame_counter;
108         struct wl_list link;
109 };
110
111 struct weston_spring {
112         double k;
113         double friction;
114         double current;
115         double target;
116         double previous;
117         uint32_t timestamp;
118 };
119
120 enum {
121         ZOOM_FOCUS_POINTER,
122         ZOOM_FOCUS_TEXT
123 };
124
125 struct weston_fixed_point {
126         wl_fixed_t x, y;
127 };
128
129 struct weston_output_zoom {
130         int active;
131         uint32_t type;
132         float increment;
133         float level;
134         float max_level;
135         float trans_x, trans_y;
136         struct weston_animation animation_z;
137         struct weston_spring spring_z;
138         struct weston_animation animation_xy;
139         struct weston_spring spring_xy;
140         struct weston_fixed_point from;
141         struct weston_fixed_point to;
142         struct weston_fixed_point current;
143         struct weston_fixed_point text_cursor;
144 };
145
146 /* bit compatible with drm definitions. */
147 enum dpms_enum {
148         WESTON_DPMS_ON,
149         WESTON_DPMS_STANDBY,
150         WESTON_DPMS_SUSPEND,
151         WESTON_DPMS_OFF
152 };
153
154 struct weston_output {
155         uint32_t id;
156
157         EGLSurface egl_surface;
158         struct wl_list link;
159         struct wl_list resource_list;
160         struct wl_global *global;
161         struct weston_compositor *compositor;
162         struct weston_matrix matrix;
163         struct wl_list animation_list;
164         int32_t x, y, width, height;
165         int32_t mm_width, mm_height;
166         struct weston_border border;
167         pixman_region32_t region;
168         int current_buffer;
169         pixman_region32_t buffer_damage[2];
170         int repaint_needed;
171         int repaint_scheduled;
172         struct weston_output_zoom zoom;
173         int dirty;
174         struct wl_signal frame_signal;
175         uint32_t frame_time;
176         int disable_planes;
177
178         char *make, *model;
179         uint32_t subpixel;
180         uint32_t transform;
181         
182         struct weston_mode *current;
183         struct weston_mode *origin;
184         struct wl_list mode_list;
185
186         void (*repaint)(struct weston_output *output,
187                         pixman_region32_t *damage);
188         void (*destroy)(struct weston_output *output);
189         void (*assign_planes)(struct weston_output *output);
190         int (*switch_mode)(struct weston_output *output, struct weston_mode *mode);
191
192         /* backlight values are on 0-255 range, where higher is brighter */
193         uint32_t backlight_current;
194         void (*set_backlight)(struct weston_output *output, uint32_t value);
195         void (*set_dpms)(struct weston_output *output, enum dpms_enum level);
196 };
197
198 struct weston_xkb_info {
199         struct xkb_keymap *keymap;
200         int keymap_fd;
201         size_t keymap_size;
202         char *keymap_area;
203         xkb_mod_index_t shift_mod;
204         xkb_mod_index_t caps_mod;
205         xkb_mod_index_t ctrl_mod;
206         xkb_mod_index_t alt_mod;
207         xkb_mod_index_t mod2_mod;
208         xkb_mod_index_t mod3_mod;
209         xkb_mod_index_t super_mod;
210         xkb_mod_index_t mod5_mod;
211         xkb_led_index_t num_led;
212         xkb_led_index_t caps_led;
213         xkb_led_index_t scroll_led;
214 };
215
216 struct weston_seat {
217         struct wl_seat seat;
218         struct wl_pointer pointer;
219         int has_pointer;
220         struct wl_keyboard keyboard;
221         int has_keyboard;
222         struct wl_touch touch;
223         int has_touch;
224
225         struct weston_compositor *compositor;
226         struct weston_surface *sprite;
227         struct wl_listener sprite_destroy_listener;
228         struct weston_surface *drag_surface;
229         struct wl_listener drag_surface_destroy_listener;
230         int32_t hotspot_x, hotspot_y;
231         struct wl_list link;
232         enum weston_keyboard_modifier modifier_state;
233         struct wl_surface *saved_kbd_focus;
234         struct wl_listener saved_kbd_focus_listener;
235
236         uint32_t num_tp;
237
238         struct wl_listener new_drag_icon_listener;
239
240         void (*led_update)(struct weston_seat *ws, enum weston_led leds);
241
242         struct weston_xkb_info xkb_info;
243         struct {
244                 struct xkb_state *state;
245                 enum weston_led leds;
246         } xkb_state;
247
248         struct input_method *input_method;
249 };
250
251 struct weston_shader {
252         GLuint program;
253         GLuint vertex_shader, fragment_shader;
254         GLint proj_uniform;
255         GLint tex_uniforms[3];
256         GLint alpha_uniform;
257         GLint color_uniform;
258 };
259
260 enum {
261         WESTON_COMPOSITOR_ACTIVE,
262         WESTON_COMPOSITOR_IDLE,         /* shell->unlock called on activity */
263         WESTON_COMPOSITOR_SLEEPING      /* no rendering, no frame events */
264 };
265
266 struct weston_layer {
267         struct wl_list surface_list;
268         struct wl_list link;
269 };
270
271 struct weston_plane {
272         pixman_region32_t damage;
273         pixman_region32_t opaque;
274         int32_t x, y;
275 };
276
277 struct weston_renderer {
278         void (*repaint_output)(struct weston_output *output,
279                                pixman_region32_t *output_damage);
280         void (*flush_damage)(struct weston_surface *surface);
281         void (*attach)(struct weston_surface *es, struct wl_buffer *buffer);
282         void (*destroy_surface)(struct weston_surface *surface);
283 };
284
285 struct weston_compositor {
286         struct wl_signal destroy_signal;
287
288         EGLDisplay egl_display;
289         EGLContext egl_context;
290         EGLConfig egl_config;
291         struct weston_shader texture_shader_rgba;
292         struct weston_shader texture_shader_rgbx;
293         struct weston_shader texture_shader_egl_external;
294         struct weston_shader texture_shader_y_uv;
295         struct weston_shader texture_shader_y_u_v;
296         struct weston_shader texture_shader_y_xuxv;
297         struct weston_shader solid_shader;
298         struct weston_shader *current_shader;
299         struct wl_display *wl_display;
300         struct weston_shell_interface shell_interface;
301
302         struct wl_signal activate_signal;
303         struct wl_signal kill_signal;
304         struct wl_signal lock_signal;
305         struct wl_signal unlock_signal;
306
307         struct wl_signal show_input_panel_signal;
308         struct wl_signal hide_input_panel_signal;
309
310         struct wl_event_loop *input_loop;
311         struct wl_event_source *input_loop_source;
312
313         struct weston_layer fade_layer;
314         struct weston_layer cursor_layer;
315
316         struct wl_list output_list;
317         struct wl_list seat_list;
318         struct wl_list layer_list;
319         struct wl_list surface_list;
320         struct wl_list key_binding_list;
321         struct wl_list button_binding_list;
322         struct wl_list axis_binding_list;
323         struct {
324                 struct weston_spring spring;
325                 struct weston_animation animation;
326                 struct weston_surface *surface;
327         } fade;
328
329         uint32_t state;
330         struct wl_event_source *idle_source;
331         uint32_t idle_inhibit;
332         int option_idle_time;           /* default timeout, s */
333         int idle_time;                  /* effective timeout, s */
334
335         /* Repaint state. */
336         struct wl_array vertices;
337         struct wl_array indices; /* only used in compositor-wayland */
338         struct wl_array vtxcnt;
339         struct weston_plane primary_plane;
340         int fan_debug;
341
342         uint32_t focus;
343
344         struct weston_renderer *renderer;
345
346         PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC
347                 image_target_renderbuffer_storage;
348         PFNGLEGLIMAGETARGETTEXTURE2DOESPROC image_target_texture_2d;
349         PFNEGLCREATEIMAGEKHRPROC create_image;
350         PFNEGLDESTROYIMAGEKHRPROC destroy_image;
351
352         int has_unpack_subimage;
353         GLenum read_format;
354
355         PFNEGLBINDWAYLANDDISPLAYWL bind_display;
356         PFNEGLUNBINDWAYLANDDISPLAYWL unbind_display;
357         PFNEGLQUERYWAYLANDBUFFERWL query_buffer;
358         int has_bind_display;
359
360         void (*destroy)(struct weston_compositor *ec);
361         void (*restore)(struct weston_compositor *ec);
362         int (*authenticate)(struct weston_compositor *c, uint32_t id);
363
364         void (*ping_handler)(struct weston_surface *surface, uint32_t serial);
365
366         int launcher_sock;
367
368         uint32_t output_id_pool;
369
370         struct xkb_rule_names xkb_names;
371         struct xkb_context *xkb_context;
372         struct weston_xkb_info xkb_info;
373
374         int config_fd;
375 };
376
377 struct weston_region {
378         struct wl_resource resource;
379         pixman_region32_t region;
380 };
381
382 /* Using weston_surface transformations
383  *
384  * To add a transformation to a surface, create a struct weston_transform, and
385  * add it to the list surface->geometry.transformation_list. Whenever you
386  * change the list, anything under surface->geometry, or anything in the
387  * weston_transforms linked into the list, you must set
388  * surface->geometry.dirty = 1.
389  *
390  * The order in the list defines the order of transformations. Let the list
391  * contain the transformation matrices M1, ..., Mn as head to tail. The
392  * transformation is applied to surface-local coordinate vector p as
393  *    P = Mn * ... * M2 * M1 * p
394  * to produce the global coordinate vector P. The total transform
395  *    Mn * ... * M2 * M1
396  * is cached in surface->transform.matrix, and the inverse of it in
397  * surface->transform.inverse.
398  *
399  * The list always contains surface->transform.position transformation, which
400  * is the translation by surface->geometry.x and y.
401  *
402  * If you want to apply a transformation in local coordinates, add your
403  * weston_transform to the head of the list. If you want to apply a
404  * transformation in global coordinates, add it to the tail of the list.
405  */
406
407 struct weston_surface {
408         struct wl_surface surface;
409         struct weston_compositor *compositor;
410         GLuint textures[3];
411         int num_textures;
412         pixman_region32_t clip;
413         pixman_region32_t damage;
414         pixman_region32_t opaque;
415         pixman_region32_t input;
416         int32_t pitch;
417         struct wl_list link;
418         struct wl_list layer_link;
419         struct weston_shader *shader;
420         GLfloat color[4];
421         float alpha;
422         struct weston_plane *plane;
423
424         /* Surface geometry state, mutable.
425          * If you change anything, set dirty = 1.
426          * That includes the transformations referenced from the list.
427          */
428         struct {
429                 float x, y; /* surface translation on display */
430                 int32_t width, height;
431
432                 /* struct weston_transform */
433                 struct wl_list transformation_list;
434
435                 int dirty;
436         } geometry;
437
438         /* State derived from geometry state, read-only.
439          * This is updated by weston_surface_update_transform().
440          */
441         struct {
442                 pixman_region32_t boundingbox;
443                 pixman_region32_t opaque;
444
445                 /* matrix and inverse are used only if enabled = 1.
446                  * If enabled = 0, use x, y, width, height directly.
447                  */
448                 int enabled;
449                 struct weston_matrix matrix;
450                 struct weston_matrix inverse;
451
452                 struct weston_transform position; /* matrix from x, y */
453         } transform;
454
455         /*
456          * Which output to vsync this surface to.
457          * Used to determine, whether to send or queue frame events.
458          * Must be NULL, if 'link' is not in weston_compositor::surface_list.
459          */
460         struct weston_output *output;
461
462         /*
463          * A more complete representation of all outputs this surface is
464          * displayed on.
465          */
466         uint32_t output_mask;
467
468         struct wl_list frame_callback_list;
469
470         EGLImageKHR images[3];
471         GLenum target;
472         int num_images;
473
474         struct wl_buffer *buffer;
475         struct wl_listener buffer_destroy_listener;
476
477         /* All the pending state, that wl_surface.commit will apply. */
478         struct {
479                 /* wl_surface.attach */
480                 int remove_contents;
481                 struct wl_buffer *buffer;
482                 struct wl_listener buffer_destroy_listener;
483                 int32_t sx;
484                 int32_t sy;
485
486                 /* wl_surface.damage */
487                 pixman_region32_t damage;
488
489                 /* wl_surface.set_opaque_region */
490                 pixman_region32_t opaque;
491
492                 /* wl_surface.set_input_region */
493                 pixman_region32_t input;
494
495                 /* wl_surface.frame */
496                 struct wl_list frame_callback_list;
497         } pending;
498
499         /*
500          * If non-NULL, this function will be called on surface::attach after
501          * a new buffer has been set up for this surface. The integer params
502          * are the sx and sy paramerters supplied to surface::attach .
503          */
504         void (*configure)(struct weston_surface *es, int32_t sx, int32_t sy);
505         void *private;
506 };
507
508 enum weston_key_state_update {
509         STATE_UPDATE_AUTOMATIC,
510         STATE_UPDATE_NONE,
511 };
512
513 void
514 weston_version(int *major, int *minor, int *micro);
515
516 void
517 weston_surface_update_transform(struct weston_surface *surface);
518
519 void
520 weston_surface_to_global_fixed(struct weston_surface *surface,
521                                wl_fixed_t sx, wl_fixed_t sy,
522                                wl_fixed_t *x, wl_fixed_t *y);
523 void
524 weston_surface_to_global_float(struct weston_surface *surface,
525                                float sx, float sy, float *x, float *y);
526
527 void
528 weston_surface_from_global_float(struct weston_surface *surface,
529                                  float x, float y, float *sx, float *sy);
530 void
531 weston_surface_from_global(struct weston_surface *surface,
532                            int32_t x, int32_t y, int32_t *sx, int32_t *sy);
533 void
534 weston_surface_from_global_fixed(struct weston_surface *surface,
535                                  wl_fixed_t x, wl_fixed_t y,
536                                  wl_fixed_t *sx, wl_fixed_t *sy);
537
538 void
539 weston_spring_init(struct weston_spring *spring,
540                    double k, double current, double target);
541 void
542 weston_spring_update(struct weston_spring *spring, uint32_t msec);
543 int
544 weston_spring_done(struct weston_spring *spring);
545
546 void
547 weston_surface_activate(struct weston_surface *surface,
548                         struct weston_seat *seat);
549 void
550 notify_motion(struct weston_seat *seat, uint32_t time,
551               wl_fixed_t x, wl_fixed_t y);
552 void
553 notify_button(struct weston_seat *seat, uint32_t time, int32_t button,
554               enum wl_pointer_button_state state);
555 void
556 notify_axis(struct weston_seat *seat, uint32_t time, uint32_t axis,
557             wl_fixed_t value);
558 void
559 notify_key(struct weston_seat *seat, uint32_t time, uint32_t key,
560            enum wl_keyboard_key_state state,
561            enum weston_key_state_update update_state);
562 void
563 notify_modifiers(struct weston_seat *seat, uint32_t serial);
564
565 void
566 notify_pointer_focus(struct weston_seat *seat, struct weston_output *output,
567                      wl_fixed_t x, wl_fixed_t y);
568
569 void
570 notify_keyboard_focus_in(struct weston_seat *seat, struct wl_array *keys,
571                          enum weston_key_state_update update_state);
572 void
573 notify_keyboard_focus_out(struct weston_seat *seat);
574
575 void
576 notify_touch(struct weston_seat *seat, uint32_t time, int touch_id,
577              wl_fixed_t x, wl_fixed_t y, int touch_type);
578
579 void
580 weston_layer_init(struct weston_layer *layer, struct wl_list *below);
581
582 void
583 weston_plane_init(struct weston_plane *plane, int32_t x, int32_t y);
584 void
585 weston_plane_release(struct weston_plane *plane);
586
587 void
588 weston_output_finish_frame(struct weston_output *output, uint32_t msecs);
589 void
590 weston_output_schedule_repaint(struct weston_output *output);
591 void
592 weston_output_damage(struct weston_output *output);
593 void
594 weston_compositor_schedule_repaint(struct weston_compositor *compositor);
595 void
596 weston_compositor_fade(struct weston_compositor *compositor, float tint);
597 void
598 weston_compositor_damage_all(struct weston_compositor *compositor);
599 void
600 weston_compositor_unlock(struct weston_compositor *compositor);
601 void
602 weston_compositor_wake(struct weston_compositor *compositor);
603 void
604 weston_compositor_activity(struct weston_compositor *compositor);
605 void
606 weston_compositor_update_drag_surfaces(struct weston_compositor *compositor);
607
608
609 struct weston_binding;
610 typedef void (*weston_key_binding_handler_t)(struct wl_seat *seat,
611                                              uint32_t time, uint32_t key,
612                                              void *data);
613 struct weston_binding *
614 weston_compositor_add_key_binding(struct weston_compositor *compositor,
615                                   uint32_t key,
616                                   enum weston_keyboard_modifier modifier,
617                                   weston_key_binding_handler_t binding,
618                                   void *data);
619
620 typedef void (*weston_button_binding_handler_t)(struct wl_seat *seat,
621                                                 uint32_t time, uint32_t button,
622                                                 void *data);
623 struct weston_binding *
624 weston_compositor_add_button_binding(struct weston_compositor *compositor,
625                                      uint32_t button,
626                                      enum weston_keyboard_modifier modifier,
627                                      weston_button_binding_handler_t binding,
628                                      void *data);
629
630 typedef void (*weston_axis_binding_handler_t)(struct wl_seat *seat,
631                                               uint32_t time, uint32_t axis,
632                                               wl_fixed_t value, void *data);
633 struct weston_binding *
634 weston_compositor_add_axis_binding(struct weston_compositor *compositor,
635                                    uint32_t axis,
636                                    enum weston_keyboard_modifier modifier,
637                                    weston_axis_binding_handler_t binding,
638                                    void *data);
639 void
640 weston_binding_destroy(struct weston_binding *binding);
641
642 void
643 weston_binding_list_destroy_all(struct wl_list *list);
644
645 void
646 weston_compositor_run_key_binding(struct weston_compositor *compositor,
647                                   struct weston_seat *seat, uint32_t time,
648                                   uint32_t key,
649                                   enum wl_keyboard_key_state state);
650 void
651 weston_compositor_run_button_binding(struct weston_compositor *compositor,
652                                      struct weston_seat *seat, uint32_t time,
653                                      uint32_t button,
654                                      enum wl_pointer_button_state value);
655 void
656 weston_compositor_run_axis_binding(struct weston_compositor *compositor,
657                                    struct weston_seat *seat, uint32_t time,
658                                    uint32_t axis, int32_t value);
659
660 int
661 weston_environment_get_fd(const char *env);
662
663 struct wl_list *
664 weston_compositor_top(struct weston_compositor *compositor);
665
666 struct weston_surface *
667 weston_surface_create(struct weston_compositor *compositor);
668
669 void
670 weston_surface_configure(struct weston_surface *surface,
671                          float x, float y, int width, int height);
672
673 void
674 weston_surface_restack(struct weston_surface *surface, struct wl_list *below);
675
676 void
677 weston_surface_set_position(struct weston_surface *surface,
678                             float x, float y);
679
680 int
681 weston_surface_is_mapped(struct weston_surface *surface);
682
683 void
684 weston_surface_schedule_repaint(struct weston_surface *surface);
685
686 void
687 weston_surface_damage(struct weston_surface *surface);
688
689 void
690 weston_surface_damage_below(struct weston_surface *surface);
691
692 void
693 weston_surface_move_to_plane(struct weston_surface *surface,
694                              struct weston_plane *plane);
695 void
696 weston_surface_unmap(struct weston_surface *surface);
697
698 void
699 weston_buffer_post_release(struct wl_buffer *buffer);
700
701 uint32_t
702 weston_compositor_get_time(void);
703
704 int
705 weston_compositor_init(struct weston_compositor *ec, struct wl_display *display,
706                        int argc, char *argv[], int config_fd);
707 void
708 weston_compositor_shutdown(struct weston_compositor *ec);
709 void
710 weston_text_cursor_position_notify(struct weston_surface *surface,
711                                                 wl_fixed_t x, wl_fixed_t y);
712 void
713 weston_output_init_zoom(struct weston_output *output);
714 void
715 weston_output_update_zoom(struct weston_output *output, uint32_t type);
716 void
717 weston_output_update_matrix(struct weston_output *output);
718 void
719 weston_output_move(struct weston_output *output, int x, int y);
720 void
721 weston_output_init(struct weston_output *output, struct weston_compositor *c,
722                    int x, int y, int width, int height, uint32_t transform);
723 void
724 weston_output_destroy(struct weston_output *output);
725
726 void
727 weston_seat_init(struct weston_seat *seat, struct weston_compositor *ec);
728 void
729 weston_seat_init_pointer(struct weston_seat *seat);
730 int
731 weston_seat_init_keyboard(struct weston_seat *seat, struct xkb_keymap *keymap);
732 void
733 weston_seat_init_touch(struct weston_seat *seat);
734
735 void
736 weston_seat_release(struct weston_seat *seat);
737
738 /* String literal of spaces, the same width as the timestamp. */
739 #define STAMP_SPACE "               "
740
741 void
742 weston_log_file_open(const char *filename);
743 void
744 weston_log_file_close(void);
745 int
746 weston_log(const char *fmt, ...)
747         __attribute__ ((format (printf, 1, 2)));
748 int
749 weston_log_continue(const char *fmt, ...)
750         __attribute__ ((format (printf, 1, 2)));
751
752 enum {
753         TTY_ENTER_VT,
754         TTY_LEAVE_VT
755 };
756
757 typedef void (*tty_vt_func_t)(struct weston_compositor *compositor, int event);
758
759 struct tty *
760 tty_create(struct weston_compositor *compositor,
761            tty_vt_func_t vt_func, int tty_nr);
762
763 void
764 tty_destroy(struct tty *tty);
765
766 void
767 tty_reset(struct tty *tty);
768
769 int
770 tty_activate_vt(struct tty *tty, int vt);
771
772 void
773 screenshooter_create(struct weston_compositor *ec);
774
775 struct clipboard *
776 clipboard_create(struct weston_seat *seat);
777
778 void
779 text_cursor_position_notifier_create(struct weston_compositor *ec);
780
781 void
782 text_model_factory_create(struct weston_compositor *ec);
783
784 void
785 input_method_create(struct weston_compositor *ec,
786                     struct weston_seat *seat);
787
788 struct weston_process;
789 typedef void (*weston_process_cleanup_func_t)(struct weston_process *process,
790                                             int status);
791
792 struct weston_process {
793         pid_t pid;
794         weston_process_cleanup_func_t cleanup;
795         struct wl_list link;
796 };
797
798 struct wl_client *
799 weston_client_launch(struct weston_compositor *compositor,
800                      struct weston_process *proc,
801                      const char *path,
802                      weston_process_cleanup_func_t cleanup);
803
804 void
805 weston_watch_process(struct weston_process *process);
806
807 struct weston_surface_animation;
808 typedef void (*weston_surface_animation_done_func_t)(struct weston_surface_animation *animation, void *data);
809
810 struct weston_surface_animation *
811 weston_zoom_run(struct weston_surface *surface, float start, float stop,
812                 weston_surface_animation_done_func_t done, void *data);
813
814 struct weston_surface_animation *
815 weston_fade_run(struct weston_surface *surface,
816                 weston_surface_animation_done_func_t done, void *data);
817 struct weston_surface_animation *
818 weston_slide_run(struct weston_surface *surface, float start, float stop,
819                  weston_surface_animation_done_func_t done, void *data);
820
821 void
822 weston_surface_set_color(struct weston_surface *surface,
823                          float red, float green, float blue, float alpha);
824
825 void
826 weston_surface_destroy(struct weston_surface *surface);
827
828 int
829 weston_output_switch_mode(struct weston_output *output, struct weston_mode *mode);
830
831 int
832 gles2_renderer_init(struct weston_compositor *ec);
833 void
834 gles2_renderer_destroy(struct weston_compositor *ec);
835
836 struct weston_compositor *
837 backend_init(struct wl_display *display, int argc, char *argv[],
838             int config_fd);
839
840 int
841 module_init(struct weston_compositor *compositor);
842
843 #endif