all repos — openbox @ 8439c393d8c1dfb7db5cebd57d2e1e084e60234a

openbox fork - make it a bit more like ryudo

let you make an xevent listener for all windows
Dana Jansens danakj@orodu.net
commit

8439c393d8c1dfb7db5cebd57d2e1e084e60234a

parent

03f45e79b8c92818f116bf92a7388b2f16f80caf

2 files changed, 8 insertions(+), 2 deletions(-)

jump to
M obt/xevent.cobt/xevent.c

@@ -85,7 +85,6 @@ ObtXEventCallback func, gpointer data)

{ ObtXEventBinding *b; - g_assert(win); g_assert(func); /* make sure we have a spot for the event */

@@ -119,8 +118,14 @@ {

ObtXEventHandler *h; ObtXEventBinding *b; + h = data; + if (e->type < h->num_event_types) { - h = data; + const gint all = OBT_XEVENT_ALL_WINDOWS; + /* run the all_windows handler first */ + b = g_hash_table_lookup(h->bindings[e->xany.type], &all); + if (b) b->func(e, b->data); + /* then run the per-window handler */ b = g_hash_table_lookup(h->bindings[e->xany.type], &e->xany.window); if (b) b->func(e, b->data); }
M obt/xevent.hobt/xevent.h

@@ -37,6 +37,7 @@

void xevent_register(ObtXEventHandler *h, struct _ObtMainLoop *loop); +#define OBT_XEVENT_ALL_WINDOWS None void xevent_set_handler(ObtXEventHandler *h, gint type, Window win, ObtXEventCallback func, gpointer data);