X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fdesktop.c;h=03a21865af21984f9c3b282d05b191d8a66508f0;hb=401773a463992f926086b178caff14dd55dbd148;hp=7c6c19adfe935bff9fb4031079a750d046a6aed6;hpb=98457c49f5d777e4023082363b814826c21092df;p=src%2Fagl-compositor.git diff --git a/src/desktop.c b/src/desktop.c index 7c6c19a..03a2186 100644 --- a/src/desktop.c +++ b/src/desktop.c @@ -80,6 +80,7 @@ desktop_surface_added(struct weston_desktop_surface *dsurface, void *userdata) surface->ivi = ivi; surface->dsurface = dsurface; surface->role = IVI_SURFACE_ROLE_NONE; + surface->activated_by_default = false; if (ivi->policy && ivi->policy->api.surface_create && !ivi->policy->api.surface_create(surface, ivi)) { @@ -91,7 +92,10 @@ desktop_surface_added(struct weston_desktop_surface *dsurface, void *userdata) weston_desktop_surface_set_user_data(dsurface, surface); if (ivi->shell_client.ready) { - ivi_set_desktop_surface(surface); + if (ivi_check_pending_desktop_surface_popup(surface)) + ivi_set_desktop_surface_popup(surface); + else + ivi_set_desktop_surface(surface); } else { /* * We delay creating "normal" desktop surfaces until later, to @@ -110,14 +114,17 @@ desktop_surface_removed(struct weston_desktop_surface *dsurface, void *userdata) struct weston_surface *wsurface = weston_desktop_surface_get_surface(dsurface); - struct ivi_output *output = surface->desktop.last_output; + struct ivi_output *output; - /* TODO */ - if (surface->role != IVI_SURFACE_ROLE_DESKTOP) + 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; /* reset the active surface as well */ - if (output && output->active) { + if (output && output->active && output->active == surface) { output->active->view->is_mapped = false; output->active->view->surface->is_mapped = false; @@ -154,6 +161,9 @@ desktop_committed(struct weston_desktop_surface *dsurface, case IVI_SURFACE_ROLE_PANEL: ivi_layout_panel_committed(surface); break; + case IVI_SURFACE_ROLE_POPUP: + ivi_layout_popup_committed(surface); + break; case IVI_SURFACE_ROLE_NONE: case IVI_SURFACE_ROLE_BACKGROUND: default: /* fall through */