2018-10-03 17:14:51 -04:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// Copyright (c) 2011-2013, Christopher Jeffrey
|
|
|
|
// Copyright (c) 2013 Richard Grenville <pyxlcy@gmail.com>
|
|
|
|
|
2019-01-20 11:53:39 -05:00
|
|
|
#include <X11/Xlib.h>
|
2019-01-20 16:15:20 -05:00
|
|
|
#include <X11/Xutil.h>
|
2018-09-06 14:17:26 -04:00
|
|
|
#include <math.h>
|
2019-03-10 08:34:37 -04:00
|
|
|
#include <stdbool.h>
|
2019-01-20 16:15:20 -05:00
|
|
|
#include <stdlib.h>
|
2019-03-10 08:34:37 -04:00
|
|
|
#include <string.h>
|
|
|
|
#include <xcb/composite.h>
|
|
|
|
#include <xcb/damage.h>
|
|
|
|
#include <xcb/render.h>
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xcb_renderutil.h>
|
2019-05-05 21:03:07 -04:00
|
|
|
#include <xcb/xinerama.h>
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-05-05 19:34:08 -04:00
|
|
|
#include "atom.h"
|
2019-03-10 08:34:37 -04:00
|
|
|
#include "backend/backend.h"
|
|
|
|
#include "c2.h"
|
2019-05-24 18:29:26 -04:00
|
|
|
#include "common.h"
|
2019-03-10 08:34:37 -04:00
|
|
|
#include "compiler.h"
|
|
|
|
#include "config.h"
|
2019-04-17 18:14:45 -04:00
|
|
|
#include "list.h"
|
2018-12-15 12:53:17 -05:00
|
|
|
#include "log.h"
|
2020-02-07 16:35:34 -05:00
|
|
|
#include "picom.h"
|
2019-01-20 11:53:39 -05:00
|
|
|
#include "region.h"
|
|
|
|
#include "render.h"
|
2019-03-10 08:34:37 -04:00
|
|
|
#include "string_utils.h"
|
|
|
|
#include "types.h"
|
2019-04-03 03:36:02 -04:00
|
|
|
#include "uthash_extra.h"
|
2019-03-10 08:34:37 -04:00
|
|
|
#include "utils.h"
|
|
|
|
#include "x.h"
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2018-12-20 17:31:34 -05:00
|
|
|
#ifdef CONFIG_DBUS
|
|
|
|
#include "dbus.h"
|
|
|
|
#endif
|
|
|
|
|
2019-02-09 10:50:40 -05:00
|
|
|
#ifdef CONFIG_OPENGL
|
|
|
|
// TODO remove this include
|
|
|
|
#include "opengl.h"
|
|
|
|
#endif
|
|
|
|
|
2018-09-06 14:17:26 -04:00
|
|
|
#include "win.h"
|
|
|
|
|
2019-09-19 20:54:14 -04:00
|
|
|
// TODO Make more window states internal
|
|
|
|
struct managed_win_internal {
|
|
|
|
struct managed_win base;
|
|
|
|
};
|
|
|
|
|
2019-05-23 19:06:53 -04:00
|
|
|
#define OPAQUE (0xffffffff)
|
2019-05-05 21:03:07 -04:00
|
|
|
static const int WIN_GET_LEADER_MAX_RECURSION = 20;
|
|
|
|
static const int ROUNDED_PIXELS = 1;
|
|
|
|
static const double ROUNDED_PERCENT = 0.05;
|
2019-02-09 10:50:40 -05:00
|
|
|
|
2018-10-12 20:17:59 -04:00
|
|
|
/// Generate a "return by value" function, from a function that returns the
|
|
|
|
/// region via a region_t pointer argument.
|
|
|
|
/// Function signature has to be (win *, region_t *)
|
2019-03-10 08:34:37 -04:00
|
|
|
#define gen_by_val(fun) \
|
2019-04-17 18:14:45 -04:00
|
|
|
region_t fun##_by_val(const struct managed_win *w) { \
|
2019-03-10 08:34:37 -04:00
|
|
|
region_t ret; \
|
|
|
|
pixman_region32_init(&ret); \
|
|
|
|
fun(w, &ret); \
|
|
|
|
return ret; \
|
|
|
|
}
|
2018-10-12 20:17:59 -04:00
|
|
|
|
2018-09-06 14:17:26 -04:00
|
|
|
/**
|
|
|
|
* Clear leader cache of all windows.
|
|
|
|
*/
|
2019-03-10 08:34:37 -04:00
|
|
|
static inline void clear_cache_win_leaders(session_t *ps) {
|
2019-04-17 18:14:45 -04:00
|
|
|
win_stack_foreach_managed(w, &ps->window_stack) {
|
2019-03-10 08:34:37 -04:00
|
|
|
w->cache_leader = XCB_NONE;
|
2019-04-03 03:36:02 -04:00
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-08-09 20:44:27 -04:00
|
|
|
static xcb_window_t win_get_leader_raw(session_t *ps, struct managed_win *w, int recursions);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the leader of a window.
|
|
|
|
*
|
|
|
|
* This function updates w->cache_leader if necessary.
|
|
|
|
*/
|
|
|
|
static inline xcb_window_t win_get_leader(session_t *ps, struct managed_win *w) {
|
|
|
|
return win_get_leader_raw(ps, w, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update focused state of a window.
|
|
|
|
*/
|
|
|
|
static void win_update_focused(session_t *ps, struct managed_win *w) {
|
|
|
|
if (UNSET != w->focused_force) {
|
|
|
|
w->focused = w->focused_force;
|
|
|
|
} else {
|
2020-03-17 15:19:13 -04:00
|
|
|
w->focused = win_is_focused_raw(ps, w);
|
2019-08-09 20:44:27 -04:00
|
|
|
|
|
|
|
// Use wintype_focus, and treat WM windows and override-redirected
|
|
|
|
// windows specially
|
|
|
|
if (ps->o.wintype_option[w->window_type].focus ||
|
|
|
|
(ps->o.mark_wmwin_focused && w->wmwin) ||
|
|
|
|
(ps->o.mark_ovredir_focused && w->base.id == w->client_win && !w->wmwin) ||
|
|
|
|
(w->a.map_state == XCB_MAP_STATE_VIEWABLE &&
|
|
|
|
c2_match(ps, w, ps->o.focus_blacklist, NULL)))
|
|
|
|
w->focused = true;
|
|
|
|
|
|
|
|
// If window grouping detection is enabled, mark the window active if
|
|
|
|
// its group is
|
|
|
|
if (ps->o.track_leader && ps->active_leader &&
|
|
|
|
win_get_leader(ps, w) == ps->active_leader) {
|
|
|
|
w->focused = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-06 14:17:26 -04:00
|
|
|
/**
|
2020-03-17 15:50:48 -04:00
|
|
|
* Run win_on_factor_change() on all windows with the same leader window.
|
2018-09-06 14:17:26 -04:00
|
|
|
*
|
|
|
|
* @param leader leader window ID
|
|
|
|
*/
|
2020-03-17 15:50:48 -04:00
|
|
|
static inline void group_on_factor_change(session_t *ps, xcb_window_t leader) {
|
2019-03-10 08:34:37 -04:00
|
|
|
if (!leader)
|
|
|
|
return;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-04-03 03:36:02 -04:00
|
|
|
HASH_ITER2(ps->windows, w) {
|
2019-04-17 18:14:45 -04:00
|
|
|
assert(!w->destroyed);
|
|
|
|
if (!w->managed) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
auto mw = (struct managed_win *)w;
|
|
|
|
if (win_get_leader(ps, mw) == leader) {
|
2020-03-17 15:50:48 -04:00
|
|
|
win_on_factor_change(ps, mw);
|
2019-04-03 03:36:02 -04:00
|
|
|
}
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
return;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-08-09 20:44:27 -04:00
|
|
|
static inline const char *win_get_name_if_managed(const struct win *w) {
|
|
|
|
if (!w->managed) {
|
|
|
|
return "(unmanaged)";
|
|
|
|
}
|
|
|
|
auto mw = (struct managed_win *)w;
|
|
|
|
return mw->name;
|
|
|
|
}
|
|
|
|
|
2018-09-06 14:17:26 -04:00
|
|
|
/**
|
|
|
|
* Return whether a window group is really focused.
|
|
|
|
*
|
|
|
|
* @param leader leader window ID
|
|
|
|
* @return true if the window group is focused, false otherwise
|
|
|
|
*/
|
2019-03-10 08:34:37 -04:00
|
|
|
static inline bool group_is_focused(session_t *ps, xcb_window_t leader) {
|
2019-04-17 18:14:45 -04:00
|
|
|
if (!leader) {
|
2019-03-10 08:34:37 -04:00
|
|
|
return false;
|
2019-04-17 18:14:45 -04:00
|
|
|
}
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-04-03 03:36:02 -04:00
|
|
|
HASH_ITER2(ps->windows, w) {
|
2019-04-17 18:14:45 -04:00
|
|
|
assert(!w->destroyed);
|
|
|
|
if (!w->managed) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
auto mw = (struct managed_win *)w;
|
2020-03-17 15:19:13 -04:00
|
|
|
if (win_get_leader(ps, mw) == leader && win_is_focused_raw(ps, mw)) {
|
2019-03-10 08:34:37 -04:00
|
|
|
return true;
|
2019-04-03 03:36:02 -04:00
|
|
|
}
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a rectangular region a window occupies, excluding shadow.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
static void win_get_region_local(const struct managed_win *w, region_t *res) {
|
2019-03-30 05:07:21 -04:00
|
|
|
assert(w->widthb >= 0 && w->heightb >= 0);
|
2019-03-10 08:34:37 -04:00
|
|
|
pixman_region32_fini(res);
|
2019-03-30 05:07:21 -04:00
|
|
|
pixman_region32_init_rect(res, 0, 0, (uint)w->widthb, (uint)w->heightb);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a rectangular region a window occupies, excluding frame and shadow.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_get_region_noframe_local(const struct managed_win *w, region_t *res) {
|
2019-03-10 08:34:37 -04:00
|
|
|
const margin_t extents = win_calc_frame_extents(w);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-30 06:19:31 -04:00
|
|
|
int x = extents.left;
|
|
|
|
int y = extents.top;
|
|
|
|
int width = max2(w->g.width - (extents.left + extents.right), 0);
|
|
|
|
int height = max2(w->g.height - (extents.top + extents.bottom), 0);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
pixman_region32_fini(res);
|
2019-03-30 05:07:21 -04:00
|
|
|
if (width > 0 && height > 0) {
|
|
|
|
pixman_region32_init_rect(res, x, y, (uint)width, (uint)height);
|
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_get_region_frame_local(const struct managed_win *w, region_t *res) {
|
2019-03-10 08:34:37 -04:00
|
|
|
const margin_t extents = win_calc_frame_extents(w);
|
2020-03-17 14:32:34 -04:00
|
|
|
auto outer_width = extents.left + extents.right + w->g.width;
|
|
|
|
auto outer_height = extents.top + extents.bottom + w->g.height;
|
2019-03-10 08:34:37 -04:00
|
|
|
pixman_region32_fini(res);
|
|
|
|
pixman_region32_init_rects(
|
|
|
|
res,
|
|
|
|
(rect_t[]){
|
|
|
|
// top
|
2020-03-17 14:32:34 -04:00
|
|
|
{.x1 = 0, .y1 = 0, .x2 = outer_width, .y2 = extents.top},
|
2019-03-10 08:34:37 -04:00
|
|
|
// bottom
|
2020-03-17 14:32:34 -04:00
|
|
|
{.x1 = 0, .y1 = outer_height - extents.bottom, .x2 = outer_width, .y2 = outer_height},
|
2019-03-10 08:34:37 -04:00
|
|
|
// left
|
2020-03-17 14:32:34 -04:00
|
|
|
{.x1 = 0, .y1 = 0, .x2 = extents.left, .y2 = outer_height},
|
2019-03-10 08:34:37 -04:00
|
|
|
// right
|
2020-03-17 14:32:34 -04:00
|
|
|
{.x1 = outer_width - extents.right, .y1 = 0, .x2 = outer_width, .y2 = outer_height},
|
2019-03-10 08:34:37 -04:00
|
|
|
},
|
|
|
|
4);
|
|
|
|
|
|
|
|
// limit the frame region to inside the window
|
|
|
|
region_t reg_win;
|
2020-03-17 14:32:34 -04:00
|
|
|
pixman_region32_init_rects(®_win, (rect_t[]){0, 0, outer_width, outer_height}, 1);
|
2019-03-10 08:34:37 -04:00
|
|
|
pixman_region32_intersect(res, ®_win, res);
|
|
|
|
pixman_region32_fini(®_win);
|
2019-03-04 16:37:22 -05:00
|
|
|
}
|
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
gen_by_val(win_get_region_frame_local);
|
2019-03-04 16:37:22 -05:00
|
|
|
|
2018-09-06 14:17:26 -04:00
|
|
|
/**
|
|
|
|
* Add a window to damaged area.
|
|
|
|
*
|
|
|
|
* @param ps current session
|
|
|
|
* @param w struct _win element representing the window
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void add_damage_from_win(session_t *ps, const struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// XXX there was a cached extents region, investigate
|
|
|
|
// if that's better
|
|
|
|
region_t extents;
|
|
|
|
pixman_region32_init(&extents);
|
|
|
|
win_extents(w, &extents);
|
|
|
|
add_damage(ps, &extents);
|
|
|
|
pixman_region32_fini(&extents);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-03-16 16:14:54 -04:00
|
|
|
/// Release the images attached to this window
|
2019-09-19 13:48:12 -04:00
|
|
|
static inline void win_release_pixmap(backend_t *base, struct managed_win *w) {
|
|
|
|
log_debug("Releasing pixmap of window %#010x (%s)", w->base.id, w->name);
|
|
|
|
assert(w->win_image);
|
2019-03-16 16:14:54 -04:00
|
|
|
if (w->win_image) {
|
|
|
|
base->ops->release_image(base, w->win_image);
|
|
|
|
w->win_image = NULL;
|
2020-04-06 15:52:32 -04:00
|
|
|
// Bypassing win_set_flags, because `w` might have been destroyed
|
2019-09-19 13:48:12 -04:00
|
|
|
w->flags |= WIN_FLAGS_PIXMAP_NONE;
|
2019-03-16 16:14:54 -04:00
|
|
|
}
|
2019-09-19 13:48:12 -04:00
|
|
|
}
|
|
|
|
static inline void win_release_shadow(backend_t *base, struct managed_win *w) {
|
|
|
|
log_debug("Releasing shadow of window %#010x (%s)", w->base.id, w->name);
|
|
|
|
assert(w->shadow_image);
|
|
|
|
if (w->shadow_image) {
|
|
|
|
base->ops->release_image(base, w->shadow_image);
|
|
|
|
w->shadow_image = NULL;
|
2020-04-06 15:52:32 -04:00
|
|
|
// Bypassing win_set_flags, because `w` might have been destroyed
|
2019-09-19 13:48:12 -04:00
|
|
|
w->flags |= WIN_FLAGS_SHADOW_NONE;
|
2019-03-16 16:14:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-19 13:48:12 -04:00
|
|
|
static inline bool win_bind_pixmap(struct backend_base *b, struct managed_win *w) {
|
|
|
|
assert(!w->win_image);
|
|
|
|
auto pixmap = x_new_id(b->c);
|
2019-03-16 16:14:54 -04:00
|
|
|
auto e = xcb_request_check(
|
2019-09-19 13:48:12 -04:00
|
|
|
b->c, xcb_composite_name_window_pixmap_checked(b->c, w->base.id, pixmap));
|
2019-03-16 16:14:54 -04:00
|
|
|
if (e) {
|
2019-04-18 03:51:17 -04:00
|
|
|
log_error("Failed to get named pixmap for window %#010x(%s)", w->base.id,
|
|
|
|
w->name);
|
2019-03-16 16:14:54 -04:00
|
|
|
free(e);
|
|
|
|
return false;
|
|
|
|
}
|
2019-09-19 13:48:12 -04:00
|
|
|
log_debug("New named pixmap for %#010x (%s) : %#010x", w->base.id, w->name, pixmap);
|
|
|
|
w->win_image =
|
|
|
|
b->ops->bind_pixmap(b, pixmap, x_get_visual_info(b->c, w->a.visual), true);
|
|
|
|
if (!w->win_image) {
|
|
|
|
log_error("Failed to bind pixmap");
|
2020-04-06 15:52:32 -04:00
|
|
|
win_set_flags(w, WIN_FLAGS_IMAGE_ERROR);
|
2019-03-16 16:14:54 -04:00
|
|
|
return false;
|
|
|
|
}
|
2019-09-19 13:48:12 -04:00
|
|
|
|
2020-04-06 15:52:32 -04:00
|
|
|
win_clear_flags(w, WIN_FLAGS_PIXMAP_NONE);
|
2019-03-16 16:14:54 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-28 19:04:09 -04:00
|
|
|
bool win_bind_shadow(struct backend_base *b, struct managed_win *w, struct color c,
|
|
|
|
struct conv *kernel) {
|
2019-09-19 13:48:12 -04:00
|
|
|
assert(!w->shadow_image);
|
|
|
|
assert(w->shadow);
|
|
|
|
w->shadow_image = b->ops->render_shadow(b, w->widthb, w->heightb, kernel, c.red,
|
|
|
|
c.green, c.blue, c.alpha);
|
|
|
|
if (!w->shadow_image) {
|
2020-02-07 16:35:34 -05:00
|
|
|
log_error("Failed to bind shadow image, shadow will be disabled for "
|
|
|
|
"%#010x (%s)",
|
|
|
|
w->base.id, w->name);
|
2020-04-06 15:52:32 -04:00
|
|
|
win_set_flags(w, WIN_FLAGS_SHADOW_NONE);
|
2020-02-07 16:35:34 -05:00
|
|
|
w->shadow = false;
|
2019-09-19 13:48:12 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
log_debug("New shadow for %#010x (%s)", w->base.id, w->name);
|
2020-04-06 15:52:32 -04:00
|
|
|
win_clear_flags(w, WIN_FLAGS_SHADOW_NONE);
|
2019-09-19 13:48:12 -04:00
|
|
|
return true;
|
2019-03-16 16:14:54 -04:00
|
|
|
}
|
|
|
|
|
2019-09-19 13:48:12 -04:00
|
|
|
void win_release_images(struct backend_base *backend, struct managed_win *w) {
|
2019-11-13 16:59:26 -05:00
|
|
|
// We don't want to decide what we should do if the image we want to release is
|
2019-09-19 13:48:12 -04:00
|
|
|
// stale (do we clear the stale flags or not?)
|
2019-11-13 16:59:26 -05:00
|
|
|
// But if we are not releasing any images anyway, we don't care about the stale
|
|
|
|
// flags.
|
2019-09-19 13:48:12 -04:00
|
|
|
|
2020-04-06 15:52:32 -04:00
|
|
|
if (!win_check_flags_all(w, WIN_FLAGS_PIXMAP_NONE)) {
|
|
|
|
assert(!win_check_flags_all(w, WIN_FLAGS_PIXMAP_STALE));
|
2019-09-19 13:48:12 -04:00
|
|
|
win_release_pixmap(backend, w);
|
|
|
|
}
|
|
|
|
|
2020-04-06 15:52:32 -04:00
|
|
|
if (!win_check_flags_all(w, WIN_FLAGS_SHADOW_NONE)) {
|
|
|
|
assert(!win_check_flags_all(w, WIN_FLAGS_SHADOW_STALE));
|
2019-09-19 13:48:12 -04:00
|
|
|
win_release_shadow(backend, w);
|
|
|
|
}
|
|
|
|
}
|
2019-03-16 16:14:54 -04:00
|
|
|
|
2019-09-19 13:48:12 -04:00
|
|
|
void win_process_flags(session_t *ps, struct managed_win *w) {
|
2020-04-06 15:52:32 -04:00
|
|
|
if (win_check_flags_all(w, WIN_FLAGS_MAPPED)) {
|
|
|
|
map_win_start(ps, w);
|
2019-09-19 13:48:12 -04:00
|
|
|
}
|
2020-04-06 15:52:32 -04:00
|
|
|
win_clear_flags(w, WIN_FLAGS_MAPPED);
|
2019-09-19 13:48:12 -04:00
|
|
|
|
|
|
|
// Not a loop
|
2020-04-06 15:52:32 -04:00
|
|
|
while (win_check_flags_any(w, WIN_FLAGS_IMAGES_STALE) &&
|
|
|
|
!win_check_flags_all(w, WIN_FLAGS_IMAGE_ERROR)) {
|
2019-09-19 11:59:36 -04:00
|
|
|
// Image needs to be updated, update it.
|
2019-09-23 14:44:35 -04:00
|
|
|
if (!ps->backend_data) {
|
|
|
|
// We are using legacy backend, nothing to do here.
|
2019-09-19 13:48:12 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-04-06 15:52:32 -04:00
|
|
|
if (win_check_flags_all(w, WIN_FLAGS_PIXMAP_STALE)) {
|
2019-09-23 14:44:35 -04:00
|
|
|
// Check to make sure the window is still mapped, otherwise we
|
|
|
|
// won't be able to rebind pixmap after releasing it, yet we might
|
|
|
|
// still need the pixmap for rendering.
|
2019-09-28 19:09:40 -04:00
|
|
|
assert(w->state != WSTATE_UNMAPPING && w->state != WSTATE_DESTROYING);
|
2020-04-06 15:52:32 -04:00
|
|
|
if (!win_check_flags_all(w, WIN_FLAGS_PIXMAP_NONE)) {
|
2019-09-28 19:09:40 -04:00
|
|
|
// Must release images first, otherwise breaks
|
|
|
|
// NVIDIA driver
|
|
|
|
win_release_pixmap(ps->backend_data, w);
|
2019-09-19 13:48:12 -04:00
|
|
|
}
|
2019-09-28 19:09:40 -04:00
|
|
|
win_bind_pixmap(ps->backend_data, w);
|
2019-09-19 13:48:12 -04:00
|
|
|
}
|
|
|
|
|
2020-04-06 15:52:32 -04:00
|
|
|
if (win_check_flags_all(w, WIN_FLAGS_SHADOW_STALE)) {
|
|
|
|
if (!win_check_flags_all(w, WIN_FLAGS_SHADOW_NONE)) {
|
2019-09-19 13:48:12 -04:00
|
|
|
win_release_shadow(ps->backend_data, w);
|
|
|
|
}
|
|
|
|
if (w->shadow) {
|
|
|
|
win_bind_shadow(ps->backend_data, w,
|
|
|
|
(struct color){.red = ps->o.shadow_red,
|
|
|
|
.green = ps->o.shadow_green,
|
|
|
|
.blue = ps->o.shadow_blue,
|
|
|
|
.alpha = ps->o.shadow_opacity},
|
|
|
|
ps->gaussian_map);
|
2019-09-19 11:59:36 -04:00
|
|
|
}
|
|
|
|
}
|
2019-09-19 13:48:12 -04:00
|
|
|
|
2019-09-23 14:44:35 -04:00
|
|
|
// break here, loop always run only once
|
|
|
|
break;
|
2019-09-19 11:59:36 -04:00
|
|
|
}
|
2019-09-23 14:44:35 -04:00
|
|
|
|
|
|
|
// Clear stale image flags
|
2020-04-06 15:52:32 -04:00
|
|
|
win_clear_flags(w, WIN_FLAGS_IMAGES_STALE);
|
2019-09-19 11:59:36 -04:00
|
|
|
}
|
|
|
|
|
2018-09-06 14:17:26 -04:00
|
|
|
/**
|
|
|
|
* Check if a window has rounded corners.
|
Convert XfixesRegion to pixman region
Re-did the painting logic, and document it.
It is unclear to me what is the previous painting logic. But the current
one is basically this:
1. Go through all windows top to bottom, and put visible windows (not
unmapped, opacity > 0, etc) into a linked list, from bottom to top
2. Accumulate a region of ignore on each window, which is basically the
region of screen that is obscured by all the windows above current
one.
3. Paint all the visible windows from bottom to top. Subtract the region
of ignore from the painting region. If we need to paint shadow, we
subtract the body of the window from the shadow painting region too,
because we don't want shadow behind the window.
4. region of ignore is invalidated when window stack change, an
window on top moved or changed shape, when window changed between
opaque and transparent, etc.
Notes:
It is unclear whether all the different shapes of a window (extents,
noframe, border, bounding shape, etc) are calculated correctly or not.
It is unclear if window shape related events are handled correctly or
not. Need more testing.
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
2018-09-29 23:56:00 -04:00
|
|
|
* XXX This is really dumb
|
2018-09-06 14:17:26 -04:00
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
static bool attr_pure win_has_rounded_corners(const struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
if (!w->bounding_shaped) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Quit if border_size() returns XCB_NONE
|
|
|
|
if (!pixman_region32_not_empty((region_t *)&w->bounding_shape)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the minimum width/height of a rectangle that could mark
|
|
|
|
// a window as having rounded corners
|
2019-03-30 05:07:21 -04:00
|
|
|
auto minwidth =
|
|
|
|
(uint16_t)max2(w->widthb * (1 - ROUNDED_PERCENT), w->widthb - ROUNDED_PIXELS);
|
|
|
|
auto minheight =
|
|
|
|
(uint16_t)max2(w->heightb * (1 - ROUNDED_PERCENT), w->heightb - ROUNDED_PIXELS);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
// Get the rectangles in the bounding region
|
|
|
|
int nrects = 0;
|
|
|
|
const rect_t *rects =
|
|
|
|
pixman_region32_rectangles((region_t *)&w->bounding_shape, &nrects);
|
|
|
|
|
|
|
|
// Look for a rectangle large enough for this window be considered
|
|
|
|
// having rounded corners
|
|
|
|
for (int i = 0; i < nrects; ++i) {
|
|
|
|
if (rects[i].x2 - rects[i].x1 >= minwidth &&
|
|
|
|
rects[i].y2 - rects[i].y1 >= minheight) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-09-23 16:07:52 -04:00
|
|
|
int win_update_name(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
XTextProperty text_prop = {NULL, XCB_NONE, 0, 0};
|
|
|
|
char **strlst = NULL;
|
|
|
|
int nstr = 0;
|
|
|
|
|
|
|
|
if (!w->client_win)
|
|
|
|
return 0;
|
|
|
|
|
2019-05-05 19:34:08 -04:00
|
|
|
if (!(wid_get_text_prop(ps, w->client_win, ps->atoms->a_NET_WM_NAME, &strlst, &nstr))) {
|
2019-03-10 08:34:37 -04:00
|
|
|
log_trace("(%#010x): _NET_WM_NAME unset, falling back to WM_NAME.",
|
|
|
|
w->client_win);
|
|
|
|
|
|
|
|
if (!(XGetWMName(ps->dpy, w->client_win, &text_prop) && text_prop.value)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (Success != XmbTextPropertyToTextList(ps->dpy, &text_prop, &strlst, &nstr) ||
|
|
|
|
!nstr || !strlst) {
|
|
|
|
if (strlst)
|
|
|
|
XFreeStringList(strlst);
|
2019-05-05 20:41:36 -04:00
|
|
|
XFree(text_prop.value);
|
2019-03-10 08:34:37 -04:00
|
|
|
return -1;
|
|
|
|
}
|
2019-05-05 20:41:36 -04:00
|
|
|
XFree(text_prop.value);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int ret = 0;
|
|
|
|
if (!w->name || strcmp(w->name, strlst[0]) != 0) {
|
|
|
|
ret = 1;
|
|
|
|
free(w->name);
|
|
|
|
w->name = strdup(strlst[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
XFreeStringList(strlst);
|
|
|
|
|
|
|
|
log_trace("(%#010x): client = %#010x, name = \"%s\", "
|
|
|
|
"ret = %d",
|
2019-04-17 18:14:45 -04:00
|
|
|
w->base.id, w->client_win, w->name, ret);
|
2019-03-10 08:34:37 -04:00
|
|
|
return ret;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
int win_get_role(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
char **strlst = NULL;
|
|
|
|
int nstr = 0;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-05-05 19:34:08 -04:00
|
|
|
if (!wid_get_text_prop(ps, w->client_win, ps->atoms->aWM_WINDOW_ROLE, &strlst, &nstr))
|
2019-03-10 08:34:37 -04:00
|
|
|
return -1;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
int ret = 0;
|
|
|
|
if (!w->role || strcmp(w->role, strlst[0]) != 0) {
|
|
|
|
ret = 1;
|
|
|
|
free(w->role);
|
|
|
|
w->role = strdup(strlst[0]);
|
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
XFreeStringList(strlst);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
log_trace("(%#010x): client = %#010x, role = \"%s\", "
|
|
|
|
"ret = %d",
|
2019-04-17 18:14:45 -04:00
|
|
|
w->base.id, w->client_win, w->role, ret);
|
2019-03-10 08:34:37 -04:00
|
|
|
return ret;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a window is bounding-shaped.
|
|
|
|
*/
|
2018-12-27 15:45:38 -05:00
|
|
|
static inline bool win_bounding_shaped(const session_t *ps, xcb_window_t wid) {
|
2019-03-10 08:34:37 -04:00
|
|
|
if (ps->shape_exists) {
|
|
|
|
xcb_shape_query_extents_reply_t *reply;
|
|
|
|
Bool bounding_shaped;
|
2018-09-29 05:29:51 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
reply = xcb_shape_query_extents_reply(
|
|
|
|
ps->c, xcb_shape_query_extents(ps->c, wid), NULL);
|
|
|
|
bounding_shaped = reply && reply->bounding_shaped;
|
|
|
|
free(reply);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
return bounding_shaped;
|
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
return false;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
static wintype_t wid_get_prop_wintype(session_t *ps, xcb_window_t wid) {
|
2019-05-05 19:34:08 -04:00
|
|
|
winprop_t prop =
|
2020-01-18 12:26:53 -05:00
|
|
|
x_get_prop(ps, wid, ps->atoms->a_NET_WM_WINDOW_TYPE, 32L, XCB_ATOM_ATOM, 32);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
for (unsigned i = 0; i < prop.nitems; ++i) {
|
|
|
|
for (wintype_t j = 1; j < NUM_WINTYPES; ++j) {
|
|
|
|
if (ps->atoms_wintypes[j] == (xcb_atom_t)prop.p32[i]) {
|
|
|
|
free_winprop(&prop);
|
|
|
|
return j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
free_winprop(&prop);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
return WINTYPE_UNKNOWN;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-02-21 09:08:08 -05:00
|
|
|
static bool
|
2019-03-10 08:34:37 -04:00
|
|
|
wid_get_opacity_prop(session_t *ps, xcb_window_t wid, opacity_t def, opacity_t *out) {
|
|
|
|
bool ret = false;
|
|
|
|
*out = def;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2020-01-18 12:26:53 -05:00
|
|
|
winprop_t prop = x_get_prop(ps, wid, ps->atoms->a_NET_WM_WINDOW_OPACITY, 1L,
|
|
|
|
XCB_ATOM_CARDINAL, 32);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
if (prop.nitems) {
|
|
|
|
*out = *prop.c32;
|
|
|
|
ret = true;
|
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
free_winprop(&prop);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
return ret;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2018-09-29 14:07:39 -04:00
|
|
|
// XXX should distinguish between frame has alpha and window body has alpha
|
2019-04-17 18:14:45 -04:00
|
|
|
bool win_has_alpha(const struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
return w->pictfmt && w->pictfmt->type == XCB_RENDER_PICT_TYPE_DIRECT &&
|
|
|
|
w->pictfmt->direct.alpha_mask;
|
2018-09-29 14:07:39 -04:00
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-07-13 07:29:39 -04:00
|
|
|
bool win_client_has_alpha(const struct managed_win *w) {
|
|
|
|
return w->client_pictfmt && w->client_pictfmt->type == XCB_RENDER_PICT_TYPE_DIRECT &&
|
|
|
|
w->client_pictfmt->direct.alpha_mask;
|
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
winmode_t win_calc_mode(const struct managed_win *w) {
|
2019-07-13 07:29:39 -04:00
|
|
|
if (w->opacity < 1.0) {
|
2019-03-10 08:34:37 -04:00
|
|
|
return WMODE_TRANS;
|
|
|
|
}
|
2019-07-13 07:29:39 -04:00
|
|
|
|
|
|
|
if (win_has_alpha(w)) {
|
2019-10-24 14:30:11 -04:00
|
|
|
if (w->client_win == XCB_NONE) {
|
|
|
|
// This is a window not managed by the WM, and it has alpha,
|
|
|
|
// so it's transparent. No need to check WM frame.
|
|
|
|
return WMODE_TRANS;
|
|
|
|
}
|
2019-07-13 07:29:39 -04:00
|
|
|
// The WM window has alpha
|
|
|
|
if (win_client_has_alpha(w)) {
|
|
|
|
// The client window also has alpha, the entire window is
|
|
|
|
// transparent
|
|
|
|
return WMODE_TRANS;
|
|
|
|
}
|
|
|
|
if (win_has_frame(w)) {
|
|
|
|
// The client window doesn't have alpha, but we have a WM frame
|
|
|
|
// window, which has alpha.
|
|
|
|
return WMODE_FRAME_TRANS;
|
|
|
|
}
|
|
|
|
// Although the WM window has alpha, the frame window has 0 size, so
|
|
|
|
// consider the window solid
|
|
|
|
}
|
|
|
|
|
2020-03-11 17:00:47 -04:00
|
|
|
if (w->frame_opacity != 1.0 && win_has_frame(w)) {
|
|
|
|
return WMODE_FRAME_TRANS;
|
|
|
|
}
|
|
|
|
|
2019-07-26 18:40:30 -04:00
|
|
|
// log_trace("Window %#010x(%s) is solid", w->client_win, w->name);
|
2019-03-10 08:34:37 -04:00
|
|
|
return WMODE_SOLID;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-09 10:50:40 -05:00
|
|
|
* Calculate and return the opacity target of a window.
|
2018-09-06 14:17:26 -04:00
|
|
|
*
|
2019-07-26 18:40:30 -04:00
|
|
|
* The priority of opacity settings are:
|
2018-09-06 14:17:26 -04:00
|
|
|
*
|
2019-07-26 18:40:30 -04:00
|
|
|
* inactive_opacity_override (if set, and unfocused) > _NET_WM_WINDOW_OPACITY (if set) >
|
|
|
|
* opacity-rules (if matched) > window type default opacity > active/inactive opacity
|
2018-09-06 14:17:26 -04:00
|
|
|
*
|
2019-07-26 18:40:30 -04:00
|
|
|
* @param ps current session
|
|
|
|
* @param w struct _win object representing the window
|
|
|
|
* @param ignore_state whether window state should be ignored in opacity calculation
|
2019-02-09 10:50:40 -05:00
|
|
|
*
|
|
|
|
* @return target opacity
|
2018-09-06 14:17:26 -04:00
|
|
|
*/
|
2019-07-26 18:40:30 -04:00
|
|
|
double win_calc_opacity_target(session_t *ps, const struct managed_win *w, bool ignore_state) {
|
2019-03-10 08:34:37 -04:00
|
|
|
double opacity = 1;
|
|
|
|
|
2019-07-26 18:40:30 -04:00
|
|
|
if (w->state == WSTATE_UNMAPPED && !ignore_state) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// be consistent
|
|
|
|
return 0;
|
|
|
|
}
|
2019-07-26 18:40:30 -04:00
|
|
|
if ((w->state == WSTATE_UNMAPPING || w->state == WSTATE_DESTROYING) && !ignore_state) {
|
2019-03-10 08:34:37 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// Try obeying opacity property and window type opacity firstly
|
|
|
|
if (w->has_opacity_prop) {
|
|
|
|
opacity = ((double)w->opacity_prop) / OPAQUE;
|
2019-07-26 17:28:53 -04:00
|
|
|
} else if (w->opacity_is_set) {
|
|
|
|
opacity = w->opacity_set;
|
2019-03-10 08:34:37 -04:00
|
|
|
} else if (!safe_isnan(ps->o.wintype_option[w->window_type].opacity)) {
|
|
|
|
opacity = ps->o.wintype_option[w->window_type].opacity;
|
|
|
|
} else {
|
|
|
|
// Respect active_opacity only when the window is physically focused
|
2020-03-17 15:19:13 -04:00
|
|
|
if (win_is_focused_raw(ps, w))
|
2019-03-10 08:34:37 -04:00
|
|
|
opacity = ps->o.active_opacity;
|
|
|
|
else if (!w->focused)
|
|
|
|
// Respect inactive_opacity in some cases
|
|
|
|
opacity = ps->o.inactive_opacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
// respect inactive override
|
2019-07-26 18:40:30 -04:00
|
|
|
if (ps->o.inactive_opacity_override && !w->focused) {
|
2019-03-10 08:34:37 -04:00
|
|
|
opacity = ps->o.inactive_opacity;
|
2019-07-26 18:40:30 -04:00
|
|
|
}
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
return opacity;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether a window is to be dimmed.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
bool win_should_dim(session_t *ps, const struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// Make sure we do nothing if the window is unmapped / being destroyed
|
|
|
|
if (w->state == WSTATE_UNMAPPED) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-03-30 05:07:21 -04:00
|
|
|
if (ps->o.inactive_dim > 0 && !(w->focused)) {
|
2019-03-10 08:34:37 -04:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if a window should fade on opacity change.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
bool win_should_fade(session_t *ps, const struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// To prevent it from being overwritten by last-paint value if the window is
|
|
|
|
if (w->fade_force != UNSET) {
|
|
|
|
return w->fade_force;
|
|
|
|
}
|
|
|
|
if (ps->o.no_fading_openclose && w->in_openclose) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (ps->o.no_fading_destroyed_argb && w->state == WSTATE_DESTROYING &&
|
2019-04-17 18:14:45 -04:00
|
|
|
win_has_alpha(w) && w->client_win && w->client_win != w->base.id) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// deprecated
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Ignore other possible causes of fading state changes after window
|
|
|
|
// gets unmapped
|
|
|
|
// if (w->a.map_state != XCB_MAP_STATE_VIEWABLE) {
|
|
|
|
//}
|
|
|
|
if (c2_match(ps, w, ps->o.fade_blacklist, NULL)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return ps->o.wintype_option[w->window_type].fade;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reread _COMPTON_SHADOW property from a window.
|
|
|
|
*
|
|
|
|
* The property must be set on the outermost window, usually the WM frame.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_update_prop_shadow_raw(session_t *ps, struct managed_win *w) {
|
2020-01-18 12:26:53 -05:00
|
|
|
winprop_t prop = x_get_prop(ps, w->base.id, ps->atoms->a_COMPTON_SHADOW, 1,
|
|
|
|
XCB_ATOM_CARDINAL, 32);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
if (!prop.nitems) {
|
|
|
|
w->prop_shadow = -1;
|
|
|
|
} else {
|
|
|
|
w->prop_shadow = *prop.c32;
|
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
free_winprop(&prop);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-08-09 20:44:27 -04:00
|
|
|
static void win_set_shadow(session_t *ps, struct managed_win *w, bool shadow_new) {
|
2019-03-31 17:49:40 -04:00
|
|
|
if (w->shadow == shadow_new) {
|
2019-03-10 08:34:37 -04:00
|
|
|
return;
|
2019-03-31 17:49:40 -04:00
|
|
|
}
|
|
|
|
|
2019-04-18 03:51:17 -04:00
|
|
|
log_debug("Updating shadow property of window %#010x (%s) to %d", w->base.id,
|
|
|
|
w->name, shadow_new);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-11-18 17:34:05 -05:00
|
|
|
if (w->state == WSTATE_UNMAPPED) {
|
|
|
|
// No need to add damage or update shadow
|
|
|
|
// Unmapped window shouldn't have any images
|
|
|
|
w->shadow = shadow_new;
|
|
|
|
assert(!w->shadow_image);
|
|
|
|
assert(!w->win_image);
|
2020-04-06 15:52:32 -04:00
|
|
|
assert(win_check_flags_all(w, WIN_FLAGS_IMAGES_NONE));
|
2019-11-18 17:34:05 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep a copy of window extent before the shadow change. Will be used for
|
|
|
|
// calculation of damaged region
|
2019-03-10 08:34:37 -04:00
|
|
|
region_t extents;
|
|
|
|
pixman_region32_init(&extents);
|
|
|
|
win_extents(w, &extents);
|
|
|
|
|
2019-11-18 17:34:05 -05:00
|
|
|
// Apply the shadow change
|
2019-03-10 08:34:37 -04:00
|
|
|
w->shadow = shadow_new;
|
|
|
|
|
2019-11-18 17:34:05 -05:00
|
|
|
// Add damage for shadow change
|
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Window extents need update on shadow state change
|
|
|
|
// Shadow geometry currently doesn't change on shadow state change
|
|
|
|
// calc_shadow_geometry(ps, w);
|
|
|
|
|
2019-11-18 17:34:05 -05:00
|
|
|
// Note: because the release and creation of the shadow images are delayed. When
|
|
|
|
// multiple shadow changes happen in a row, without rendering phase between them,
|
|
|
|
// there could be a stale shadow image attached to the window even if w->shadow
|
|
|
|
// was previously false. And vice versa. So we check the STALE flag before
|
|
|
|
// asserting the existence of the shadow image.
|
2019-03-10 08:34:37 -04:00
|
|
|
if (w->shadow) {
|
2019-11-18 17:34:05 -05:00
|
|
|
// Mark the new extents as damaged if the shadow is added
|
2020-04-06 15:52:32 -04:00
|
|
|
assert(!w->shadow_image || win_check_flags_all(w, WIN_FLAGS_SHADOW_STALE) ||
|
2020-03-17 13:31:19 -04:00
|
|
|
!ps->o.experimental_backends);
|
2019-11-18 17:34:05 -05:00
|
|
|
pixman_region32_clear(&extents);
|
2019-03-10 08:34:37 -04:00
|
|
|
win_extents(w, &extents);
|
|
|
|
add_damage_from_win(ps, w);
|
2019-11-18 17:34:05 -05:00
|
|
|
} else {
|
|
|
|
// Mark the old extents as damaged if the shadow is removed
|
2020-04-06 15:52:32 -04:00
|
|
|
assert(w->shadow_image || win_check_flags_all(w, WIN_FLAGS_SHADOW_STALE) ||
|
2020-03-17 13:31:19 -04:00
|
|
|
!ps->o.experimental_backends);
|
2019-11-18 17:34:05 -05:00
|
|
|
add_damage(ps, &extents);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2019-11-18 17:34:05 -05:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
pixman_region32_fini(&extents);
|
2019-11-18 17:34:05 -05:00
|
|
|
|
|
|
|
// Delayed update of shadow image
|
|
|
|
// By setting WIN_FLAGS_SHADOW_STALE, we ask win_process_flags to re-create or
|
|
|
|
// release the shaodw in based on whether w->shadow is set.
|
2020-04-06 15:52:32 -04:00
|
|
|
win_set_flags(w, WIN_FLAGS_SHADOW_STALE);
|
2019-11-18 17:34:05 -05:00
|
|
|
ps->pending_updates = true;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if a window should have shadow, and update things depending
|
|
|
|
* on shadow state.
|
|
|
|
*/
|
2019-08-09 20:44:27 -04:00
|
|
|
static void win_determine_shadow(session_t *ps, struct managed_win *w) {
|
2019-04-17 18:14:45 -04:00
|
|
|
log_debug("Determining shadow of window %#010x (%s)", w->base.id, w->name);
|
2019-03-10 08:34:37 -04:00
|
|
|
bool shadow_new = w->shadow;
|
|
|
|
|
2019-03-31 17:41:50 -04:00
|
|
|
if (w->shadow_force != UNSET) {
|
2019-03-10 08:34:37 -04:00
|
|
|
shadow_new = w->shadow_force;
|
2019-03-31 17:41:50 -04:00
|
|
|
} else if (w->a.map_state == XCB_MAP_STATE_VIEWABLE) {
|
|
|
|
shadow_new = true;
|
|
|
|
if (!ps->o.wintype_option[w->window_type].shadow) {
|
|
|
|
log_debug("Shadow disabled by wintypes");
|
|
|
|
shadow_new = false;
|
|
|
|
} else if (c2_match(ps, w, ps->o.shadow_blacklist, NULL)) {
|
|
|
|
log_debug("Shadow disabled by shadow-exclude");
|
|
|
|
shadow_new = false;
|
|
|
|
} else if (ps->o.shadow_ignore_shaped && w->bounding_shaped &&
|
2019-03-31 17:49:40 -04:00
|
|
|
!w->rounded_corners) {
|
2019-03-31 17:41:50 -04:00
|
|
|
log_debug("Shadow disabled by shadow-ignore-shaped");
|
|
|
|
shadow_new = false;
|
2019-10-22 15:44:59 -04:00
|
|
|
} else if (w->prop_shadow == 0) {
|
2019-03-31 17:41:50 -04:00
|
|
|
log_debug("Shadow disabled by shadow property");
|
|
|
|
shadow_new = false;
|
|
|
|
}
|
|
|
|
}
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
win_set_shadow(ps, w, shadow_new);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-08-09 20:44:27 -04:00
|
|
|
/**
|
|
|
|
* Reread _COMPTON_SHADOW property from a window and update related
|
|
|
|
* things.
|
|
|
|
*/
|
|
|
|
void win_update_prop_shadow(session_t *ps, struct managed_win *w) {
|
|
|
|
long attr_shadow_old = w->prop_shadow;
|
|
|
|
|
|
|
|
win_update_prop_shadow_raw(ps, w);
|
|
|
|
|
|
|
|
if (w->prop_shadow != attr_shadow_old)
|
|
|
|
win_determine_shadow(ps, w);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void win_set_invert_color(session_t *ps, struct managed_win *w, bool invert_color_new) {
|
2019-03-10 08:34:37 -04:00
|
|
|
if (w->invert_color == invert_color_new)
|
|
|
|
return;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
w->invert_color = invert_color_new;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
add_damage_from_win(ps, w);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-08-09 20:44:27 -04:00
|
|
|
/**
|
|
|
|
* Determine if a window should have color inverted.
|
|
|
|
*/
|
|
|
|
static void win_determine_invert_color(session_t *ps, struct managed_win *w) {
|
|
|
|
bool invert_color_new = w->invert_color;
|
|
|
|
|
|
|
|
if (UNSET != w->invert_color_force)
|
|
|
|
invert_color_new = w->invert_color_force;
|
|
|
|
else if (w->a.map_state == XCB_MAP_STATE_VIEWABLE)
|
|
|
|
invert_color_new = c2_match(ps, w, ps->o.invert_color_list, NULL);
|
|
|
|
|
|
|
|
win_set_invert_color(ps, w, invert_color_new);
|
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
/**
|
|
|
|
* Set w->invert_color_force of a window.
|
|
|
|
*/
|
|
|
|
void win_set_invert_color_force(session_t *ps, struct managed_win *w, switch_t val) {
|
|
|
|
if (val != w->invert_color_force) {
|
|
|
|
w->invert_color_force = val;
|
|
|
|
win_determine_invert_color(ps, w);
|
|
|
|
queue_redraw(ps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set w->fade_force of a window.
|
|
|
|
*
|
|
|
|
* Doesn't affect fading already in progress
|
|
|
|
*/
|
2019-07-24 21:27:02 -04:00
|
|
|
void win_set_fade_force(struct managed_win *w, switch_t val) {
|
2019-04-17 18:14:45 -04:00
|
|
|
w->fade_force = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set w->focused_force of a window.
|
|
|
|
*/
|
|
|
|
void win_set_focused_force(session_t *ps, struct managed_win *w, switch_t val) {
|
|
|
|
if (val != w->focused_force) {
|
|
|
|
w->focused_force = val;
|
2020-03-17 15:50:48 -04:00
|
|
|
win_on_factor_change(ps, w);
|
2019-04-17 18:14:45 -04:00
|
|
|
queue_redraw(ps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set w->shadow_force of a window.
|
|
|
|
*/
|
|
|
|
void win_set_shadow_force(session_t *ps, struct managed_win *w, switch_t val) {
|
|
|
|
if (val != w->shadow_force) {
|
|
|
|
w->shadow_force = val;
|
|
|
|
win_determine_shadow(ps, w);
|
|
|
|
queue_redraw(ps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-26 18:40:30 -04:00
|
|
|
static void
|
|
|
|
win_set_blur_background(session_t *ps, struct managed_win *w, bool blur_background_new) {
|
2019-03-10 08:34:37 -04:00
|
|
|
if (w->blur_background == blur_background_new)
|
|
|
|
return;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
w->blur_background = blur_background_new;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-07-13 07:29:39 -04:00
|
|
|
// This damage might not be absolutely necessary (e.g. when the window is opaque),
|
|
|
|
// but blur_background changes should be rare, so this should be fine.
|
|
|
|
add_damage_from_win(ps, w);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if a window should have background blurred.
|
|
|
|
*/
|
2019-08-09 20:44:27 -04:00
|
|
|
static void win_determine_blur_background(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
if (w->a.map_state != XCB_MAP_STATE_VIEWABLE)
|
|
|
|
return;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-07-13 07:29:39 -04:00
|
|
|
bool blur_background_new =
|
|
|
|
ps->o.blur_method && !c2_match(ps, w, ps->o.blur_background_blacklist, NULL);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
win_set_blur_background(ps, w, blur_background_new);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update window opacity according to opacity rules.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_update_opacity_rule(session_t *ps, struct managed_win *w) {
|
2019-07-26 17:28:53 -04:00
|
|
|
if (w->a.map_state != XCB_MAP_STATE_VIEWABLE) {
|
2019-03-10 08:34:37 -04:00
|
|
|
return;
|
2019-07-26 17:28:53 -04:00
|
|
|
}
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
double opacity = 1.0;
|
|
|
|
bool is_set = false;
|
|
|
|
void *val = NULL;
|
|
|
|
if (c2_match(ps, w, ps->o.opacity_rules, &val)) {
|
|
|
|
opacity = ((double)(long)val) / 100.0;
|
|
|
|
is_set = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
w->opacity_set = opacity;
|
|
|
|
w->opacity_is_set = is_set;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to be called on window data changes.
|
2019-02-09 10:50:40 -05:00
|
|
|
*
|
|
|
|
* TODO need better name
|
2018-09-06 14:17:26 -04:00
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_on_factor_change(session_t *ps, struct managed_win *w) {
|
2020-03-17 15:50:48 -04:00
|
|
|
// Focus needs to be updated first, as other rules might depend on the focused
|
|
|
|
// state of the window
|
|
|
|
win_update_focused(ps, w);
|
|
|
|
|
2020-03-17 15:36:28 -04:00
|
|
|
win_determine_shadow(ps, w);
|
|
|
|
win_determine_invert_color(ps, w);
|
|
|
|
win_determine_blur_background(ps, w);
|
|
|
|
win_update_opacity_rule(ps, w);
|
|
|
|
if (w->a.map_state == XCB_MAP_STATE_VIEWABLE)
|
2019-03-10 08:34:37 -04:00
|
|
|
w->paint_excluded = c2_match(ps, w, ps->o.paint_blacklist, NULL);
|
2020-03-17 15:36:28 -04:00
|
|
|
if (w->a.map_state == XCB_MAP_STATE_VIEWABLE)
|
2019-03-10 08:34:37 -04:00
|
|
|
w->unredir_if_possible_excluded =
|
|
|
|
c2_match(ps, w, ps->o.unredir_if_possible_blacklist, NULL);
|
2020-03-17 15:50:48 -04:00
|
|
|
|
|
|
|
auto opacity_target_old = w->opacity_target;
|
|
|
|
w->opacity_target = win_calc_opacity_target(ps, w, false);
|
|
|
|
if (opacity_target_old != w->opacity_target && w->state == WSTATE_MAPPED) {
|
|
|
|
// Only MAPPED can transition to FADING
|
2020-04-04 21:50:14 -04:00
|
|
|
assert(w->opacity == opacity_target_old);
|
2020-03-17 15:50:48 -04:00
|
|
|
w->state = WSTATE_FADING;
|
2020-04-04 21:50:14 -04:00
|
|
|
log_debug("Window %#010x (%s) opactiy %f, opacity target %f", w->base.id,
|
|
|
|
w->name, w->opacity, w->opacity_target);
|
2020-03-17 15:50:48 -04:00
|
|
|
if (!ps->redirected) {
|
|
|
|
CHECK(!win_skip_fading(ps, w));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
w->reg_ignore_valid = false;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update cache data in struct _win that depends on window size.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_on_win_size_change(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
w->widthb = w->g.width + w->g.border_width * 2;
|
|
|
|
w->heightb = w->g.height + w->g.border_width * 2;
|
|
|
|
w->shadow_dx = ps->o.shadow_offset_x;
|
|
|
|
w->shadow_dy = ps->o.shadow_offset_y;
|
|
|
|
w->shadow_width = w->widthb + ps->o.shadow_radius * 2;
|
|
|
|
w->shadow_height = w->heightb + ps->o.shadow_radius * 2;
|
2019-04-20 00:26:20 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Invalidate the shadow we built
|
2019-04-20 00:26:20 -04:00
|
|
|
if (w->state == WSTATE_MAPPED || w->state == WSTATE_MAPPING ||
|
|
|
|
w->state == WSTATE_FADING) {
|
2020-04-06 15:52:32 -04:00
|
|
|
win_set_flags(w, WIN_FLAGS_IMAGES_STALE);
|
2019-05-22 17:38:22 -04:00
|
|
|
ps->pending_updates = true;
|
2019-03-10 08:34:37 -04:00
|
|
|
} else {
|
2019-04-20 00:26:20 -04:00
|
|
|
assert(w->state == WSTATE_UNMAPPED);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2019-04-20 00:26:20 -04:00
|
|
|
free_paint(ps, &w->shadow_paint);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update window type.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_update_wintype(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
const wintype_t wtype_old = w->window_type;
|
|
|
|
|
|
|
|
// Detect window type here
|
|
|
|
w->window_type = wid_get_prop_wintype(ps, w->client_win);
|
|
|
|
|
|
|
|
// Conform to EWMH standard, if _NET_WM_WINDOW_TYPE is not present, take
|
|
|
|
// override-redirect windows or windows without WM_TRANSIENT_FOR as
|
|
|
|
// _NET_WM_WINDOW_TYPE_NORMAL, otherwise as _NET_WM_WINDOW_TYPE_DIALOG.
|
|
|
|
if (WINTYPE_UNKNOWN == w->window_type) {
|
|
|
|
if (w->a.override_redirect ||
|
2019-05-05 19:34:08 -04:00
|
|
|
!wid_has_prop(ps, w->client_win, ps->atoms->aWM_TRANSIENT_FOR))
|
2019-03-10 08:34:37 -04:00
|
|
|
w->window_type = WINTYPE_NORMAL;
|
|
|
|
else
|
|
|
|
w->window_type = WINTYPE_DIALOG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (w->window_type != wtype_old)
|
2020-03-17 15:36:28 -04:00
|
|
|
win_on_factor_change(ps, w);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark a window as the client window of another.
|
|
|
|
*
|
|
|
|
* @param ps current session
|
|
|
|
* @param w struct _win of the parent window
|
|
|
|
* @param client window ID of the client window
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_mark_client(session_t *ps, struct managed_win *w, xcb_window_t client) {
|
2019-03-10 08:34:37 -04:00
|
|
|
w->client_win = client;
|
|
|
|
|
|
|
|
// If the window isn't mapped yet, stop here, as the function will be
|
|
|
|
// called in map_win()
|
|
|
|
if (w->a.map_state != XCB_MAP_STATE_VIEWABLE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto e = xcb_request_check(
|
|
|
|
ps->c, xcb_change_window_attributes(
|
|
|
|
ps->c, client, XCB_CW_EVENT_MASK,
|
|
|
|
(const uint32_t[]){determine_evmask(ps, client, WIN_EVMODE_CLIENT)}));
|
|
|
|
if (e) {
|
|
|
|
log_error("Failed to change event mask of window %#010x", client);
|
|
|
|
free(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
win_update_wintype(ps, w);
|
|
|
|
|
|
|
|
// Get frame widths. The window is in damaged area already.
|
2020-03-22 12:52:29 -04:00
|
|
|
win_update_frame_extents(ps, w, client);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
// Get window group
|
|
|
|
if (ps->o.track_leader)
|
|
|
|
win_update_leader(ps, w);
|
|
|
|
|
|
|
|
// Get window name and class if we are tracking them
|
2020-03-29 14:15:07 -04:00
|
|
|
win_update_name(ps, w);
|
|
|
|
win_get_class(ps, w);
|
|
|
|
win_get_role(ps, w);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
// Update everything related to conditions
|
|
|
|
win_on_factor_change(ps, w);
|
|
|
|
|
2019-07-13 07:29:39 -04:00
|
|
|
auto r = xcb_get_window_attributes_reply(
|
|
|
|
ps->c, xcb_get_window_attributes(ps->c, w->client_win), NULL);
|
|
|
|
if (!r) {
|
|
|
|
log_error("Failed to get client window attributes");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
w->client_pictfmt = x_get_pictform_for_visual(ps->c, r->visual);
|
|
|
|
free(r);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unmark current client window of a window.
|
|
|
|
*
|
|
|
|
* @param ps current session
|
|
|
|
* @param w struct _win of the parent window
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_unmark_client(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
xcb_window_t client = w->client_win;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
w->client_win = XCB_NONE;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Recheck event mask
|
|
|
|
xcb_change_window_attributes(
|
|
|
|
ps->c, client, XCB_CW_EVENT_MASK,
|
|
|
|
(const uint32_t[]){determine_evmask(ps, client, WIN_EVMODE_UNKNOWN)});
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2020-04-06 15:24:16 -04:00
|
|
|
/**
|
|
|
|
* Look for the client window of a particular window.
|
|
|
|
*/
|
|
|
|
static xcb_window_t find_client_win(session_t *ps, xcb_window_t w) {
|
|
|
|
if (wid_has_prop(ps, w, ps->atoms->aWM_STATE)) {
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
xcb_query_tree_reply_t *reply =
|
|
|
|
xcb_query_tree_reply(ps->c, xcb_query_tree(ps->c, w), NULL);
|
|
|
|
if (!reply)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
xcb_window_t *children = xcb_query_tree_children(reply);
|
|
|
|
int nchildren = xcb_query_tree_children_length(reply);
|
|
|
|
int i;
|
|
|
|
xcb_window_t ret = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < nchildren; ++i) {
|
|
|
|
if ((ret = find_client_win(ps, children[i])))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(reply);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-09-06 14:17:26 -04:00
|
|
|
/**
|
|
|
|
* Recheck client window of a window.
|
|
|
|
*
|
|
|
|
* @param ps current session
|
|
|
|
* @param w struct _win of the parent window
|
|
|
|
*/
|
2020-04-06 15:22:54 -04:00
|
|
|
static void win_recheck_client(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// Initialize wmwin to false
|
|
|
|
w->wmwin = false;
|
|
|
|
|
|
|
|
// Look for the client window
|
|
|
|
|
|
|
|
// Always recursively look for a window with WM_STATE, as Fluxbox
|
|
|
|
// sets override-redirect flags on all frame windows.
|
2019-04-17 18:14:45 -04:00
|
|
|
xcb_window_t cw = find_client_win(ps, w->base.id);
|
|
|
|
if (cw) {
|
2020-04-06 15:22:54 -04:00
|
|
|
log_trace("(%#010x): client %#010x", w->base.id, cw);
|
2019-04-17 18:14:45 -04:00
|
|
|
}
|
2019-03-10 08:34:37 -04:00
|
|
|
// Set a window's client window to itself if we couldn't find a
|
|
|
|
// client window
|
|
|
|
if (!cw) {
|
2019-04-17 18:14:45 -04:00
|
|
|
cw = w->base.id;
|
2019-03-10 08:34:37 -04:00
|
|
|
w->wmwin = !w->a.override_redirect;
|
2020-04-06 15:22:54 -04:00
|
|
|
log_trace("(%#010x): client self (%s)", w->base.id,
|
2019-03-10 08:34:37 -04:00
|
|
|
(w->wmwin ? "wmwin" : "override-redirected"));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unmark the old one
|
|
|
|
if (w->client_win && w->client_win != cw)
|
|
|
|
win_unmark_client(ps, w);
|
|
|
|
|
|
|
|
// Mark the new one
|
|
|
|
win_mark_client(ps, w, cw);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-02-09 10:50:40 -05:00
|
|
|
/**
|
|
|
|
* Free all resources in a <code>struct _win</code>.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void free_win_res(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// No need to call backend release_image here because
|
|
|
|
// finish_unmap_win should've done that for us.
|
|
|
|
// XXX unless we are called by session_destroy
|
|
|
|
// assert(w->win_data == NULL);
|
|
|
|
free_win_res_glx(ps, w);
|
|
|
|
free_paint(ps, &w->paint);
|
|
|
|
free_paint(ps, &w->shadow_paint);
|
|
|
|
// Above should be done during unmapping
|
|
|
|
// Except when we are called by session_destroy
|
|
|
|
|
|
|
|
pixman_region32_fini(&w->bounding_shape);
|
|
|
|
// BadDamage may be thrown if the window is destroyed
|
|
|
|
set_ignore_cookie(ps, xcb_damage_destroy(ps->c, w->damage));
|
|
|
|
rc_region_unref(&w->reg_ignore);
|
|
|
|
free(w->name);
|
|
|
|
free(w->class_instance);
|
|
|
|
free(w->class_general);
|
|
|
|
free(w->role);
|
2019-02-09 10:50:40 -05:00
|
|
|
}
|
|
|
|
|
2019-04-18 03:51:17 -04:00
|
|
|
/// Insert a new window after list_node `prev`
|
2019-04-17 18:14:45 -04:00
|
|
|
/// New window will be in unmapped state
|
2019-04-18 03:51:17 -04:00
|
|
|
static struct win *add_win(session_t *ps, xcb_window_t id, struct list_node *prev) {
|
2019-04-27 08:36:42 -04:00
|
|
|
log_debug("Adding window %#010x", id);
|
2019-04-18 20:49:34 -04:00
|
|
|
struct win *old_w = NULL;
|
|
|
|
HASH_FIND_INT(ps->windows, &id, old_w);
|
|
|
|
assert(old_w == NULL);
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
auto new_w = cmalloc(struct win);
|
2019-04-18 03:51:17 -04:00
|
|
|
list_insert_after(prev, &new_w->stack_neighbour);
|
2019-04-17 18:14:45 -04:00
|
|
|
new_w->id = id;
|
|
|
|
new_w->managed = false;
|
|
|
|
new_w->is_new = true;
|
|
|
|
new_w->destroyed = false;
|
|
|
|
|
|
|
|
HASH_ADD_INT(ps->windows, id, new_w);
|
2019-05-22 17:38:22 -04:00
|
|
|
ps->pending_updates = true;
|
2019-04-17 18:14:45 -04:00
|
|
|
return new_w;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Insert a new win entry at the top of the stack
|
|
|
|
struct win *add_win_top(session_t *ps, xcb_window_t id) {
|
2019-04-18 03:51:17 -04:00
|
|
|
return add_win(ps, id, &ps->window_stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Insert a new window above window with id `below`, if there is no window, add to top
|
|
|
|
/// New window will be in unmapped state
|
|
|
|
struct win *add_win_above(session_t *ps, xcb_window_t id, xcb_window_t below) {
|
|
|
|
struct win *w = NULL;
|
|
|
|
HASH_FIND_INT(ps->windows, &below, w);
|
|
|
|
if (!w) {
|
|
|
|
if (!list_is_empty(&ps->window_stack)) {
|
|
|
|
// `below` window is not found even if the window stack is not
|
|
|
|
// empty
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return add_win_top(ps, id);
|
2019-04-17 18:14:45 -04:00
|
|
|
} else {
|
2019-04-18 03:51:17 -04:00
|
|
|
// we found something from the hash table, so if the stack is empty,
|
|
|
|
// we are in an inconsistent state.
|
|
|
|
assert(!list_is_empty(&ps->window_stack));
|
|
|
|
return add_win(ps, id, w->stack_neighbour.prev);
|
2019-04-17 18:14:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Query the Xorg for information about window `win`
|
|
|
|
/// `win` pointer might become invalid after this function returns
|
2019-04-19 16:10:38 -04:00
|
|
|
/// Returns the pointer to the window, might be different from `w`
|
|
|
|
struct win *fill_win(session_t *ps, struct win *w) {
|
2019-04-17 18:14:45 -04:00
|
|
|
static const struct managed_win win_def = {
|
2019-03-10 08:34:37 -04:00
|
|
|
// No need to initialize. (or, you can think that
|
|
|
|
// they are initialized right here).
|
|
|
|
// The following ones are updated during paint or paint preprocess
|
|
|
|
.shadow_opacity = 0.0,
|
|
|
|
.to_paint = false,
|
|
|
|
.frame_opacity = 1.0,
|
|
|
|
.dim = false,
|
|
|
|
.invert_color = false,
|
|
|
|
.blur_background = false,
|
|
|
|
.reg_ignore = NULL,
|
|
|
|
// The following ones are updated for other reasons
|
|
|
|
.pixmap_damaged = false, // updated by damage events
|
|
|
|
.state = WSTATE_UNMAPPED, // updated by window state changes
|
|
|
|
.in_openclose = true, // set to false after first map is done,
|
|
|
|
// true here because window is just created
|
|
|
|
.reg_ignore_valid = false, // set to true when damaged
|
2020-02-07 16:35:34 -05:00
|
|
|
.flags = WIN_FLAGS_IMAGES_NONE, // updated by property/attributes/etc
|
|
|
|
// change
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
// Runtime variables, updated by dbus
|
|
|
|
.fade_force = UNSET,
|
|
|
|
.shadow_force = UNSET,
|
|
|
|
.focused_force = UNSET,
|
|
|
|
.invert_color_force = UNSET,
|
|
|
|
|
|
|
|
// Initialized in this function
|
|
|
|
.a = {0},
|
|
|
|
.pictfmt = NULL,
|
2019-07-13 07:29:39 -04:00
|
|
|
.client_pictfmt = NULL,
|
2019-03-10 08:34:37 -04:00
|
|
|
.widthb = 0,
|
|
|
|
.heightb = 0,
|
|
|
|
.shadow_dx = 0,
|
|
|
|
.shadow_dy = 0,
|
|
|
|
.shadow_width = 0,
|
|
|
|
.shadow_height = 0,
|
|
|
|
.damage = XCB_NONE,
|
|
|
|
|
|
|
|
// Not initialized until mapped, this variables
|
|
|
|
// have no meaning or have no use until the window
|
|
|
|
// is mapped
|
|
|
|
.win_image = NULL,
|
|
|
|
.shadow_image = NULL,
|
|
|
|
.prev_trans = NULL,
|
|
|
|
.shadow = false,
|
|
|
|
.xinerama_scr = -1,
|
|
|
|
.mode = WMODE_TRANS,
|
|
|
|
.ever_damaged = false,
|
|
|
|
.client_win = XCB_NONE,
|
|
|
|
.leader = XCB_NONE,
|
|
|
|
.cache_leader = XCB_NONE,
|
|
|
|
.window_type = WINTYPE_UNKNOWN,
|
|
|
|
.wmwin = false,
|
|
|
|
.focused = false,
|
|
|
|
.opacity = 0,
|
2019-07-26 18:40:30 -04:00
|
|
|
.opacity_target = 0,
|
2019-03-10 08:34:37 -04:00
|
|
|
.has_opacity_prop = false,
|
|
|
|
.opacity_prop = OPAQUE,
|
|
|
|
.opacity_is_set = false,
|
|
|
|
.opacity_set = 1,
|
|
|
|
.frame_extents = MARGIN_INIT, // in win_mark_client
|
|
|
|
.bounding_shaped = false,
|
|
|
|
.bounding_shape = {0},
|
|
|
|
.rounded_corners = false,
|
|
|
|
.paint_excluded = false,
|
|
|
|
.unredir_if_possible_excluded = false,
|
|
|
|
.prop_shadow = -1,
|
|
|
|
// following 4 are set in win_mark_client
|
|
|
|
.name = NULL,
|
|
|
|
.class_instance = NULL,
|
|
|
|
.class_general = NULL,
|
|
|
|
.role = NULL,
|
|
|
|
|
|
|
|
// Initialized during paint
|
|
|
|
.paint = PAINT_INIT,
|
|
|
|
.shadow_paint = PAINT_INIT,
|
|
|
|
};
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
assert(!w->destroyed);
|
|
|
|
assert(w->is_new);
|
|
|
|
|
2019-04-19 16:10:38 -04:00
|
|
|
w->is_new = false;
|
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Reject overlay window and already added windows
|
2019-04-17 18:14:45 -04:00
|
|
|
if (w->id == ps->overlay) {
|
2019-04-19 16:10:38 -04:00
|
|
|
return w;
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
auto duplicated_win = find_managed_win(ps, w->id);
|
2019-03-10 08:34:37 -04:00
|
|
|
if (duplicated_win) {
|
2019-04-17 18:14:45 -04:00
|
|
|
log_debug("Window %#010x (recorded name: %s) added multiple times", w->id,
|
2019-03-10 08:34:37 -04:00
|
|
|
duplicated_win->name);
|
2019-04-19 16:10:38 -04:00
|
|
|
return &duplicated_win->base;
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
2019-04-27 08:36:42 -04:00
|
|
|
log_debug("Managing window %#010x", w->id);
|
2019-04-18 03:51:17 -04:00
|
|
|
xcb_get_window_attributes_cookie_t acookie = xcb_get_window_attributes(ps->c, w->id);
|
2019-03-10 08:34:37 -04:00
|
|
|
xcb_get_window_attributes_reply_t *a =
|
|
|
|
xcb_get_window_attributes_reply(ps->c, acookie, NULL);
|
2019-03-16 19:57:47 -04:00
|
|
|
if (!a || a->map_state == XCB_MAP_STATE_UNVIEWABLE) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// Failed to get window attributes or geometry probably means
|
|
|
|
// the window is gone already. Unviewable means the window is
|
|
|
|
// already reparented elsewhere.
|
|
|
|
// BTW, we don't care about Input Only windows, except for stacking
|
|
|
|
// proposes, so we need to keep track of them still.
|
|
|
|
free(a);
|
2019-04-19 16:10:38 -04:00
|
|
|
return w;
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
if (a->_class == XCB_WINDOW_CLASS_INPUT_ONLY) {
|
|
|
|
// No need to manage this window, but we still keep it on the window stack
|
|
|
|
w->managed = false;
|
2019-09-20 04:13:07 -04:00
|
|
|
free(a);
|
2019-04-19 16:10:38 -04:00
|
|
|
return w;
|
2019-04-17 18:14:45 -04:00
|
|
|
}
|
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Allocate and initialize the new win structure
|
2019-09-19 20:54:14 -04:00
|
|
|
auto new_internal = cmalloc(struct managed_win_internal);
|
|
|
|
auto new = (struct managed_win *)new_internal;
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
// Fill structure
|
|
|
|
// We only need to initialize the part that are not initialized
|
|
|
|
// by map_win
|
|
|
|
*new = win_def;
|
2019-04-17 18:14:45 -04:00
|
|
|
new->base = *w;
|
|
|
|
new->base.managed = true;
|
2019-03-10 08:34:37 -04:00
|
|
|
new->a = *a;
|
|
|
|
pixman_region32_init(&new->bounding_shape);
|
|
|
|
|
|
|
|
free(a);
|
|
|
|
|
|
|
|
// Create Damage for window (if not Input Only)
|
2019-04-17 18:14:45 -04:00
|
|
|
new->damage = x_new_id(ps->c);
|
|
|
|
xcb_generic_error_t *e = xcb_request_check(
|
|
|
|
ps->c, xcb_damage_create_checked(ps->c, new->damage, w->id,
|
|
|
|
XCB_DAMAGE_REPORT_LEVEL_NON_EMPTY));
|
|
|
|
if (e) {
|
|
|
|
free(e);
|
|
|
|
free(new);
|
2019-04-19 16:10:38 -04:00
|
|
|
return w;
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
new->pictfmt = x_get_pictform_for_visual(ps->c, new->a.visual);
|
2019-07-13 07:29:39 -04:00
|
|
|
new->client_pictfmt = NULL;
|
2019-04-17 18:14:45 -04:00
|
|
|
|
|
|
|
list_replace(&w->stack_neighbour, &new->base.stack_neighbour);
|
|
|
|
struct win *replaced = NULL;
|
|
|
|
HASH_REPLACE_INT(ps->windows, id, &new->base, replaced);
|
|
|
|
assert(replaced == w);
|
|
|
|
free(w);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
|
|
|
#ifdef CONFIG_DBUS
|
2019-03-10 08:34:37 -04:00
|
|
|
// Send D-Bus signal
|
|
|
|
if (ps->o.dbus) {
|
2019-04-17 18:14:45 -04:00
|
|
|
cdbus_ev_win_added(ps, &new->base);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
#endif
|
2019-04-19 16:10:38 -04:00
|
|
|
return &new->base;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set leader of a window.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
static inline void win_set_leader(session_t *ps, struct managed_win *w, xcb_window_t nleader) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// If the leader changes
|
|
|
|
if (w->leader != nleader) {
|
|
|
|
xcb_window_t cache_leader_old = win_get_leader(ps, w);
|
|
|
|
|
|
|
|
w->leader = nleader;
|
|
|
|
|
|
|
|
// Forcefully do this to deal with the case when a child window
|
|
|
|
// gets mapped before parent, or when the window is a waypoint
|
|
|
|
clear_cache_win_leaders(ps);
|
|
|
|
|
|
|
|
// Update the old and new window group and active_leader if the window
|
|
|
|
// could affect their state.
|
|
|
|
xcb_window_t cache_leader = win_get_leader(ps, w);
|
2020-03-17 15:19:13 -04:00
|
|
|
if (win_is_focused_raw(ps, w) && cache_leader_old != cache_leader) {
|
2019-03-10 08:34:37 -04:00
|
|
|
ps->active_leader = cache_leader;
|
|
|
|
|
2020-03-17 15:50:48 -04:00
|
|
|
group_on_factor_change(ps, cache_leader_old);
|
|
|
|
group_on_factor_change(ps, cache_leader);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update everything related to conditions
|
|
|
|
win_on_factor_change(ps, w);
|
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update leader of a window.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_update_leader(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
xcb_window_t leader = XCB_NONE;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Read the leader properties
|
|
|
|
if (ps->o.detect_transient && !leader)
|
2019-05-05 19:34:08 -04:00
|
|
|
leader = wid_get_prop_window(ps, w->client_win, ps->atoms->aWM_TRANSIENT_FOR);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
if (ps->o.detect_client_leader && !leader)
|
2019-05-05 19:34:08 -04:00
|
|
|
leader = wid_get_prop_window(ps, w->client_win, ps->atoms->aWM_CLIENT_LEADER);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
win_set_leader(ps, w, leader);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
log_trace("(%#010x): client %#010x, leader %#010x, cache %#010x", w->base.id,
|
2019-03-10 08:34:37 -04:00
|
|
|
w->client_win, w->leader, win_get_leader(ps, w));
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal function of win_get_leader().
|
|
|
|
*/
|
2019-08-09 20:44:27 -04:00
|
|
|
static xcb_window_t win_get_leader_raw(session_t *ps, struct managed_win *w, int recursions) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// Rebuild the cache if needed
|
|
|
|
if (!w->cache_leader && (w->client_win || w->leader)) {
|
|
|
|
// Leader defaults to client window
|
|
|
|
if (!(w->cache_leader = w->leader))
|
|
|
|
w->cache_leader = w->client_win;
|
|
|
|
|
|
|
|
// If the leader of this window isn't itself, look for its ancestors
|
|
|
|
if (w->cache_leader && w->cache_leader != w->client_win) {
|
2019-04-17 18:14:45 -04:00
|
|
|
auto wp = find_toplevel(ps, w->cache_leader);
|
2019-03-10 08:34:37 -04:00
|
|
|
if (wp) {
|
|
|
|
// Dead loop?
|
|
|
|
if (recursions > WIN_GET_LEADER_MAX_RECURSION)
|
|
|
|
return XCB_NONE;
|
|
|
|
|
|
|
|
w->cache_leader = win_get_leader_raw(ps, wp, recursions + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return w->cache_leader;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the <code>WM_CLASS</code> of a window and update its
|
|
|
|
* <code>win</code> structure.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
bool win_get_class(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
char **strlst = NULL;
|
|
|
|
int nstr = 0;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Can't do anything if there's no client window
|
|
|
|
if (!w->client_win)
|
|
|
|
return false;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Free and reset old strings
|
|
|
|
free(w->class_instance);
|
|
|
|
free(w->class_general);
|
|
|
|
w->class_instance = NULL;
|
|
|
|
w->class_general = NULL;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Retrieve the property string list
|
2019-05-05 19:34:08 -04:00
|
|
|
if (!wid_get_text_prop(ps, w->client_win, ps->atoms->aWM_CLASS, &strlst, &nstr))
|
2019-03-10 08:34:37 -04:00
|
|
|
return false;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Copy the strings if successful
|
|
|
|
w->class_instance = strdup(strlst[0]);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
if (nstr > 1)
|
|
|
|
w->class_general = strdup(strlst[1]);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
XFreeStringList(strlst);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
log_trace("(%#010x): client = %#010x, "
|
|
|
|
"instance = \"%s\", general = \"%s\"",
|
2019-04-17 18:14:45 -04:00
|
|
|
w->base.id, w->client_win, w->class_instance, w->class_general);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
return true;
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle window focus change.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
static void win_on_focus_change(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// If window grouping detection is enabled
|
|
|
|
if (ps->o.track_leader) {
|
|
|
|
xcb_window_t leader = win_get_leader(ps, w);
|
|
|
|
|
|
|
|
// If the window gets focused, replace the old active_leader
|
2020-03-17 15:19:13 -04:00
|
|
|
if (win_is_focused_raw(ps, w) && leader != ps->active_leader) {
|
2019-03-10 08:34:37 -04:00
|
|
|
xcb_window_t active_leader_old = ps->active_leader;
|
|
|
|
|
|
|
|
ps->active_leader = leader;
|
|
|
|
|
2020-03-17 15:50:48 -04:00
|
|
|
group_on_factor_change(ps, active_leader_old);
|
|
|
|
group_on_factor_change(ps, leader);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
// If the group get unfocused, remove it from active_leader
|
2020-03-17 15:19:13 -04:00
|
|
|
else if (!win_is_focused_raw(ps, w) && leader &&
|
2019-03-10 08:34:37 -04:00
|
|
|
leader == ps->active_leader && !group_is_focused(ps, leader)) {
|
|
|
|
ps->active_leader = XCB_NONE;
|
2020-03-17 15:50:48 -04:00
|
|
|
group_on_factor_change(ps, leader);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update everything related to conditions
|
|
|
|
win_on_factor_change(ps, w);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
|
|
|
#ifdef CONFIG_DBUS
|
2019-03-10 08:34:37 -04:00
|
|
|
// Send D-Bus signal
|
|
|
|
if (ps->o.dbus) {
|
2020-03-17 15:19:13 -04:00
|
|
|
if (win_is_focused_raw(ps, w))
|
2019-04-17 18:14:45 -04:00
|
|
|
cdbus_ev_win_focusin(ps, &w->base);
|
2019-03-10 08:34:37 -04:00
|
|
|
else
|
2019-04-17 18:14:45 -04:00
|
|
|
cdbus_ev_win_focusout(ps, &w->base);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set real focused state of a window.
|
|
|
|
*/
|
2019-05-24 18:13:24 -04:00
|
|
|
void win_set_focused(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// Unmapped windows will have their focused state reset on map
|
2019-05-24 18:13:24 -04:00
|
|
|
if (w->a.map_state != XCB_MAP_STATE_VIEWABLE) {
|
2019-03-10 08:34:37 -04:00
|
|
|
return;
|
2019-05-24 18:13:24 -04:00
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2020-03-17 15:19:13 -04:00
|
|
|
if (win_is_focused_raw(ps, w)) {
|
2019-03-10 08:34:37 -04:00
|
|
|
return;
|
2019-05-24 18:13:24 -04:00
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-05-24 18:34:30 -04:00
|
|
|
auto old_active_win = ps->active_win;
|
2019-05-24 18:13:24 -04:00
|
|
|
ps->active_win = w;
|
2020-03-17 15:19:13 -04:00
|
|
|
assert(win_is_focused_raw(ps, w));
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-05-24 18:34:30 -04:00
|
|
|
if (old_active_win) {
|
|
|
|
win_on_focus_change(ps, old_active_win);
|
|
|
|
}
|
2019-03-10 08:34:37 -04:00
|
|
|
win_on_focus_change(ps, w);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a rectangular region a window (and possibly its shadow) occupies.
|
|
|
|
*
|
|
|
|
* Note w->shadow and shadow geometry must be correct before calling this
|
|
|
|
* function.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_extents(const struct managed_win *w, region_t *res) {
|
2019-03-10 08:34:37 -04:00
|
|
|
pixman_region32_clear(res);
|
2019-03-30 05:07:21 -04:00
|
|
|
pixman_region32_union_rect(res, res, w->g.x, w->g.y, (uint)w->widthb, (uint)w->heightb);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-30 05:07:21 -04:00
|
|
|
if (w->shadow) {
|
|
|
|
assert(w->shadow_width >= 0 && w->shadow_height >= 0);
|
2019-03-10 08:34:37 -04:00
|
|
|
pixman_region32_union_rect(res, res, w->g.x + w->shadow_dx,
|
2019-03-30 05:07:21 -04:00
|
|
|
w->g.y + w->shadow_dy, (uint)w->shadow_width,
|
|
|
|
(uint)w->shadow_height);
|
|
|
|
}
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
gen_by_val(win_extents);
|
2018-12-21 19:33:40 -05:00
|
|
|
|
2019-03-16 16:14:54 -04:00
|
|
|
/**
|
|
|
|
* Update the out-dated bounding shape of a window.
|
|
|
|
*
|
|
|
|
* Mark the window shape as updated
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_update_bounding_shape(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
if (ps->shape_exists)
|
2019-04-17 18:14:45 -04:00
|
|
|
w->bounding_shaped = win_bounding_shaped(ps, w->base.id);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
pixman_region32_clear(&w->bounding_shape);
|
|
|
|
// Start with the window rectangular region
|
|
|
|
win_get_region_local(w, &w->bounding_shape);
|
|
|
|
|
|
|
|
// Only request for a bounding region if the window is shaped
|
|
|
|
// (while loop is used to avoid goto, not an actual loop)
|
|
|
|
while (w->bounding_shaped) {
|
|
|
|
/*
|
|
|
|
* if window doesn't exist anymore, this will generate an error
|
|
|
|
* as well as not generate a region.
|
|
|
|
*/
|
|
|
|
|
|
|
|
xcb_shape_get_rectangles_reply_t *r = xcb_shape_get_rectangles_reply(
|
2019-04-17 18:14:45 -04:00
|
|
|
ps->c,
|
|
|
|
xcb_shape_get_rectangles(ps->c, w->base.id, XCB_SHAPE_SK_BOUNDING), NULL);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
if (!r)
|
|
|
|
break;
|
|
|
|
|
|
|
|
xcb_rectangle_t *xrects = xcb_shape_get_rectangles_rectangles(r);
|
|
|
|
int nrects = xcb_shape_get_rectangles_rectangles_length(r);
|
|
|
|
rect_t *rects = from_x_rects(nrects, xrects);
|
|
|
|
free(r);
|
|
|
|
|
|
|
|
region_t br;
|
|
|
|
pixman_region32_init_rects(&br, rects, nrects);
|
|
|
|
free(rects);
|
|
|
|
|
|
|
|
// Add border width because we are using a different origin.
|
|
|
|
// X thinks the top left of the inner window is the origin
|
|
|
|
// (for the bounding shape, althought xcb_get_geometry thinks
|
|
|
|
// the outer top left (outer means outside of the window
|
|
|
|
// border) is the origin),
|
|
|
|
// We think the top left of the border is the origin
|
|
|
|
pixman_region32_translate(&br, w->g.border_width, w->g.border_width);
|
|
|
|
|
|
|
|
// Intersect the bounding region we got with the window rectangle, to
|
|
|
|
// make sure the bounding region is not bigger than the window
|
|
|
|
// rectangle
|
|
|
|
pixman_region32_intersect(&w->bounding_shape, &w->bounding_shape, &br);
|
|
|
|
pixman_region32_fini(&br);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (w->bounding_shaped && ps->o.detect_rounded_corners) {
|
|
|
|
w->rounded_corners = win_has_rounded_corners(w);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Window shape changed, we should free old wpaint and shadow pict
|
2019-04-20 00:26:20 -04:00
|
|
|
// log_trace("free out dated pict");
|
|
|
|
if (w->state != WSTATE_UNMAPPED) {
|
|
|
|
// Note we only do this when screen is redirected, because
|
|
|
|
// otherwise win_data is not valid
|
|
|
|
assert(w->state != WSTATE_UNMAPPING && w->state != WSTATE_DESTROYING);
|
2020-04-06 15:52:32 -04:00
|
|
|
win_set_flags(w, WIN_FLAGS_IMAGES_STALE);
|
2019-05-22 17:38:22 -04:00
|
|
|
ps->pending_updates = true;
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2019-04-20 00:26:20 -04:00
|
|
|
free_paint(ps, &w->paint);
|
|
|
|
free_paint(ps, &w->shadow_paint);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
win_on_factor_change(ps, w);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reread opacity property of a window.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_update_opacity_prop(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
// get frame opacity first
|
2019-04-17 18:14:45 -04:00
|
|
|
w->has_opacity_prop = wid_get_opacity_prop(ps, w->base.id, OPAQUE, &w->opacity_prop);
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
if (w->has_opacity_prop)
|
|
|
|
// opacity found
|
|
|
|
return;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
if (ps->o.detect_client_opacity && w->client_win && w->base.id == w->client_win)
|
2019-03-10 08:34:37 -04:00
|
|
|
// checking client opacity not allowed
|
|
|
|
return;
|
2018-09-06 14:17:26 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// get client opacity
|
|
|
|
w->has_opacity_prop =
|
|
|
|
wid_get_opacity_prop(ps, w->client_win, OPAQUE, &w->opacity_prop);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve frame extents from a window.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_update_frame_extents(session_t *ps, struct managed_win *w, xcb_window_t client) {
|
2020-01-18 12:26:53 -05:00
|
|
|
winprop_t prop = x_get_prop(ps, client, ps->atoms->a_NET_FRAME_EXTENTS, 4L,
|
|
|
|
XCB_ATOM_CARDINAL, 32);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
if (prop.nitems == 4) {
|
2019-03-30 06:19:31 -04:00
|
|
|
const int32_t extents[4] = {
|
2019-03-31 17:41:50 -04:00
|
|
|
to_int_checked(prop.c32[0]),
|
|
|
|
to_int_checked(prop.c32[1]),
|
|
|
|
to_int_checked(prop.c32[2]),
|
|
|
|
to_int_checked(prop.c32[3]),
|
2019-03-30 06:19:31 -04:00
|
|
|
};
|
2019-03-10 08:34:37 -04:00
|
|
|
const bool changed = w->frame_extents.left != extents[0] ||
|
|
|
|
w->frame_extents.right != extents[1] ||
|
|
|
|
w->frame_extents.top != extents[2] ||
|
|
|
|
w->frame_extents.bottom != extents[3];
|
|
|
|
w->frame_extents.left = extents[0];
|
|
|
|
w->frame_extents.right = extents[1];
|
|
|
|
w->frame_extents.top = extents[2];
|
|
|
|
w->frame_extents.bottom = extents[3];
|
|
|
|
|
|
|
|
// If frame_opacity != 1, then frame of this window
|
|
|
|
// is not included in reg_ignore of underneath windows
|
|
|
|
if (ps->o.frame_opacity == 1 && changed)
|
|
|
|
w->reg_ignore_valid = false;
|
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
log_trace("(%#010x): %d, %d, %d, %d", w->base.id, w->frame_extents.left,
|
2019-03-10 08:34:37 -04:00
|
|
|
w->frame_extents.right, w->frame_extents.top, w->frame_extents.bottom);
|
|
|
|
|
|
|
|
free_winprop(&prop);
|
2018-09-06 14:17:26 -04:00
|
|
|
}
|
Convert XfixesRegion to pixman region
Re-did the painting logic, and document it.
It is unclear to me what is the previous painting logic. But the current
one is basically this:
1. Go through all windows top to bottom, and put visible windows (not
unmapped, opacity > 0, etc) into a linked list, from bottom to top
2. Accumulate a region of ignore on each window, which is basically the
region of screen that is obscured by all the windows above current
one.
3. Paint all the visible windows from bottom to top. Subtract the region
of ignore from the painting region. If we need to paint shadow, we
subtract the body of the window from the shadow painting region too,
because we don't want shadow behind the window.
4. region of ignore is invalidated when window stack change, an
window on top moved or changed shape, when window changed between
opaque and transparent, etc.
Notes:
It is unclear whether all the different shapes of a window (extents,
noframe, border, bounding shape, etc) are calculated correctly or not.
It is unclear if window shape related events are handled correctly or
not. Need more testing.
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
2018-09-29 23:56:00 -04:00
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
bool win_is_region_ignore_valid(session_t *ps, const struct managed_win *w) {
|
|
|
|
win_stack_foreach_managed(i, &ps->window_stack) {
|
2019-03-10 08:34:37 -04:00
|
|
|
if (i == w)
|
|
|
|
break;
|
|
|
|
if (!i->reg_ignore_valid)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
Convert XfixesRegion to pixman region
Re-did the painting logic, and document it.
It is unclear to me what is the previous painting logic. But the current
one is basically this:
1. Go through all windows top to bottom, and put visible windows (not
unmapped, opacity > 0, etc) into a linked list, from bottom to top
2. Accumulate a region of ignore on each window, which is basically the
region of screen that is obscured by all the windows above current
one.
3. Paint all the visible windows from bottom to top. Subtract the region
of ignore from the painting region. If we need to paint shadow, we
subtract the body of the window from the shadow painting region too,
because we don't want shadow behind the window.
4. region of ignore is invalidated when window stack change, an
window on top moved or changed shape, when window changed between
opaque and transparent, etc.
Notes:
It is unclear whether all the different shapes of a window (extents,
noframe, border, bounding shape, etc) are calculated correctly or not.
It is unclear if window shape related events are handled correctly or
not. Need more testing.
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
2018-09-29 23:56:00 -04:00
|
|
|
}
|
2018-11-03 18:38:18 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stop listening for events on a particular window.
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_ev_stop(session_t *ps, const struct win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
xcb_change_window_attributes(ps->c, w->id, XCB_CW_EVENT_MASK, (const uint32_t[]){0});
|
2018-11-03 18:38:18 -04:00
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
if (!w->managed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto mw = (struct managed_win *)w;
|
|
|
|
if (mw->client_win) {
|
|
|
|
xcb_change_window_attributes(ps->c, mw->client_win, XCB_CW_EVENT_MASK,
|
2019-03-10 08:34:37 -04:00
|
|
|
(const uint32_t[]){0});
|
|
|
|
}
|
2018-11-03 18:38:18 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
if (ps->shape_exists) {
|
|
|
|
xcb_shape_select_input(ps->c, w->id, 0);
|
|
|
|
}
|
2018-11-03 18:38:18 -04:00
|
|
|
}
|
2018-12-15 16:11:41 -05:00
|
|
|
|
2019-09-16 17:14:34 -04:00
|
|
|
/// Finish the unmapping of a window (e.g. after fading has finished).
|
|
|
|
/// Doesn't free `w`
|
2019-09-19 20:41:56 -04:00
|
|
|
static void unmap_win_finish(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
w->ever_damaged = false;
|
|
|
|
w->reg_ignore_valid = false;
|
|
|
|
w->state = WSTATE_UNMAPPED;
|
|
|
|
|
2019-04-20 00:26:20 -04:00
|
|
|
// We are in unmap_win, this window definitely was viewable
|
|
|
|
if (ps->backend_data) {
|
2019-09-19 13:48:12 -04:00
|
|
|
win_release_images(ps->backend_data, w);
|
2019-09-19 21:18:16 -04:00
|
|
|
} else {
|
|
|
|
assert(!w->win_image);
|
|
|
|
assert(!w->shadow_image);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2019-09-19 21:18:16 -04:00
|
|
|
|
2019-04-20 00:26:20 -04:00
|
|
|
free_paint(ps, &w->paint);
|
|
|
|
free_paint(ps, &w->shadow_paint);
|
2019-03-17 12:40:33 -04:00
|
|
|
|
2019-09-19 13:48:12 -04:00
|
|
|
// Try again at binding images when the window is mapped next time
|
2020-04-06 15:52:32 -04:00
|
|
|
win_clear_flags(w, WIN_FLAGS_IMAGE_ERROR);
|
2019-02-09 10:50:40 -05:00
|
|
|
}
|
|
|
|
|
2019-09-16 17:14:34 -04:00
|
|
|
/// Finish the destruction of a window (e.g. after fading has finished).
|
|
|
|
/// Frees `w`
|
2019-09-19 20:41:56 -04:00
|
|
|
static void destroy_win_finish(session_t *ps, struct win *w) {
|
2019-09-19 20:23:44 -04:00
|
|
|
log_trace("Trying to finish destroying (%#010x)", w->id);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-09-19 20:23:44 -04:00
|
|
|
auto next_w = win_stack_find_next_managed(ps, &w->stack_neighbour);
|
|
|
|
list_remove(&w->stack_neighbour);
|
|
|
|
|
|
|
|
if (w->managed) {
|
|
|
|
auto mw = (struct managed_win *)w;
|
|
|
|
|
|
|
|
if (mw->state != WSTATE_UNMAPPED) {
|
|
|
|
// Only UNMAPPED state has window resources freed, otherwise
|
|
|
|
// we need to call unmap_win_finish to free them.
|
|
|
|
// XXX actually we unmap_win_finish only frees the rendering
|
|
|
|
// resources, we still need to call free_win_res. will fix
|
|
|
|
// later.
|
2019-09-19 20:41:56 -04:00
|
|
|
unmap_win_finish(ps, mw);
|
2019-09-19 20:23:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Invalidate reg_ignore of windows below this one
|
|
|
|
// TODO what if next_w is not mapped??
|
|
|
|
// TODO seriously figure out how reg_ignore behaves.
|
|
|
|
// I think if `w` is unmapped, and destroyed after
|
|
|
|
// paint happened at least once, w->reg_ignore_valid would
|
|
|
|
// be true, and there is no need to invalid w->next->reg_ignore
|
|
|
|
// when w is destroyed.
|
|
|
|
if (next_w) {
|
|
|
|
rc_region_unref(&next_w->reg_ignore);
|
|
|
|
next_w->reg_ignore_valid = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mw == ps->active_win) {
|
|
|
|
// Usually, the window cannot be the focused at destruction.
|
|
|
|
// FocusOut should be generated before the window is destroyed. We
|
|
|
|
// do this check just to be completely sure we don't have dangling
|
|
|
|
// references.
|
|
|
|
log_debug("window %#010x (%s) is destroyed while being focused",
|
|
|
|
w->id, mw->name);
|
|
|
|
ps->active_win = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
free_win_res(ps, mw);
|
|
|
|
|
|
|
|
// Drop w from all prev_trans to avoid accessing freed memory in
|
|
|
|
// repair_win()
|
|
|
|
// TODO there can only be one prev_trans pointing to w
|
|
|
|
win_stack_foreach_managed(w2, &ps->window_stack) {
|
|
|
|
if (mw == w2->prev_trans) {
|
|
|
|
w2->prev_trans = NULL;
|
|
|
|
}
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
}
|
2019-09-19 20:23:44 -04:00
|
|
|
|
2019-04-03 15:48:46 -04:00
|
|
|
free(w);
|
2019-02-09 10:50:40 -05:00
|
|
|
}
|
2018-12-15 16:11:41 -05:00
|
|
|
|
2019-09-19 20:41:56 -04:00
|
|
|
static void map_win_finish(struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
w->in_openclose = false;
|
|
|
|
w->state = WSTATE_MAPPED;
|
2019-02-09 10:50:40 -05:00
|
|
|
}
|
|
|
|
|
2019-04-27 08:36:42 -04:00
|
|
|
/// Move window `w` so it's before `next` in the list
|
|
|
|
static inline void restack_win(session_t *ps, struct win *w, struct list_node *next) {
|
|
|
|
struct managed_win *mw = NULL;
|
|
|
|
if (w->managed) {
|
|
|
|
mw = (struct managed_win *)w;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mw) {
|
|
|
|
// This invalidates all reg_ignore below the new stack position of `w`
|
|
|
|
mw->reg_ignore_valid = false;
|
|
|
|
rc_region_unref(&mw->reg_ignore);
|
|
|
|
|
|
|
|
// This invalidates all reg_ignore below the old stack position of `w`
|
|
|
|
auto next_w = win_stack_find_next_managed(ps, &w->stack_neighbour);
|
|
|
|
if (next_w) {
|
|
|
|
next_w->reg_ignore_valid = false;
|
|
|
|
rc_region_unref(&next_w->reg_ignore);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
list_move_before(&w->stack_neighbour, next);
|
|
|
|
|
|
|
|
// add damage for this window
|
|
|
|
if (mw) {
|
|
|
|
add_damage_from_win(ps, mw);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_RESTACK
|
|
|
|
log_trace("Window stack modified. Current stack:");
|
|
|
|
for (auto c = ps->list; c; c = c->next) {
|
|
|
|
const char *desc = "";
|
|
|
|
if (c->state == WSTATE_DESTROYING) {
|
|
|
|
desc = "(D) ";
|
|
|
|
}
|
|
|
|
log_trace("%#010x \"%s\" %s", c->id, c->name, desc);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Move window `w` so it's right above `below`
|
|
|
|
void restack_above(session_t *ps, struct win *w, xcb_window_t below) {
|
|
|
|
xcb_window_t old_below;
|
|
|
|
|
|
|
|
if (!list_node_is_last(&ps->window_stack, &w->stack_neighbour)) {
|
|
|
|
old_below = list_next_entry(w, stack_neighbour)->id;
|
|
|
|
} else {
|
|
|
|
old_below = XCB_NONE;
|
|
|
|
}
|
|
|
|
log_debug("Restack %#010x (%s), old_below: %#010x, new_below: %#010x", w->id,
|
|
|
|
win_get_name_if_managed(w), old_below, below);
|
|
|
|
|
|
|
|
if (old_below != below) {
|
|
|
|
struct list_node *new_next;
|
|
|
|
if (!below) {
|
|
|
|
new_next = &ps->window_stack;
|
|
|
|
} else {
|
|
|
|
struct win *tmp_w = NULL;
|
|
|
|
HASH_FIND_INT(ps->windows, &below, tmp_w);
|
|
|
|
|
|
|
|
if (!tmp_w) {
|
2019-05-05 19:34:08 -04:00
|
|
|
log_error("Failed to found new below window %#010x.", below);
|
2019-04-27 08:36:42 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
new_next = &tmp_w->stack_neighbour;
|
|
|
|
}
|
|
|
|
restack_win(ps, w, new_next);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void restack_bottom(session_t *ps, struct win *w) {
|
|
|
|
restack_above(ps, w, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void restack_top(session_t *ps, struct win *w) {
|
|
|
|
log_debug("Restack %#010x (%s) to top", w->id, win_get_name_if_managed(w));
|
|
|
|
if (&w->stack_neighbour == ps->window_stack.next) {
|
|
|
|
// already at top
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
restack_win(ps, w, ps->window_stack.next);
|
|
|
|
}
|
|
|
|
|
2019-09-19 20:23:44 -04:00
|
|
|
/// Start destroying a window. Windows cannot always be destroyed immediately
|
|
|
|
/// because of fading and such.
|
|
|
|
///
|
|
|
|
/// @return whether the window has finished destroying and is freed
|
2019-09-19 20:41:56 -04:00
|
|
|
bool destroy_win_start(session_t *ps, struct win *w) {
|
2019-09-19 20:23:44 -04:00
|
|
|
auto mw = (struct managed_win *)w;
|
|
|
|
assert(w);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-09-19 20:23:44 -04:00
|
|
|
log_debug("Destroying %#010x \"%s\", managed = %d", w->id,
|
|
|
|
(w->managed ? mw->name : NULL), w->managed);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-09-19 20:23:44 -04:00
|
|
|
// Delete destroyed window from the hash table, even though the window might still
|
|
|
|
// be rendered for a while. We need to make sure future window with the same
|
|
|
|
// window id won't confuse us. Keep the window in the window stack if it's managed
|
|
|
|
// and mapped, since we might still need to render it (e.g. fading out). Window
|
|
|
|
// will be removed from the stack when it finishes destroying.
|
|
|
|
HASH_DEL(ps->windows, w);
|
|
|
|
|
|
|
|
if (!w->managed || mw->state == WSTATE_UNMAPPED) {
|
|
|
|
// Window is already unmapped, or is an unmanged window, just destroy it
|
2019-09-19 20:41:56 -04:00
|
|
|
destroy_win_finish(ps, w);
|
2019-09-19 20:23:44 -04:00
|
|
|
return true;
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
2019-09-19 20:23:44 -04:00
|
|
|
if (w->managed) {
|
2020-04-06 15:52:32 -04:00
|
|
|
// Clear PIXMAP_STALE flag, since the window is destroyed there is no
|
|
|
|
// pixmap available so STALE doesn't make sense.
|
|
|
|
// Do this before changing the window state to destroying
|
|
|
|
win_clear_flags(mw, WIN_FLAGS_PIXMAP_STALE);
|
|
|
|
|
2019-09-19 20:23:44 -04:00
|
|
|
// Update state flags of a managed window
|
|
|
|
mw->state = WSTATE_DESTROYING;
|
|
|
|
mw->a.map_state = XCB_MAP_STATE_UNMAPPED;
|
|
|
|
mw->in_openclose = true;
|
|
|
|
}
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-09-19 20:23:44 -04:00
|
|
|
// don't need win_ev_stop because the window is gone anyway
|
|
|
|
#ifdef CONFIG_DBUS
|
|
|
|
// Send D-Bus signal
|
|
|
|
if (ps->o.dbus) {
|
|
|
|
cdbus_ev_win_destroyed(ps, w);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2019-09-19 20:23:44 -04:00
|
|
|
#endif
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-09-19 20:23:44 -04:00
|
|
|
if (!ps->redirected) {
|
|
|
|
// Skip transition if we are not rendering
|
|
|
|
return win_skip_fading(ps, mw);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
2019-09-19 20:23:44 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-09-19 20:41:56 -04:00
|
|
|
void unmap_win_start(session_t *ps, struct managed_win *w) {
|
2019-09-19 20:23:44 -04:00
|
|
|
assert(w);
|
|
|
|
assert(w->base.managed);
|
|
|
|
assert(w->a._class != XCB_WINDOW_CLASS_INPUT_ONLY);
|
|
|
|
|
|
|
|
log_debug("Unmapping %#010x \"%s\"", w->base.id, w->name);
|
|
|
|
|
|
|
|
if (unlikely(w->state == WSTATE_DESTROYING)) {
|
|
|
|
log_warn("Trying to undestroy a window?");
|
|
|
|
assert(false);
|
2019-04-03 03:36:02 -04:00
|
|
|
}
|
|
|
|
|
2019-09-19 20:23:44 -04:00
|
|
|
if (unlikely(w->state == WSTATE_UNMAPPING || w->state == WSTATE_UNMAPPED)) {
|
2020-04-06 15:52:32 -04:00
|
|
|
if (win_check_flags_all(w, WIN_FLAGS_MAPPED)) {
|
|
|
|
// Clear the pending map as this window is now unmapped
|
|
|
|
win_clear_flags(w, WIN_FLAGS_MAPPED);
|
2019-09-19 20:59:25 -04:00
|
|
|
} else {
|
|
|
|
log_warn("Trying to unmapping an already unmapped window %#010x "
|
|
|
|
"\"%s\"",
|
|
|
|
w->base.id, w->name);
|
|
|
|
assert(false);
|
|
|
|
}
|
2019-09-19 20:23:44 -04:00
|
|
|
return;
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
2019-05-24 18:29:26 -04:00
|
|
|
// Note we don't update focused window here. This will either be
|
|
|
|
// triggered by subsequence Focus{In, Out} event, or by recheck_focus
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
w->a.map_state = XCB_MAP_STATE_UNMAPPED;
|
2019-09-19 20:23:44 -04:00
|
|
|
w->state = WSTATE_UNMAPPING;
|
2019-07-26 18:40:30 -04:00
|
|
|
w->opacity_target = win_calc_opacity_target(ps, w, false);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-09-28 19:09:40 -04:00
|
|
|
// Clear PIXMAP_STALE flag, since the window is unmapped there is no pixmap
|
|
|
|
// available so STALE doesn't make sense.
|
2020-04-06 15:52:32 -04:00
|
|
|
win_clear_flags(w, WIN_FLAGS_PIXMAP_STALE);
|
2019-09-28 19:09:40 -04:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// don't care about properties anymore
|
2019-09-19 20:23:44 -04:00
|
|
|
win_ev_stop(ps, &w->base);
|
2019-02-09 10:50:40 -05:00
|
|
|
|
|
|
|
#ifdef CONFIG_DBUS
|
2019-03-10 08:34:37 -04:00
|
|
|
// Send D-Bus signal
|
|
|
|
if (ps->o.dbus) {
|
2019-09-19 20:23:44 -04:00
|
|
|
cdbus_ev_win_unmapped(ps, &w->base);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2019-02-09 10:50:40 -05:00
|
|
|
#endif
|
2019-02-20 21:12:07 -05:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
if (!ps->redirected) {
|
2019-09-19 20:23:44 -04:00
|
|
|
CHECK(!win_skip_fading(ps, w));
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2018-12-15 16:11:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute fade callback of a window if fading finished.
|
2019-09-16 17:14:34 -04:00
|
|
|
*
|
|
|
|
* @return whether the window is destroyed and freed
|
2018-12-15 16:11:41 -05:00
|
|
|
*/
|
2019-09-16 17:14:34 -04:00
|
|
|
bool win_check_fade_finished(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
if (w->state == WSTATE_MAPPED || w->state == WSTATE_UNMAPPED) {
|
|
|
|
// No fading in progress
|
2019-07-26 18:40:30 -04:00
|
|
|
assert(w->opacity_target == w->opacity);
|
2019-09-16 17:14:34 -04:00
|
|
|
return false;
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2019-07-26 18:40:30 -04:00
|
|
|
if (w->opacity == w->opacity_target) {
|
2019-03-10 08:34:37 -04:00
|
|
|
switch (w->state) {
|
2019-09-19 20:41:56 -04:00
|
|
|
case WSTATE_UNMAPPING: unmap_win_finish(ps, w); return false;
|
|
|
|
case WSTATE_DESTROYING: destroy_win_finish(ps, &w->base); return true;
|
|
|
|
case WSTATE_MAPPING: map_win_finish(w); return false;
|
2019-03-10 08:34:37 -04:00
|
|
|
case WSTATE_FADING: w->state = WSTATE_MAPPED; break;
|
|
|
|
default: unreachable;
|
|
|
|
}
|
|
|
|
}
|
2019-09-16 17:14:34 -04:00
|
|
|
|
|
|
|
return false;
|
2019-02-09 10:50:40 -05:00
|
|
|
}
|
|
|
|
|
2019-02-20 21:12:07 -05:00
|
|
|
/// Skip the current in progress fading of window,
|
|
|
|
/// transition the window straight to its end state
|
2019-09-16 17:14:34 -04:00
|
|
|
///
|
|
|
|
/// @return whether the window is destroyed and freed
|
|
|
|
bool win_skip_fading(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
if (w->state == WSTATE_MAPPED || w->state == WSTATE_UNMAPPED) {
|
2019-07-26 18:40:30 -04:00
|
|
|
assert(w->opacity_target == w->opacity);
|
2019-09-16 17:14:34 -04:00
|
|
|
return false;
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2019-09-19 12:23:48 -04:00
|
|
|
log_debug("Skipping fading process of window %#010x (%s)", w->base.id, w->name);
|
2019-07-26 18:40:30 -04:00
|
|
|
w->opacity = w->opacity_target;
|
2019-09-16 17:14:34 -04:00
|
|
|
return win_check_fade_finished(ps, w);
|
2019-02-20 21:12:07 -05:00
|
|
|
}
|
|
|
|
|
2019-02-09 10:50:40 -05:00
|
|
|
/**
|
|
|
|
* Get the Xinerama screen a window is on.
|
|
|
|
*
|
|
|
|
* Return an index >= 0, or -1 if not found.
|
|
|
|
*
|
2019-02-18 16:04:01 -05:00
|
|
|
* TODO move to x.c
|
|
|
|
* TODO use xrandr
|
2019-02-09 10:50:40 -05:00
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
void win_update_screen(session_t *ps, struct managed_win *w) {
|
2019-03-10 08:34:37 -04:00
|
|
|
w->xinerama_scr = -1;
|
|
|
|
|
2019-05-05 21:03:07 -04:00
|
|
|
for (int i = 0; i < ps->xinerama_nscrs; i++) {
|
|
|
|
auto e = pixman_region32_extents(&ps->xinerama_scr_regs[i]);
|
2019-05-24 18:29:26 -04:00
|
|
|
if (e->x1 <= w->g.x && e->y1 <= w->g.y && e->x2 >= w->g.x + w->widthb &&
|
2019-05-05 21:03:07 -04:00
|
|
|
e->y2 >= w->g.y + w->heightb) {
|
2019-03-10 08:34:37 -04:00
|
|
|
w->xinerama_scr = i;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-12-15 16:11:41 -05:00
|
|
|
}
|
2019-02-09 10:50:40 -05:00
|
|
|
|
|
|
|
/// Map an already registered window
|
2019-09-19 20:41:56 -04:00
|
|
|
void map_win_start(session_t *ps, struct managed_win *w) {
|
2019-09-19 21:15:41 -04:00
|
|
|
assert(ps->server_grabbed);
|
2019-03-10 08:34:37 -04:00
|
|
|
assert(w);
|
|
|
|
|
|
|
|
// Don't care about window mapping if it's an InputOnly window
|
|
|
|
// Also, try avoiding mapping a window twice
|
|
|
|
if (w->a._class == XCB_WINDOW_CLASS_INPUT_ONLY) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
log_debug("Mapping (%#010x \"%s\")", w->base.id, w->name);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-03-16 23:27:29 -04:00
|
|
|
assert(w->state != WSTATE_DESTROYING);
|
2019-03-10 08:34:37 -04:00
|
|
|
if (w->state != WSTATE_UNMAPPED && w->state != WSTATE_UNMAPPING) {
|
|
|
|
log_warn("Mapping an already mapped window");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-16 23:27:29 -04:00
|
|
|
if (w->state == WSTATE_UNMAPPING) {
|
2019-09-16 17:14:34 -04:00
|
|
|
CHECK(!win_skip_fading(ps, w));
|
2019-03-28 17:41:21 -04:00
|
|
|
// We skipped the unmapping process, the window was rendered, now it is
|
2019-09-19 20:41:56 -04:00
|
|
|
// not anymore. So we need to mark the then unmapping window as damaged.
|
|
|
|
//
|
|
|
|
// Solves problem when, for example, a window is unmapped then mapped in a
|
|
|
|
// different location
|
2019-03-28 17:41:21 -04:00
|
|
|
add_damage_from_win(ps, w);
|
2019-03-16 23:27:29 -04:00
|
|
|
assert(w);
|
|
|
|
}
|
|
|
|
|
2019-09-19 21:15:41 -04:00
|
|
|
assert(w->state == WSTATE_UNMAPPED);
|
2020-04-06 15:52:32 -04:00
|
|
|
assert(win_check_flags_all(w, WIN_FLAGS_IMAGES_NONE) || !ps->o.experimental_backends);
|
2019-09-19 13:48:12 -04:00
|
|
|
|
2019-03-16 19:57:47 -04:00
|
|
|
// We stopped processing window size change when we were unmapped, refresh the
|
|
|
|
// size of the window
|
2019-04-17 18:14:45 -04:00
|
|
|
xcb_get_geometry_cookie_t gcookie = xcb_get_geometry(ps->c, w->base.id);
|
2019-03-16 19:57:47 -04:00
|
|
|
xcb_get_geometry_reply_t *g = xcb_get_geometry_reply(ps->c, gcookie, NULL);
|
|
|
|
|
|
|
|
if (!g) {
|
2019-04-17 18:14:45 -04:00
|
|
|
log_error("Failed to get the geometry of window %#010x", w->base.id);
|
2019-03-16 19:57:47 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
w->g = *g;
|
|
|
|
free(g);
|
|
|
|
|
|
|
|
win_on_win_size_change(ps, w);
|
|
|
|
log_trace("Window size: %dx%d", w->g.width, w->g.height);
|
|
|
|
|
|
|
|
// Rant: window size could change after we queried its geometry here and before
|
|
|
|
// we get its pixmap. Later, when we get back to the event processing loop, we
|
|
|
|
// will get the notification about size change from Xserver and try to refresh the
|
|
|
|
// pixmap, while the pixmap is actually already up-to-date (i.e. the notification
|
|
|
|
// is stale). There is basically no real way to prevent this, aside from grabbing
|
|
|
|
// the server.
|
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// XXX Can we assume map_state is always viewable?
|
|
|
|
w->a.map_state = XCB_MAP_STATE_VIEWABLE;
|
|
|
|
|
|
|
|
win_update_screen(ps, w);
|
|
|
|
|
|
|
|
// Set window event mask before reading properties so that no property
|
|
|
|
// changes are lost
|
|
|
|
xcb_change_window_attributes(
|
2019-04-17 18:14:45 -04:00
|
|
|
ps->c, w->base.id, XCB_CW_EVENT_MASK,
|
|
|
|
(const uint32_t[]){determine_evmask(ps, w->base.id, WIN_EVMODE_FRAME)});
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-10-23 14:27:30 -04:00
|
|
|
// Get notification when the shape of a window changes
|
2019-03-10 08:34:37 -04:00
|
|
|
if (ps->shape_exists) {
|
2019-04-17 18:14:45 -04:00
|
|
|
xcb_shape_select_input(ps->c, w->base.id, 1);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update window mode here to check for ARGB windows
|
|
|
|
w->mode = win_calc_mode(w);
|
|
|
|
|
|
|
|
// Detect client window here instead of in add_win() as the client
|
|
|
|
// window should have been prepared at this point
|
|
|
|
if (!w->client_win) {
|
|
|
|
win_recheck_client(ps, w);
|
|
|
|
} else {
|
|
|
|
// Re-mark client window here
|
|
|
|
win_mark_client(ps, w, w->client_win);
|
|
|
|
}
|
|
|
|
assert(w->client_win);
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
log_debug("Window (%#010x) has type %s", w->base.id, WINTYPES[w->window_type]);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2020-03-17 15:50:48 -04:00
|
|
|
// TODO can we just replace calls below with win_on_factor_change?
|
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
// Update window focus state
|
|
|
|
win_update_focused(ps, w);
|
|
|
|
|
|
|
|
// Update opacity and dim state
|
|
|
|
win_update_opacity_prop(ps, w);
|
|
|
|
|
|
|
|
// Check for _COMPTON_SHADOW
|
2019-10-22 15:44:59 -04:00
|
|
|
win_update_prop_shadow_raw(ps, w);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
// Many things above could affect shadow
|
|
|
|
win_determine_shadow(ps, w);
|
|
|
|
|
|
|
|
// XXX We need to make sure that win_data is available
|
|
|
|
// iff `state` is MAPPED
|
|
|
|
w->state = WSTATE_MAPPING;
|
2019-07-26 18:40:30 -04:00
|
|
|
w->opacity_target = win_calc_opacity_target(ps, w, false);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
2019-04-18 03:51:17 -04:00
|
|
|
log_debug("Window %#010x has opacity %f, opacity target is %f", w->base.id,
|
2019-07-26 18:40:30 -04:00
|
|
|
w->opacity, w->opacity_target);
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
win_determine_blur_background(ps, w);
|
|
|
|
|
2019-09-19 20:59:25 -04:00
|
|
|
// Cannot set w->ever_damaged = false here, since window mapping could be
|
|
|
|
// delayed, so a damage event might have already arrived before this function
|
|
|
|
// is called. But this should be unnecessary in the first place, since
|
|
|
|
// ever_damaged is set to false in unmap_win_finish anyway.
|
2019-03-10 08:34:37 -04:00
|
|
|
|
|
|
|
// We stopped listening on ShapeNotify events
|
|
|
|
// when the window is unmapped (XXX we shouldn't),
|
|
|
|
// so the shape of the window might have changed,
|
|
|
|
// update. (Issue #35)
|
2019-03-16 20:55:04 -04:00
|
|
|
//
|
2019-09-19 21:18:16 -04:00
|
|
|
// Also this sets the WIN_FLAGS_IMAGES_STALE flag so later in the critical section
|
|
|
|
// the window's image will be bound
|
|
|
|
win_update_bounding_shape(ps, w);
|
2019-03-16 20:55:04 -04:00
|
|
|
|
2020-04-06 15:52:32 -04:00
|
|
|
assert(win_check_flags_all(w, WIN_FLAGS_IMAGES_STALE));
|
2019-03-16 20:55:04 -04:00
|
|
|
|
2019-02-09 10:50:40 -05:00
|
|
|
#ifdef CONFIG_DBUS
|
2019-03-10 08:34:37 -04:00
|
|
|
// Send D-Bus signal
|
|
|
|
if (ps->o.dbus) {
|
2019-04-17 18:14:45 -04:00
|
|
|
cdbus_ev_win_mapped(ps, &w->base);
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2019-02-09 10:50:40 -05:00
|
|
|
#endif
|
2019-02-20 21:12:07 -05:00
|
|
|
|
2019-03-10 08:34:37 -04:00
|
|
|
if (!ps->redirected) {
|
2019-09-16 17:14:34 -04:00
|
|
|
CHECK(!win_skip_fading(ps, w));
|
2019-03-10 08:34:37 -04:00
|
|
|
}
|
2019-02-09 10:50:40 -05:00
|
|
|
}
|
|
|
|
|
2019-04-03 03:36:02 -04:00
|
|
|
/**
|
2019-04-17 18:14:45 -04:00
|
|
|
* Find a managed window from window id in window linked list of the session.
|
2019-04-03 03:36:02 -04:00
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
struct win *find_win(session_t *ps, xcb_window_t id) {
|
2019-04-03 03:36:02 -04:00
|
|
|
if (!id) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
struct win *w = NULL;
|
2019-04-03 03:36:02 -04:00
|
|
|
HASH_FIND_INT(ps->windows, &id, w);
|
2019-04-17 18:14:45 -04:00
|
|
|
assert(w == NULL || !w->destroyed);
|
2019-04-03 03:36:02 -04:00
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
/**
|
|
|
|
* Find a managed window from window id in window linked list of the session.
|
|
|
|
*/
|
|
|
|
struct managed_win *find_managed_win(session_t *ps, xcb_window_t id) {
|
|
|
|
struct win *w = find_win(ps, id);
|
|
|
|
if (!w || !w->managed) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto mw = (struct managed_win *)w;
|
|
|
|
assert(mw->state != WSTATE_DESTROYING);
|
|
|
|
return mw;
|
|
|
|
}
|
|
|
|
|
2019-04-03 03:36:02 -04:00
|
|
|
/**
|
|
|
|
* Find out the WM frame of a client window using existing data.
|
|
|
|
*
|
|
|
|
* @param id window ID
|
|
|
|
* @return struct win object of the found window, NULL if not found
|
|
|
|
*/
|
2019-04-17 18:14:45 -04:00
|
|
|
struct managed_win *find_toplevel(session_t *ps, xcb_window_t id) {
|
2019-04-03 03:36:02 -04:00
|
|
|
if (!id) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HASH_ITER2(ps->windows, w) {
|
2019-04-17 18:14:45 -04:00
|
|
|
assert(!w->destroyed);
|
|
|
|
if (!w->managed) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto mw = (struct managed_win *)w;
|
|
|
|
if (mw->client_win == id) {
|
|
|
|
return mw;
|
2019-04-03 03:36:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-04-17 18:14:45 -04:00
|
|
|
|
|
|
|
/**
|
2020-04-05 16:20:58 -04:00
|
|
|
* Find a managed window that is, or is a parent of `wid`.
|
2019-04-17 18:14:45 -04:00
|
|
|
*
|
|
|
|
* @param ps current session
|
|
|
|
* @param wid window ID
|
|
|
|
* @return struct _win object of the found window, NULL if not found
|
|
|
|
*/
|
2020-04-05 16:20:58 -04:00
|
|
|
struct managed_win *find_managed_window_or_parent(session_t *ps, xcb_window_t wid) {
|
2019-04-17 18:14:45 -04:00
|
|
|
// TODO this should probably be an "update tree", then find_toplevel.
|
|
|
|
// current approach is a bit more "racy"
|
|
|
|
struct win *w = NULL;
|
|
|
|
|
|
|
|
// We traverse through its ancestors to find out the frame
|
|
|
|
// Using find_win here because if we found a unmanaged window we know about, we
|
|
|
|
// can stop early.
|
|
|
|
while (wid && wid != ps->root && !(w = find_win(ps, wid))) {
|
2019-10-23 14:27:30 -04:00
|
|
|
// xcb_query_tree probably fails if you run picom when X is somehow
|
2019-04-17 18:14:45 -04:00
|
|
|
// initializing (like add it in .xinitrc). In this case
|
|
|
|
// just leave it alone.
|
|
|
|
auto reply = xcb_query_tree_reply(ps->c, xcb_query_tree(ps->c, wid), NULL);
|
|
|
|
if (reply == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
wid = reply->parent;
|
|
|
|
free(reply);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (w == NULL || !w->managed) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (struct managed_win *)w;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a rectangle includes the whole screen.
|
|
|
|
*/
|
|
|
|
static inline bool rect_is_fullscreen(const session_t *ps, int x, int y, int wid, int hei) {
|
|
|
|
return (x <= 0 && y <= 0 && (x + wid) >= ps->root_width && (y + hei) >= ps->root_height);
|
|
|
|
}
|
|
|
|
|
2019-06-05 21:37:06 -04:00
|
|
|
/**
|
|
|
|
* Check if a window is fulscreen using EWMH
|
2020-01-18 13:00:35 -05:00
|
|
|
*
|
|
|
|
* TODO cache this property
|
2019-06-05 21:37:06 -04:00
|
|
|
*/
|
2019-07-26 18:40:30 -04:00
|
|
|
static inline bool
|
|
|
|
win_is_fullscreen_xcb(xcb_connection_t *c, const struct atom *a, const xcb_window_t w) {
|
|
|
|
xcb_get_property_cookie_t prop =
|
|
|
|
xcb_get_property(c, 0, w, a->a_NET_WM_STATE, XCB_ATOM_ATOM, 0, 12);
|
2019-06-05 21:37:06 -04:00
|
|
|
xcb_get_property_reply_t *reply = xcb_get_property_reply(c, prop, NULL);
|
2019-07-26 18:40:30 -04:00
|
|
|
if (!reply)
|
2019-06-05 21:37:06 -04:00
|
|
|
return false;
|
|
|
|
|
2019-07-26 18:40:30 -04:00
|
|
|
if (reply->length) {
|
2019-06-05 21:37:06 -04:00
|
|
|
xcb_atom_t *val = xcb_get_property_value(reply);
|
2019-07-26 18:40:30 -04:00
|
|
|
for (uint32_t i = 0; i < reply->length; i++) {
|
|
|
|
if (val[i] != a->a_NET_WM_STATE_FULLSCREEN)
|
2019-06-05 21:37:06 -04:00
|
|
|
continue;
|
|
|
|
free(reply);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(reply);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-06 15:52:32 -04:00
|
|
|
/// Set flags on a window. Some sanity checks are performed
|
|
|
|
void win_set_flags(struct managed_win *w, uint64_t flags) {
|
|
|
|
if (unlikely(w->state == WSTATE_DESTROYING)) {
|
|
|
|
log_error("Flags set on a destroyed window %#010x (%s)", w->base.id, w->name);
|
2019-09-19 20:59:25 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-06 15:52:32 -04:00
|
|
|
w->flags |= flags;
|
2019-09-19 20:59:25 -04:00
|
|
|
}
|
|
|
|
|
2020-04-06 15:52:32 -04:00
|
|
|
/// Clear flags on a window. Some sanity checks are performed
|
|
|
|
void win_clear_flags(struct managed_win *w, uint64_t flags) {
|
|
|
|
if (unlikely(w->state == WSTATE_DESTROYING)) {
|
|
|
|
log_error("Flags cleared on a destroyed window %#010x (%s)", w->base.id,
|
|
|
|
w->name);
|
|
|
|
return;
|
2019-09-19 20:59:25 -04:00
|
|
|
}
|
|
|
|
|
2020-04-06 15:52:32 -04:00
|
|
|
w->flags = w->flags & (~flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool win_check_flags_any(struct managed_win *w, uint64_t flags) {
|
|
|
|
return (w->flags & flags) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool win_check_flags_all(struct managed_win *w, uint64_t flags) {
|
|
|
|
return (w->flags & flags) == flags;
|
2019-09-19 20:59:25 -04:00
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
/**
|
|
|
|
* Check if a window is a fullscreen window.
|
|
|
|
*
|
|
|
|
* It's not using w->border_size for performance measures.
|
|
|
|
*/
|
|
|
|
bool win_is_fullscreen(const session_t *ps, const struct managed_win *w) {
|
2019-07-26 18:40:30 -04:00
|
|
|
if (!ps->o.no_ewmh_fullscreen && win_is_fullscreen_xcb(ps->c, ps->atoms, w->client_win))
|
2019-06-05 21:37:06 -04:00
|
|
|
return true;
|
2019-04-17 18:14:45 -04:00
|
|
|
return rect_is_fullscreen(ps, w->g.x, w->g.y, w->widthb, w->heightb) &&
|
|
|
|
(!w->bounding_shaped || w->rounded_corners);
|
|
|
|
}
|
|
|
|
|
2020-01-18 13:00:35 -05:00
|
|
|
/**
|
|
|
|
* Check if a window has BYPASS_COMPOSITOR property set
|
|
|
|
*
|
|
|
|
* TODO cache this property
|
|
|
|
*/
|
|
|
|
bool win_is_bypassing_compositor(const session_t *ps, const struct managed_win *w) {
|
|
|
|
bool ret = false;
|
|
|
|
|
|
|
|
auto prop = x_get_prop(ps, w->client_win, ps->atoms->a_NET_WM_BYPASS_COMPOSITOR,
|
|
|
|
1L, XCB_ATOM_CARDINAL, 32);
|
|
|
|
|
|
|
|
if (prop.nitems && *prop.c32 == 1) {
|
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
free_winprop(&prop);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-04-17 18:14:45 -04:00
|
|
|
/**
|
2020-03-17 15:19:13 -04:00
|
|
|
* Check if a window is focused, without using any focus rules or forced focus settings
|
2019-04-17 18:14:45 -04:00
|
|
|
*/
|
2020-03-17 15:19:13 -04:00
|
|
|
bool win_is_focused_raw(const session_t *ps, const struct managed_win *w) {
|
2019-04-17 18:14:45 -04:00
|
|
|
return w->a.map_state == XCB_MAP_STATE_VIEWABLE && ps->active_win == w;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the managed window immediately below `i` in the window stack
|
|
|
|
struct managed_win *
|
|
|
|
win_stack_find_next_managed(const session_t *ps, const struct list_node *i) {
|
|
|
|
while (!list_node_is_last(&ps->window_stack, i)) {
|
|
|
|
auto next = list_entry(i->next, struct win, stack_neighbour);
|
|
|
|
if (next->managed) {
|
|
|
|
return (struct managed_win *)next;
|
|
|
|
}
|
|
|
|
i = &next->stack_neighbour;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-09-19 20:59:25 -04:00
|
|
|
|
|
|
|
/// Return whether this window is mapped on the X server side
|
|
|
|
bool win_is_mapped_in_x(const struct managed_win *w) {
|
|
|
|
return w->state == WSTATE_MAPPING || w->state == WSTATE_FADING ||
|
2020-04-06 15:52:32 -04:00
|
|
|
w->state == WSTATE_MAPPED || (w->flags & WIN_FLAGS_MAPPED);
|
2019-09-19 20:59:25 -04:00
|
|
|
}
|