compositor: Added layout_save/layout_restore
[src/agl-compositor.git] / src / ivi-compositor.h
index 1d03747..ed56c7f 100644 (file)
@@ -58,7 +58,7 @@ struct ivi_compositor {
        struct wl_listener heads_changed;
 
        bool init_failed;
-       bool hide_cursor;
+       bool disable_cursor;
        bool activate_by_default;
        bool keep_pending_surfaces;
 
@@ -87,7 +87,8 @@ struct ivi_compositor {
                struct wl_client *client;
                struct wl_resource *resource;
 
-               struct wl_client *client_ext;
+               /* this is for another agl-shell client, potentially used by
+                * the grpc-proxy */
                struct wl_resource *resource_ext;
                bool ready;
                enum agl_shell_bound_status status;
@@ -103,6 +104,7 @@ struct ivi_compositor {
        struct wl_list desktop_clients; /* desktop_client::link */
 
        struct wl_list outputs; /* ivi_output.link */
+       struct wl_list saved_outputs; /* ivi_output.link */
        struct wl_list surfaces; /* ivi_surface.link */
 
        struct weston_desktop *desktop;
@@ -124,6 +126,7 @@ struct ivi_compositor {
        struct weston_layer popup;
        struct weston_layer fullscreen;
 
+       bool need_ivi_output_relayout;
        struct wl_list child_process_list;
 };
 
@@ -178,7 +181,7 @@ struct ivi_output {
        size_t add_len;
        struct weston_head *add[8];
 
-       char *app_id;
+       char *app_ids;
        enum ivi_output_type type;
 };
 
@@ -319,7 +322,7 @@ struct ivi_shell_seat {
        struct weston_seat *seat;
        struct weston_surface *focused_surface;
 
-       bool hide_cursor;
+       bool disable_cursor;
        bool new_caps_sent;
 
        struct wl_listener seat_destroy_listener;
@@ -498,4 +501,10 @@ ivi_shell_activate_surface(struct ivi_surface *ivi_surf,
 int
 sigchld_handler(int signal_number, void *data);
 
+void
+shell_send_app_state(struct ivi_compositor *ivi, const char *app_id,
+                    enum agl_shell_app_state state);
+void
+ivi_layout_destroy_saved_outputs(struct ivi_compositor *ivi);
+
 #endif