2 * Copyright © 2019 Collabora, Ltd.
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial
14 * portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 #include "ivi-compositor.h"
28 #include "shared/helpers.h"
33 #include <libweston/libweston.h>
34 #include <libweston-desktop/libweston-desktop.h>
36 #include "agl-shell-desktop-server-protocol.h"
38 #define AGL_COMP_DEBUG
40 static const char *ivi_roles_as_string[] = {
41 [IVI_SURFACE_ROLE_NONE] = "NONE",
42 [IVI_SURFACE_ROLE_BACKGROUND] = "BACKGROUND",
43 [IVI_SURFACE_ROLE_PANEL] = "PANEL",
44 [IVI_SURFACE_ROLE_DESKTOP] = "DESKTOP",
45 [IVI_SURFACE_ROLE_POPUP] = "POPUP",
46 [IVI_SURFACE_ROLE_SPLIT_H] = "SPLIT_H",
47 [IVI_SURFACE_ROLE_SPLIT_V] = "SPLIT_V",
48 [IVI_SURFACE_ROLE_FULLSCREEN] = "FULLSCREEN",
49 [IVI_SURFACE_ROLE_REMOTE] = "REMOTE",
53 ivi_layout_get_surface_role_name(struct ivi_surface *surf)
55 if (surf->role < 0 || surf->role >= ARRAY_LENGTH(ivi_roles_as_string))
56 return " unknown surface role";
58 return ivi_roles_as_string[surf->role];
62 ivi_background_init(struct ivi_compositor *ivi, struct ivi_output *output)
64 struct weston_output *woutput = output->output;
65 struct ivi_surface *bg = output->background;
66 struct weston_view *view;
69 weston_log("WARNING: Output does not have a background\n");
73 assert(bg->role == IVI_SURFACE_ROLE_BACKGROUND);
77 weston_view_set_output(view, woutput);
78 weston_view_set_position(view, woutput->x, woutput->y);
80 weston_log("(background) position view %p, x %d, y %d, on output %s\n", view,
81 woutput->x, woutput->y, output->name);
83 view->is_mapped = true;
84 view->surface->is_mapped = true;
86 weston_layer_entry_insert(&ivi->background.view_list, &view->layer_link);
90 ivi_panel_init(struct ivi_compositor *ivi, struct ivi_output *output,
91 struct ivi_surface *panel)
93 struct weston_output *woutput = output->output;
94 struct weston_desktop_surface *dsurface;
95 struct weston_view *view;
96 struct weston_geometry geom;
103 assert(panel->role == IVI_SURFACE_ROLE_PANEL);
104 dsurface = panel->dsurface;
106 geom = weston_desktop_surface_get_geometry(dsurface);
108 weston_log("(panel) geom.width %d, geom.height %d, geom.x %d, geom.y %d\n",
109 geom.width, geom.height, geom.x, geom.y);
111 switch (panel->panel.edge) {
112 case AGL_SHELL_EDGE_TOP:
113 output->area.y += geom.height;
114 output->area.height -= geom.height;
116 case AGL_SHELL_EDGE_BOTTOM:
117 y += woutput->height - geom.height;
118 output->area.height -= geom.height;
120 case AGL_SHELL_EDGE_LEFT:
121 output->area.x += geom.width;
122 output->area.width -= geom.width;
124 case AGL_SHELL_EDGE_RIGHT:
125 x += woutput->width - geom.width;
126 output->area.width -= geom.width;
133 weston_view_set_output(view, woutput);
134 weston_view_set_position(view, x, y);
136 weston_log("(panel) edge %d position view %p, x %d, y %d\n",
137 panel->panel.edge, view, x, y);
139 view->is_mapped = true;
140 view->surface->is_mapped = true;
142 weston_log("panel type %d inited on output %s\n", panel->panel.edge,
145 weston_layer_entry_insert(&ivi->panel.view_list, &view->layer_link);
149 * Initializes all static parts of the layout, i.e. the background and panels.
152 ivi_layout_init(struct ivi_compositor *ivi, struct ivi_output *output)
154 ivi_background_init(ivi, output);
158 output->area.width = output->output->width;
159 output->area.height = output->output->height;
161 ivi_panel_init(ivi, output, output->top);
162 ivi_panel_init(ivi, output, output->bottom);
163 ivi_panel_init(ivi, output, output->left);
164 ivi_panel_init(ivi, output, output->right);
166 weston_compositor_schedule_repaint(ivi->compositor);
168 weston_log("Usable area: %dx%d+%d,%d\n",
169 output->area.width, output->area.height,
170 output->area.x, output->area.y);
174 ivi_find_app(struct ivi_compositor *ivi, const char *app_id)
176 struct ivi_surface *surf;
179 wl_list_for_each(surf, &ivi->surfaces, link) {
180 id = weston_desktop_surface_get_app_id(surf->dsurface);
181 if (id && strcmp(app_id, id) == 0)
189 ivi_layout_activate_complete(struct ivi_output *output,
190 struct ivi_surface *surf)
192 struct ivi_compositor *ivi = output->ivi;
193 struct weston_output *woutput = output->output;
194 struct weston_view *view = surf->view;
196 if (weston_view_is_mapped(view)) {
197 weston_layer_entry_remove(&view->layer_link);
200 weston_view_set_output(view, woutput);
201 weston_view_set_position(view,
202 woutput->x + output->area.x,
203 woutput->y + output->area.y);
205 view->is_mapped = true;
206 view->surface->is_mapped = true;
208 if (output->active) {
209 output->active->view->is_mapped = false;
210 output->active->view->surface->is_mapped = false;
212 weston_layer_entry_remove(&output->active->view->layer_link);
214 output->previous_active = output->active;
215 output->active = surf;
217 weston_layer_entry_insert(&ivi->normal.view_list, &view->layer_link);
218 weston_view_update_transform(view);
220 /* force repaint of the entire output */
221 weston_output_damage(output->output);
224 * the 'remote' role now makes use of this part so make sure we don't
225 * trip the enum such that we might end up with a modified output for
228 if (surf->role == IVI_SURFACE_ROLE_DESKTOP) {
229 if (surf->desktop.pending_output)
230 surf->desktop.last_output = surf->desktop.pending_output;
231 surf->desktop.pending_output = NULL;
234 weston_log("Activation completed for app_id %s, role %s, output %s\n",
235 weston_desktop_surface_get_app_id(surf->dsurface),
236 ivi_layout_get_surface_role_name(surf), output->name);
240 ivi_layout_find_with_app_id(const char *app_id, struct ivi_compositor *ivi)
242 struct ivi_output *out;
247 wl_list_for_each(out, &ivi->outputs, link) {
251 if (!strcmp(app_id, out->app_id))
259 static struct ivi_output *
260 ivi_layout_find_bg_output(struct ivi_compositor *ivi)
262 struct ivi_output *out;
264 wl_list_for_each(out, &ivi->outputs, link) {
265 if (out->background &&
266 out->background->role == IVI_SURFACE_ROLE_BACKGROUND)
274 ivi_layout_desktop_committed(struct ivi_surface *surf)
276 struct weston_desktop_surface *dsurf = surf->dsurface;
277 struct weston_geometry geom = weston_desktop_surface_get_geometry(dsurf);
278 struct ivi_policy *policy = surf->ivi->policy;
279 struct ivi_output *output;
280 const char *app_id = weston_desktop_surface_get_app_id(dsurf);
282 assert(surf->role == IVI_SURFACE_ROLE_DESKTOP ||
283 surf->role == IVI_SURFACE_ROLE_REMOTE);
286 * we can't make use here of the ivi_layout_get_output_from_surface()
287 * due to the fact that we'll always land here when a surface performs
288 * a commit and pending_output will not bet set. This works in tandem
289 * with 'activated_by_default' at this point to avoid tripping over
290 * to a surface that continuously updates its content
292 if (surf->role == IVI_SURFACE_ROLE_DESKTOP)
293 output = surf->desktop.pending_output;
295 output = surf->remote.output;
297 if (surf->role == IVI_SURFACE_ROLE_DESKTOP && !output) {
298 struct ivi_output *r_output;
300 if (policy && policy->api.surface_activate_by_default &&
301 !policy->api.surface_activate_by_default(surf, surf->ivi))
304 /* we can only activate it again by using the protocol */
305 if (surf->activated_by_default)
308 /* check first if there aren't any outputs being set */
309 r_output = ivi_layout_find_with_app_id(app_id, surf->ivi);
312 struct weston_view *view = r_output->fullscreen_view.fs->view;
313 if (view->is_mapped || view->surface->is_mapped)
314 remove_black_surface(r_output);
318 /* try finding an output with a background and use that */
320 r_output = ivi_layout_find_bg_output(surf->ivi);
322 /* if we couldn't still find an output by this point, there's
323 * something wrong so we abort with a protocol error */
325 wl_resource_post_error(surf->ivi->shell_client.resource,
326 AGL_SHELL_ERROR_INVALID_ARGUMENT,
327 "No valid output found to activate surface by default");
331 /* use the output of the bg to activate the app on start-up by
333 if (surf->view && r_output) {
334 if (app_id && r_output) {
335 weston_log("Surface with app_id %s, role %s activating by default\n",
336 weston_desktop_surface_get_app_id(surf->dsurface),
337 ivi_layout_get_surface_role_name(surf));
338 ivi_layout_activate(r_output, app_id);
339 surf->activated_by_default = true;
340 } else if (!app_id) {
342 * applications not setting an app_id, or
343 * setting an app_id but at a later point in
344 * time, might fall-back here so give them a
345 * chance to receive the configure event and
348 weston_log("Surface no app_id, role %s activating by default\n",
349 ivi_layout_get_surface_role_name(surf));
350 ivi_layout_activate_by_surf(r_output, surf);
351 surf->activated_by_default = true;
358 if (surf->role == IVI_SURFACE_ROLE_REMOTE && output) {
359 if (policy && policy->api.surface_activate_by_default &&
360 !policy->api.surface_activate_by_default(surf, surf->ivi))
363 /* we can only activate it again by using the protocol, but
364 * additionally the output is not reset when
365 * ivi_layout_activate_complete() terminates so we use the
366 * current active surface to avoid hitting this again and again
368 if (surf->activated_by_default && output->active == surf)
372 weston_log("Surface with app_id %s, role %s activating by default\n",
373 weston_desktop_surface_get_app_id(surf->dsurface),
374 ivi_layout_get_surface_role_name(surf));
375 ivi_layout_activate(output, app_id);
376 surf->activated_by_default = true;
381 if (!weston_desktop_surface_get_maximized(dsurf) ||
382 geom.width != output->area.width ||
383 geom.height != output->area.height)
386 ivi_layout_activate_complete(output, surf);
390 ivi_layout_fullscreen_committed(struct ivi_surface *surface)
392 struct ivi_compositor *ivi = surface->ivi;
393 struct ivi_policy *policy = ivi->policy;
395 struct weston_desktop_surface *dsurface = surface->dsurface;
396 struct weston_surface *wsurface =
397 weston_desktop_surface_get_surface(dsurface);
398 const char *app_id = weston_desktop_surface_get_app_id(dsurface);
400 struct ivi_output *output = surface->split.output;
401 struct weston_output *woutput = output->output;
403 struct weston_view *view = surface->view;
404 struct weston_geometry geom;
406 if (policy && policy->api.surface_activate_by_default &&
407 !policy->api.surface_activate_by_default(surface, surface->ivi) &&
408 !surface->activated_by_default)
411 if (surface->view->is_mapped)
414 geom = weston_desktop_surface_get_geometry(dsurface);
415 weston_log("(fs) geom x %d, y %d, width %d, height %d\n", geom.x, geom.y,
416 geom.width, geom.height);
418 assert(surface->role == IVI_SURFACE_ROLE_FULLSCREEN);
420 weston_desktop_surface_set_fullscreen(dsurface, true);
422 weston_view_set_output(view, woutput);
423 weston_view_set_position(view, woutput->x, woutput->y);
424 weston_layer_entry_insert(&ivi->fullscreen.view_list, &view->layer_link);
426 weston_view_update_transform(view);
427 weston_view_damage_below(view);
429 wsurface->is_mapped = true;
430 surface->view->is_mapped = true;
432 shell_advertise_app_state(ivi, app_id,
433 NULL, AGL_SHELL_DESKTOP_APP_STATE_ACTIVATED);
435 weston_log("Activation completed for app_id %s, role %s, output %s\n",
436 app_id, ivi_layout_get_surface_role_name(surface), output->name);
440 ivi_layout_desktop_resize(struct ivi_surface *surface,
441 struct weston_geometry area)
443 struct weston_desktop_surface *dsurf = surface->dsurface;
444 struct weston_view *view = surface->view;
448 int width = area.width;
449 int height = area.height;
451 weston_desktop_surface_set_size(dsurf,
454 weston_view_set_position(view, x, y);
455 weston_view_update_transform(view);
456 weston_view_damage_below(view);
460 ivi_layout_split_committed(struct ivi_surface *surface)
462 struct ivi_compositor *ivi = surface->ivi;
463 struct ivi_policy *policy = ivi->policy;
465 struct weston_desktop_surface *dsurface = surface->dsurface;
466 struct weston_surface *wsurface =
467 weston_desktop_surface_get_surface(dsurface);
468 const char *app_id = weston_desktop_surface_get_app_id(dsurface);
470 struct ivi_output *output = surface->split.output;
471 struct weston_output *woutput = output->output;
473 struct weston_view *view = surface->view;
474 struct weston_geometry geom;
482 if (policy && policy->api.surface_activate_by_default &&
483 !policy->api.surface_activate_by_default(surface, surface->ivi) &&
484 !surface->activated_by_default)
487 if (surface->view->is_mapped)
490 geom = weston_desktop_surface_get_geometry(dsurface);
492 assert(surface->role == IVI_SURFACE_ROLE_SPLIT_H ||
493 surface->role == IVI_SURFACE_ROLE_SPLIT_V);
495 /* save the previous area in order to recover it back when if this kind
496 * of surface is being destroyed/removed */
497 output->area_saved = output->area;
499 switch (surface->role) {
500 case IVI_SURFACE_ROLE_SPLIT_V:
501 if (geom.width == woutput->width &&
502 geom.height == woutput->height)
503 geom.width = (output->area.width / 2);
505 x += woutput->width - geom.width;
506 output->area.width -= geom.width;
508 width = woutput->width - x;
509 height = output->area.height;
513 case IVI_SURFACE_ROLE_SPLIT_H:
514 if (geom.width == woutput->width &&
515 geom.height == woutput->height)
516 geom.height = (output->area.height / 2);
519 output->area.y += geom.height;
520 output->area.height -= geom.height;
522 width = output->area.width;
523 height = output->area.height;
529 assert(!"Invalid split orientation\n");
532 weston_desktop_surface_set_size(dsurface,
535 /* resize the active surface first, output->area already contains
536 * correct area to resize to */
538 ivi_layout_desktop_resize(output->active, output->area);
540 weston_view_set_output(view, woutput);
541 weston_view_set_position(view, x, y);
542 weston_layer_entry_insert(&ivi->normal.view_list, &view->layer_link);
544 weston_view_update_transform(view);
545 weston_view_damage_below(view);
547 wsurface->is_mapped = true;
548 surface->view->is_mapped = true;
550 shell_advertise_app_state(ivi, app_id,
551 NULL, AGL_SHELL_DESKTOP_APP_STATE_ACTIVATED);
553 weston_log("Activation completed for app_id %s, role %s, output %s\n",
554 app_id, ivi_layout_get_surface_role_name(surface), output->name);
558 ivi_layout_popup_committed(struct ivi_surface *surface)
560 struct ivi_compositor *ivi = surface->ivi;
561 struct ivi_policy *policy = ivi->policy;
563 struct weston_desktop_surface *dsurface = surface->dsurface;
564 struct weston_surface *wsurface =
565 weston_desktop_surface_get_surface(dsurface);
566 const char *app_id = weston_desktop_surface_get_app_id(dsurface);
568 struct ivi_output *output = surface->popup.output;
569 struct weston_output *woutput = output->output;
571 struct weston_view *view = surface->view;
573 if (policy && policy->api.surface_activate_by_default &&
574 !policy->api.surface_activate_by_default(surface, surface->ivi) &&
575 !surface->activated_by_default)
578 if (surface->view->is_mapped)
581 assert(surface->role == IVI_SURFACE_ROLE_POPUP);
583 weston_view_set_output(view, woutput);
584 weston_view_set_position(view, surface->popup.x, surface->popup.y);
586 /* only clip the pop-up dialog window if we have a valid
587 * width and height being passed on. Users might not want to have one
588 * set-up so only enfore it is really passed on. */
589 if (surface->popup.bb.width > 0 && surface->popup.bb.height > 0)
590 weston_view_set_mask(view, surface->popup.bb.x, surface->popup.bb.y,
591 surface->popup.bb.width, surface->popup.bb.height);
593 weston_layer_entry_insert(&ivi->popup.view_list, &view->layer_link);
595 weston_view_update_transform(view);
596 weston_view_damage_below(view);
598 wsurface->is_mapped = true;
599 surface->view->is_mapped = true;
601 shell_advertise_app_state(ivi, app_id,
602 NULL, AGL_SHELL_DESKTOP_APP_STATE_ACTIVATED);
604 weston_log("Activation completed for app_id %s, role %s, output %s\n",
605 app_id, ivi_layout_get_surface_role_name(surface), output->name);
609 ivi_layout_popup_re_add(struct ivi_surface *surface)
611 assert(surface->role == IVI_SURFACE_ROLE_POPUP);
612 struct weston_view *view = surface->view;
614 if (weston_view_is_mapped(view)) {
615 struct weston_desktop_surface *dsurface = surface->dsurface;
616 struct weston_surface *wsurface =
617 weston_desktop_surface_get_surface(dsurface);
619 weston_layer_entry_remove(&view->layer_link);
621 wsurface->is_mapped = false;
622 view->is_mapped = false;
625 /* reset the activate by default in order to (still) allow the surface
626 * to be activaved using the request */
627 if (!surface->activated_by_default)
628 surface->activated_by_default = true;
630 ivi_layout_popup_committed(surface);
634 ivi_layout_surface_is_split_or_fullscreen(struct ivi_surface *surf)
636 struct ivi_compositor *ivi = surf->ivi;
637 struct ivi_surface *is;
639 if (surf->role != IVI_SURFACE_ROLE_SPLIT_H &&
640 surf->role != IVI_SURFACE_ROLE_SPLIT_V &&
641 surf->role != IVI_SURFACE_ROLE_FULLSCREEN)
644 /* reset the activate by default in order to (still) allow the surface
645 * to be activaved using the request */
646 if (!surf->activated_by_default)
647 surf->activated_by_default = true;
649 wl_list_for_each(is, &ivi->surfaces, link)
657 ivi_layout_activate_by_surf(struct ivi_output *output, struct ivi_surface *surf)
659 struct ivi_compositor *ivi = output->ivi;
660 struct weston_desktop_surface *dsurf;
661 struct weston_view *view;
662 struct weston_geometry geom;
663 struct ivi_policy *policy = output->ivi->policy;
665 dsurf = surf->dsurface;
668 const char *app_id = weston_desktop_surface_get_app_id(dsurf);
673 if (policy && policy->api.surface_activate &&
674 !policy->api.surface_activate(surf, surf->ivi)) {
678 #ifdef AGL_COMP_DEBUG
679 weston_log("Activating app_id %s, type %s\n", app_id,
680 ivi_layout_get_surface_role_name(surf));
683 if (surf->role == IVI_SURFACE_ROLE_POPUP) {
684 ivi_layout_popup_re_add(surf);
688 /* do not 're'-activate surfaces that are split or active */
689 if (surf == output->active ||
690 ivi_layout_surface_is_split_or_fullscreen(surf))
693 if (surf->role == IVI_SURFACE_ROLE_REMOTE) {
694 struct ivi_output *remote_output =
695 ivi_layout_find_with_app_id(app_id, ivi);
697 /* if already active on a remote output do not
698 * attempt to activate it again */
699 if (remote_output && remote_output->active == surf)
704 geom = weston_desktop_surface_get_geometry(dsurf);
706 if (surf->role == IVI_SURFACE_ROLE_DESKTOP)
707 surf->desktop.pending_output = output;
708 if (weston_desktop_surface_get_maximized(dsurf) &&
709 geom.width == output->area.width &&
710 geom.height == output->area.height) {
711 ivi_layout_activate_complete(output, surf);
715 weston_desktop_surface_set_maximized(dsurf, true);
716 weston_desktop_surface_set_size(dsurf,
718 output->area.height);
720 weston_log("Setting app_id %s, role %s, set to maximized (%dx%d)\n",
721 app_id, ivi_layout_get_surface_role_name(surf),
722 output->area.width, output->area.height);
724 * If the view isn't mapped, we put it onto the hidden layer so it will
725 * start receiving frame events, and will be able to act on our
728 if (!weston_view_is_mapped(view)) {
729 view->is_mapped = true;
730 view->surface->is_mapped = true;
732 weston_view_set_output(view, output->output);
733 weston_layer_entry_insert(&ivi->hidden.view_list, &view->layer_link);
734 /* force repaint of the entire output */
736 weston_log("Placed app_id %s, type %s in hidden layer\n",
737 app_id, ivi_layout_get_surface_role_name(surf));
738 weston_output_damage(output->output);
743 ivi_layout_activate(struct ivi_output *output, const char *app_id)
745 struct ivi_surface *surf;
746 struct ivi_compositor *ivi = output->ivi;
748 surf = ivi_find_app(ivi, app_id);
752 ivi_layout_activate_by_surf(output, surf);
756 ivi_layout_get_output_from_surface(struct ivi_surface *surf)
758 struct ivi_output *ivi_output = NULL;
760 switch (surf->role) {
761 case IVI_SURFACE_ROLE_DESKTOP:
762 if (surf->desktop.pending_output)
763 ivi_output = surf->desktop.pending_output;
765 ivi_output = surf->desktop.last_output;
767 case IVI_SURFACE_ROLE_POPUP:
768 ivi_output = surf->popup.output;
770 case IVI_SURFACE_ROLE_BACKGROUND:
771 ivi_output = surf->bg.output;
773 case IVI_SURFACE_ROLE_PANEL:
774 ivi_output = surf->panel.output;
776 case IVI_SURFACE_ROLE_FULLSCREEN:
777 ivi_output = surf->fullscreen.output;
779 case IVI_SURFACE_ROLE_SPLIT_H:
780 case IVI_SURFACE_ROLE_SPLIT_V:
781 ivi_output = surf->split.output;
783 case IVI_SURFACE_ROLE_REMOTE:
784 ivi_output = surf->remote.output;
786 case IVI_SURFACE_ROLE_NONE:
795 ivi_layout_deactivate(struct ivi_compositor *ivi, const char *app_id)
797 struct ivi_surface *surf;
798 struct ivi_output *ivi_output;
799 struct ivi_policy *policy = ivi->policy;
801 surf = ivi_find_app(ivi, app_id);
805 if (policy && policy->api.surface_deactivate &&
806 !policy->api.surface_deactivate(surf, surf->ivi)) {
810 ivi_output = ivi_layout_get_output_from_surface(surf);
811 weston_log("Deactiving %s, role %s\n", app_id,
812 ivi_layout_get_surface_role_name(surf));
814 if (surf->role == IVI_SURFACE_ROLE_DESKTOP) {
815 struct ivi_surface *previous_active;
817 previous_active = ivi_output->previous_active;
818 if (!previous_active) {
819 /* we don't have a previous active it means we should
821 if (ivi_output->active) {
822 struct weston_view *view;
824 view = ivi_output->active->view;
825 view->is_mapped = false;
826 view->surface->is_mapped = false;
828 weston_layer_entry_remove(&view->layer_link);
829 weston_output_damage(ivi_output->output);
830 ivi_output->active = NULL;
833 struct weston_desktop_surface *dsurface;
834 const char *previous_active_app_id;
836 dsurface = previous_active->dsurface;
837 previous_active_app_id =
838 weston_desktop_surface_get_app_id(dsurface);
839 ivi_layout_activate(ivi_output, previous_active_app_id);
841 } else if (surf->role == IVI_SURFACE_ROLE_POPUP) {
842 struct weston_view *view = surf->view;
844 weston_layer_entry_remove(&view->layer_link);
845 weston_view_damage_below(view);