cwm-patched/xevents.c

432 lines
10 KiB
C
Raw Normal View History

2007-04-27 12:58:48 -05:00
/*
* calmwm - the calm window manager
*
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2007-04-27 12:58:48 -05:00
*
2011-05-11 08:53:51 -05:00
* $OpenBSD$
2007-04-27 12:58:48 -05:00
*/
/*
* NOTE:
* It is the responsibility of the caller to deal with memory
* management of the xevent's.
*/
#include <sys/types.h>
#include <sys/queue.h>
#include <err.h>
#include <errno.h>
#include <limits.h>
2012-11-08 21:52:02 -06:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
2007-04-27 12:58:48 -05:00
#include "calmwm.h"
static void xev_handle_maprequest(XEvent *);
static void xev_handle_unmapnotify(XEvent *);
static void xev_handle_destroynotify(XEvent *);
static void xev_handle_configurerequest(XEvent *);
static void xev_handle_propertynotify(XEvent *);
static void xev_handle_enternotify(XEvent *);
static void xev_handle_buttonpress(XEvent *);
static void xev_handle_buttonrelease(XEvent *);
static void xev_handle_keypress(XEvent *);
static void xev_handle_keyrelease(XEvent *);
static void xev_handle_clientmessage(XEvent *);
static void xev_handle_randr(XEvent *);
static void xev_handle_mappingnotify(XEvent *);
2013-12-13 08:45:47 -06:00
static void xev_handle_expose(XEvent *);
void (*xev_handlers[LASTEvent])(XEvent *) = {
[MapRequest] = xev_handle_maprequest,
[UnmapNotify] = xev_handle_unmapnotify,
2013-12-13 08:45:47 -06:00
[DestroyNotify] = xev_handle_destroynotify,
[ConfigureRequest] = xev_handle_configurerequest,
[PropertyNotify] = xev_handle_propertynotify,
[EnterNotify] = xev_handle_enternotify,
[ButtonPress] = xev_handle_buttonpress,
[ButtonRelease] = xev_handle_buttonrelease,
[KeyPress] = xev_handle_keypress,
[KeyRelease] = xev_handle_keyrelease,
[ClientMessage] = xev_handle_clientmessage,
[MappingNotify] = xev_handle_mappingnotify,
2013-12-13 08:45:47 -06:00
[Expose] = xev_handle_expose,
};
2007-04-27 12:58:48 -05:00
static KeySym modkeys[] = { XK_Alt_L, XK_Alt_R, XK_Super_L, XK_Super_R,
XK_Control_L, XK_Control_R };
static void
xev_handle_maprequest(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XMapRequestEvent *e = &ee->xmaprequest;
struct client_ctx *cc = NULL, *old_cc;
2007-04-27 12:58:48 -05:00
2015-08-27 13:42:56 -05:00
if ((old_cc = client_current()) != NULL)
2007-04-27 12:58:48 -05:00
client_ptrsave(old_cc);
if ((cc = client_find(e->window)) == NULL)
cc = client_init(e->window, NULL, 0);
2007-04-27 12:58:48 -05:00
2014-09-15 08:00:49 -05:00
if ((cc != NULL) && (!(cc->flags & CLIENT_IGNORE)))
client_ptrwarp(cc);
2007-04-27 12:58:48 -05:00
}
static void
xev_handle_unmapnotify(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XUnmapEvent *e = &ee->xunmap;
struct client_ctx *cc;
2007-04-27 12:58:48 -05:00
if ((cc = client_find(e->window)) != NULL) {
if (e->send_event) {
client_set_wm_state(cc, WithdrawnState);
} else {
if (!(cc->flags & CLIENT_HIDDEN))
client_delete(cc);
}
}
2007-04-27 12:58:48 -05:00
}
static void
xev_handle_destroynotify(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XDestroyWindowEvent *e = &ee->xdestroywindow;
struct client_ctx *cc;
2007-04-27 12:58:48 -05:00
if ((cc = client_find(e->window)) != NULL)
client_delete(cc);
2007-04-27 12:58:48 -05:00
}
static void
xev_handle_configurerequest(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XConfigureRequestEvent *e = &ee->xconfigurerequest;
struct client_ctx *cc;
struct screen_ctx *sc;
XWindowChanges wc;
2007-04-27 12:58:48 -05:00
if ((cc = client_find(e->window)) != NULL) {
sc = cc->sc;
2007-04-27 12:58:48 -05:00
if (e->value_mask & CWWidth)
cc->geom.w = e->width;
2007-04-27 12:58:48 -05:00
if (e->value_mask & CWHeight)
cc->geom.h = e->height;
2007-04-27 12:58:48 -05:00
if (e->value_mask & CWX)
cc->geom.x = e->x;
if (e->value_mask & CWY)
cc->geom.y = e->y;
if (e->value_mask & CWBorderWidth)
cc->bwidth = e->border_width;
if (e->value_mask & CWSibling)
wc.sibling = e->above;
if (e->value_mask & CWStackMode)
wc.stack_mode = e->detail;
2007-04-27 12:58:48 -05:00
if (cc->geom.x == 0 && cc->geom.w >= sc->view.w)
2007-04-27 12:58:48 -05:00
cc->geom.x -= cc->bwidth;
if (cc->geom.y == 0 && cc->geom.h >= sc->view.h)
2008-04-15 15:24:41 -05:00
cc->geom.y -= cc->bwidth;
2007-04-27 12:58:48 -05:00
wc.x = cc->geom.x;
wc.y = cc->geom.y;
wc.width = cc->geom.w;
wc.height = cc->geom.h;
wc.border_width = cc->bwidth;
2007-04-27 12:58:48 -05:00
XConfigureWindow(X_Dpy, cc->win, e->value_mask, &wc);
client_config(cc);
} else {
/* let it do what it wants, it'll be ours when we map it. */
wc.x = e->x;
wc.y = e->y;
wc.width = e->width;
wc.height = e->height;
wc.border_width = e->border_width;
wc.stack_mode = Above;
e->value_mask &= ~CWStackMode;
XConfigureWindow(X_Dpy, e->window, e->value_mask, &wc);
2007-04-27 12:58:48 -05:00
}
}
static void
xev_handle_propertynotify(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XPropertyEvent *e = &ee->xproperty;
struct screen_ctx *sc;
struct client_ctx *cc;
2007-04-27 12:58:48 -05:00
if ((cc = client_find(e->window)) != NULL) {
2008-04-15 15:24:41 -05:00
switch (e->atom) {
2007-04-27 12:58:48 -05:00
case XA_WM_NORMAL_HINTS:
client_getsizehints(cc);
2007-04-27 12:58:48 -05:00
break;
case XA_WM_NAME:
client_setname(cc);
break;
case XA_WM_HINTS:
client_wm_hints(cc);
2013-12-13 08:45:47 -06:00
client_draw_border(cc);
break;
case XA_WM_TRANSIENT_FOR:
client_transient(cc);
break;
2007-04-27 12:58:48 -05:00
default:
/* do nothing */
break;
}
} else {
2013-05-19 12:01:29 -05:00
TAILQ_FOREACH(sc, &Screenq, entry) {
if (sc->rootwin == e->window) {
if (e->atom == ewmh[_NET_DESKTOP_NAMES])
xu_ewmh_net_desktop_names(sc);
2013-05-19 12:01:29 -05:00
}
}
2007-04-27 12:58:48 -05:00
}
}
static void
xev_handle_enternotify(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XCrossingEvent *e = &ee->xcrossing;
struct client_ctx *cc;
2007-04-27 12:58:48 -05:00
Last_Event_Time = e->time;
2009-01-17 14:39:24 -06:00
if ((cc = client_find(e->window)) != NULL)
client_setactive(cc);
2007-04-27 12:58:48 -05:00
}
/* We can split this into two event handlers. */
static void
xev_handle_buttonpress(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XButtonEvent *e = &ee->xbutton;
struct client_ctx *cc, fakecc;
struct binding *mb;
2007-04-27 12:58:48 -05:00
e->state &= ~IGNOREMODMASK;
TAILQ_FOREACH(mb, &Conf.mousebindingq, entry) {
if (e->button == mb->press.button && e->state == mb->modmask)
break;
}
2007-04-27 12:58:48 -05:00
if (mb == NULL)
return;
if (mb->context == CWM_CONTEXT_CLIENT) {
if (((cc = client_find(e->window)) == NULL) &&
(cc = client_current()) == NULL)
return;
} else {
if (e->window != e->root)
return;
cc = &fakecc;
if ((cc->sc = screen_find(e->window)) == NULL)
return;
}
(*mb->callback)(cc, &mb->argument, CWM_BTN);
2007-04-27 12:58:48 -05:00
}
static void
xev_handle_buttonrelease(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XButtonEvent *e = &ee->xbutton;
struct client_ctx *cc;
2007-04-27 12:58:48 -05:00
if ((cc = client_find(e->window)) != NULL) {
if (cc->flags & CLIENT_ACTIVE)
group_toggle_membership_leave(cc);
}
2007-04-27 12:58:48 -05:00
}
static void
xev_handle_keypress(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XKeyEvent *e = &ee->xkey;
struct client_ctx *cc = NULL, fakecc;
struct binding *kb;
KeySym keysym, skeysym;
2014-01-03 09:29:06 -06:00
unsigned int modshift;
2007-04-27 12:58:48 -05:00
keysym = XkbKeycodeToKeysym(X_Dpy, e->keycode, 0, 0);
skeysym = XkbKeycodeToKeysym(X_Dpy, e->keycode, 0, 1);
2008-04-15 15:24:41 -05:00
e->state &= ~IGNOREMODMASK;
2008-04-15 15:24:41 -05:00
TAILQ_FOREACH(kb, &Conf.keybindingq, entry) {
if (keysym != kb->press.keysym && skeysym == kb->press.keysym)
2007-04-27 12:58:48 -05:00
modshift = ShiftMask;
else
modshift = 0;
if ((kb->modmask | modshift) != e->state)
continue;
2015-07-01 09:36:42 -05:00
if (kb->press.keysym == ((modshift == 0) ? keysym : skeysym))
2007-04-27 12:58:48 -05:00
break;
2008-04-15 15:24:41 -05:00
}
2007-04-27 12:58:48 -05:00
if (kb == NULL)
return;
if (kb->context == CWM_CONTEXT_CLIENT) {
if (((cc = client_find(e->window)) == NULL) &&
(cc = client_current()) == NULL)
return;
} else {
cc = &fakecc;
if ((cc->sc = screen_find(e->window)) == NULL)
return;
}
2007-04-27 12:58:48 -05:00
(*kb->callback)(cc, &kb->argument, CWM_KEY);
2007-04-27 12:58:48 -05:00
}
/*
* This is only used for the modifier suppression detection.
2007-04-27 12:58:48 -05:00
*/
static void
xev_handle_keyrelease(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XKeyEvent *e = &ee->xkey;
struct screen_ctx *sc;
2013-05-10 10:44:43 -05:00
KeySym keysym;
2014-01-03 09:29:06 -06:00
unsigned int i;
if ((sc = screen_find(e->root)) == NULL)
return;
2007-04-27 12:58:48 -05:00
keysym = XkbKeycodeToKeysym(X_Dpy, e->keycode, 0, 0);
for (i = 0; i < nitems(modkeys); i++) {
if (keysym == modkeys[i]) {
client_cycle_leave(sc);
break;
}
}
2007-04-27 12:58:48 -05:00
}
static void
xev_handle_clientmessage(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XClientMessageEvent *e = &ee->xclient;
struct client_ctx *cc, *old_cc;
struct screen_ctx *sc;
2007-04-27 12:58:48 -05:00
if (e->message_type == cwmh[WM_CHANGE_STATE]) {
if ((cc = client_find(e->window)) != NULL) {
if (e->data.l[0] == IconicState)
client_hide(cc);
}
} else if (e->message_type == ewmh[_NET_CLOSE_WINDOW]) {
if ((cc = client_find(e->window)) != NULL) {
client_send_delete(cc);
}
} else if (e->message_type == ewmh[_NET_ACTIVE_WINDOW]) {
if ((cc = client_find(e->window)) != NULL) {
2015-08-27 13:42:56 -05:00
if ((old_cc = client_current()) != NULL)
client_ptrsave(old_cc);
if (cc->flags & CLIENT_HIDDEN)
client_unhide(cc);
else
client_raise(cc);
client_ptrwarp(cc);
}
} else if (e->message_type == ewmh[_NET_WM_DESKTOP]) {
if ((cc = client_find(e->window)) != NULL) {
/*
* The EWMH spec states that if the cardinal returned
* is 0xFFFFFFFF (-1) then the window should appear
* on all desktops, in our case, group 0.
*/
if (e->data.l[0] == (unsigned long)-1)
group_movetogroup(cc, 0);
else
group_movetogroup(cc, e->data.l[0]);
}
} else if (e->message_type == ewmh[_NET_WM_STATE]) {
if ((cc = client_find(e->window)) != NULL) {
xu_ewmh_handle_net_wm_state_msg(cc,
e->data.l[0], e->data.l[1], e->data.l[2]);
}
} else if (e->message_type == ewmh[_NET_CURRENT_DESKTOP]) {
if ((sc = screen_find(e->window)) != NULL) {
group_only(sc, e->data.l[0]);
}
}
2007-04-27 12:58:48 -05:00
}
static void
xev_handle_randr(XEvent *ee)
{
XRRScreenChangeNotifyEvent *rev = (XRRScreenChangeNotifyEvent *)ee;
struct screen_ctx *sc;
int i;
i = XRRRootToScreen(X_Dpy, rev->root);
TAILQ_FOREACH(sc, &Screenq, entry) {
if (sc->which == i) {
XRRUpdateConfiguration(ee);
screen_update_geometry(sc);
screen_assert_clients_within(sc);
}
}
}
2009-11-28 11:52:12 -06:00
/*
* Called when the keymap has changed.
* Ungrab all keys, reload keymap and then regrab
*/
static void
xev_handle_mappingnotify(XEvent *ee)
{
XMappingEvent *e = &ee->xmapping;
struct screen_ctx *sc;
XRefreshKeyboardMapping(e);
if (e->request == MappingKeyboard) {
TAILQ_FOREACH(sc, &Screenq, entry)
conf_grab_kbd(sc->rootwin);
}
2007-04-27 12:58:48 -05:00
}
static void
xev_handle_expose(XEvent *ee)
2007-04-27 12:58:48 -05:00
{
XExposeEvent *e = &ee->xexpose;
struct client_ctx *cc;
2007-04-27 12:58:48 -05:00
if ((cc = client_find(e->window)) != NULL && e->count == 0)
2007-04-27 12:58:48 -05:00
client_draw_border(cc);
}
void
xev_process(void)
2007-04-27 12:58:48 -05:00
{
XEvent e;
2007-04-27 12:58:48 -05:00
XNextEvent(X_Dpy, &e);
if (e.type - Randr_ev == RRScreenChangeNotify)
xev_handle_randr(&e);
else if (e.type < LASTEvent && xev_handlers[e.type] != NULL)
(*xev_handlers[e.type])(&e);
2007-04-27 12:58:48 -05:00
}