Newer
Older
/*
* Copyright © 2010-2012 Intel Corporation
* Copyright © 2011-2012 Collabora, Ltd.
* Copyright © 2013 Raspberry Pi Foundation
* Copyright © 2016 Quentin "Sardem FF7" Glidic
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include "config.h"
#include <stdbool.h>
#include <assert.h>
#include <wayland-server.h>
#include "compositor.h"
#include "zalloc.h"
#include "xdg-shell-unstable-v6-server-protocol.h"
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include "libweston-desktop.h"
#include "internal.h"
#define WD_XDG_SHELL_PROTOCOL_VERSION 1
static const char *weston_desktop_xdg_toplevel_role = "xdg_toplevel";
static const char *weston_desktop_xdg_popup_role = "xdg_popup";
struct weston_desktop_xdg_positioner {
struct weston_desktop *desktop;
struct weston_desktop_client *client;
struct wl_resource *resource;
struct weston_size size;
struct weston_geometry anchor_rect;
enum zxdg_positioner_v6_anchor anchor;
enum zxdg_positioner_v6_gravity gravity;
enum zxdg_positioner_v6_constraint_adjustment constraint_adjustment;
struct weston_position offset;
};
enum weston_desktop_xdg_surface_role {
WESTON_DESKTOP_XDG_SURFACE_ROLE_NONE,
WESTON_DESKTOP_XDG_SURFACE_ROLE_TOPLEVEL,
WESTON_DESKTOP_XDG_SURFACE_ROLE_POPUP,
};
struct weston_desktop_xdg_surface {
struct wl_resource *resource;
struct weston_desktop *desktop;
struct weston_surface *surface;
struct weston_desktop_surface *desktop_surface;
bool configured;
struct wl_event_source *configure_idle;
struct wl_list configure_list; /* weston_desktop_xdg_surface_configure::link */
bool has_next_geometry;
struct weston_geometry next_geometry;
enum weston_desktop_xdg_surface_role role;
};
struct weston_desktop_xdg_surface_configure {
struct wl_list link; /* weston_desktop_xdg_surface::configure_list */
uint32_t serial;
};
struct weston_desktop_xdg_toplevel_state {
bool maximized;
bool fullscreen;
bool resizing;
bool activated;
};
struct weston_desktop_xdg_toplevel_configure {
struct weston_desktop_xdg_surface_configure base;
struct weston_desktop_xdg_toplevel_state state;
struct weston_size size;
};
struct weston_desktop_xdg_toplevel {
struct weston_desktop_xdg_surface base;
struct wl_resource *resource;
bool added;
struct {
struct weston_desktop_xdg_toplevel_state state;
struct weston_size size;
} pending;
struct {
struct weston_desktop_xdg_toplevel_state state;
struct weston_size size;
struct weston_size min_size, max_size;
} next;
struct {
struct weston_desktop_xdg_toplevel_state state;
struct weston_size min_size, max_size;
} current;
};
struct weston_desktop_xdg_popup {
struct weston_desktop_xdg_surface base;
struct wl_resource *resource;
bool committed;
struct weston_desktop_xdg_surface *parent;
struct weston_desktop_seat *seat;
struct weston_geometry geometry;
};
#define weston_desktop_surface_role_biggest_size (sizeof(struct weston_desktop_xdg_toplevel))
#define weston_desktop_surface_configure_biggest_size (sizeof(struct weston_desktop_xdg_toplevel))
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
static struct weston_geometry
weston_desktop_xdg_positioner_get_geometry(struct weston_desktop_xdg_positioner *positioner,
struct weston_desktop_surface *dsurface,
struct weston_desktop_surface *parent)
{
struct weston_geometry geometry = {
.x = positioner->offset.x,
.y = positioner->offset.y,
.width = positioner->size.width,
.height = positioner->size.height,
};
if (positioner->anchor & ZXDG_POSITIONER_V6_ANCHOR_TOP)
geometry.y += positioner->anchor_rect.y;
else if (positioner->anchor & ZXDG_POSITIONER_V6_ANCHOR_BOTTOM)
geometry.y += positioner->anchor_rect.y + positioner->anchor_rect.height;
else
geometry.y += positioner->anchor_rect.y + positioner->anchor_rect.height / 2;
if (positioner->anchor & ZXDG_POSITIONER_V6_ANCHOR_LEFT)
geometry.x += positioner->anchor_rect.x;
else if (positioner->anchor & ZXDG_POSITIONER_V6_ANCHOR_RIGHT)
geometry.x += positioner->anchor_rect.x + positioner->anchor_rect.width;
else
geometry.x += positioner->anchor_rect.x + positioner->anchor_rect.width / 2;
if (positioner->gravity & ZXDG_POSITIONER_V6_GRAVITY_TOP)
geometry.y -= geometry.height;
else if (positioner->gravity & ZXDG_POSITIONER_V6_GRAVITY_BOTTOM)
geometry.y = geometry.y;
else
geometry.y -= geometry.height / 2;
if (positioner->gravity & ZXDG_POSITIONER_V6_GRAVITY_LEFT)
geometry.x -= geometry.width;
else if (positioner->gravity & ZXDG_POSITIONER_V6_GRAVITY_RIGHT)
geometry.x = geometry.x;
else
geometry.x -= geometry.width / 2;
if (positioner->constraint_adjustment == ZXDG_POSITIONER_V6_CONSTRAINT_ADJUSTMENT_NONE)
return geometry;
/* TODO: add compositor policy configuration and the code here */
return geometry;
}
static void
weston_desktop_xdg_positioner_protocol_set_size(struct wl_client *wl_client,
struct wl_resource *resource,
int32_t width, int32_t height)
{
struct weston_desktop_xdg_positioner *positioner =
wl_resource_get_user_data(resource);
if (width < 1 || height < 1) {
wl_resource_post_error(resource,
ZXDG_POSITIONER_V6_ERROR_INVALID_INPUT,
"width and height must be positives and non-zero");
return;
}
positioner->size.width = width;
positioner->size.height = height;
}
static void
weston_desktop_xdg_positioner_protocol_set_anchor_rect(struct wl_client *wl_client,
struct wl_resource *resource,
int32_t x, int32_t y,
int32_t width, int32_t height)
{
struct weston_desktop_xdg_positioner *positioner =
wl_resource_get_user_data(resource);
if (width < 1 || height < 1) {
wl_resource_post_error(resource,
ZXDG_POSITIONER_V6_ERROR_INVALID_INPUT,
"width and height must be positives and non-zero");
return;
}
positioner->anchor_rect.x = x;
positioner->anchor_rect.y = y;
positioner->anchor_rect.width = width;
positioner->anchor_rect.height = height;
}
static void
weston_desktop_xdg_positioner_protocol_set_anchor(struct wl_client *wl_client,
struct wl_resource *resource,
enum zxdg_positioner_v6_anchor anchor)
{
struct weston_desktop_xdg_positioner *positioner =
wl_resource_get_user_data(resource);
if (((anchor & ZXDG_POSITIONER_V6_ANCHOR_TOP ) &&
(anchor & ZXDG_POSITIONER_V6_ANCHOR_BOTTOM)) ||
((anchor & ZXDG_POSITIONER_V6_ANCHOR_LEFT) &&
(anchor & ZXDG_POSITIONER_V6_ANCHOR_RIGHT))) {
wl_resource_post_error(resource,
ZXDG_POSITIONER_V6_ERROR_INVALID_INPUT,
"same-axis values are not allowed");
return;
}
positioner->anchor = anchor;
}
static void
weston_desktop_xdg_positioner_protocol_set_gravity(struct wl_client *wl_client,
struct wl_resource *resource,
enum zxdg_positioner_v6_gravity gravity)
{
struct weston_desktop_xdg_positioner *positioner =
wl_resource_get_user_data(resource);
if (((gravity & ZXDG_POSITIONER_V6_GRAVITY_TOP) &&
(gravity & ZXDG_POSITIONER_V6_GRAVITY_BOTTOM)) ||
((gravity & ZXDG_POSITIONER_V6_GRAVITY_LEFT) &&
(gravity & ZXDG_POSITIONER_V6_GRAVITY_RIGHT))) {
wl_resource_post_error(resource,
ZXDG_POSITIONER_V6_ERROR_INVALID_INPUT,
"same-axis values are not allowed");
return;
}
positioner->gravity = gravity;
}
static void
weston_desktop_xdg_positioner_protocol_set_constraint_adjustment(struct wl_client *wl_client,
struct wl_resource *resource,
enum zxdg_positioner_v6_constraint_adjustment constraint_adjustment)
{
struct weston_desktop_xdg_positioner *positioner =
wl_resource_get_user_data(resource);
positioner->constraint_adjustment = constraint_adjustment;
}
static void
weston_desktop_xdg_positioner_protocol_set_offset(struct wl_client *wl_client,
struct wl_resource *resource,
int32_t x, int32_t y)
{
struct weston_desktop_xdg_positioner *positioner =
wl_resource_get_user_data(resource);
positioner->offset.x = x;
positioner->offset.y = y;
}
static void
weston_desktop_xdg_positioner_destroy(struct wl_resource *resource)
{
struct weston_desktop_xdg_positioner *positioner =
wl_resource_get_user_data(resource);
free(positioner);
}
static const struct zxdg_positioner_v6_interface weston_desktop_xdg_positioner_implementation = {
.destroy = weston_desktop_destroy_request,
.set_size = weston_desktop_xdg_positioner_protocol_set_size,
.set_anchor_rect = weston_desktop_xdg_positioner_protocol_set_anchor_rect,
.set_anchor = weston_desktop_xdg_positioner_protocol_set_anchor,
.set_gravity = weston_desktop_xdg_positioner_protocol_set_gravity,
.set_constraint_adjustment = weston_desktop_xdg_positioner_protocol_set_constraint_adjustment,
.set_offset = weston_desktop_xdg_positioner_protocol_set_offset,
};
static void
weston_desktop_xdg_surface_schedule_configure(struct weston_desktop_xdg_surface *surface,
bool force);
static void
weston_desktop_xdg_toplevel_ensure_added(struct weston_desktop_xdg_toplevel *toplevel)
{
if (toplevel->added)
return;
weston_desktop_api_surface_added(toplevel->base.desktop,
toplevel->base.desktop_surface);
weston_desktop_xdg_surface_schedule_configure(&toplevel->base, true);
toplevel->added = true;
}
static void
weston_desktop_xdg_toplevel_protocol_set_parent(struct wl_client *wl_client,
struct wl_resource *resource,
struct wl_resource *parent_resource)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
struct weston_desktop_surface *parent = NULL;
if (parent_resource != NULL)
parent = wl_resource_get_user_data(parent_resource);
weston_desktop_xdg_toplevel_ensure_added(toplevel);
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
weston_desktop_api_set_parent(toplevel->base.desktop, dsurface, parent);
}
static void
weston_desktop_xdg_toplevel_protocol_set_title(struct wl_client *wl_client,
struct wl_resource *resource,
const char *title)
{
struct weston_desktop_surface *toplevel =
wl_resource_get_user_data(resource);
weston_desktop_surface_set_title(toplevel, title);
}
static void
weston_desktop_xdg_toplevel_protocol_set_app_id(struct wl_client *wl_client,
struct wl_resource *resource,
const char *app_id)
{
struct weston_desktop_surface *toplevel =
wl_resource_get_user_data(resource);
weston_desktop_surface_set_app_id(toplevel, app_id);
}
static void
weston_desktop_xdg_toplevel_protocol_show_window_menu(struct wl_client *wl_client,
struct wl_resource *resource,
struct wl_resource *seat_resource,
uint32_t serial,
int32_t x, int32_t y)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_seat *seat =
wl_resource_get_user_data(seat_resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
if (!toplevel->base.configured) {
wl_resource_post_error(toplevel->resource,
ZXDG_SURFACE_V6_ERROR_NOT_CONSTRUCTED,
"Surface has not been configured yet");
return;
}
weston_desktop_api_show_window_menu(toplevel->base.desktop,
dsurface, seat, x, y);
}
static void
weston_desktop_xdg_toplevel_protocol_move(struct wl_client *wl_client,
struct wl_resource *resource,
struct wl_resource *seat_resource,
uint32_t serial)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_seat *seat =
wl_resource_get_user_data(seat_resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
if (!toplevel->base.configured) {
wl_resource_post_error(toplevel->resource,
ZXDG_SURFACE_V6_ERROR_NOT_CONSTRUCTED,
"Surface has not been configured yet");
return;
}
weston_desktop_api_move(toplevel->base.desktop, dsurface, seat, serial);
}
static void
weston_desktop_xdg_toplevel_protocol_resize(struct wl_client *wl_client,
struct wl_resource *resource,
struct wl_resource *seat_resource,
uint32_t serial,
enum zxdg_toplevel_v6_resize_edge edges)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_seat *seat =
wl_resource_get_user_data(seat_resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
enum weston_desktop_surface_edge surf_edges =
(enum weston_desktop_surface_edge) edges;
if (!toplevel->base.configured) {
wl_resource_post_error(toplevel->resource,
ZXDG_SURFACE_V6_ERROR_NOT_CONSTRUCTED,
"Surface has not been configured yet");
return;
}
weston_desktop_api_resize(toplevel->base.desktop,
dsurface, seat, serial, surf_edges);
weston_desktop_xdg_toplevel_ack_configure(struct weston_desktop_xdg_toplevel *toplevel,
struct weston_desktop_xdg_toplevel_configure *configure)
toplevel->next.state = configure->state;
toplevel->next.size = configure->size;
}
static void
weston_desktop_xdg_toplevel_protocol_set_min_size(struct wl_client *wl_client,
struct wl_resource *resource,
int32_t width, int32_t height)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
toplevel->next.min_size.width = width;
toplevel->next.min_size.height = height;
}
static void
weston_desktop_xdg_toplevel_protocol_set_max_size(struct wl_client *wl_client,
struct wl_resource *resource,
int32_t width, int32_t height)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
toplevel->next.max_size.width = width;
toplevel->next.max_size.height = height;
}
static void
weston_desktop_xdg_toplevel_protocol_set_maximized(struct wl_client *wl_client,
struct wl_resource *resource)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
weston_desktop_xdg_toplevel_ensure_added(toplevel);
weston_desktop_api_maximized_requested(toplevel->base.desktop, dsurface, true);
}
static void
weston_desktop_xdg_toplevel_protocol_unset_maximized(struct wl_client *wl_client,
struct wl_resource *resource)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
weston_desktop_xdg_toplevel_ensure_added(toplevel);
weston_desktop_api_maximized_requested(toplevel->base.desktop, dsurface, false);
}
static void
weston_desktop_xdg_toplevel_protocol_set_fullscreen(struct wl_client *wl_client,
struct wl_resource *resource,
struct wl_resource *output_resource)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
struct weston_output *output = NULL;
if (output_resource != NULL)
output = wl_resource_get_user_data(output_resource);
weston_desktop_xdg_toplevel_ensure_added(toplevel);
weston_desktop_api_fullscreen_requested(toplevel->base.desktop, dsurface,
true, output);
}
static void
weston_desktop_xdg_toplevel_protocol_unset_fullscreen(struct wl_client *wl_client,
struct wl_resource *resource)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
weston_desktop_xdg_toplevel_ensure_added(toplevel);
weston_desktop_api_fullscreen_requested(toplevel->base.desktop, dsurface,
false, NULL);
}
static void
weston_desktop_xdg_toplevel_protocol_set_minimized(struct wl_client *wl_client,
struct wl_resource *resource)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
weston_desktop_xdg_toplevel_ensure_added(toplevel);
weston_desktop_api_minimized_requested(toplevel->base.desktop, dsurface);
}
static void
weston_desktop_xdg_toplevel_send_configure(struct weston_desktop_xdg_toplevel *toplevel,
struct weston_desktop_xdg_toplevel_configure *configure)
{
uint32_t *s;
struct wl_array states;
configure->state = toplevel->pending.state;
configure->size = toplevel->pending.size;
if (toplevel->pending.state.maximized) {
s = wl_array_add(&states, sizeof(uint32_t));
*s = ZXDG_TOPLEVEL_V6_STATE_MAXIMIZED;
}
if (toplevel->pending.state.fullscreen) {
s = wl_array_add(&states, sizeof(uint32_t));
*s = ZXDG_TOPLEVEL_V6_STATE_FULLSCREEN;
}
if (toplevel->pending.state.resizing) {
s = wl_array_add(&states, sizeof(uint32_t));
*s = ZXDG_TOPLEVEL_V6_STATE_RESIZING;
}
if (toplevel->pending.state.activated) {
s = wl_array_add(&states, sizeof(uint32_t));
*s = ZXDG_TOPLEVEL_V6_STATE_ACTIVATED;
}
zxdg_toplevel_v6_send_configure(toplevel->resource,
toplevel->pending.size.width,
toplevel->pending.size.height,
&states);
wl_array_release(&states);
};
static void
weston_desktop_xdg_toplevel_set_maximized(struct weston_desktop_surface *dsurface,
void *user_data, bool maximized)
{
struct weston_desktop_xdg_toplevel *toplevel = user_data;
toplevel->pending.state.maximized = maximized;
weston_desktop_xdg_surface_schedule_configure(&toplevel->base, false);
}
static void
weston_desktop_xdg_toplevel_set_fullscreen(struct weston_desktop_surface *dsurface,
void *user_data, bool fullscreen)
{
struct weston_desktop_xdg_toplevel *toplevel = user_data;
toplevel->pending.state.fullscreen = fullscreen;
weston_desktop_xdg_surface_schedule_configure(&toplevel->base, false);
}
static void
weston_desktop_xdg_toplevel_set_resizing(struct weston_desktop_surface *dsurface,
void *user_data, bool resizing)
{
struct weston_desktop_xdg_toplevel *toplevel = user_data;
toplevel->pending.state.resizing = resizing;
weston_desktop_xdg_surface_schedule_configure(&toplevel->base, false);
}
static void
weston_desktop_xdg_toplevel_set_activated(struct weston_desktop_surface *dsurface,
void *user_data, bool activated)
{
struct weston_desktop_xdg_toplevel *toplevel = user_data;
toplevel->pending.state.activated = activated;
weston_desktop_xdg_surface_schedule_configure(&toplevel->base, false);
}
static void
weston_desktop_xdg_toplevel_set_size(struct weston_desktop_surface *dsurface,
void *user_data,
int32_t width, int32_t height)
{
struct weston_desktop_xdg_toplevel *toplevel = user_data;
toplevel->pending.size.width = width;
toplevel->pending.size.height = height;
weston_desktop_xdg_surface_schedule_configure(&toplevel->base, false);
}
static void
weston_desktop_xdg_toplevel_committed(struct weston_desktop_xdg_toplevel *toplevel,
int32_t sx, int32_t sy)
{
struct weston_surface *wsurface =
weston_desktop_surface_get_surface(toplevel->base.desktop_surface);
if (!wsurface->buffer_ref.buffer && !toplevel->added) {
weston_desktop_xdg_toplevel_ensure_added(toplevel);
if (!wsurface->buffer_ref.buffer)
if ((toplevel->next.state.maximized || toplevel->next.state.fullscreen) &&
(toplevel->next.size.width != wsurface->width ||
toplevel->next.size.height != wsurface->height)) {
struct weston_desktop_client *client =
weston_desktop_surface_get_client(toplevel->base.desktop_surface);
struct wl_resource *client_resource =
weston_desktop_client_get_resource(client);
wl_resource_post_error(client_resource,
ZXDG_SHELL_V6_ERROR_INVALID_SURFACE_STATE,
"xdg_surface buffer does not match the configured state");
return;
toplevel->current.state = toplevel->next.state;
toplevel->current.min_size = toplevel->next.min_size;
toplevel->current.max_size = toplevel->next.max_size;
weston_desktop_api_committed(toplevel->base.desktop,
toplevel->base.desktop_surface,
sx, sy);
}
static void
weston_desktop_xdg_toplevel_close(struct weston_desktop_xdg_toplevel *toplevel)
{
zxdg_toplevel_v6_send_close(toplevel->resource);
}
static bool
weston_desktop_xdg_toplevel_get_maximized(struct weston_desktop_surface *dsurface,
void *user_data)
{
struct weston_desktop_xdg_toplevel *toplevel = user_data;
return toplevel->current.state.maximized;
}
static bool
weston_desktop_xdg_toplevel_get_fullscreen(struct weston_desktop_surface *dsurface,
void *user_data)
{
struct weston_desktop_xdg_toplevel *toplevel = user_data;
return toplevel->current.state.fullscreen;
}
static bool
weston_desktop_xdg_toplevel_get_resizing(struct weston_desktop_surface *dsurface,
void *user_data)
{
struct weston_desktop_xdg_toplevel *toplevel = user_data;
return toplevel->current.state.resizing;
}
static bool
weston_desktop_xdg_toplevel_get_activated(struct weston_desktop_surface *dsurface,
void *user_data)
{
struct weston_desktop_xdg_toplevel *toplevel = user_data;
return toplevel->current.state.activated;
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
}
static void
weston_desktop_xdg_toplevel_destroy(struct weston_desktop_xdg_toplevel *toplevel)
{
if (toplevel->added)
weston_desktop_api_surface_removed(toplevel->base.desktop,
toplevel->base.desktop_surface);
}
static void
weston_desktop_xdg_toplevel_resource_destroy(struct wl_resource *resource)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
if (dsurface != NULL)
weston_desktop_surface_resource_destroy(resource);
}
static const struct zxdg_toplevel_v6_interface weston_desktop_xdg_toplevel_implementation = {
.destroy = weston_desktop_destroy_request,
.set_parent = weston_desktop_xdg_toplevel_protocol_set_parent,
.set_title = weston_desktop_xdg_toplevel_protocol_set_title,
.set_app_id = weston_desktop_xdg_toplevel_protocol_set_app_id,
.show_window_menu = weston_desktop_xdg_toplevel_protocol_show_window_menu,
.move = weston_desktop_xdg_toplevel_protocol_move,
.resize = weston_desktop_xdg_toplevel_protocol_resize,
.set_min_size = weston_desktop_xdg_toplevel_protocol_set_min_size,
.set_max_size = weston_desktop_xdg_toplevel_protocol_set_max_size,
.set_maximized = weston_desktop_xdg_toplevel_protocol_set_maximized,
.unset_maximized = weston_desktop_xdg_toplevel_protocol_unset_maximized,
.set_fullscreen = weston_desktop_xdg_toplevel_protocol_set_fullscreen,
.unset_fullscreen = weston_desktop_xdg_toplevel_protocol_unset_fullscreen,
.set_minimized = weston_desktop_xdg_toplevel_protocol_set_minimized,
};
static void
weston_desktop_xdg_popup_protocol_grab(struct wl_client *wl_client,
struct wl_resource *resource,
struct wl_resource *seat_resource,
uint32_t serial)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_desktop_xdg_popup *popup =
weston_desktop_surface_get_implementation_data(dsurface);
struct weston_seat *wseat = wl_resource_get_user_data(seat_resource);
struct weston_desktop_seat *seat = weston_desktop_seat_from_seat(wseat);
struct weston_desktop_surface *topmost;
bool parent_is_toplevel =
popup->parent->role == WESTON_DESKTOP_XDG_SURFACE_ROLE_TOPLEVEL;
if (popup->committed) {
wl_resource_post_error(popup->resource,
ZXDG_POPUP_V6_ERROR_INVALID_GRAB,
"xdg_popup already is mapped");
return;
}
topmost = weston_desktop_seat_popup_grab_get_topmost_surface(seat);
if ((topmost == NULL && !parent_is_toplevel) ||
(topmost != NULL && topmost != popup->parent->desktop_surface)) {
struct weston_desktop_client *client =
weston_desktop_surface_get_client(dsurface);
struct wl_resource *client_resource =
weston_desktop_client_get_resource(client);
wl_resource_post_error(client_resource,
ZXDG_SHELL_V6_ERROR_NOT_THE_TOPMOST_POPUP,
"xdg_popup was not created on the topmost popup");
return;
}
popup->seat = seat;
weston_desktop_surface_popup_grab(popup->base.desktop_surface,
popup->seat, serial);
}
static void
weston_desktop_xdg_popup_send_configure(struct weston_desktop_xdg_popup *popup)
{
zxdg_popup_v6_send_configure(popup->resource,
popup->geometry.x,
popup->geometry.y,
popup->geometry.width,
popup->geometry.height);
}
static void
weston_desktop_xdg_popup_update_position(struct weston_desktop_surface *dsurface,
void *user_data);
static void
weston_desktop_xdg_popup_committed(struct weston_desktop_xdg_popup *popup)
{
if (!popup->committed)
weston_desktop_xdg_surface_schedule_configure(&popup->base, true);
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
popup->committed = true;
weston_desktop_xdg_popup_update_position(popup->base.desktop_surface,
popup);
}
static void
weston_desktop_xdg_popup_update_position(struct weston_desktop_surface *dsurface,
void *user_data)
{
}
static void
weston_desktop_xdg_popup_close(struct weston_desktop_xdg_popup *popup)
{
zxdg_popup_v6_send_popup_done(popup->resource);
}
static void
weston_desktop_xdg_popup_destroy(struct weston_desktop_xdg_popup *popup)
{
struct weston_desktop_surface *topmost;
struct weston_desktop_client *client =
weston_desktop_surface_get_client(popup->base.desktop_surface);
if (!weston_desktop_surface_get_grab(popup->base.desktop_surface))
return;
topmost = weston_desktop_seat_popup_grab_get_topmost_surface(popup->seat);
if (topmost != popup->base.desktop_surface) {
struct wl_resource *client_resource =
weston_desktop_client_get_resource(client);
wl_resource_post_error(client_resource,
ZXDG_SHELL_V6_ERROR_NOT_THE_TOPMOST_POPUP,
"xdg_popup was destroyed while it was not the topmost popup.");
}
weston_desktop_surface_popup_ungrab(popup->base.desktop_surface,
popup->seat);
}
static void
weston_desktop_xdg_popup_resource_destroy(struct wl_resource *resource)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
if (dsurface != NULL)
weston_desktop_surface_resource_destroy(resource);
}
static const struct zxdg_popup_v6_interface weston_desktop_xdg_popup_implementation = {
.destroy = weston_desktop_destroy_request,
.grab = weston_desktop_xdg_popup_protocol_grab,
};
static void
weston_desktop_xdg_surface_send_configure(void *user_data)
{
struct weston_desktop_xdg_surface *surface = user_data;
struct weston_desktop_xdg_surface_configure *configure;
surface->configure_idle = NULL;
configure = zalloc(weston_desktop_surface_configure_biggest_size);
if (configure == NULL) {
struct weston_desktop_client *client =
weston_desktop_surface_get_client(surface->desktop_surface);
struct wl_client *wl_client =
weston_desktop_client_get_client(client);
wl_client_post_no_memory(wl_client);
return;
}
wl_list_insert(surface->configure_list.prev, &configure->link);
configure->serial =
wl_display_next_serial(weston_desktop_get_display(surface->desktop));
switch (surface->role) {
case WESTON_DESKTOP_XDG_SURFACE_ROLE_NONE:
assert(0 && "not reached");
break;
case WESTON_DESKTOP_XDG_SURFACE_ROLE_TOPLEVEL:
weston_desktop_xdg_toplevel_send_configure((struct weston_desktop_xdg_toplevel *) surface,
(struct weston_desktop_xdg_toplevel_configure *) configure);
break;
case WESTON_DESKTOP_XDG_SURFACE_ROLE_POPUP:
weston_desktop_xdg_popup_send_configure((struct weston_desktop_xdg_popup *) surface);
break;
}
zxdg_surface_v6_send_configure(surface->resource, configure->serial);
static bool
weston_desktop_xdg_toplevel_state_compare(struct weston_desktop_xdg_toplevel *toplevel)
{
if (toplevel->pending.state.activated != toplevel->current.state.activated)
return false;
if (toplevel->pending.state.fullscreen != toplevel->current.state.fullscreen)
return false;
if (toplevel->pending.state.maximized != toplevel->current.state.maximized)
return false;
if (toplevel->pending.state.resizing != toplevel->current.state.resizing)
return false;
if (toplevel->base.surface->width == toplevel->pending.size.width &&
toplevel->base.surface->height == toplevel->pending.size.height)
return true;
if (toplevel->pending.size.width == 0 &&
toplevel->pending.size.height == 0)
return true;
return false;
}
weston_desktop_xdg_surface_schedule_configure(struct weston_desktop_xdg_surface *surface,
bool force)
{
struct wl_display *display = weston_desktop_get_display(surface->desktop);
struct wl_event_loop *loop = wl_display_get_event_loop(display);
bool pending_same = !force;
switch (surface->role) {
case WESTON_DESKTOP_XDG_SURFACE_ROLE_NONE:
assert(0 && "not reached");
break;
case WESTON_DESKTOP_XDG_SURFACE_ROLE_TOPLEVEL:
pending_same = pending_same &&
weston_desktop_xdg_toplevel_state_compare((struct weston_desktop_xdg_toplevel *) surface);
break;
case WESTON_DESKTOP_XDG_SURFACE_ROLE_POPUP:
break;
}
if (surface->configure_idle != NULL) {
if (!pending_same)
return;
wl_event_source_remove(surface->configure_idle);
surface->configure_idle = NULL;
} else {
if (pending_same)
return;
surface->configure_idle =
wl_event_loop_add_idle(loop,
weston_desktop_xdg_surface_send_configure,
surface);
}
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
}
static void
weston_desktop_xdg_surface_protocol_get_toplevel(struct wl_client *wl_client,
struct wl_resource *resource,
uint32_t id)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_surface *wsurface =
weston_desktop_surface_get_surface(dsurface);
struct weston_desktop_xdg_toplevel *toplevel =
weston_desktop_surface_get_implementation_data(dsurface);
if (weston_surface_set_role(wsurface, weston_desktop_xdg_toplevel_role,
resource, ZXDG_SHELL_V6_ERROR_ROLE) < 0)
return;
toplevel->resource =
weston_desktop_surface_add_resource(toplevel->base.desktop_surface,
&zxdg_toplevel_v6_interface,
&weston_desktop_xdg_toplevel_implementation,
id, weston_desktop_xdg_toplevel_resource_destroy);
if (toplevel->resource == NULL)
return;
toplevel->base.role = WESTON_DESKTOP_XDG_SURFACE_ROLE_TOPLEVEL;
}
static void
weston_desktop_xdg_surface_protocol_get_popup(struct wl_client *wl_client,
struct wl_resource *resource,
uint32_t id,
struct wl_resource *parent_resource,
struct wl_resource *positioner_resource)
{
struct weston_desktop_surface *dsurface =
wl_resource_get_user_data(resource);
struct weston_surface *wsurface =
weston_desktop_surface_get_surface(dsurface);
struct weston_desktop_xdg_popup *popup =
weston_desktop_surface_get_implementation_data(dsurface);