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"
32 #include <libweston/libweston.h>
33 #include <libweston-desktop/libweston-desktop.h>
35 #include "agl-shell-desktop-server-protocol.h"
37 #define AGL_COMP_DEBUG
40 ivi_background_init(struct ivi_compositor *ivi, struct ivi_output *output)
42 struct weston_output *woutput = output->output;
43 struct ivi_surface *bg = output->background;
44 struct weston_view *view;
47 weston_log("WARNING: Output does not have a background\n");
51 assert(bg->role == IVI_SURFACE_ROLE_BACKGROUND);
55 weston_view_set_output(view, woutput);
56 weston_view_set_position(view, woutput->x, woutput->y);
59 weston_log("(background) position view %p, x %d, y %d\n", view,
60 woutput->x, woutput->y);
63 view->is_mapped = true;
64 view->surface->is_mapped = true;
66 weston_layer_entry_insert(&ivi->background.view_list, &view->layer_link);
70 ivi_panel_init(struct ivi_compositor *ivi, struct ivi_output *output,
71 struct ivi_surface *panel)
73 struct weston_output *woutput = output->output;
74 struct weston_desktop_surface *dsurface;
75 struct weston_view *view;
76 struct weston_geometry geom;
83 assert(panel->role == IVI_SURFACE_ROLE_PANEL);
84 dsurface = panel->dsurface;
86 geom = weston_desktop_surface_get_geometry(dsurface);
88 weston_log("geom.width %d, geom.height %d, geom.x %d, geom.y %d\n",
89 geom.width, geom.height, geom.x, geom.y);
91 switch (panel->panel.edge) {
92 case AGL_SHELL_EDGE_TOP:
93 output->area.y += geom.height;
94 output->area.height -= geom.height;
96 case AGL_SHELL_EDGE_BOTTOM:
97 y += woutput->height - geom.height;
98 output->area.height -= geom.height;
100 case AGL_SHELL_EDGE_LEFT:
101 output->area.x += geom.width;
102 output->area.width -= geom.width;
104 case AGL_SHELL_EDGE_RIGHT:
105 x += woutput->width - geom.width;
106 output->area.width -= geom.width;
113 weston_view_set_output(view, woutput);
114 weston_view_set_position(view, x, y);
115 #ifdef AGL_COMP_DEBUG
116 weston_log("(panel) edge %d position view %p, x %d, y %d\n",
117 panel->panel.edge, view, x, y);
120 /* this is necessary for cases we already mapped it desktop_committed()
121 * but we not running the older qtwayland, so we still have a chance
122 * for this to run at the next test */
123 if (view->surface->is_mapped) {
124 weston_layer_entry_remove(&view->layer_link);
126 view->is_mapped = false;
127 view->surface->is_mapped = false;
130 /* give ivi_layout_panel_committed() a chance to map the view/surface
132 if ((geom.width == geom.height && geom.width == 0) &&
133 (geom.x == geom.y && geom.x == 0) &&
134 panel->panel.edge != AGL_SHELL_EDGE_TOP)
137 view->is_mapped = true;
138 view->surface->is_mapped = true;
139 #ifdef AGL_COMP_DEBUG
140 weston_log("panel type %d inited\n", panel->panel.edge);
142 weston_layer_entry_insert(&ivi->panel.view_list, &view->layer_link);
146 * Initializes all static parts of the layout, i.e. the background and panels.
149 ivi_layout_init(struct ivi_compositor *ivi, struct ivi_output *output)
151 ivi_background_init(ivi, output);
155 output->area.width = output->output->width;
156 output->area.height = output->output->height;
158 ivi_panel_init(ivi, output, output->top);
159 ivi_panel_init(ivi, output, output->bottom);
160 ivi_panel_init(ivi, output, output->left);
161 ivi_panel_init(ivi, output, output->right);
163 weston_compositor_schedule_repaint(ivi->compositor);
165 weston_log("Usable area: %dx%d+%d,%d\n",
166 output->area.width, output->area.height,
167 output->area.x, output->area.y);
171 ivi_find_app(struct ivi_compositor *ivi, const char *app_id)
173 struct ivi_surface *surf;
176 wl_list_for_each(surf, &ivi->surfaces, link) {
177 id = weston_desktop_surface_get_app_id(surf->dsurface);
178 if (id && strcmp(app_id, id) == 0)
186 ivi_layout_activate_complete(struct ivi_output *output,
187 struct ivi_surface *surf)
189 struct ivi_compositor *ivi = output->ivi;
190 struct weston_output *woutput = output->output;
191 struct weston_view *view = surf->view;
193 if (weston_view_is_mapped(view)) {
194 weston_layer_entry_remove(&view->layer_link);
197 weston_view_set_output(view, woutput);
198 weston_view_set_position(view,
199 woutput->x + output->area.x,
200 woutput->y + output->area.y);
202 view->is_mapped = true;
203 view->surface->is_mapped = true;
205 if (output->active) {
206 output->active->view->is_mapped = false;
207 output->active->view->surface->is_mapped = false;
209 weston_layer_entry_remove(&output->active->view->layer_link);
211 output->previous_active = output->active;
212 output->active = surf;
214 weston_layer_entry_insert(&ivi->normal.view_list, &view->layer_link);
215 weston_view_update_transform(view);
217 /* force repaint of the entire output */
218 weston_output_damage(output->output);
219 surf->desktop.last_output = surf->desktop.pending_output;
220 surf->desktop.pending_output = NULL;
223 static struct ivi_output *
224 ivi_layout_find_bg_output(struct ivi_compositor *ivi)
226 struct ivi_output *out;
228 wl_list_for_each(out, &ivi->outputs, link) {
229 if (out->background &&
230 out->background->role == IVI_SURFACE_ROLE_BACKGROUND)
238 ivi_layout_desktop_committed(struct ivi_surface *surf)
240 struct weston_desktop_surface *dsurf = surf->dsurface;
241 struct weston_geometry geom = weston_desktop_surface_get_geometry(dsurf);
242 struct ivi_output *output;
244 assert(surf->role == IVI_SURFACE_ROLE_DESKTOP);
246 output = surf->desktop.pending_output;
248 struct ivi_output *ivi_bg_output;
249 struct ivi_policy *policy = surf->ivi->policy;
251 if (policy && policy->api.surface_activate_by_default)
252 if (policy->api.surface_activate_by_default(surf, surf->ivi))
253 goto skip_config_check;
255 if (!surf->ivi->quirks.activate_apps_by_default)
259 /* we can only activate it again by using the protocol */
260 if (surf->activated_by_default)
263 ivi_bg_output = ivi_layout_find_bg_output(surf->ivi);
265 /* use the output of the bg to activate the app on start-up by
267 if (surf->view && ivi_bg_output) {
269 weston_desktop_surface_get_app_id(dsurf);
270 if (app_id && ivi_bg_output) {
271 ivi_layout_activate(ivi_bg_output, app_id);
272 surf->activated_by_default = true;
279 if (!weston_desktop_surface_get_maximized(dsurf) ||
280 geom.width != output->area.width ||
281 geom.height != output->area.height)
284 ivi_layout_activate_complete(output, surf);
288 ivi_layout_fs_committed(struct ivi_surface *surface)
290 struct ivi_compositor *ivi = surface->ivi;
292 struct weston_desktop_surface *dsurface = surface->dsurface;
293 struct weston_surface *wsurface =
294 weston_desktop_surface_get_surface(dsurface);
296 struct ivi_output *output = surface->split.output;
297 struct weston_output *woutput = output->output;
299 struct weston_view *view = surface->view;
300 struct weston_geometry geom;
302 if (surface->view->is_mapped)
305 geom = weston_desktop_surface_get_geometry(dsurface);
306 weston_log("(fs) geom x %d, y %d, width %d, height %d\n", geom.x, geom.y,
307 geom.width, geom.height);
309 assert(surface->role == IVI_SURFACE_ROLE_FS);
311 weston_desktop_surface_set_fullscreen(dsurface, true);
313 weston_view_set_output(view, woutput);
314 weston_view_set_position(view, woutput->x, woutput->y);
315 weston_layer_entry_insert(&ivi->fullscreen.view_list, &view->layer_link);
317 weston_view_update_transform(view);
318 weston_view_damage_below(view);
320 wsurface->is_mapped = true;
321 surface->view->is_mapped = true;
325 ivi_layout_desktop_resize(struct ivi_surface *surface,
326 struct weston_geometry area)
328 struct weston_desktop_surface *dsurf = surface->dsurface;
329 struct weston_view *view = surface->view;
333 int width = area.width;
334 int height = area.height;
336 weston_desktop_surface_set_size(dsurf,
339 weston_view_set_position(view, x, y);
340 weston_view_update_transform(view);
341 weston_view_damage_below(view);
345 ivi_layout_split_committed(struct ivi_surface *surface)
347 struct ivi_compositor *ivi = surface->ivi;
349 struct weston_desktop_surface *dsurface = surface->dsurface;
350 struct weston_surface *wsurface =
351 weston_desktop_surface_get_surface(dsurface);
353 struct ivi_output *output = surface->split.output;
354 struct weston_output *woutput = output->output;
356 struct weston_view *view = surface->view;
357 struct weston_geometry geom;
365 if (surface->view->is_mapped)
368 geom = weston_desktop_surface_get_geometry(dsurface);
370 assert(surface->role == IVI_SURFACE_ROLE_SPLIT_H ||
371 surface->role == IVI_SURFACE_ROLE_SPLIT_V);
373 /* save the previous area in order to recover it back when if this kind
374 * of surface is being destroyed/removed */
375 output->area_saved = output->area;
377 switch (surface->role) {
378 case IVI_SURFACE_ROLE_SPLIT_V:
379 if (geom.width == woutput->width &&
380 geom.height == woutput->height)
381 geom.width = (output->area.width / 2);
383 x += woutput->width - geom.width;
384 output->area.width -= geom.width;
386 width = woutput->width - x;
387 height = output->area.height;
391 case IVI_SURFACE_ROLE_SPLIT_H:
392 if (geom.width == woutput->width &&
393 geom.height == woutput->height)
394 geom.height = (output->area.height / 2);
397 output->area.y += geom.height;
398 output->area.height -= geom.height;
400 width = output->area.width;
401 height = output->area.height;
407 assert(!"Invalid split orientation\n");
410 weston_desktop_surface_set_size(dsurface,
413 /* resize the active surface first, output->area already contains
414 * correct area to resize to */
416 ivi_layout_desktop_resize(output->active, output->area);
418 weston_view_set_output(view, woutput);
419 weston_view_set_position(view, x, y);
420 weston_layer_entry_insert(&ivi->normal.view_list, &view->layer_link);
422 weston_view_update_transform(view);
423 weston_view_damage_below(view);
425 wsurface->is_mapped = true;
426 surface->view->is_mapped = true;
430 ivi_layout_popup_committed(struct ivi_surface *surface)
432 struct ivi_compositor *ivi = surface->ivi;
434 struct weston_desktop_surface *dsurface = surface->dsurface;
435 struct weston_surface *wsurface =
436 weston_desktop_surface_get_surface(dsurface);
438 struct ivi_output *output = surface->popup.output;
439 struct weston_output *woutput = output->output;
441 struct weston_view *view = surface->view;
442 struct weston_geometry geom;
444 if (surface->view->is_mapped)
447 geom = weston_desktop_surface_get_geometry(dsurface);
448 weston_log("geom x %d, y %d, width %d, height %d\n", geom.x, geom.y,
449 geom.width, geom.height);
451 assert(surface->role == IVI_SURFACE_ROLE_POPUP);
453 weston_view_set_output(view, woutput);
454 if (surface->popup.x || surface->popup.y)
455 weston_view_set_position(view, surface->popup.x, surface->popup.y);
457 weston_view_set_position(view, geom.x, geom.y);
458 weston_layer_entry_insert(&ivi->popup.view_list, &view->layer_link);
460 weston_view_update_transform(view);
461 weston_view_damage_below(view);
463 wsurface->is_mapped = true;
464 surface->view->is_mapped = true;
468 ivi_layout_popup_re_add(struct ivi_surface *surface)
470 assert(surface->role == IVI_SURFACE_ROLE_POPUP);
471 struct weston_view *view = surface->view;
473 if (weston_view_is_mapped(view)) {
474 struct weston_desktop_surface *dsurface = surface->dsurface;
475 struct weston_surface *wsurface =
476 weston_desktop_surface_get_surface(dsurface);
478 weston_layer_entry_remove(&view->layer_link);
480 wsurface->is_mapped = false;
481 view->is_mapped = false;
484 ivi_layout_popup_committed(surface);
488 ivi_layout_panel_committed(struct ivi_surface *surface)
490 struct ivi_compositor *ivi = surface->ivi;
491 struct ivi_output *output = surface->bg.output;
492 struct weston_output *woutput = output->output;
493 struct weston_desktop_surface *dsurface = surface->dsurface;
494 struct weston_surface *wsurface =
495 weston_desktop_surface_get_surface(dsurface);
496 struct weston_geometry geom;
500 assert(surface->role == IVI_SURFACE_ROLE_PANEL);
503 * If the desktop_surface geometry is not set and the panel is not a
504 * top one, we'll give this a chance to run, as some qtwayland version
505 * seem to have a 'problem', where the panel initilization part will
506 * have a desktop surface with 0 as geometry for *all* its members
507 * (width/height). Doing that will result in the panel not being
510 * Later versions of qtwayland do have the correct window geometry for
511 * the desktop surface so the weston_surface is already mapped in
514 if (wsurface->is_mapped)
517 geom = weston_desktop_surface_get_geometry(dsurface);
519 #ifdef AGL_COMP_DEBUG
520 weston_log("geom.width %d, geom.height %d, geom.x %d, geom.y %d\n",
521 geom.width, geom.height, geom.x, geom.y);
524 switch (surface->panel.edge) {
525 case AGL_SHELL_EDGE_TOP:
528 case AGL_SHELL_EDGE_BOTTOM:
529 y += woutput->height - geom.height;
531 case AGL_SHELL_EDGE_LEFT:
534 case AGL_SHELL_EDGE_RIGHT:
535 x += woutput->width - geom.width;
538 #ifndef AGL_COMP_DEBUG
539 weston_log("panel type %d commited\n", surface->panel.edge);
542 weston_view_set_output(surface->view, woutput);
543 weston_view_set_position(surface->view, x, y);
544 weston_layer_entry_insert(&ivi->panel.view_list,
545 &surface->view->layer_link);
547 weston_view_update_transform(surface->view);
548 weston_view_schedule_repaint(surface->view);
550 wsurface->is_mapped = true;
551 surface->view->is_mapped = true;
555 ivi_layout_activate(struct ivi_output *output, const char *app_id)
557 struct ivi_compositor *ivi = output->ivi;
558 struct ivi_surface *surf;
559 struct weston_desktop_surface *dsurf;
560 struct weston_view *view;
561 struct weston_geometry geom;
562 struct ivi_policy *policy = output->ivi->policy;
564 surf = ivi_find_app(ivi, app_id);
568 if (policy && policy->api.surface_activate &&
569 !policy->api.surface_activate(surf, surf->ivi)) {
573 #ifdef AGL_COMP_DEBUG
574 weston_log("Found app_id %s\n", app_id);
577 if (surf->role == IVI_SURFACE_ROLE_POPUP) {
578 ivi_layout_popup_re_add(surf);
582 if (surf == output->active)
585 dsurf = surf->dsurface;
587 geom = weston_desktop_surface_get_geometry(dsurf);
589 surf->desktop.pending_output = output;
590 if (weston_desktop_surface_get_maximized(dsurf) &&
591 geom.width == output->area.width &&
592 geom.height == output->area.height) {
593 ivi_layout_activate_complete(output, surf);
597 weston_desktop_surface_set_maximized(dsurf, true);
598 weston_desktop_surface_set_size(dsurf,
600 output->area.height);
603 * If the view isn't mapped, we put it onto the hidden layer so it will
604 * start receiving frame events, and will be able to act on our
607 if (!weston_view_is_mapped(view)) {
608 view->is_mapped = true;
609 view->surface->is_mapped = true;
611 weston_view_set_output(view, output->output);
612 weston_layer_entry_insert(&ivi->hidden.view_list, &view->layer_link);
613 /* force repaint of the entire output */
614 weston_output_damage(output->output);
618 static struct ivi_output *
619 ivi_layout_get_output_from_surface(struct ivi_surface *surf)
621 struct ivi_output *ivi_output = NULL;
623 switch (surf->role) {
624 case IVI_SURFACE_ROLE_DESKTOP:
625 if (surf->desktop.pending_output)
626 ivi_output = surf->desktop.pending_output;
628 ivi_output = surf->desktop.last_output;
630 case IVI_SURFACE_ROLE_POPUP:
631 ivi_output = surf->popup.output;
634 case IVI_SURFACE_ROLE_BACKGROUND:
635 case IVI_SURFACE_ROLE_PANEL:
636 case IVI_SURFACE_ROLE_NONE:
644 ivi_layout_deactivate(struct ivi_compositor *ivi, const char *app_id)
646 struct ivi_surface *surf;
647 struct ivi_output *ivi_output;
648 struct ivi_policy *policy = ivi->policy;
650 surf = ivi_find_app(ivi, app_id);
654 if (policy && policy->api.surface_deactivate &&
655 !policy->api.surface_deactivate(surf, surf->ivi)) {
659 ivi_output = ivi_layout_get_output_from_surface(surf);
660 weston_log("deactiving %s\n", app_id);
662 if (surf->role == IVI_SURFACE_ROLE_DESKTOP) {
663 struct ivi_surface *previous_active;
665 previous_active = ivi_output->previous_active;
666 if (!previous_active) {
667 /* we don't have a previous active it means we should
669 if (ivi_output->active) {
670 struct weston_view *view;
672 view = ivi_output->active->view;
673 view->is_mapped = false;
674 view->surface->is_mapped = false;
676 weston_layer_entry_remove(&view->layer_link);
677 weston_output_damage(ivi_output->output);
680 struct weston_desktop_surface *dsurface;
681 const char *previous_active_app_id;
683 dsurface = previous_active->dsurface;
684 previous_active_app_id =
685 weston_desktop_surface_get_app_id(dsurface);
686 ivi_layout_activate(ivi_output, previous_active_app_id);
688 } else if (surf->role == IVI_SURFACE_ROLE_POPUP) {
689 struct weston_view *view = surf->view;
691 weston_layer_entry_remove(&view->layer_link);
692 weston_view_damage_below(view);