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"
29 #include <libweston/libweston.h>
30 #include <libweston-desktop/libweston-desktop.h>
33 static struct weston_output *
34 get_default_output(struct weston_compositor *compositor)
36 if (wl_list_empty(&compositor->output_list))
39 return wl_container_of(compositor->output_list.next,
40 struct weston_output, link);
45 desktop_ping_timeout(struct weston_desktop_client *dclient, void *userdata)
51 desktop_pong(struct weston_desktop_client *dclient, void *userdata)
57 desktop_surface_added(struct weston_desktop_surface *dsurface, void *userdata)
59 struct ivi_compositor *ivi = userdata;
60 struct weston_desktop_client *dclient;
61 struct wl_client *client;
62 struct ivi_surface *surface;
64 dclient = weston_desktop_surface_get_client(dsurface);
65 client = weston_desktop_client_get_client(dclient);
67 surface = zalloc(sizeof *surface);
69 wl_client_post_no_memory(client);
73 surface->view = weston_desktop_surface_create_view(dsurface);
76 wl_client_post_no_memory(client);
81 surface->dsurface = dsurface;
82 surface->role = IVI_SURFACE_ROLE_NONE;
83 surface->activated_by_default = false;
85 if (ivi->policy && ivi->policy->api.surface_create &&
86 !ivi->policy->api.surface_create(surface, ivi)) {
88 wl_client_post_no_memory(client);
92 weston_desktop_surface_set_user_data(dsurface, surface);
94 if (ivi->shell_client.ready) {
95 ivi_check_pending_desktop_surface(surface);
98 * We delay creating "normal" desktop surfaces until later, to
99 * give the shell-client an oppurtunity to set the surface as a
102 wl_list_insert(&ivi->pending_surfaces, &surface->link);
107 desktop_surface_removed(struct weston_desktop_surface *dsurface, void *userdata)
109 struct ivi_surface *surface =
110 weston_desktop_surface_get_user_data(dsurface);
111 struct weston_surface *wsurface =
112 weston_desktop_surface_get_surface(dsurface);
114 struct ivi_output *output;
116 if (surface->role == IVI_SURFACE_ROLE_DESKTOP)
117 output = surface->desktop.last_output;
118 else if (surface->role == IVI_SURFACE_ROLE_POPUP)
119 output = surface->popup.output;
120 else if (surface->role == IVI_SURFACE_ROLE_SPLIT_H ||
121 surface->role == IVI_SURFACE_ROLE_SPLIT_V)
122 output = surface->split.output;
123 else if (surface->role == IVI_SURFACE_ROLE_FS)
124 output = surface->fs.output;
128 /* reset the active surface as well */
129 if (output && output->active && output->active == surface) {
130 output->active->view->is_mapped = false;
131 output->active->view->surface->is_mapped = false;
133 weston_layer_entry_remove(&output->active->view->layer_link);
134 output->active = NULL;
136 if (weston_surface_is_mapped(wsurface)) {
137 weston_desktop_surface_unlink_view(surface->view);
138 weston_view_destroy(surface->view);
141 wl_list_remove(&surface->link);
146 desktop_committed(struct weston_desktop_surface *dsurface,
147 int32_t sx, int32_t sy, void *userdata)
149 struct ivi_surface *surface =
150 weston_desktop_surface_get_user_data(dsurface);
151 struct ivi_policy *policy = surface->ivi->policy;
153 if (policy && policy->api.surface_commited &&
154 !policy->api.surface_commited(surface, surface->ivi))
157 weston_compositor_schedule_repaint(surface->ivi->compositor);
159 switch (surface->role) {
160 case IVI_SURFACE_ROLE_DESKTOP:
161 ivi_layout_desktop_committed(surface);
163 case IVI_SURFACE_ROLE_PANEL:
164 ivi_layout_panel_committed(surface);
166 case IVI_SURFACE_ROLE_POPUP:
167 ivi_layout_popup_committed(surface);
169 case IVI_SURFACE_ROLE_FS:
170 ivi_layout_fs_committed(surface);
172 case IVI_SURFACE_ROLE_SPLIT_H:
173 case IVI_SURFACE_ROLE_SPLIT_V:
174 ivi_layout_split_committed(surface);
176 case IVI_SURFACE_ROLE_NONE:
177 case IVI_SURFACE_ROLE_BACKGROUND:
178 default: /* fall through */
184 desktop_show_window_menu(struct weston_desktop_surface *dsurface,
185 struct weston_seat *seat, int32_t x, int32_t y,
192 desktop_set_parent(struct weston_desktop_surface *dsurface,
193 struct weston_desktop_surface *parent, void *userdata)
199 desktop_move(struct weston_desktop_surface *dsurface,
200 struct weston_seat *seat, uint32_t serial, void *userdata)
206 desktop_resize(struct weston_desktop_surface *dsurface,
207 struct weston_seat *seat, uint32_t serial,
208 enum weston_desktop_surface_edge edges, void *user_data)
214 desktop_fullscreen_requested(struct weston_desktop_surface *dsurface,
215 bool fullscreen, struct weston_output *output,
222 desktop_maximized_requested(struct weston_desktop_surface *dsurface,
223 bool maximized, void *userdata)
229 desktop_minimized_requested(struct weston_desktop_surface *dsurface,
236 desktop_set_xwayland_position(struct weston_desktop_surface *dsurface,
237 int32_t x, int32_t y, void *userdata)
242 static const struct weston_desktop_api desktop_api = {
243 .struct_size = sizeof desktop_api,
244 .ping_timeout = desktop_ping_timeout,
245 .pong = desktop_pong,
246 .surface_added = desktop_surface_added,
247 .surface_removed = desktop_surface_removed,
248 .committed = desktop_committed,
249 .show_window_menu = desktop_show_window_menu,
250 .set_parent = desktop_set_parent,
251 .move = desktop_move,
252 .resize = desktop_resize,
253 .fullscreen_requested = desktop_fullscreen_requested,
254 .maximized_requested = desktop_maximized_requested,
255 .minimized_requested = desktop_minimized_requested,
256 .set_xwayland_position = desktop_set_xwayland_position,
260 ivi_desktop_init(struct ivi_compositor *ivi)
262 ivi->desktop = weston_desktop_create(ivi->compositor, &desktop_api, ivi);
264 weston_log("Failed to create desktop globals");