main: Use bool for weston_config_section_get_bool()
[src/agl-compositor.git] / src / ivi-compositor.h
1 /*
2  * Copyright © 2019 Collabora, Ltd.
3  *
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:
11  *
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.
15  *
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
23  * SOFTWARE.
24  */
25
26 #ifndef IVI_COMPOSITOR_H
27 #define IVI_COMPOSITOR_H
28
29 #include <stdbool.h>
30 #include "config.h"
31
32 #include <libweston/backend-drm.h>
33 #include <libweston/libweston.h>
34 #include <libweston/windowed-output-api.h>
35 #include <libweston-desktop/libweston-desktop.h>
36
37 #include "agl-shell-server-protocol.h"
38
39 struct desktop_client {
40         struct wl_resource *resource;
41         struct wl_list link;    /* ivi_compositor::desktop_clients */
42 };
43
44 struct ivi_compositor {
45         struct weston_compositor *compositor;
46         struct weston_config *config;
47
48         struct wl_listener heads_changed;
49
50         bool init_failed;
51
52         /*
53          * Options parsed from command line arugments.
54          * Overrides what is found in the config file.
55          */
56         struct {
57                 /* drm */
58                 bool use_current_mode;
59                 /* wayland/x11 */
60                 int width;
61                 int height;
62                 int scale;
63         } cmdline;
64         const struct weston_windowed_output_api *window_api;
65         const struct weston_drm_output_api *drm_api;
66
67         struct wl_global *agl_shell;
68         struct wl_global *agl_shell_desktop;
69         struct {
70                 bool activate_apps_by_default;  /* switches once xdg top level has been 'created' */
71         } quirks;
72
73         struct {
74                 struct wl_client *client;
75                 struct wl_resource *resource;
76                 bool ready;
77         } shell_client;
78
79         struct wl_list desktop_clients; /* desktop_client::link */
80
81         struct wl_list outputs; /* ivi_output.link */
82         struct wl_list surfaces; /* ivi_surface.link */
83
84         struct weston_desktop *desktop;
85         struct ivi_policy *policy;
86
87         struct wl_list pending_surfaces;
88
89         struct weston_layer hidden;
90         struct weston_layer background;
91         struct weston_layer normal;
92         struct weston_layer panel;
93         struct weston_layer fullscreen;
94 };
95
96 struct ivi_surface;
97
98 struct ivi_output {
99         struct wl_list link; /* ivi_compositor.outputs */
100         struct ivi_compositor *ivi;
101
102         char *name;
103         struct weston_config_section *config;
104         struct weston_output *output;
105
106         struct ivi_surface *background;
107         /* Panels */
108         struct ivi_surface *top;
109         struct ivi_surface *bottom;
110         struct ivi_surface *left;
111         struct ivi_surface *right;
112
113         /* for the black surface */
114         struct fullscreen_view {
115                 struct ivi_surface *fs;
116                 struct wl_listener fs_destroy;
117         } fullscreen_view;
118
119         struct wl_listener output_destroy;
120
121         /*
122          * Usable area for normal clients, i.e. with panels removed.
123          * In output-coorrdinate space.
124          */
125         struct weston_geometry area;
126
127         struct ivi_surface *active;
128
129         /* Temporary: only used during configuration */
130         size_t add_len;
131         struct weston_head *add[8];
132 };
133
134 enum ivi_surface_role {
135         IVI_SURFACE_ROLE_NONE,
136         IVI_SURFACE_ROLE_DESKTOP,
137         IVI_SURFACE_ROLE_BACKGROUND,
138         IVI_SURFACE_ROLE_PANEL,
139 };
140
141 struct ivi_desktop_surface {
142         struct ivi_output *pending_output;
143         struct ivi_output *last_output;
144 };
145
146 struct ivi_background_surface {
147         struct ivi_output *output;
148 };
149
150 struct ivi_panel_surface {
151         struct ivi_output *output;
152         enum agl_shell_edge edge;
153 };
154
155 enum ivi_surface_flags {
156         IVI_SURFACE_PROP_MAP = (1 << 0),
157         /* x, y, width, height */
158         IVI_SURFACE_PROP_POSITION = (1 << 1),
159 };
160
161 struct ivi_surface {
162         struct ivi_compositor *ivi;
163         struct weston_desktop_surface *dsurface;
164         struct weston_view *view;
165
166         struct wl_list link;
167
168         struct {
169                 enum ivi_surface_flags flags;
170                 int32_t x, y;
171                 int32_t width, height;
172         } pending;
173         bool activated_by_default;
174
175         enum ivi_surface_role role;
176         union {
177                 struct ivi_desktop_surface desktop;
178                 struct ivi_background_surface bg;
179                 struct ivi_panel_surface panel;
180         };
181 };
182
183 struct ivi_shell_client {
184         struct wl_list link;
185         char *command;
186         bool require_ready;
187
188         pid_t pid;
189         struct wl_client *client;
190
191         struct wl_listener client_destroy;
192 };
193
194 struct ivi_compositor *
195 to_ivi_compositor(struct weston_compositor *ec);
196
197 #ifdef HAVE_SYSTEMD
198 int
199 ivi_agl_systemd_notify(struct ivi_compositor *ivi);
200 #else
201 static int
202 ivi_agl_systemd_notify(struct ivi_compositor *ivi)
203 {
204 }
205 #endif
206
207 int
208 ivi_shell_init(struct ivi_compositor *ivi);
209
210 void
211 ivi_shell_init_black_fs(struct ivi_compositor *ivi);
212
213 int
214 ivi_shell_create_global(struct ivi_compositor *ivi);
215
216 int
217 ivi_launch_shell_client(struct ivi_compositor *ivi);
218
219 int
220 ivi_desktop_init(struct ivi_compositor *ivi);
221
222 struct ivi_shell_client *
223 ivi_shell_client_from_wl(struct wl_client *client);
224
225 struct ivi_output *
226 to_ivi_output(struct weston_output *o);
227
228 void
229 ivi_set_desktop_surface(struct ivi_surface *surface);
230
231 void
232 ivi_reflow_outputs(struct ivi_compositor *ivi);
233
234 struct ivi_surface *
235 to_ivi_surface(struct weston_surface *surface);
236
237 void
238 ivi_layout_set_mapped(struct ivi_surface *surface);
239
240 void
241 ivi_layout_set_position(struct ivi_surface *surface,
242                         int32_t x, int32_t y,
243                         int32_t width, int32_t height);
244
245 void
246 ivi_layout_commit(struct ivi_compositor *ivi);
247
248 void
249 ivi_layout_init(struct ivi_compositor *ivi, struct ivi_output *output);
250
251 void
252 ivi_layout_activate(struct ivi_output *output, const char *app_id);
253
254 void
255 ivi_layout_desktop_committed(struct ivi_surface *surf);
256
257 void
258 ivi_layout_panel_committed(struct ivi_surface *surface);
259
260 #endif