2019-12-26 21:37:31 +00:00
|
|
|
#include "labwc.h"
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static void
|
|
|
|
|
handle_commit(struct wl_listener *listener, void *data)
|
2020-08-31 08:12:44 +01:00
|
|
|
{
|
|
|
|
|
struct view *view = wl_container_of(listener, view, commit);
|
|
|
|
|
BUG_ON(!view->surface);
|
|
|
|
|
|
|
|
|
|
/* Must receive commit signal before accessing surface->current* */
|
|
|
|
|
view->w = view->surface->current.width;
|
|
|
|
|
view->h = view->surface->current.height;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static void
|
|
|
|
|
handle_map(struct wl_listener *listener, void *data)
|
2019-12-27 21:22:45 +00:00
|
|
|
{
|
2019-12-27 20:48:58 +00:00
|
|
|
struct view *view = wl_container_of(listener, view, map);
|
2020-09-03 20:50:35 +01:00
|
|
|
view->impl->map(view);
|
2019-12-26 21:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static void
|
|
|
|
|
handle_unmap(struct wl_listener *listener, void *data)
|
2019-12-27 21:22:45 +00:00
|
|
|
{
|
2019-12-27 20:48:58 +00:00
|
|
|
struct view *view = wl_container_of(listener, view, unmap);
|
2020-09-03 20:50:35 +01:00
|
|
|
view->impl->unmap(view);
|
2019-12-26 21:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static void
|
|
|
|
|
handle_destroy(struct wl_listener *listener, void *data)
|
2019-12-27 21:22:45 +00:00
|
|
|
{
|
2019-12-27 20:48:58 +00:00
|
|
|
struct view *view = wl_container_of(listener, view, destroy);
|
2020-09-07 19:34:11 +01:00
|
|
|
wl_list_remove(&view->link);
|
2020-08-19 20:52:27 +01:00
|
|
|
wl_list_remove(&view->map.link);
|
|
|
|
|
wl_list_remove(&view->unmap.link);
|
|
|
|
|
wl_list_remove(&view->destroy.link);
|
|
|
|
|
wl_list_remove(&view->request_configure.link);
|
2019-12-26 21:37:31 +00:00
|
|
|
free(view);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static void
|
|
|
|
|
handle_request_configure(struct wl_listener *listener, void *data)
|
2019-12-27 21:22:45 +00:00
|
|
|
{
|
2019-12-27 20:48:58 +00:00
|
|
|
struct view *view = wl_container_of(listener, view, request_configure);
|
2019-12-26 21:37:31 +00:00
|
|
|
struct wlr_xwayland_surface_configure_event *event = data;
|
2019-12-27 21:22:45 +00:00
|
|
|
wlr_xwayland_surface_configure(view->xwayland_surface, event->x,
|
|
|
|
|
event->y, event->width, event->height);
|
2019-12-26 21:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static void
|
|
|
|
|
configure(struct view *view, struct wlr_box geo)
|
2020-09-02 20:20:52 +01:00
|
|
|
{
|
2020-09-02 21:00:28 +01:00
|
|
|
wlr_xwayland_surface_configure(view->xwayland_surface, (int16_t)geo.x,
|
|
|
|
|
(int16_t)geo.y, (uint16_t)geo.width,
|
|
|
|
|
(uint16_t)geo.height);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static void
|
|
|
|
|
_close(struct view *view)
|
2020-09-02 21:00:28 +01:00
|
|
|
{
|
|
|
|
|
wlr_xwayland_surface_close(view->xwayland_surface);
|
2020-09-02 20:20:52 +01:00
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static bool
|
|
|
|
|
want_deco(struct view *view)
|
2020-09-03 21:40:27 +01:00
|
|
|
{
|
2020-09-15 20:41:01 +01:00
|
|
|
return view->xwayland_surface->decorations ==
|
|
|
|
|
WLR_XWAYLAND_SURFACE_DECORATIONS_ALL;
|
2020-09-03 21:40:27 +01:00
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static void
|
|
|
|
|
top_left_edge_boundary_check(struct view *view)
|
2020-09-17 21:11:54 +01:00
|
|
|
{
|
|
|
|
|
struct wlr_box deco = deco_max_extents(view);
|
2020-09-28 20:41:41 +01:00
|
|
|
if (deco.x < 0) {
|
2020-09-17 21:11:54 +01:00
|
|
|
view->x -= deco.x;
|
2020-09-28 20:41:41 +01:00
|
|
|
}
|
|
|
|
|
if (deco.y < 0) {
|
2020-09-17 21:11:54 +01:00
|
|
|
view->y -= deco.y;
|
2020-09-28 20:41:41 +01:00
|
|
|
}
|
2020-09-17 21:11:54 +01:00
|
|
|
struct wlr_box box = {
|
|
|
|
|
.x = view->x, .y = view->y, .width = view->w, .height = view->h
|
|
|
|
|
};
|
|
|
|
|
view->impl->configure(view, box);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static void
|
|
|
|
|
map(struct view *view)
|
2020-09-03 20:50:35 +01:00
|
|
|
{
|
|
|
|
|
view->mapped = true;
|
|
|
|
|
view->x = view->xwayland_surface->x;
|
|
|
|
|
view->y = view->xwayland_surface->y;
|
2020-09-15 20:41:01 +01:00
|
|
|
view->w = view->xwayland_surface->width;
|
|
|
|
|
view->h = view->xwayland_surface->height;
|
2020-09-03 20:50:35 +01:00
|
|
|
view->surface = view->xwayland_surface->surface;
|
2020-09-15 21:10:02 +01:00
|
|
|
view->server_side_deco = want_deco(view);
|
2020-09-15 20:41:01 +01:00
|
|
|
|
2020-09-17 21:11:54 +01:00
|
|
|
view->margin = deco_thickness(view);
|
2020-09-15 20:41:01 +01:00
|
|
|
|
2020-09-17 21:11:54 +01:00
|
|
|
top_left_edge_boundary_check(view);
|
2020-09-03 20:50:35 +01:00
|
|
|
|
2020-09-04 20:25:20 +01:00
|
|
|
/* Add commit here, as xwayland map/unmap can change the wlr_surface */
|
2020-09-03 20:50:35 +01:00
|
|
|
wl_signal_add(&view->xwayland_surface->surface->events.commit,
|
|
|
|
|
&view->commit);
|
|
|
|
|
view->commit.notify = handle_commit;
|
|
|
|
|
|
2020-09-11 20:48:28 +01:00
|
|
|
desktop_focus_view(view);
|
2020-09-03 20:50:35 +01:00
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
static void
|
|
|
|
|
unmap(struct view *view)
|
2020-09-03 20:50:35 +01:00
|
|
|
{
|
|
|
|
|
view->mapped = false;
|
|
|
|
|
wl_list_remove(&view->commit.link);
|
2020-09-18 20:28:48 +01:00
|
|
|
desktop_focus_next_mapped_view(view);
|
2020-09-03 20:50:35 +01:00
|
|
|
}
|
|
|
|
|
|
2020-09-02 20:20:52 +01:00
|
|
|
static const struct view_impl xwl_view_impl = {
|
2020-09-03 21:40:27 +01:00
|
|
|
.configure = configure,
|
|
|
|
|
.close = _close,
|
|
|
|
|
.map = map,
|
|
|
|
|
.unmap = unmap,
|
2020-09-02 20:20:52 +01:00
|
|
|
};
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
void
|
|
|
|
|
xwayland_surface_new(struct wl_listener *listener, void *data)
|
2019-12-27 21:22:45 +00:00
|
|
|
{
|
2019-12-27 20:48:58 +00:00
|
|
|
struct server *server =
|
2019-12-26 21:37:31 +00:00
|
|
|
wl_container_of(listener, server, new_xwayland_surface);
|
2020-09-04 20:25:20 +01:00
|
|
|
struct wlr_xwayland_surface *xsurface = data;
|
|
|
|
|
wlr_xwayland_surface_ping(xsurface);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* We do not create 'views' for xwayland override_redirect surfaces,
|
|
|
|
|
* but add them to server.unmanaged_surfaces so that we can render them
|
|
|
|
|
*/
|
|
|
|
|
if (xsurface->override_redirect) {
|
2020-09-08 20:18:12 +01:00
|
|
|
xwayland_unmanaged_create(server, xsurface);
|
2020-09-04 20:25:20 +01:00
|
|
|
return;
|
|
|
|
|
}
|
2019-12-26 21:37:31 +00:00
|
|
|
|
2019-12-27 20:48:58 +00:00
|
|
|
struct view *view = calloc(1, sizeof(struct view));
|
2019-12-26 21:37:31 +00:00
|
|
|
view->server = server;
|
|
|
|
|
view->type = LAB_XWAYLAND_VIEW;
|
2020-09-02 20:20:52 +01:00
|
|
|
view->impl = &xwl_view_impl;
|
2020-09-04 20:25:20 +01:00
|
|
|
view->xwayland_surface = xsurface;
|
2019-12-26 21:37:31 +00:00
|
|
|
|
2020-09-03 21:40:27 +01:00
|
|
|
view->map.notify = handle_map;
|
2020-09-04 20:25:20 +01:00
|
|
|
wl_signal_add(&xsurface->events.map, &view->map);
|
2020-09-03 21:40:27 +01:00
|
|
|
view->unmap.notify = handle_unmap;
|
2020-09-04 20:25:20 +01:00
|
|
|
wl_signal_add(&xsurface->events.unmap, &view->unmap);
|
2020-09-03 21:40:27 +01:00
|
|
|
view->destroy.notify = handle_destroy;
|
2020-09-04 20:25:20 +01:00
|
|
|
wl_signal_add(&xsurface->events.destroy, &view->destroy);
|
2020-09-03 21:40:27 +01:00
|
|
|
view->request_configure.notify = handle_request_configure;
|
2020-09-04 20:25:20 +01:00
|
|
|
wl_signal_add(&xsurface->events.request_configure,
|
2019-12-27 21:22:45 +00:00
|
|
|
&view->request_configure);
|
2020-09-07 19:34:11 +01:00
|
|
|
|
|
|
|
|
wl_list_insert(&view->server->views, &view->link);
|
2019-12-26 21:37:31 +00:00
|
|
|
}
|