X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fdesktop.c;h=b9e45da94eb2566ae6ee58a91cfe31aacbf58d41;hb=f88d870a4b6bd69460ddbb11c03c3a61b64da5cb;hp=8515a32705e0d3660b6f2a0bfa9120691a09f985;hpb=a2f9566bdbfcb8ee05a1f0bf5b908a93bcc85f33;p=src%2Fagl-compositor.git diff --git a/src/desktop.c b/src/desktop.c index 8515a32..b9e45da 100644 --- a/src/desktop.c +++ b/src/desktop.c @@ -23,6 +23,7 @@ * SOFTWARE. */ +#include #include "ivi-compositor.h" #include "policy.h" @@ -92,10 +93,7 @@ desktop_surface_added(struct weston_desktop_surface *dsurface, void *userdata) weston_desktop_surface_set_user_data(dsurface, surface); if (ivi->shell_client.ready) { - if (ivi_check_pending_desktop_surface_popup(surface)) - ivi_set_desktop_surface_popup(surface); - else - ivi_set_desktop_surface(surface); + ivi_check_pending_desktop_surface(surface); } else { /* * We delay creating "normal" desktop surfaces until later, to @@ -114,14 +112,18 @@ desktop_surface_removed(struct weston_desktop_surface *dsurface, void *userdata) struct weston_surface *wsurface = weston_desktop_surface_get_surface(dsurface); - struct ivi_output *output; + struct ivi_output *output = ivi_layout_get_output_from_surface(surface); + assert(output != NULL); - if (surface->role == IVI_SURFACE_ROLE_DESKTOP) - output = surface->desktop.last_output; - else if (surface->role == IVI_SURFACE_ROLE_POPUP) - output = surface->popup.output; - else - return; + /* resize the active surface to the original size */ + if (surface->role == IVI_SURFACE_ROLE_SPLIT_H || + surface->role == IVI_SURFACE_ROLE_SPLIT_V) { + if (output && output->active) { + ivi_layout_desktop_resize(output->active, output->area_saved); + } + /* restore the area back so we can re-use it again if needed */ + output->area = output->area_saved; + } /* reset the active surface as well */ if (output && output->active && output->active == surface) { @@ -179,6 +181,7 @@ desktop_committed(struct weston_desktop_surface *dsurface, switch (surface->role) { case IVI_SURFACE_ROLE_DESKTOP: + case IVI_SURFACE_ROLE_REMOTE: ivi_layout_desktop_committed(surface); break; case IVI_SURFACE_ROLE_PANEL: @@ -187,6 +190,13 @@ desktop_committed(struct weston_desktop_surface *dsurface, case IVI_SURFACE_ROLE_POPUP: ivi_layout_popup_committed(surface); break; + case IVI_SURFACE_ROLE_FULLSCREEN: + ivi_layout_fullscreen_committed(surface); + break; + case IVI_SURFACE_ROLE_SPLIT_H: + case IVI_SURFACE_ROLE_SPLIT_V: + ivi_layout_split_committed(surface); + break; case IVI_SURFACE_ROLE_NONE: case IVI_SURFACE_ROLE_BACKGROUND: default: /* fall through */