input: Rename hide-cursor to disable-cursor
[src/agl-compositor.git] / src / ivi-compositor.h
index bf96fc7..6a72e2a 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;
 
@@ -81,14 +81,26 @@ struct ivi_compositor {
 
        struct wl_global *agl_shell;
        struct wl_global *agl_shell_desktop;
+       struct wl_global *agl_shell_ext;
 
        struct {
                struct wl_client *client;
                struct wl_resource *resource;
+
+               /* 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;
        } shell_client;
 
+       struct {
+               struct wl_client *client;
+               struct wl_resource *resource;
+               bool doas_requested;
+               enum agl_shell_bound_status status;
+       } shell_client_ext;
+
        struct wl_list desktop_clients; /* desktop_client::link */
 
        struct wl_list outputs; /* ivi_output.link */
@@ -308,7 +320,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;
@@ -351,7 +363,7 @@ int
 ivi_shell_create_global(struct ivi_compositor *ivi);
 
 int
-ivi_launch_shell_client(struct ivi_compositor *ivi);
+ivi_launch_shell_client(struct ivi_compositor *ivi, const char *cmd_section, struct wl_client **client);
 
 int
 ivi_desktop_init(struct ivi_compositor *ivi);
@@ -487,4 +499,8 @@ 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);
+
 #endif