dwm/event.c

221 lines
4.0 KiB
C
Raw Normal View History

2006-07-10 20:16:48 +00:00
/*
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <X11/keysym.h>
2006-07-11 14:14:22 +00:00
#include <X11/Xatom.h>
2006-07-10 20:16:48 +00:00
2006-07-13 09:43:05 +00:00
#include "dwm.h"
2006-07-10 20:16:48 +00:00
/* local functions */
2006-07-11 19:24:10 +00:00
static void buttonpress(XEvent *e);
2006-07-10 20:16:48 +00:00
static void configurerequest(XEvent *e);
static void destroynotify(XEvent *e);
static void enternotify(XEvent *e);
static void leavenotify(XEvent *e);
static void expose(XEvent *e);
static void keymapnotify(XEvent *e);
static void maprequest(XEvent *e);
static void propertynotify(XEvent *e);
static void unmapnotify(XEvent *e);
void (*handler[LASTEvent]) (XEvent *) = {
2006-07-11 19:24:10 +00:00
[ButtonPress] = buttonpress,
2006-07-10 20:16:48 +00:00
[ConfigureRequest] = configurerequest,
[DestroyNotify] = destroynotify,
[EnterNotify] = enternotify,
[LeaveNotify] = leavenotify,
[Expose] = expose,
[KeyPress] = keypress,
[KeymapNotify] = keymapnotify,
[MapRequest] = maprequest,
[PropertyNotify] = propertynotify,
[UnmapNotify] = unmapnotify
};
void
2006-07-11 19:24:10 +00:00
discard_events(long even_mask)
2006-07-10 20:16:48 +00:00
{
XEvent ev;
while(XCheckMaskEvent(dpy, even_mask, &ev));
2006-07-10 20:16:48 +00:00
}
2006-07-11 19:24:10 +00:00
static void
buttonpress(XEvent *e)
{
XButtonPressedEvent *ev = &e->xbutton;
Client *c;
if((c = getclient(ev->window))) {
2006-07-12 23:30:55 +00:00
craise(c);
2006-07-11 19:24:10 +00:00
switch(ev->button) {
default:
break;
case Button1:
mmove(c);
break;
case Button2:
lower(c);
2006-07-11 19:24:10 +00:00
break;
case Button3:
mresize(c);
break;
}
}
}
2006-07-10 20:16:48 +00:00
static void
configurerequest(XEvent *e)
{
XConfigureRequestEvent *ev = &e->xconfigurerequest;
XWindowChanges wc;
Client *c;
ev->value_mask &= ~CWSibling;
2006-07-11 19:24:10 +00:00
if((c = getclient(ev->window))) {
2006-07-12 15:17:15 +00:00
gravitate(c, True);
2006-07-10 20:16:48 +00:00
if(ev->value_mask & CWX)
2006-07-11 20:49:09 +00:00
c->x = ev->x;
2006-07-10 20:16:48 +00:00
if(ev->value_mask & CWY)
2006-07-11 20:49:09 +00:00
c->y = ev->y;
2006-07-10 20:16:48 +00:00
if(ev->value_mask & CWWidth)
2006-07-11 20:49:09 +00:00
c->w = ev->width;
2006-07-10 20:16:48 +00:00
if(ev->value_mask & CWHeight)
2006-07-11 20:49:09 +00:00
c->h = ev->height;
2006-07-12 15:17:15 +00:00
if(ev->value_mask & CWBorderWidth)
2006-07-14 06:34:38 +00:00
c->border = 1;
2006-07-12 15:17:15 +00:00
gravitate(c, False);
2006-07-13 19:42:17 +00:00
resize(c, True);
2006-07-10 20:16:48 +00:00
}
wc.x = ev->x;
wc.y = ev->y;
wc.width = ev->width;
wc.height = ev->height;
2006-07-11 22:53:11 +00:00
wc.border_width = 1;
2006-07-10 20:16:48 +00:00
wc.sibling = None;
wc.stack_mode = Above;
ev->value_mask &= ~CWStackMode;
ev->value_mask |= CWBorderWidth;
XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
XFlush(dpy);
}
static void
destroynotify(XEvent *e)
{
Client *c;
XDestroyWindowEvent *ev = &e->xdestroywindow;
2006-07-11 11:21:57 +00:00
if((c = getclient(ev->window)))
unmanage(c);
2006-07-10 20:16:48 +00:00
}
static void
enternotify(XEvent *e)
{
XCrossingEvent *ev = &e->xcrossing;
Client *c;
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
return;
2006-07-11 14:14:22 +00:00
if((c = getclient(ev->window)))
focus(c);
else if(ev->window == root)
2006-07-12 23:04:38 +00:00
issel = True;
2006-07-10 20:16:48 +00:00
}
static void
leavenotify(XEvent *e)
{
XCrossingEvent *ev = &e->xcrossing;
if((ev->window == root) && !ev->same_screen)
2006-07-12 23:04:38 +00:00
issel = True;
2006-07-10 20:16:48 +00:00
}
static void
expose(XEvent *e)
{
XExposeEvent *ev = &e->xexpose;
2006-07-11 21:18:30 +00:00
Client *c;
2006-07-10 20:16:48 +00:00
if(ev->count == 0) {
2006-07-11 22:00:25 +00:00
if((c = gettitle(ev->window)))
2006-07-11 21:18:30 +00:00
draw_client(c);
2006-07-10 20:16:48 +00:00
}
}
static void
keymapnotify(XEvent *e)
{
update_keys();
}
static void
maprequest(XEvent *e)
{
XMapRequestEvent *ev = &e->xmaprequest;
static XWindowAttributes wa;
if(!XGetWindowAttributes(dpy, ev->window, &wa))
return;
if(wa.override_redirect) {
XSelectInput(dpy, ev->window,
(StructureNotifyMask | PropertyChangeMask));
return;
}
2006-07-11 11:02:22 +00:00
if(!getclient(ev->window))
manage(ev->window, &wa);
2006-07-10 20:16:48 +00:00
}
static void
propertynotify(XEvent *e)
{
XPropertyEvent *ev = &e->xproperty;
2006-07-13 19:42:17 +00:00
Window trans;
2006-07-10 20:16:48 +00:00
Client *c;
if(ev->state == PropertyDelete)
return; /* ignore */
2006-07-11 14:14:22 +00:00
if((c = getclient(ev->window))) {
2006-07-12 15:50:31 +00:00
if(ev->atom == wm_atom[WMProtocols]) {
c->proto = win_proto(c->win);
return;
}
2006-07-11 14:14:22 +00:00
switch (ev->atom) {
default: break;
case XA_WM_TRANSIENT_FOR:
2006-07-13 19:42:17 +00:00
XGetTransientForHint(dpy, c->win, &trans);
if(!c->floating && (c->floating = (trans != 0)))
arrange(NULL);
2006-07-11 14:14:22 +00:00
break;
case XA_WM_NORMAL_HINTS:
2006-07-11 20:49:09 +00:00
update_size(c);
2006-07-11 14:14:22 +00:00
break;
}
if(ev->atom == XA_WM_NAME || ev->atom == net_atom[NetWMName]) {
update_name(c);
2006-07-12 23:30:55 +00:00
draw_client(c);
2006-07-11 14:14:22 +00:00
}
}
2006-07-10 20:16:48 +00:00
}
static void
unmapnotify(XEvent *e)
{
Client *c;
XUnmapEvent *ev = &e->xunmap;
2006-07-11 11:02:22 +00:00
if((c = getclient(ev->window)))
unmanage(c);
2006-07-10 20:16:48 +00:00
}