2020-12-25 06:33:55 +00:00
|
|
|
/*
|
|
|
|
* Attempt to consolidate unavoidable suck into one file, away from dwl.c. This
|
|
|
|
* file is not meant to be pretty. We use a .h file with static inline
|
|
|
|
* functions instead of a separate .c module, or function pointers like sway, so
|
|
|
|
* that they will simply compile out if the chosen #defines leave them unused.
|
|
|
|
*/
|
|
|
|
|
2021-09-05 16:41:23 +00:00
|
|
|
/* Leave these functions first; they're used in the others */
|
2020-12-25 06:33:55 +00:00
|
|
|
static inline int
|
|
|
|
client_is_x11(Client *c)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
2023-12-11 05:44:33 +00:00
|
|
|
return c->type == X11;
|
2020-12-25 06:33:55 +00:00
|
|
|
#endif
|
2023-11-17 03:45:08 +00:00
|
|
|
return 0;
|
2020-12-25 06:33:55 +00:00
|
|
|
}
|
|
|
|
|
2022-08-27 21:29:23 +00:00
|
|
|
static inline struct wlr_surface *
|
|
|
|
client_surface(Client *c)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c))
|
|
|
|
return c->surface.xwayland->surface;
|
|
|
|
#endif
|
|
|
|
return c->surface.xdg->surface;
|
|
|
|
}
|
|
|
|
|
2022-12-03 21:17:43 +00:00
|
|
|
static inline int
|
|
|
|
toplevel_from_wlr_surface(struct wlr_surface *s, Client **pc, LayerSurface **pl)
|
2022-12-03 20:31:18 +00:00
|
|
|
{
|
2023-08-21 23:53:24 +00:00
|
|
|
struct wlr_xdg_surface *xdg_surface, *tmp_xdg_surface;
|
2022-12-03 20:31:18 +00:00
|
|
|
struct wlr_surface *root_surface;
|
|
|
|
struct wlr_layer_surface_v1 *layer_surface;
|
2022-12-03 21:17:43 +00:00
|
|
|
Client *c = NULL;
|
|
|
|
LayerSurface *l = NULL;
|
|
|
|
int type = -1;
|
2022-12-03 20:31:18 +00:00
|
|
|
#ifdef XWAYLAND
|
|
|
|
struct wlr_xwayland_surface *xsurface;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!s)
|
2023-11-17 03:46:46 +00:00
|
|
|
return -1;
|
2022-12-03 20:31:18 +00:00
|
|
|
root_surface = wlr_surface_get_root_surface(s);
|
|
|
|
|
|
|
|
#ifdef XWAYLAND
|
2023-02-01 19:09:45 +00:00
|
|
|
if ((xsurface = wlr_xwayland_surface_try_from_wlr_surface(root_surface))) {
|
2022-12-03 21:17:43 +00:00
|
|
|
c = xsurface->data;
|
|
|
|
type = c->type;
|
|
|
|
goto end;
|
|
|
|
}
|
2022-12-03 20:31:18 +00:00
|
|
|
#endif
|
|
|
|
|
2023-02-02 16:30:24 +00:00
|
|
|
if ((layer_surface = wlr_layer_surface_v1_try_from_wlr_surface(root_surface))) {
|
2022-12-03 21:17:43 +00:00
|
|
|
l = layer_surface->data;
|
|
|
|
type = LayerShell;
|
|
|
|
goto end;
|
|
|
|
}
|
2022-12-03 20:31:18 +00:00
|
|
|
|
2023-08-21 23:53:24 +00:00
|
|
|
xdg_surface = wlr_xdg_surface_try_from_wlr_surface(root_surface);
|
|
|
|
while (xdg_surface) {
|
|
|
|
tmp_xdg_surface = NULL;
|
|
|
|
switch (xdg_surface->role) {
|
|
|
|
case WLR_XDG_SURFACE_ROLE_POPUP:
|
|
|
|
if (!xdg_surface->popup || !xdg_surface->popup->parent)
|
2022-12-03 21:17:43 +00:00
|
|
|
return -1;
|
2023-08-21 23:53:24 +00:00
|
|
|
|
|
|
|
tmp_xdg_surface = wlr_xdg_surface_try_from_wlr_surface(xdg_surface->popup->parent);
|
|
|
|
|
|
|
|
if (!tmp_xdg_surface)
|
|
|
|
return toplevel_from_wlr_surface(xdg_surface->popup->parent, pc, pl);
|
|
|
|
|
|
|
|
xdg_surface = tmp_xdg_surface;
|
|
|
|
break;
|
|
|
|
case WLR_XDG_SURFACE_ROLE_TOPLEVEL:
|
|
|
|
c = xdg_surface->data;
|
|
|
|
type = c->type;
|
|
|
|
goto end;
|
|
|
|
case WLR_XDG_SURFACE_ROLE_NONE:
|
|
|
|
return -1;
|
2022-12-03 20:31:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-03 21:17:43 +00:00
|
|
|
end:
|
|
|
|
if (pl)
|
|
|
|
*pl = l;
|
|
|
|
if (pc)
|
|
|
|
*pc = c;
|
|
|
|
return type;
|
2022-12-03 20:31:18 +00:00
|
|
|
}
|
|
|
|
|
2020-12-25 06:33:55 +00:00
|
|
|
/* The others */
|
|
|
|
static inline void
|
|
|
|
client_activate_surface(struct wlr_surface *s, int activated)
|
|
|
|
{
|
2023-11-17 03:47:29 +00:00
|
|
|
struct wlr_xdg_toplevel *toplevel;
|
2020-12-25 06:33:55 +00:00
|
|
|
#ifdef XWAYLAND
|
2022-05-14 05:24:06 +00:00
|
|
|
struct wlr_xwayland_surface *xsurface;
|
2023-02-01 19:09:45 +00:00
|
|
|
if ((xsurface = wlr_xwayland_surface_try_from_wlr_surface(s))) {
|
2022-05-14 05:24:06 +00:00
|
|
|
wlr_xwayland_surface_activate(xsurface, activated);
|
2020-12-25 06:33:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2023-11-17 03:47:29 +00:00
|
|
|
if ((toplevel = wlr_xdg_toplevel_try_from_wlr_surface(s)))
|
|
|
|
wlr_xdg_toplevel_set_activated(toplevel, activated);
|
2020-12-25 06:33:55 +00:00
|
|
|
}
|
|
|
|
|
2022-06-09 17:45:42 +00:00
|
|
|
static inline uint32_t
|
|
|
|
client_set_bounds(Client *c, int32_t width, int32_t height)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c))
|
|
|
|
return 0;
|
|
|
|
#endif
|
2023-11-17 03:48:56 +00:00
|
|
|
if (wl_resource_get_version(c->surface.xdg->toplevel->resource) >=
|
2023-11-22 02:08:20 +00:00
|
|
|
XDG_TOPLEVEL_CONFIGURE_BOUNDS_SINCE_VERSION && width >= 0 && height >= 0
|
|
|
|
&& (c->bounds.width != width || c->bounds.height != height)) {
|
|
|
|
c->bounds.width = width;
|
|
|
|
c->bounds.height = height;
|
2022-07-15 05:27:31 +00:00
|
|
|
return wlr_xdg_toplevel_set_bounds(c->surface.xdg->toplevel, width, height);
|
2023-11-22 02:08:20 +00:00
|
|
|
}
|
2022-07-15 05:27:31 +00:00
|
|
|
return 0;
|
2022-06-09 17:45:42 +00:00
|
|
|
}
|
|
|
|
|
2020-12-25 06:33:55 +00:00
|
|
|
static inline const char *
|
|
|
|
client_get_appid(Client *c)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c))
|
|
|
|
return c->surface.xwayland->class;
|
|
|
|
#endif
|
|
|
|
return c->surface.xdg->toplevel->app_id;
|
|
|
|
}
|
|
|
|
|
2023-07-09 02:08:45 +00:00
|
|
|
static inline void
|
|
|
|
client_get_clip(Client *c, struct wlr_box *clip)
|
|
|
|
{
|
2023-11-17 03:12:50 +00:00
|
|
|
struct wlr_box xdg_geom = {0};
|
|
|
|
*clip = (struct wlr_box){
|
|
|
|
.x = 0,
|
|
|
|
.y = 0,
|
|
|
|
.width = c->geom.width - c->bw,
|
|
|
|
.height = c->geom.height - c->bw,
|
|
|
|
};
|
|
|
|
|
2023-07-09 02:08:45 +00:00
|
|
|
#ifdef XWAYLAND
|
2023-11-17 03:12:50 +00:00
|
|
|
if (client_is_x11(c))
|
2023-07-09 02:08:45 +00:00
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2023-11-17 03:12:50 +00:00
|
|
|
wlr_xdg_surface_get_geometry(c->surface.xdg, &xdg_geom);
|
|
|
|
clip->x = xdg_geom.x;
|
|
|
|
clip->y = xdg_geom.y;
|
2023-07-09 02:08:45 +00:00
|
|
|
}
|
|
|
|
|
2020-12-25 06:33:55 +00:00
|
|
|
static inline void
|
|
|
|
client_get_geometry(Client *c, struct wlr_box *geom)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c)) {
|
|
|
|
geom->x = c->surface.xwayland->x;
|
|
|
|
geom->y = c->surface.xwayland->y;
|
|
|
|
geom->width = c->surface.xwayland->width;
|
|
|
|
geom->height = c->surface.xwayland->height;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
wlr_xdg_surface_get_geometry(c->surface.xdg, geom);
|
|
|
|
}
|
|
|
|
|
2022-12-03 20:30:38 +00:00
|
|
|
static inline Client *
|
|
|
|
client_get_parent(Client *c)
|
|
|
|
{
|
2022-12-03 21:17:43 +00:00
|
|
|
Client *p = NULL;
|
2022-12-03 20:30:38 +00:00
|
|
|
#ifdef XWAYLAND
|
2024-01-28 08:06:20 +00:00
|
|
|
if (client_is_x11(c)) {
|
|
|
|
if (c->surface.xwayland->parent)
|
|
|
|
toplevel_from_wlr_surface(c->surface.xwayland->parent->surface, &p, NULL);
|
|
|
|
return p;
|
|
|
|
}
|
2022-12-03 20:30:38 +00:00
|
|
|
#endif
|
|
|
|
if (c->surface.xdg->toplevel->parent)
|
2022-12-03 21:17:43 +00:00
|
|
|
toplevel_from_wlr_surface(c->surface.xdg->toplevel->parent->base->surface, &p, NULL);
|
|
|
|
return p;
|
2022-12-03 20:30:38 +00:00
|
|
|
}
|
|
|
|
|
place child clients above fullscreen clients
When a child window of a fullscreen client is mapped, the fullscreen is
disabled, and if the previously fullscreen client is floating the child
window is rendered below it and cannot be seen, causing confusion,
though it is still focused and interactable.
Fix this by putting children of fullscreen clients in LyrFS instead of
LyrFloat, and by returning before the unset_fullscreen code is called
when they are mapped.
focusstack() now lets you switch focus from a fullscreen client to its
child windows, otherwise if you switch focus from the child window to
the fullscreen client you could not focus the child window again and the
fullscreen client would stay unresponsive.
Child clients are not reparented to LyrFloat after leaving fullscreen,
so you could spawn a child window, focus back the fullscreen client,
unfullscreen it, and the child window would still be drawn above other
floating clients. Avoid dealing with this edge case to keep the line
count low.
These cases can be tested by pressing Ctrl+o in applications with an
open file dialog.
2024-01-28 17:30:36 +00:00
|
|
|
static inline int
|
|
|
|
client_has_children(Client *c)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c))
|
|
|
|
return !wl_list_empty(&c->surface.xwayland->children);
|
|
|
|
#endif
|
|
|
|
/* surface.xdg->link is never empty because it always contains at least the
|
|
|
|
* surface itself. */
|
|
|
|
return wl_list_length(&c->surface.xdg->link) > 1;
|
|
|
|
}
|
|
|
|
|
2020-12-25 06:33:55 +00:00
|
|
|
static inline const char *
|
|
|
|
client_get_title(Client *c)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c))
|
|
|
|
return c->surface.xwayland->title;
|
|
|
|
#endif
|
|
|
|
return c->surface.xdg->toplevel->title;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
client_is_float_type(Client *c)
|
|
|
|
{
|
2023-07-09 02:07:27 +00:00
|
|
|
struct wlr_xdg_toplevel *toplevel;
|
|
|
|
struct wlr_xdg_toplevel_state state;
|
2022-03-21 19:52:33 +00:00
|
|
|
|
2020-12-25 06:33:55 +00:00
|
|
|
#ifdef XWAYLAND
|
2022-03-21 19:52:33 +00:00
|
|
|
if (client_is_x11(c)) {
|
|
|
|
struct wlr_xwayland_surface *surface = c->surface.xwayland;
|
2023-11-17 03:27:49 +00:00
|
|
|
xcb_size_hints_t *size_hints = surface->size_hints;
|
|
|
|
size_t i;
|
2022-03-21 19:52:33 +00:00
|
|
|
if (surface->modal)
|
|
|
|
return 1;
|
|
|
|
|
2023-11-17 03:27:49 +00:00
|
|
|
for (i = 0; i < surface->window_type_len; i++)
|
|
|
|
if (surface->window_type[i] == netatom[NetWMWindowTypeDialog]
|
|
|
|
|| surface->window_type[i] == netatom[NetWMWindowTypeSplash]
|
|
|
|
|| surface->window_type[i] == netatom[NetWMWindowTypeToolbar]
|
|
|
|
|| surface->window_type[i] == netatom[NetWMWindowTypeUtility])
|
2020-12-25 06:33:55 +00:00
|
|
|
return 1;
|
2023-07-09 02:07:27 +00:00
|
|
|
|
|
|
|
return size_hints && size_hints->min_width > 0 && size_hints->min_height > 0
|
|
|
|
&& (size_hints->max_width == size_hints->min_width
|
|
|
|
|| size_hints->max_height == size_hints->min_height);
|
2022-03-21 19:52:33 +00:00
|
|
|
}
|
2020-12-25 06:33:55 +00:00
|
|
|
#endif
|
2023-07-09 02:07:27 +00:00
|
|
|
|
|
|
|
toplevel = c->surface.xdg->toplevel;
|
|
|
|
state = toplevel->current;
|
2023-11-17 03:27:49 +00:00
|
|
|
return toplevel->parent || (state.min_width != 0 && state.min_height != 0
|
2023-07-09 02:07:27 +00:00
|
|
|
&& (state.min_width == state.max_width
|
2023-11-17 03:27:49 +00:00
|
|
|
|| state.min_height == state.max_height));
|
2020-12-25 06:33:55 +00:00
|
|
|
}
|
|
|
|
|
2022-12-06 20:47:55 +00:00
|
|
|
static inline int
|
|
|
|
client_is_rendered_on_mon(Client *c, Monitor *m)
|
|
|
|
{
|
|
|
|
/* This is needed for when you don't want to check formal assignment,
|
|
|
|
* but rather actual displaying of the pixels.
|
|
|
|
* Usually VISIBLEON suffices and is also faster. */
|
|
|
|
struct wlr_surface_output *s;
|
2023-11-17 03:21:40 +00:00
|
|
|
int unused_lx, unused_ly;
|
|
|
|
if (!wlr_scene_node_coords(&c->scene->node, &unused_lx, &unused_ly))
|
2022-12-06 20:47:55 +00:00
|
|
|
return 0;
|
|
|
|
wl_list_for_each(s, &client_surface(c)->current_outputs, link)
|
|
|
|
if (s->output == m->wlr_output)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-12-21 20:28:27 +00:00
|
|
|
static inline int
|
|
|
|
client_is_stopped(Client *c)
|
|
|
|
{
|
|
|
|
int pid;
|
|
|
|
siginfo_t in = {0};
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c))
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
wl_client_get_credentials(c->surface.xdg->client->client, &pid, NULL, NULL);
|
|
|
|
if (waitid(P_PID, pid, &in, WNOHANG|WCONTINUED|WSTOPPED|WNOWAIT) < 0) {
|
|
|
|
/* This process is not our child process, while is very unluckely that
|
|
|
|
* it is stopped, in order to do not skip frames assume that it is. */
|
|
|
|
if (errno == ECHILD)
|
|
|
|
return 1;
|
|
|
|
} else if (in.si_pid) {
|
|
|
|
if (in.si_code == CLD_STOPPED || in.si_code == CLD_TRAPPED)
|
|
|
|
return 1;
|
|
|
|
if (in.si_code == CLD_CONTINUED)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-03-14 02:54:44 +00:00
|
|
|
static inline int
|
2022-08-27 21:29:23 +00:00
|
|
|
client_is_unmanaged(Client *c)
|
2022-03-14 02:54:44 +00:00
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
2023-12-11 05:42:35 +00:00
|
|
|
if (client_is_x11(c))
|
|
|
|
return c->surface.xwayland->override_redirect;
|
2022-03-14 02:54:44 +00:00
|
|
|
#endif
|
2022-08-27 21:29:23 +00:00
|
|
|
return 0;
|
2022-03-14 02:54:44 +00:00
|
|
|
}
|
|
|
|
|
2022-08-27 21:05:12 +00:00
|
|
|
static inline void
|
|
|
|
client_notify_enter(struct wlr_surface *s, struct wlr_keyboard *kb)
|
|
|
|
{
|
|
|
|
if (kb)
|
|
|
|
wlr_seat_keyboard_notify_enter(seat, s, kb->keycodes,
|
|
|
|
kb->num_keycodes, &kb->modifiers);
|
|
|
|
else
|
|
|
|
wlr_seat_keyboard_notify_enter(seat, s, NULL, 0, NULL);
|
|
|
|
}
|
|
|
|
|
2022-08-27 21:29:23 +00:00
|
|
|
static inline void
|
|
|
|
client_restack_surface(Client *c)
|
2020-12-25 06:33:55 +00:00
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
2022-08-27 21:29:23 +00:00
|
|
|
if (client_is_x11(c))
|
|
|
|
wlr_xwayland_surface_restack(c->surface.xwayland, NULL,
|
|
|
|
XCB_STACK_MODE_ABOVE);
|
2020-12-25 06:33:55 +00:00
|
|
|
#endif
|
2022-08-27 21:29:23 +00:00
|
|
|
return;
|
2020-12-25 06:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
client_send_close(Client *c)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c)) {
|
|
|
|
wlr_xwayland_surface_close(c->surface.xwayland);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2022-02-04 03:54:44 +00:00
|
|
|
wlr_xdg_toplevel_send_close(c->surface.xdg->toplevel);
|
2020-12-25 06:33:55 +00:00
|
|
|
}
|
|
|
|
|
2023-10-06 04:20:08 +00:00
|
|
|
static inline void
|
|
|
|
client_set_border_color(Client *c, const float color[static 4])
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
wlr_scene_rect_set_color(c->border[i], color);
|
|
|
|
}
|
|
|
|
|
2020-12-25 06:33:55 +00:00
|
|
|
static inline void
|
|
|
|
client_set_fullscreen(Client *c, int fullscreen)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c)) {
|
|
|
|
wlr_xwayland_surface_set_fullscreen(c->surface.xwayland, fullscreen);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2022-02-04 03:54:44 +00:00
|
|
|
wlr_xdg_toplevel_set_fullscreen(c->surface.xdg->toplevel, fullscreen);
|
2020-12-25 06:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint32_t
|
|
|
|
client_set_size(Client *c, uint32_t width, uint32_t height)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c)) {
|
|
|
|
wlr_xwayland_surface_configure(c->surface.xwayland,
|
|
|
|
c->geom.x, c->geom.y, width, height);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2023-01-11 18:13:53 +00:00
|
|
|
if ((int32_t)width == c->surface.xdg->toplevel->current.width
|
|
|
|
&& (int32_t)height == c->surface.xdg->toplevel->current.height)
|
2022-12-15 05:21:58 +00:00
|
|
|
return 0;
|
2023-01-11 18:13:53 +00:00
|
|
|
return wlr_xdg_toplevel_set_size(c->surface.xdg->toplevel, (int32_t)width, (int32_t)height);
|
2020-12-25 06:33:55 +00:00
|
|
|
}
|
|
|
|
|
2021-05-23 23:28:13 +00:00
|
|
|
static inline void
|
|
|
|
client_set_tiled(Client *c, uint32_t edges)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
if (client_is_x11(c))
|
|
|
|
return;
|
|
|
|
#endif
|
2023-12-13 04:17:57 +00:00
|
|
|
if (wl_resource_get_version(c->surface.xdg->toplevel->resource)
|
2023-11-01 18:04:59 +00:00
|
|
|
>= XDG_TOPLEVEL_STATE_TILED_RIGHT_SINCE_VERSION) {
|
|
|
|
wlr_xdg_toplevel_set_tiled(c->surface.xdg->toplevel, edges);
|
|
|
|
} else {
|
2023-11-17 03:17:39 +00:00
|
|
|
wlr_xdg_toplevel_set_maximized(c->surface.xdg->toplevel, edges != WLR_EDGE_NONE);
|
2023-11-01 18:04:59 +00:00
|
|
|
}
|
2021-05-23 23:28:13 +00:00
|
|
|
}
|
|
|
|
|
2023-07-24 02:59:29 +00:00
|
|
|
static inline void
|
|
|
|
client_set_suspended(Client *c, int suspended)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
2023-07-26 01:45:18 +00:00
|
|
|
if (client_is_x11(c)) {
|
|
|
|
wlr_xwayland_surface_set_withdrawn(c->surface.xwayland, suspended);
|
2023-07-24 02:59:29 +00:00
|
|
|
return;
|
2023-07-26 01:45:18 +00:00
|
|
|
}
|
2023-07-24 02:59:29 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
wlr_xdg_toplevel_set_suspended(c->surface.xdg->toplevel, suspended);
|
|
|
|
}
|
|
|
|
|
2022-06-16 21:05:07 +00:00
|
|
|
static inline int
|
|
|
|
client_wants_focus(Client *c)
|
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
|
|
|
return client_is_unmanaged(c)
|
|
|
|
&& wlr_xwayland_or_surface_wants_focus(c->surface.xwayland)
|
|
|
|
&& wlr_xwayland_icccm_input_model(c->surface.xwayland) != WLR_ICCCM_INPUT_MODEL_NONE;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-08-27 21:29:23 +00:00
|
|
|
static inline int
|
|
|
|
client_wants_fullscreen(Client *c)
|
2022-03-18 07:25:53 +00:00
|
|
|
{
|
|
|
|
#ifdef XWAYLAND
|
2022-06-16 20:54:13 +00:00
|
|
|
if (client_is_x11(c))
|
2022-08-27 21:29:23 +00:00
|
|
|
return c->surface.xwayland->fullscreen;
|
2022-03-18 07:25:53 +00:00
|
|
|
#endif
|
2022-08-27 21:29:23 +00:00
|
|
|
return c->surface.xdg->toplevel->requested.fullscreen;
|
2022-03-18 07:25:53 +00:00
|
|
|
}
|