swayfx/sway/desktop/xdg_shell_v6.c

156 lines
4.8 KiB
C
Raw Normal View History

#define _POSIX_C_SOURCE 199309L
2017-11-26 02:59:49 +11:00
#include <stdbool.h>
#include <stdlib.h>
#include <wayland-server.h>
#include <wlr/types/wlr_xdg_shell_v6.h>
#include "sway/tree/container.h"
#include "sway/tree/layout.h"
#include "sway/server.h"
#include "sway/tree/view.h"
2017-12-11 07:13:27 +11:00
#include "sway/input/seat.h"
#include "sway/input/input-manager.h"
#include "log.h"
2017-11-26 02:59:49 +11:00
static bool assert_xdg(struct sway_view *view) {
return sway_assert(view->type == SWAY_XDG_SHELL_V6_VIEW,
"Expected xdg shell v6 view!");
}
static const char *get_prop(struct sway_view *view, enum sway_view_prop prop) {
2017-11-26 02:59:49 +11:00
if (!assert_xdg(view)) {
return NULL;
}
switch (prop) {
case VIEW_PROP_TITLE:
2018-03-28 06:54:34 +11:00
return view->wlr_xdg_surface_v6->toplevel->title;
case VIEW_PROP_APP_ID:
2018-03-28 06:54:34 +11:00
return view->wlr_xdg_surface_v6->toplevel->app_id;
default:
return NULL;
}
}
2017-12-04 03:01:44 +11:00
static void set_size(struct sway_view *view, int width, int height) {
if (!assert_xdg(view)) {
return;
2017-11-26 02:59:49 +11:00
}
view->sway_xdg_surface_v6->pending_width = width;
view->sway_xdg_surface_v6->pending_height = height;
wlr_xdg_toplevel_v6_set_size(view->wlr_xdg_surface_v6, width, height);
}
2017-12-06 03:02:31 +11:00
static void set_position(struct sway_view *view, double ox, double oy) {
if (!assert_xdg(view)) {
return;
}
view->swayc->x = ox;
view->swayc->y = oy;
}
2017-12-06 23:34:33 +11:00
static void set_activated(struct sway_view *view, bool activated) {
if (!assert_xdg(view)) {
return;
}
struct wlr_xdg_surface_v6 *surface = view->wlr_xdg_surface_v6;
if (surface->role == WLR_XDG_SURFACE_V6_ROLE_TOPLEVEL) {
wlr_xdg_toplevel_v6_set_activated(surface, activated);
}
}
2018-01-21 06:10:11 +11:00
static void close(struct sway_view *view) {
if (!assert_xdg(view)) {
return;
}
struct wlr_xdg_surface_v6 *surface = view->wlr_xdg_surface_v6;
if (surface->role == WLR_XDG_SURFACE_V6_ROLE_TOPLEVEL) {
2018-03-28 04:28:43 +11:00
wlr_xdg_surface_v6_send_close(surface);
2018-01-21 06:10:11 +11:00
}
}
static void handle_commit(struct wl_listener *listener, void *data) {
struct sway_xdg_surface_v6 *sway_surface =
wl_container_of(listener, sway_surface, commit);
struct sway_view *view = sway_surface->view;
// NOTE: We intentionally discard the view's desired width here
2018-02-26 09:23:36 +11:00
// TODO: Store this for restoration when moving to floating plane
2017-11-26 08:30:15 +11:00
// TODO: Let floating views do whatever
view->width = sway_surface->pending_width;
view->height = sway_surface->pending_height;
view_damage_from(view);
2017-11-26 02:59:49 +11:00
}
static void handle_unmap(struct wl_listener *listener, void *data) {
struct sway_xdg_surface_v6 *sway_surface =
wl_container_of(listener, sway_surface, unmap);
view_unmap(sway_surface->view);
}
static void handle_map(struct wl_listener *listener, void *data) {
struct sway_xdg_surface_v6 *sway_surface =
wl_container_of(listener, sway_surface, map);
struct sway_view *view = sway_surface->view;
view_map(view, view->wlr_xdg_surface_v6->surface);
}
2017-11-26 08:30:15 +11:00
static void handle_destroy(struct wl_listener *listener, void *data) {
struct sway_xdg_surface_v6 *sway_xdg_surface =
wl_container_of(listener, sway_xdg_surface, destroy);
wl_list_remove(&sway_xdg_surface->commit.link);
wl_list_remove(&sway_xdg_surface->destroy.link);
wl_list_remove(&sway_xdg_surface->map.link);
wl_list_remove(&sway_xdg_surface->unmap.link);
view_destroy(sway_xdg_surface->view);
2017-11-26 08:30:15 +11:00
free(sway_xdg_surface);
}
void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data) {
struct sway_server *server = wl_container_of(
listener, server, xdg_shell_v6_surface);
struct wlr_xdg_surface_v6 *xdg_surface = data;
if (xdg_surface->role == WLR_XDG_SURFACE_V6_ROLE_POPUP) {
// TODO: popups
return;
}
2018-01-06 08:32:51 +11:00
wlr_log(L_DEBUG, "New xdg_shell_v6 toplevel title='%s' app_id='%s'",
2018-03-28 06:54:34 +11:00
xdg_surface->toplevel->title, xdg_surface->toplevel->app_id);
wlr_xdg_surface_v6_ping(xdg_surface);
wlr_xdg_toplevel_v6_set_maximized(xdg_surface, true);
struct sway_xdg_surface_v6 *sway_surface =
calloc(1, sizeof(struct sway_xdg_surface_v6));
if (!sway_assert(sway_surface, "Failed to allocate surface!")) {
return;
}
struct sway_view *view = view_create(SWAY_XDG_SHELL_V6_VIEW);
if (!sway_assert(view, "Failed to allocate view")) {
return;
}
view->iface.get_prop = get_prop;
view->iface.set_size = set_size;
view->iface.set_position = set_position;
view->iface.set_activated = set_activated;
view->iface.close = close;
view->wlr_xdg_surface_v6 = xdg_surface;
view->sway_xdg_surface_v6 = sway_surface;
sway_surface->view = view;
// TODO:
// - Look up pid and open on appropriate workspace
// - Criteria
sway_surface->commit.notify = handle_commit;
2017-12-28 02:10:13 +11:00
wl_signal_add(&xdg_surface->surface->events.commit, &sway_surface->commit);
sway_surface->map.notify = handle_map;
wl_signal_add(&xdg_surface->events.map, &sway_surface->map);
2017-11-26 02:59:49 +11:00
sway_surface->unmap.notify = handle_unmap;
wl_signal_add(&xdg_surface->events.unmap, &sway_surface->unmap);
2017-12-11 07:13:27 +11:00
sway_surface->destroy.notify = handle_destroy;
wl_signal_add(&xdg_surface->events.destroy, &sway_surface->destroy);
}