X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fivi-compositor.h;h=91b53405d3fd7a7f3c31013d57bc321415228a99;hb=401773a463992f926086b178caff14dd55dbd148;hp=8631477d1875426e354c730d5ac2584af4d7a00d;hpb=a35a7f2e5cc20bd40ece91918e753c709e2ee10b;p=src%2Fagl-compositor.git diff --git a/src/ivi-compositor.h b/src/ivi-compositor.h index 8631477..91b5340 100644 --- a/src/ivi-compositor.h +++ b/src/ivi-compositor.h @@ -36,10 +36,11 @@ #include "agl-shell-server-protocol.h" -#define ARRAY_LENGTH(x) (sizeof(x) / sizeof((x)[0])) +struct ivi_compositor; struct desktop_client { struct wl_resource *resource; + struct ivi_compositor *ivi; struct wl_list link; /* ivi_compositor::desktop_clients */ }; @@ -69,7 +70,7 @@ struct ivi_compositor { struct wl_global *agl_shell; struct wl_global *agl_shell_desktop; struct { - int activate_apps_by_default; /* switches once xdg top level has been 'created' */ + bool activate_apps_by_default; /* switches once xdg top level has been 'created' */ } quirks; struct { @@ -84,13 +85,16 @@ struct ivi_compositor { struct wl_list surfaces; /* ivi_surface.link */ struct weston_desktop *desktop; + struct ivi_policy *policy; struct wl_list pending_surfaces; + struct wl_list popup_pending_apps; struct weston_layer hidden; struct weston_layer background; struct weston_layer normal; struct weston_layer panel; + struct weston_layer popup; struct weston_layer fullscreen; }; @@ -126,6 +130,7 @@ struct ivi_output { struct weston_geometry area; struct ivi_surface *active; + struct ivi_surface *previous_active; /* Temporary: only used during configuration */ size_t add_len; @@ -137,6 +142,15 @@ enum ivi_surface_role { IVI_SURFACE_ROLE_DESKTOP, IVI_SURFACE_ROLE_BACKGROUND, IVI_SURFACE_ROLE_PANEL, + IVI_SURFACE_ROLE_POPUP, +}; + +struct pending_popup { + struct ivi_output *ioutput; + char *app_id; + int x; int y; + + struct wl_list link; /** ivi_compositor::popup_pending_surfaces */ }; struct ivi_desktop_surface { @@ -148,6 +162,12 @@ struct ivi_background_surface { struct ivi_output *output; }; +struct ivi_popup_surface { + struct ivi_output *output; + int x; + int y; +}; + struct ivi_panel_surface { struct ivi_output *output; enum agl_shell_edge edge; @@ -171,12 +191,14 @@ struct ivi_surface { int32_t x, y; int32_t width, height; } pending; + bool activated_by_default; enum ivi_surface_role role; union { struct ivi_desktop_surface desktop; struct ivi_background_surface bg; struct ivi_panel_surface panel; + struct ivi_popup_surface popup; }; }; @@ -228,6 +250,15 @@ to_ivi_output(struct weston_output *o); void ivi_set_desktop_surface(struct ivi_surface *surface); +/* + * removes the pending popup one + */ +bool +ivi_check_pending_desktop_surface_popup(struct ivi_surface *surface); + +void +ivi_set_desktop_surface_popup(struct ivi_surface *surface); + void ivi_reflow_outputs(struct ivi_compositor *ivi); @@ -242,6 +273,9 @@ ivi_layout_set_position(struct ivi_surface *surface, int32_t x, int32_t y, int32_t width, int32_t height); +struct ivi_surface * +ivi_find_app(struct ivi_compositor *ivi, const char *app_id); + void ivi_layout_commit(struct ivi_compositor *ivi); @@ -257,4 +291,10 @@ ivi_layout_desktop_committed(struct ivi_surface *surf); void ivi_layout_panel_committed(struct ivi_surface *surface); +void +ivi_layout_popup_committed(struct ivi_surface *surface); + +void +ivi_layout_deactivate(struct ivi_compositor *ivi, const char *app_id); + #endif