2019-03-17 21:44:26 +08:00
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
// Copyright (c) 2019, Yuxuan Shui <yshuiv7@gmail.com>
|
|
|
|
|
2019-08-10 07:56:04 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2019-03-17 21:44:26 +08:00
|
|
|
#include <X11/Xlibint.h>
|
2019-03-17 21:56:12 +08:00
|
|
|
#include <X11/extensions/sync.h>
|
2019-08-10 07:56:04 +08:00
|
|
|
#include <xcb/damage.h>
|
2019-09-17 06:27:59 +08:00
|
|
|
#include <xcb/randr.h>
|
2019-03-17 21:44:26 +08:00
|
|
|
|
2019-05-06 07:34:08 +08:00
|
|
|
#include "atom.h"
|
2019-03-17 21:44:26 +08:00
|
|
|
#include "common.h"
|
2019-03-30 17:07:21 +08:00
|
|
|
#include "compiler.h"
|
2019-09-17 06:27:59 +08:00
|
|
|
#include "config.h"
|
2019-03-17 21:44:26 +08:00
|
|
|
#include "event.h"
|
2019-09-17 06:27:59 +08:00
|
|
|
#include "log.h"
|
2020-04-04 22:55:30 +08:00
|
|
|
#include "picom.h"
|
2019-08-10 07:56:04 +08:00
|
|
|
#include "region.h"
|
2019-09-17 06:27:59 +08:00
|
|
|
#include "utils.h"
|
2019-08-10 07:56:04 +08:00
|
|
|
#include "win.h"
|
2019-09-17 06:27:59 +08:00
|
|
|
#include "x.h"
|
2019-03-17 21:44:26 +08:00
|
|
|
|
|
|
|
/// Event handling with X is complicated. Handling events with other events possibly
|
|
|
|
/// in-flight is no good. Because your internal state won't be up to date. Also, querying
|
|
|
|
/// the server while events are in-flight is not good. Because events later in the queue
|
|
|
|
/// might container information you are querying. Thus those events will cause you to do
|
|
|
|
/// unnecessary updates even when you already have the latest information (remember, you
|
|
|
|
/// made the query when those events were already in the queue. so the reply you got is
|
|
|
|
/// more up-to-date than the events). Also, handling events when other client are making
|
|
|
|
/// concurrent requests is not good. Because the server states are changing without you
|
|
|
|
/// knowning them. This is super racy, and can cause lots of potential problems.
|
|
|
|
///
|
|
|
|
/// All of above mandates we do these things:
|
|
|
|
/// 1. Grab server when handling events
|
|
|
|
/// 2. Make sure the event queue is empty before we make any query to the server
|
|
|
|
///
|
|
|
|
/// Notice (2) has a dependency circle. To handle events, you sometimes need to make
|
|
|
|
/// queries. But to make queries you have to first handle events.
|
|
|
|
///
|
|
|
|
/// To break that circle, we split all event handling into top and bottom halves. The
|
|
|
|
/// bottom half will just look at the event itself, update as much state as they can
|
|
|
|
/// without making queries, then queue up necessary works need to be done by the top half.
|
|
|
|
/// The top half will do all the other necessary updates. Before entering the top half, we
|
|
|
|
/// grab the server and make sure the event queue is empty.
|
|
|
|
///
|
|
|
|
/// When top half finished, we enter the render stage, where no server state should be
|
|
|
|
/// queried. All rendering should be done with our internal knowledge of the server state.
|
|
|
|
///
|
|
|
|
/// TODO the things described above
|
|
|
|
|
2019-03-17 21:56:12 +08:00
|
|
|
/**
|
|
|
|
* Get a window's name from window ID.
|
|
|
|
*/
|
2019-03-17 22:15:17 +08:00
|
|
|
static inline const char *ev_window_name(session_t *ps, xcb_window_t wid) {
|
|
|
|
char *name = "";
|
2019-03-17 21:56:12 +08:00
|
|
|
if (wid) {
|
2019-03-17 22:15:17 +08:00
|
|
|
name = "(Failed to get title)";
|
|
|
|
if (ps->root == wid) {
|
|
|
|
name = "(Root window)";
|
|
|
|
} else if (ps->overlay == wid) {
|
|
|
|
name = "(Overlay)";
|
|
|
|
} else {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_managed_win(ps, wid);
|
2019-03-17 22:15:17 +08:00
|
|
|
if (!w) {
|
2019-03-17 21:56:12 +08:00
|
|
|
w = find_toplevel(ps, wid);
|
2019-03-17 22:15:17 +08:00
|
|
|
}
|
2019-03-17 21:56:12 +08:00
|
|
|
|
2019-09-24 04:05:13 +08:00
|
|
|
if (w && w->name) {
|
|
|
|
name = w->name;
|
2019-03-17 22:15:17 +08:00
|
|
|
}
|
2019-03-17 21:56:12 +08:00
|
|
|
}
|
|
|
|
}
|
2019-03-17 22:15:17 +08:00
|
|
|
return name;
|
2019-03-17 21:56:12 +08:00
|
|
|
}
|
|
|
|
|
2019-03-17 22:15:17 +08:00
|
|
|
static inline xcb_window_t attr_pure ev_window(session_t *ps, xcb_generic_event_t *ev) {
|
2019-03-17 21:56:12 +08:00
|
|
|
switch (ev->response_type) {
|
|
|
|
case FocusIn:
|
|
|
|
case FocusOut: return ((xcb_focus_in_event_t *)ev)->event;
|
|
|
|
case CreateNotify: return ((xcb_create_notify_event_t *)ev)->window;
|
|
|
|
case ConfigureNotify: return ((xcb_configure_notify_event_t *)ev)->window;
|
|
|
|
case DestroyNotify: return ((xcb_destroy_notify_event_t *)ev)->window;
|
|
|
|
case MapNotify: return ((xcb_map_notify_event_t *)ev)->window;
|
|
|
|
case UnmapNotify: return ((xcb_unmap_notify_event_t *)ev)->window;
|
|
|
|
case ReparentNotify: return ((xcb_reparent_notify_event_t *)ev)->window;
|
|
|
|
case CirculateNotify: return ((xcb_circulate_notify_event_t *)ev)->window;
|
|
|
|
case Expose: return ((xcb_expose_event_t *)ev)->window;
|
|
|
|
case PropertyNotify: return ((xcb_property_notify_event_t *)ev)->window;
|
|
|
|
case ClientMessage: return ((xcb_client_message_event_t *)ev)->window;
|
|
|
|
default:
|
|
|
|
if (ps->damage_event + XCB_DAMAGE_NOTIFY == ev->response_type) {
|
|
|
|
return ((xcb_damage_notify_event_t *)ev)->drawable;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps->shape_exists && ev->response_type == ps->shape_event) {
|
|
|
|
return ((xcb_shape_notify_event_t *)ev)->affected_window;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-31 12:46:28 +08:00
|
|
|
#define CASESTRRET(s) \
|
|
|
|
case s: return #s;
|
|
|
|
|
2019-03-30 17:07:21 +08:00
|
|
|
static inline const char *ev_name(session_t *ps, xcb_generic_event_t *ev) {
|
2019-03-17 21:56:12 +08:00
|
|
|
static char buf[128];
|
|
|
|
switch (ev->response_type & 0x7f) {
|
|
|
|
CASESTRRET(FocusIn);
|
|
|
|
CASESTRRET(FocusOut);
|
|
|
|
CASESTRRET(CreateNotify);
|
|
|
|
CASESTRRET(ConfigureNotify);
|
|
|
|
CASESTRRET(DestroyNotify);
|
|
|
|
CASESTRRET(MapNotify);
|
|
|
|
CASESTRRET(UnmapNotify);
|
|
|
|
CASESTRRET(ReparentNotify);
|
|
|
|
CASESTRRET(CirculateNotify);
|
|
|
|
CASESTRRET(Expose);
|
|
|
|
CASESTRRET(PropertyNotify);
|
|
|
|
CASESTRRET(ClientMessage);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps->damage_event + XCB_DAMAGE_NOTIFY == ev->response_type)
|
|
|
|
return "Damage";
|
|
|
|
|
|
|
|
if (ps->shape_exists && ev->response_type == ps->shape_event)
|
|
|
|
return "ShapeNotify";
|
|
|
|
|
|
|
|
if (ps->xsync_exists) {
|
|
|
|
int o = ev->response_type - ps->xsync_event;
|
|
|
|
switch (o) {
|
|
|
|
CASESTRRET(XSyncCounterNotify);
|
|
|
|
CASESTRRET(XSyncAlarmNotify);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sprintf(buf, "Event %d", ev->response_type);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2019-03-17 22:15:17 +08:00
|
|
|
static inline const char *attr_pure ev_focus_mode_name(xcb_focus_in_event_t *ev) {
|
2019-03-17 21:44:26 +08:00
|
|
|
switch (ev->mode) {
|
|
|
|
CASESTRRET(NotifyNormal);
|
|
|
|
CASESTRRET(NotifyWhileGrabbed);
|
|
|
|
CASESTRRET(NotifyGrab);
|
|
|
|
CASESTRRET(NotifyUngrab);
|
|
|
|
}
|
|
|
|
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
|
2019-03-17 22:15:17 +08:00
|
|
|
static inline const char *attr_pure ev_focus_detail_name(xcb_focus_in_event_t *ev) {
|
2019-03-17 21:44:26 +08:00
|
|
|
switch (ev->detail) {
|
|
|
|
CASESTRRET(NotifyAncestor);
|
|
|
|
CASESTRRET(NotifyVirtual);
|
|
|
|
CASESTRRET(NotifyInferior);
|
|
|
|
CASESTRRET(NotifyNonlinear);
|
|
|
|
CASESTRRET(NotifyNonlinearVirtual);
|
|
|
|
CASESTRRET(NotifyPointer);
|
|
|
|
CASESTRRET(NotifyPointerRoot);
|
|
|
|
CASESTRRET(NotifyDetailNone);
|
|
|
|
}
|
|
|
|
|
|
|
|
return "Unknown";
|
|
|
|
}
|
|
|
|
|
2020-03-31 12:46:28 +08:00
|
|
|
#undef CASESTRRET
|
|
|
|
|
2019-03-17 22:15:17 +08:00
|
|
|
static inline void ev_focus_in(session_t *ps, xcb_focus_in_event_t *ev) {
|
2019-04-20 04:15:00 +08:00
|
|
|
log_debug("{ mode: %s, detail: %s }\n", ev_focus_mode_name(ev),
|
2019-03-17 21:44:26 +08:00
|
|
|
ev_focus_detail_name(ev));
|
2019-05-25 07:06:41 +08:00
|
|
|
ps->pending_updates = true;
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_focus_out(session_t *ps, xcb_focus_out_event_t *ev) {
|
2019-04-20 04:15:00 +08:00
|
|
|
log_debug("{ mode: %s, detail: %s }\n", ev_focus_mode_name(ev),
|
2019-03-17 22:15:17 +08:00
|
|
|
ev_focus_detail_name(ev));
|
2019-05-25 07:06:41 +08:00
|
|
|
ps->pending_updates = true;
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_create_notify(session_t *ps, xcb_create_notify_event_t *ev) {
|
|
|
|
assert(ev->parent == ps->root);
|
2019-04-20 03:53:52 +08:00
|
|
|
add_win_top(ps, ev->window);
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
|
2019-04-27 20:36:42 +08:00
|
|
|
/// Handle configure event of a regular window
|
|
|
|
static void configure_win(session_t *ps, xcb_configure_notify_event_t *ce) {
|
|
|
|
auto w = find_win(ps, ce->window);
|
|
|
|
region_t damage;
|
|
|
|
pixman_region32_init(&damage);
|
|
|
|
|
|
|
|
if (!w) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!w->managed) {
|
|
|
|
restack_above(ps, w, ce->above_sibling);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto mw = (struct managed_win *)w;
|
|
|
|
|
|
|
|
if (mw->state == WSTATE_UNMAPPED || mw->state == WSTATE_UNMAPPING ||
|
|
|
|
mw->state == WSTATE_DESTROYING) {
|
|
|
|
// Only restack the window to make sure we can handle future restack
|
|
|
|
// notification correctly
|
|
|
|
restack_above(ps, w, ce->above_sibling);
|
|
|
|
} else {
|
|
|
|
restack_above(ps, w, ce->above_sibling);
|
|
|
|
bool factor_change = false;
|
|
|
|
win_extents(mw, &damage);
|
|
|
|
|
|
|
|
// If window geometry change, free old extents
|
|
|
|
if (mw->g.x != ce->x || mw->g.y != ce->y || mw->g.width != ce->width ||
|
|
|
|
mw->g.height != ce->height || mw->g.border_width != ce->border_width) {
|
|
|
|
factor_change = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
mw->g.x = ce->x;
|
|
|
|
mw->g.y = ce->y;
|
|
|
|
|
|
|
|
if (mw->g.width != ce->width || mw->g.height != ce->height ||
|
|
|
|
mw->g.border_width != ce->border_width) {
|
|
|
|
log_trace("Window size changed, %dx%d -> %dx%d", mw->g.width,
|
|
|
|
mw->g.height, ce->width, ce->height);
|
|
|
|
mw->g.width = ce->width;
|
|
|
|
mw->g.height = ce->height;
|
|
|
|
mw->g.border_width = ce->border_width;
|
|
|
|
win_on_win_size_change(ps, mw);
|
|
|
|
win_update_bounding_shape(ps, mw);
|
|
|
|
}
|
|
|
|
|
|
|
|
region_t new_extents;
|
|
|
|
pixman_region32_init(&new_extents);
|
|
|
|
win_extents(mw, &new_extents);
|
|
|
|
pixman_region32_union(&damage, &damage, &new_extents);
|
|
|
|
pixman_region32_fini(&new_extents);
|
|
|
|
|
|
|
|
if (factor_change) {
|
|
|
|
win_on_factor_change(ps, mw);
|
|
|
|
add_damage(ps, &damage);
|
|
|
|
win_update_screen(ps, mw);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pixman_region32_fini(&damage);
|
|
|
|
|
|
|
|
// override_redirect flag cannot be changed after window creation, as far
|
|
|
|
// as I know, so there's no point to re-match windows here.
|
|
|
|
mw->a.override_redirect = ce->override_redirect;
|
|
|
|
}
|
|
|
|
|
2019-03-17 21:44:26 +08:00
|
|
|
static inline void ev_configure_notify(session_t *ps, xcb_configure_notify_event_t *ev) {
|
2019-04-20 04:15:00 +08:00
|
|
|
log_debug("{ send_event: %d, id: %#010x, above: %#010x, override_redirect: %d }",
|
2019-03-17 21:44:26 +08:00
|
|
|
ev->event, ev->window, ev->above_sibling, ev->override_redirect);
|
|
|
|
if (ev->window == ps->root) {
|
core: delayed handling of root ConfigureNotify
Previously, root ConfigureNotify is handled immediately, by resetting
the backend, which in turn releases all the window images. This puts all
the windows into a state where they don't have images attached, which
they really should be in when the screen is redirected.
(To expand a little, a window without images should only exist if:
* It's an unmanaged window.
* Screen is unredirected.)
Normally, this kind of window could be fine, as the next render phase
will re-acquire images for them. However, if a window in this state is
destroyed with fading enabled, then the render phase won't try to
acquire images for it, causing it to go into the main rendering function
without images attached, and trigger an assertion.
This commit delays the handling of root ConfigureNotify until the render
phase. This way, the images will be immediately re-acquired after they
are released, thus prevent this problem from happening.
Also adds a testcase for this.
Fixes #357
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
2020-03-31 12:01:14 +08:00
|
|
|
set_root_flags(ps, ROOT_FLAGS_CONFIGURED);
|
2019-03-17 21:44:26 +08:00
|
|
|
} else {
|
|
|
|
configure_win(ps, ev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_destroy_notify(session_t *ps, xcb_destroy_notify_event_t *ev) {
|
2019-04-19 09:15:31 +08:00
|
|
|
auto w = find_win(ps, ev->window);
|
2020-04-07 03:22:54 +08:00
|
|
|
if (w) {
|
2019-09-20 08:41:56 +08:00
|
|
|
auto _ attr_unused = destroy_win_start(ps, w);
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_map_notify(session_t *ps, xcb_map_notify_event_t *ev) {
|
2019-09-20 00:26:09 +08:00
|
|
|
// Unmap overlay window if it got mapped but we are currently not
|
|
|
|
// in redirected state.
|
|
|
|
if (ps->overlay && ev->window == ps->overlay && !ps->redirected) {
|
|
|
|
log_debug("Overlay is mapped while we are not redirected");
|
|
|
|
auto e = xcb_request_check(ps->c, xcb_unmap_window(ps->c, ps->overlay));
|
|
|
|
if (e) {
|
|
|
|
log_error("Failed to unmap the overlay window");
|
|
|
|
free(e);
|
|
|
|
}
|
|
|
|
// We don't track the overlay window, so we can return
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto w = find_managed_win(ps, ev->window);
|
|
|
|
if (!w) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-07 03:52:32 +08:00
|
|
|
win_set_flags(w, WIN_FLAGS_MAPPED);
|
2019-09-20 00:26:09 +08:00
|
|
|
|
2019-03-17 21:44:26 +08:00
|
|
|
// FocusIn/Out may be ignored when the window is unmapped, so we must
|
|
|
|
// recheck focus here
|
2019-09-17 06:27:59 +08:00
|
|
|
ps->pending_updates = true; // to update focus
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_unmap_notify(session_t *ps, xcb_unmap_notify_event_t *ev) {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_managed_win(ps, ev->window);
|
2019-03-17 21:44:26 +08:00
|
|
|
if (w) {
|
2019-09-20 08:41:56 +08:00
|
|
|
unmap_win_start(ps, w);
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_reparent_notify(session_t *ps, xcb_reparent_notify_event_t *ev) {
|
2020-04-06 03:45:26 +08:00
|
|
|
log_debug("Window %#010x has new parent: %#010x, override_redirect: %d",
|
|
|
|
ev->window, ev->parent, ev->override_redirect);
|
2020-04-06 04:07:59 +08:00
|
|
|
auto w_top = find_toplevel(ps, ev->window);
|
|
|
|
if (w_top) {
|
|
|
|
win_unmark_client(ps, w_top);
|
|
|
|
}
|
2019-03-17 21:44:26 +08:00
|
|
|
|
|
|
|
if (ev->parent == ps->root) {
|
2019-04-27 20:36:42 +08:00
|
|
|
// X will generate reparent notifiy even if the parent didn't actually
|
|
|
|
// change (i.e. reparent again to current parent). So we check if that's
|
|
|
|
// the case
|
|
|
|
auto w = find_win(ps, ev->window);
|
|
|
|
if (w) {
|
|
|
|
// This window has already been reparented to root before,
|
|
|
|
// so we don't need to create a new window for it, we just need to
|
|
|
|
// move it to the top
|
|
|
|
restack_top(ps, w);
|
|
|
|
} else {
|
|
|
|
add_win_top(ps, ev->window);
|
|
|
|
}
|
2019-03-17 21:44:26 +08:00
|
|
|
} else {
|
|
|
|
// otherwise, find and destroy the window first
|
2019-09-20 08:23:44 +08:00
|
|
|
{
|
|
|
|
auto w = find_win(ps, ev->window);
|
|
|
|
if (w) {
|
2019-09-20 08:41:56 +08:00
|
|
|
auto _ attr_unused = destroy_win_start(ps, w);
|
2019-04-19 09:15:31 +08:00
|
|
|
}
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reset event mask in case something wrong happens
|
|
|
|
xcb_change_window_attributes(
|
|
|
|
ps->c, ev->window, XCB_CW_EVENT_MASK,
|
|
|
|
(const uint32_t[]){determine_evmask(ps, ev->window, WIN_EVMODE_UNKNOWN)});
|
|
|
|
|
2020-04-07 03:22:54 +08:00
|
|
|
// Check if the window is an undetected client window
|
|
|
|
// Firstly, check if it's a known client window
|
|
|
|
if (!w_top) {
|
|
|
|
// If not, look for its frame window
|
|
|
|
auto w_real_top = find_managed_window_or_parent(ps, ev->parent);
|
|
|
|
// If found, and the client window has not been determined, or its
|
|
|
|
// frame may not have a correct client, continue
|
|
|
|
if (w_real_top && (!w_real_top->client_win ||
|
|
|
|
w_real_top->client_win == w_real_top->base.id)) {
|
2019-03-17 21:44:26 +08:00
|
|
|
// If it has WM_STATE, mark it the client window
|
2019-05-06 07:34:08 +08:00
|
|
|
if (wid_has_prop(ps, ev->window, ps->atoms->aWM_STATE)) {
|
2020-04-06 04:07:59 +08:00
|
|
|
w_real_top->wmwin = false;
|
|
|
|
win_unmark_client(ps, w_real_top);
|
|
|
|
win_mark_client(ps, w_real_top, ev->window);
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
// Otherwise, watch for WM_STATE on it
|
|
|
|
else {
|
|
|
|
xcb_change_window_attributes(
|
|
|
|
ps->c, ev->window, XCB_CW_EVENT_MASK,
|
|
|
|
(const uint32_t[]){
|
|
|
|
determine_evmask(ps, ev->window, WIN_EVMODE_UNKNOWN) |
|
|
|
|
XCB_EVENT_MASK_PROPERTY_CHANGE});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_circulate_notify(session_t *ps, xcb_circulate_notify_event_t *ev) {
|
2019-04-27 20:36:42 +08:00
|
|
|
auto w = find_win(ps, ev->window);
|
|
|
|
|
|
|
|
if (!w)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ev->place == PlaceOnTop) {
|
|
|
|
restack_top(ps, w);
|
|
|
|
} else {
|
|
|
|
restack_bottom(ps, w);
|
|
|
|
}
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void expose_root(session_t *ps, const rect_t *rects, int nrects) {
|
|
|
|
region_t region;
|
|
|
|
pixman_region32_init_rects(®ion, rects, nrects);
|
|
|
|
add_damage(ps, ®ion);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_expose(session_t *ps, xcb_expose_event_t *ev) {
|
|
|
|
if (ev->window == ps->root || (ps->overlay && ev->window == ps->overlay)) {
|
|
|
|
int more = ev->count + 1;
|
|
|
|
if (ps->n_expose == ps->size_expose) {
|
|
|
|
if (ps->expose_rects) {
|
|
|
|
ps->expose_rects =
|
|
|
|
crealloc(ps->expose_rects, ps->size_expose + more);
|
|
|
|
ps->size_expose += more;
|
|
|
|
} else {
|
|
|
|
ps->expose_rects = ccalloc(more, rect_t);
|
|
|
|
ps->size_expose = more;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ps->expose_rects[ps->n_expose].x1 = ev->x;
|
|
|
|
ps->expose_rects[ps->n_expose].y1 = ev->y;
|
|
|
|
ps->expose_rects[ps->n_expose].x2 = ev->x + ev->width;
|
|
|
|
ps->expose_rects[ps->n_expose].y2 = ev->y + ev->height;
|
|
|
|
ps->n_expose++;
|
|
|
|
|
|
|
|
if (ev->count == 0) {
|
|
|
|
expose_root(ps, ps->expose_rects, ps->n_expose);
|
|
|
|
ps->n_expose = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_property_notify(session_t *ps, xcb_property_notify_event_t *ev) {
|
2019-03-17 22:15:17 +08:00
|
|
|
if (unlikely(log_get_level_tls() <= LOG_LEVEL_TRACE)) {
|
2019-03-17 21:44:26 +08:00
|
|
|
// Print out changed atom
|
|
|
|
xcb_get_atom_name_reply_t *reply =
|
|
|
|
xcb_get_atom_name_reply(ps->c, xcb_get_atom_name(ps->c, ev->atom), NULL);
|
|
|
|
const char *name = "?";
|
|
|
|
int name_len = 1;
|
|
|
|
if (reply) {
|
|
|
|
name = xcb_get_atom_name_name(reply);
|
|
|
|
name_len = xcb_get_atom_name_name_length(reply);
|
|
|
|
}
|
|
|
|
|
2019-04-20 04:15:00 +08:00
|
|
|
log_debug("{ atom = %.*s }", name_len, name);
|
2019-03-17 21:44:26 +08:00
|
|
|
free(reply);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps->root == ev->window) {
|
2019-09-17 06:27:59 +08:00
|
|
|
if (ps->o.use_ewmh_active_win && ps->atoms->a_NET_ACTIVE_WINDOW == ev->atom) {
|
2019-05-25 07:06:41 +08:00
|
|
|
// to update focus
|
|
|
|
ps->pending_updates = true;
|
2019-03-17 21:44:26 +08:00
|
|
|
} else {
|
|
|
|
// Destroy the root "image" if the wallpaper probably changed
|
|
|
|
if (x_is_root_back_pixmap_atom(ps, ev->atom)) {
|
|
|
|
root_damaged(ps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unconcerned about any other proprties on root window
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If WM_STATE changes
|
2019-05-06 07:34:08 +08:00
|
|
|
if (ev->atom == ps->atoms->aWM_STATE) {
|
2019-03-17 21:44:26 +08:00
|
|
|
// Check whether it could be a client window
|
|
|
|
if (!find_toplevel(ps, ev->window)) {
|
|
|
|
// Reset event mask anyway
|
|
|
|
xcb_change_window_attributes(ps->c, ev->window, XCB_CW_EVENT_MASK,
|
|
|
|
(const uint32_t[]){determine_evmask(
|
|
|
|
ps, ev->window, WIN_EVMODE_UNKNOWN)});
|
|
|
|
|
2020-04-06 04:20:58 +08:00
|
|
|
auto w_top = find_managed_window_or_parent(ps, ev->window);
|
2019-03-17 21:44:26 +08:00
|
|
|
// Initialize client_win as early as possible
|
2019-04-27 20:36:42 +08:00
|
|
|
if (w_top &&
|
|
|
|
(!w_top->client_win || w_top->client_win == w_top->base.id) &&
|
2019-05-06 07:34:08 +08:00
|
|
|
wid_has_prop(ps, ev->window, ps->atoms->aWM_STATE)) {
|
2019-03-17 21:44:26 +08:00
|
|
|
w_top->wmwin = false;
|
|
|
|
win_unmark_client(ps, w_top);
|
|
|
|
win_mark_client(ps, w_top, ev->window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If _NET_WM_WINDOW_TYPE changes... God knows why this would happen, but
|
|
|
|
// there are always some stupid applications. (#144)
|
2019-05-06 07:34:08 +08:00
|
|
|
if (ev->atom == ps->atoms->a_NET_WM_WINDOW_TYPE) {
|
2019-04-18 06:14:45 +08:00
|
|
|
struct managed_win *w = NULL;
|
2019-03-17 21:44:26 +08:00
|
|
|
if ((w = find_toplevel(ps, ev->window)))
|
|
|
|
win_update_wintype(ps, w);
|
|
|
|
}
|
|
|
|
|
2020-01-19 02:00:35 +08:00
|
|
|
if (ev->atom == ps->atoms->a_NET_WM_BYPASS_COMPOSITOR) {
|
|
|
|
// Unnecessay until we remove the queue_redraw in ev_handle
|
|
|
|
queue_redraw(ps);
|
|
|
|
}
|
|
|
|
|
2019-03-17 21:44:26 +08:00
|
|
|
// If _NET_WM_OPACITY changes
|
2019-05-06 07:34:08 +08:00
|
|
|
if (ev->atom == ps->atoms->a_NET_WM_WINDOW_OPACITY) {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_managed_win(ps, ev->window) ?: find_toplevel(ps, ev->window);
|
2019-03-17 21:44:26 +08:00
|
|
|
if (w) {
|
|
|
|
win_update_opacity_prop(ps, w);
|
|
|
|
// we cannot receive OPACITY change when window is destroyed
|
|
|
|
assert(w->state != WSTATE_DESTROYING);
|
2019-12-21 03:17:38 +08:00
|
|
|
win_update_opacity_target(ps, w);
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If frame extents property changes
|
2019-05-06 07:34:08 +08:00
|
|
|
if (ps->o.frame_opacity > 0 && ev->atom == ps->atoms->a_NET_FRAME_EXTENTS) {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_toplevel(ps, ev->window);
|
2019-03-17 21:44:26 +08:00
|
|
|
if (w) {
|
|
|
|
win_update_frame_extents(ps, w, ev->window);
|
|
|
|
// If frame extents change, the window needs repaint
|
|
|
|
add_damage_from_win(ps, w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If name changes
|
2020-03-30 02:15:07 +08:00
|
|
|
if (ps->atoms->aWM_NAME == ev->atom || ps->atoms->a_NET_WM_NAME == ev->atom) {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_toplevel(ps, ev->window);
|
2019-09-24 04:07:52 +08:00
|
|
|
if (w && win_update_name(ps, w) == 1) {
|
2019-03-17 21:44:26 +08:00
|
|
|
win_on_factor_change(ps, w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If class changes
|
2020-03-30 02:15:07 +08:00
|
|
|
if (ps->atoms->aWM_CLASS == ev->atom) {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_toplevel(ps, ev->window);
|
2019-03-17 21:44:26 +08:00
|
|
|
if (w) {
|
|
|
|
win_get_class(ps, w);
|
|
|
|
win_on_factor_change(ps, w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If role changes
|
2020-03-30 02:15:07 +08:00
|
|
|
if (ps->atoms->aWM_WINDOW_ROLE == ev->atom) {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_toplevel(ps, ev->window);
|
2019-03-17 21:44:26 +08:00
|
|
|
if (w && 1 == win_get_role(ps, w)) {
|
|
|
|
win_on_factor_change(ps, w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If _COMPTON_SHADOW changes
|
2019-10-23 03:44:59 +08:00
|
|
|
if (ps->atoms->a_COMPTON_SHADOW == ev->atom) {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_managed_win(ps, ev->window);
|
|
|
|
if (w) {
|
2019-03-17 21:44:26 +08:00
|
|
|
win_update_prop_shadow(ps, w);
|
2019-04-18 06:14:45 +08:00
|
|
|
}
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// If a leader property changes
|
2019-05-06 07:34:08 +08:00
|
|
|
if ((ps->o.detect_transient && ps->atoms->aWM_TRANSIENT_FOR == ev->atom) ||
|
|
|
|
(ps->o.detect_client_leader && ps->atoms->aWM_CLIENT_LEADER == ev->atom)) {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_toplevel(ps, ev->window);
|
2019-03-17 21:44:26 +08:00
|
|
|
if (w) {
|
|
|
|
win_update_leader(ps, w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for other atoms we are tracking
|
|
|
|
for (latom_t *platom = ps->track_atom_lst; platom; platom = platom->next) {
|
|
|
|
if (platom->atom == ev->atom) {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_managed_win(ps, ev->window);
|
2019-03-17 21:44:26 +08:00
|
|
|
if (!w)
|
|
|
|
w = find_toplevel(ps, ev->window);
|
|
|
|
if (w)
|
|
|
|
win_on_factor_change(ps, w);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-18 06:14:45 +08:00
|
|
|
static inline void repair_win(session_t *ps, struct managed_win *w) {
|
2019-09-20 08:59:25 +08:00
|
|
|
// Only mapped window can receive damages
|
|
|
|
assert(win_is_mapped_in_x(w));
|
2019-03-17 21:44:26 +08:00
|
|
|
|
|
|
|
region_t parts;
|
|
|
|
pixman_region32_init(&parts);
|
|
|
|
|
|
|
|
if (!w->ever_damaged) {
|
|
|
|
win_extents(w, &parts);
|
|
|
|
set_ignore_cookie(
|
|
|
|
ps, xcb_damage_subtract(ps->c, w->damage, XCB_NONE, XCB_NONE));
|
|
|
|
} else {
|
2019-04-08 12:49:39 +08:00
|
|
|
xcb_xfixes_region_t tmp = x_new_id(ps->c);
|
2019-03-17 21:44:26 +08:00
|
|
|
xcb_xfixes_create_region(ps->c, tmp, 0, NULL);
|
|
|
|
set_ignore_cookie(ps, xcb_damage_subtract(ps->c, w->damage, XCB_NONE, tmp));
|
|
|
|
x_fetch_region(ps->c, tmp, &parts);
|
|
|
|
xcb_xfixes_destroy_region(ps->c, tmp);
|
2019-03-30 17:07:21 +08:00
|
|
|
pixman_region32_translate(&parts, w->g.x + w->g.border_width,
|
|
|
|
w->g.y + w->g.border_width);
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
w->ever_damaged = true;
|
|
|
|
w->pixmap_damaged = true;
|
|
|
|
|
|
|
|
// Why care about damage when screen is unredirected?
|
|
|
|
// We will force full-screen repaint on redirection.
|
|
|
|
if (!ps->redirected) {
|
|
|
|
pixman_region32_fini(&parts);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the part in the damage area that could be ignored
|
|
|
|
if (w->reg_ignore && win_is_region_ignore_valid(ps, w))
|
|
|
|
pixman_region32_subtract(&parts, &parts, w->reg_ignore);
|
|
|
|
|
|
|
|
add_damage(ps, &parts);
|
|
|
|
pixman_region32_fini(&parts);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_damage_notify(session_t *ps, xcb_damage_notify_event_t *de) {
|
|
|
|
/*
|
|
|
|
if (ps->root == de->drawable) {
|
|
|
|
root_damaged();
|
|
|
|
return;
|
|
|
|
} */
|
|
|
|
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_managed_win(ps, de->drawable);
|
2019-03-17 21:44:26 +08:00
|
|
|
|
2019-04-18 06:14:45 +08:00
|
|
|
if (!w) {
|
2019-03-17 21:44:26 +08:00
|
|
|
return;
|
2019-04-18 06:14:45 +08:00
|
|
|
}
|
2019-03-17 21:44:26 +08:00
|
|
|
|
|
|
|
repair_win(ps, w);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ev_shape_notify(session_t *ps, xcb_shape_notify_event_t *ev) {
|
2019-04-18 06:14:45 +08:00
|
|
|
auto w = find_managed_win(ps, ev->affected_window);
|
|
|
|
if (!w || w->a.map_state == XCB_MAP_STATE_UNMAPPED) {
|
2019-03-17 21:44:26 +08:00
|
|
|
return;
|
2019-04-18 06:14:45 +08:00
|
|
|
}
|
2019-03-17 21:44:26 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Empty bounding_shape may indicated an
|
|
|
|
* unmapped/destroyed window, in which case
|
|
|
|
* seemingly BadRegion errors would be triggered
|
|
|
|
* if we attempt to rebuild border_size
|
|
|
|
*/
|
|
|
|
// Mark the old border_size as damaged
|
|
|
|
region_t tmp = win_get_bounding_shape_global_by_val(w);
|
|
|
|
add_damage(ps, &tmp);
|
|
|
|
pixman_region32_fini(&tmp);
|
|
|
|
|
|
|
|
win_update_bounding_shape(ps, w);
|
|
|
|
|
|
|
|
// Mark the new border_size as damaged
|
|
|
|
tmp = win_get_bounding_shape_global_by_val(w);
|
|
|
|
add_damage(ps, &tmp);
|
|
|
|
pixman_region32_fini(&tmp);
|
|
|
|
|
|
|
|
w->reg_ignore_valid = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
ev_selection_clear(session_t *ps, xcb_selection_clear_event_t attr_unused *ev) {
|
|
|
|
// The only selection we own is the _NET_WM_CM_Sn selection.
|
|
|
|
// If we lose that one, we should exit.
|
|
|
|
log_fatal("Another composite manager started and took the _NET_WM_CM_Sn "
|
|
|
|
"selection.");
|
2019-10-24 02:27:30 +08:00
|
|
|
quit(ps);
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ev_handle(session_t *ps, xcb_generic_event_t *ev) {
|
|
|
|
if ((ev->response_type & 0x7f) != KeymapNotify) {
|
|
|
|
discard_ignore(ps, ev->full_sequence);
|
|
|
|
}
|
|
|
|
|
2019-04-20 04:15:00 +08:00
|
|
|
xcb_window_t wid = ev_window(ps, ev);
|
2019-03-17 21:44:26 +08:00
|
|
|
if (ev->response_type != ps->damage_event + XCB_DAMAGE_NOTIFY) {
|
2019-04-20 04:15:00 +08:00
|
|
|
log_debug("event %10.10s serial %#010x window %#010x \"%s\"",
|
|
|
|
ev_name(ps, ev), ev->full_sequence, wid, ev_window_name(ps, wid));
|
|
|
|
} else {
|
2019-03-17 22:15:17 +08:00
|
|
|
log_trace("event %10.10s serial %#010x window %#010x \"%s\"",
|
|
|
|
ev_name(ps, ev), ev->full_sequence, wid, ev_window_name(ps, wid));
|
2019-03-17 21:44:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check if a custom XEvent constructor was registered in xlib for this event
|
|
|
|
// type, and call it discarding the constructed XEvent if any. XESetWireToEvent
|
|
|
|
// might be used by libraries to intercept messages from the X server e.g. the
|
|
|
|
// OpenGL lib waiting for DRI2 events.
|
|
|
|
|
|
|
|
// XXX This exists to workaround compton issue #33, #34, #47
|
|
|
|
// For even more details, see:
|
|
|
|
// https://bugs.freedesktop.org/show_bug.cgi?id=35945
|
|
|
|
// https://lists.freedesktop.org/archives/xcb/2011-November/007337.html
|
|
|
|
auto proc = XESetWireToEvent(ps->dpy, ev->response_type, 0);
|
|
|
|
if (proc) {
|
|
|
|
XESetWireToEvent(ps->dpy, ev->response_type, proc);
|
|
|
|
XEvent dummy;
|
|
|
|
|
|
|
|
// Stop Xlib from complaining about lost sequence numbers.
|
|
|
|
// proc might also just be Xlib internal event processing functions, and
|
|
|
|
// because they probably won't see all X replies, they will complain about
|
|
|
|
// missing sequence numbers.
|
|
|
|
//
|
|
|
|
// We only need the low 16 bits
|
|
|
|
ev->sequence = (uint16_t)(LastKnownRequestProcessed(ps->dpy) & 0xffff);
|
|
|
|
proc(ps->dpy, &dummy, (xEvent *)ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX redraw needs to be more fine grained
|
|
|
|
queue_redraw(ps);
|
|
|
|
|
|
|
|
switch (ev->response_type) {
|
|
|
|
case FocusIn: ev_focus_in(ps, (xcb_focus_in_event_t *)ev); break;
|
|
|
|
case FocusOut: ev_focus_out(ps, (xcb_focus_out_event_t *)ev); break;
|
|
|
|
case CreateNotify: ev_create_notify(ps, (xcb_create_notify_event_t *)ev); break;
|
|
|
|
case ConfigureNotify:
|
|
|
|
ev_configure_notify(ps, (xcb_configure_notify_event_t *)ev);
|
|
|
|
break;
|
|
|
|
case DestroyNotify:
|
|
|
|
ev_destroy_notify(ps, (xcb_destroy_notify_event_t *)ev);
|
|
|
|
break;
|
|
|
|
case MapNotify: ev_map_notify(ps, (xcb_map_notify_event_t *)ev); break;
|
|
|
|
case UnmapNotify: ev_unmap_notify(ps, (xcb_unmap_notify_event_t *)ev); break;
|
|
|
|
case ReparentNotify:
|
|
|
|
ev_reparent_notify(ps, (xcb_reparent_notify_event_t *)ev);
|
|
|
|
break;
|
|
|
|
case CirculateNotify:
|
|
|
|
ev_circulate_notify(ps, (xcb_circulate_notify_event_t *)ev);
|
|
|
|
break;
|
|
|
|
case Expose: ev_expose(ps, (xcb_expose_event_t *)ev); break;
|
|
|
|
case PropertyNotify:
|
|
|
|
ev_property_notify(ps, (xcb_property_notify_event_t *)ev);
|
|
|
|
break;
|
|
|
|
case SelectionClear:
|
|
|
|
ev_selection_clear(ps, (xcb_selection_clear_event_t *)ev);
|
|
|
|
break;
|
|
|
|
case 0: ev_xcb_error(ps, (xcb_generic_error_t *)ev); break;
|
|
|
|
default:
|
|
|
|
if (ps->shape_exists && ev->response_type == ps->shape_event) {
|
|
|
|
ev_shape_notify(ps, (xcb_shape_notify_event_t *)ev);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ps->randr_exists &&
|
|
|
|
ev->response_type == (ps->randr_event + XCB_RANDR_SCREEN_CHANGE_NOTIFY)) {
|
2019-03-17 23:17:48 +08:00
|
|
|
set_root_flags(ps, ROOT_FLAGS_SCREEN_CHANGE);
|
2019-03-17 21:44:26 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ps->damage_event + XCB_DAMAGE_NOTIFY == ev->response_type) {
|
|
|
|
ev_damage_notify(ps, (xcb_damage_notify_event_t *)ev);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|