input: Rename hide-cursor to disable-cursor
[src/agl-compositor.git] / src / ivi-compositor.h
index bc3a81d..6a72e2a 100644 (file)
@@ -34,6 +34,8 @@
 #include <libweston/windowed-output-api.h>
 #include <libweston-desktop/libweston-desktop.h>
 
+#include "remote.h"
+
 #include "agl-shell-server-protocol.h"
 
 struct ivi_compositor;
@@ -44,6 +46,11 @@ struct desktop_client {
        struct wl_list link;    /* ivi_compositor::desktop_clients */
 };
 
+enum agl_shell_bound_status {
+       BOUND_OK,
+       BOUND_FAILED,
+};
+
 struct ivi_compositor {
        struct weston_compositor *compositor;
        struct weston_config *config;
@@ -51,6 +58,9 @@ struct ivi_compositor {
        struct wl_listener heads_changed;
 
        bool init_failed;
+       bool disable_cursor;
+       bool activate_by_default;
+       bool keep_pending_surfaces;
 
        /*
         * Options parsed from command line arugments.
@@ -66,22 +76,38 @@ struct ivi_compositor {
        } cmdline;
        const struct weston_windowed_output_api *window_api;
        const struct weston_drm_output_api *drm_api;
+       const struct weston_remoting_api *remoting_api;
+       const struct weston_transmitter_api *waltham_transmitter_api;
 
        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 */
        struct wl_list surfaces; /* ivi_surface.link */
 
        struct weston_desktop *desktop;
+       struct wl_listener seat_created_listener;
        struct ivi_policy *policy;
 
        struct wl_list pending_surfaces;
@@ -90,16 +116,28 @@ struct ivi_compositor {
        struct wl_list split_pending_apps;
        struct wl_list remote_pending_apps;
 
+       struct wl_listener destroy_listener;
+
        struct weston_layer hidden;
        struct weston_layer background;
        struct weston_layer normal;
        struct weston_layer panel;
        struct weston_layer popup;
        struct weston_layer fullscreen;
+
+       struct wl_list child_process_list;
 };
 
 struct ivi_surface;
 
+enum ivi_output_type {
+       OUTPUT_LOCAL,
+       OUTPUT_REMOTE,
+       /* same as remote but we need to signal the transmitter plug-in
+        * for the surfaces to have to be forwarded to those remoted outputs */
+       OUTPUT_WALTHAM,
+};
+
 struct ivi_output {
        struct wl_list link; /* ivi_compositor.outputs */
        struct ivi_compositor *ivi;
@@ -129,6 +167,10 @@ struct ivi_output {
         */
        struct weston_geometry area;
        struct weston_geometry area_saved;
+       /*
+        * Potential user-specified non-default activation area
+        */
+       struct weston_geometry area_activation;
 
        struct ivi_surface *active;
        struct ivi_surface *previous_active;
@@ -138,6 +180,7 @@ struct ivi_output {
        struct weston_head *add[8];
 
        char *app_id;
+       enum ivi_output_type type;
 };
 
 enum ivi_surface_role {
@@ -152,10 +195,16 @@ enum ivi_surface_role {
        IVI_SURFACE_ROLE_REMOTE,
 };
 
+struct ivi_bounding_box {
+       int x; int y;
+       int width; int height;
+};
+
 struct pending_popup {
        struct ivi_output *ioutput;
        char *app_id;
        int x; int y;
+       struct ivi_bounding_box bb;
 
        struct wl_list link;    /** ivi_compositor::popup_pending_surfaces */
 };
@@ -190,8 +239,8 @@ struct ivi_background_surface {
 
 struct ivi_popup_surface {
        struct ivi_output *output;
-       int x;
-       int y;
+       int x; int y; /* initial position */
+       struct ivi_bounding_box bb;     /* bounding box */
 };
 
 struct ivi_fullscreen_surface {
@@ -218,19 +267,38 @@ enum ivi_surface_flags {
        IVI_SURFACE_PROP_POSITION = (1 << 1),
 };
 
+/* the waltham surface is a pointer type as well and
+ * in order to avoid adding ifdef for waltham use a
+ * generic pointer, which will be only be valid when the
+ * surface is a remote out on a waltham type of output */
+struct ivi_surface_waltham {
+       void *transmitter_surface;
+};
+
 struct ivi_surface {
        struct ivi_compositor *ivi;
        struct weston_desktop_surface *dsurface;
        struct weston_view *view;
+       struct ivi_output *hidden_layer_output;
+       struct ivi_output *current_completed_output;
 
        struct wl_list link;
+       int focus_count;
 
        struct {
                enum ivi_surface_flags flags;
                int32_t x, y;
                int32_t width, height;
        } pending;
-       bool activated_by_default;
+       bool mapped;
+       bool advertised_on_launch;
+       bool checked_pending;
+       enum {
+               NORMAL,
+               RESIZING,
+               FULLSCREEN,
+               HIDDEN,
+       } state;
 
        enum ivi_surface_role role;
        union {
@@ -242,6 +310,23 @@ struct ivi_surface {
                struct ivi_split_surface split;
                struct ivi_remote_surface remote;
        };
+
+       struct ivi_surface_waltham waltham_surface;
+       struct wl_listener listener_advertise_app;
+       struct wl_signal signal_advertise_app;
+};
+
+struct ivi_shell_seat {
+       struct weston_seat *seat;
+       struct weston_surface *focused_surface;
+
+       bool disable_cursor;
+       bool new_caps_sent;
+
+       struct wl_listener seat_destroy_listener;
+       struct wl_listener caps_changed_listener;
+       struct wl_listener keyboard_focus_listener;
+       struct wl_listener pointer_focus_listener;
 };
 
 struct ivi_shell_client {
@@ -278,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);
@@ -325,10 +410,10 @@ void
 ivi_layout_activate(struct ivi_output *output, const char *app_id);
 
 void
-ivi_layout_desktop_committed(struct ivi_surface *surf);
+ivi_layout_activate_by_surf(struct ivi_output *output, struct ivi_surface *surf);
 
 void
-ivi_layout_panel_committed(struct ivi_surface *surface);
+ivi_layout_desktop_committed(struct ivi_surface *surf);
 
 void
 ivi_layout_popup_committed(struct ivi_surface *surface);
@@ -350,12 +435,72 @@ struct ivi_output *
 ivi_layout_get_output_from_surface(struct ivi_surface *surf);
 
 void
-insert_black_surface(struct ivi_output *output);
+insert_black_curtain(struct ivi_output *output);
 
 void
-remove_black_surface(struct ivi_output *output);
+remove_black_curtain(struct ivi_output *output);
+
+bool
+output_has_black_curtain(struct ivi_output *output);
 
 const char *
 ivi_layout_get_surface_role_name(struct ivi_surface *surf);
 
+void
+ivi_set_pending_desktop_surface_remote(struct ivi_output *ioutput,
+               const char *app_id);
+
+struct ivi_output *
+ivi_layout_find_with_app_id(const char *app_id, struct ivi_compositor *ivi);
+
+void
+shell_advertise_app_state(struct ivi_compositor *ivi, const char *app_id,
+                         const char *data, uint32_t app_state);
+void
+ivi_screenshooter_create(struct ivi_compositor *ivi);
+
+void
+ivi_seat_init(struct ivi_compositor *ivi);
+
+void
+ivi_seat_reset_caps_sent(struct ivi_compositor *ivi);
+
+void
+agl_shell_desktop_advertise_application_id(struct ivi_compositor *ivi,
+                                          struct ivi_surface *surface);
+void
+ivi_destroy_waltham_destroy(struct ivi_surface *surface);
+
+void
+ivi_check_pending_surface_desktop(struct ivi_surface *surface,
+                                 enum ivi_surface_role *role);
+
+struct ivi_output *
+ivi_layout_find_bg_output(struct ivi_compositor *ivi);
+void
+ivi_compositor_destroy_pending_surfaces(struct ivi_compositor *ivi);
+
+void
+ivi_shell_finalize(struct ivi_compositor *ivi);
+
+struct ivi_surface *
+get_ivi_shell_surface(struct weston_surface *surface);
+
+struct ivi_shell_seat *
+get_ivi_shell_seat(struct weston_seat *seat);
+
+struct weston_seat *
+get_ivi_shell_weston_first_seat(struct ivi_compositor *ivi);
+
+void
+ivi_shell_activate_surface(struct ivi_surface *ivi_surf,
+                          struct ivi_shell_seat *ivi_seat,
+                          uint32_t flags);
+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