mirror of https://github.com/0intro/wmii
290 lines
6.6 KiB
C
290 lines
6.6 KiB
C
/* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
#include "wmii.h"
|
|
#include <fcntl.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <X11/keysym.h>
|
|
|
|
/* local functions */
|
|
static void buttonpress(XEvent *e);
|
|
static void buttonrelease(XEvent *e);
|
|
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 keypress(XEvent *e);
|
|
static void mappingnotify(XEvent *e);
|
|
static void maprequest(XEvent *e);
|
|
static void propertynotify(XEvent *e);
|
|
static void unmapnotify(XEvent *e);
|
|
|
|
void (*handler[LASTEvent]) (XEvent *) = {
|
|
[ButtonPress] = buttonpress,
|
|
[ButtonRelease] = buttonrelease,
|
|
[ConfigureRequest]= configurerequest,
|
|
[DestroyNotify] = destroynotify,
|
|
[EnterNotify] = enternotify,
|
|
[LeaveNotify] = leavenotify,
|
|
[Expose] = expose,
|
|
[KeyPress] = keypress,
|
|
[MappingNotify] = mappingnotify,
|
|
[MapRequest] = maprequest,
|
|
[PropertyNotify]= propertynotify,
|
|
[UnmapNotify] = unmapnotify
|
|
};
|
|
|
|
void
|
|
check_x_event(IXPConn *c) {
|
|
XEvent ev;
|
|
while(XPending(blz.dpy)) { /* main event loop */
|
|
XNextEvent(blz.dpy, &ev);
|
|
if(handler[ev.type])
|
|
(handler[ev.type]) (&ev); /* call handler */
|
|
}
|
|
}
|
|
|
|
unsigned int
|
|
flush_masked_events(long even_mask) {
|
|
XEvent ev;
|
|
unsigned int n = 0;
|
|
while(XCheckMaskEvent(blz.dpy, even_mask, &ev)) n++;
|
|
return n;
|
|
}
|
|
|
|
static void
|
|
buttonrelease(XEvent *e) {
|
|
Frame *f;
|
|
Bar *b;
|
|
XButtonPressedEvent *ev = &e->xbutton;
|
|
if(ev->window == screen->barwin) {
|
|
for(b=screen->lbar; b; b=b->next)
|
|
if(ispointinrect(ev->x, ev->y, &b->brush.rect)) {
|
|
write_event("LeftBarClick %d %s\n",
|
|
ev->button, b->name);
|
|
return;
|
|
}
|
|
for(b=screen->rbar; b; b=b->next)
|
|
if(ispointinrect(ev->x, ev->y, &b->brush.rect)) {
|
|
write_event("RightBarClick %d %s\n",
|
|
ev->button, b->name);
|
|
return;
|
|
}
|
|
}
|
|
else if((f = frame_of_win(ev->window)))
|
|
write_event("ClientClick %d %d\n", idx_of_client(f->client), ev->button);
|
|
}
|
|
|
|
static void
|
|
buttonpress(XEvent *e) {
|
|
Frame *f;
|
|
XButtonPressedEvent *ev = &e->xbutton;
|
|
|
|
if((f = frame_of_win(ev->window))) {
|
|
ev->state &= valid_mask;
|
|
if((ev->state & def.mod) == def.mod) {
|
|
focus(f->client, True);
|
|
switch(ev->button) {
|
|
case Button1:
|
|
do_mouse_resize(f->client, CENTER);
|
|
break;
|
|
case Button3:
|
|
do_mouse_resize(f->client, quadofcoord(&f->client->rect, ev->x, ev->y));
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
else if(ev->button == Button1)
|
|
focus(f->client, True);
|
|
}
|
|
}
|
|
|
|
static void
|
|
configurerequest(XEvent *e) {
|
|
XConfigureRequestEvent *ev = &e->xconfigurerequest;
|
|
XWindowChanges wc;
|
|
XRectangle *frect;
|
|
Client *c;
|
|
|
|
c = client_of_win(ev->window);
|
|
ev->value_mask &= ~CWSibling;
|
|
if(c) {
|
|
gravitate_client(c, True);
|
|
if(ev->value_mask & CWX)
|
|
c->rect.x = ev->x;
|
|
if(ev->value_mask & CWY)
|
|
c->rect.y = ev->y;
|
|
if(ev->value_mask & CWWidth)
|
|
c->rect.width = ev->width;
|
|
if(ev->value_mask & CWHeight)
|
|
c->rect.height = ev->height;
|
|
if(ev->value_mask & CWBorderWidth)
|
|
c->border = ev->border_width;
|
|
gravitate_client(c, False);
|
|
if(c->frame) {
|
|
if(c->sel->area->floating)
|
|
frect=&c->sel->rect;
|
|
else
|
|
frect=&c->sel->revert;
|
|
if(c->rect.width >= screen->rect.width && c->rect.height >= screen->rect.height) {
|
|
frect->y = wc.y = -labelh(&def.font);
|
|
frect->x = wc.x = -def.border;
|
|
}
|
|
else {
|
|
frect->y = wc.y = c->rect.y - labelh(&def.font);
|
|
frect->x = wc.x = c->rect.x - def.border;
|
|
}
|
|
frect->width = wc.width = c->rect.width + 2 * def.border;
|
|
frect->height = wc.height = c->rect.height + def.border
|
|
+ labelh(&def.font);
|
|
wc.border_width = 1;
|
|
wc.sibling = None;
|
|
wc.stack_mode = ev->detail;
|
|
if(c->sel->area->view != screen->sel)
|
|
wc.x += 2 * screen->rect.width;
|
|
if(c->sel->area->floating) {
|
|
XConfigureWindow(blz.dpy, c->framewin, ev->value_mask, &wc);
|
|
configure_client(c);
|
|
}
|
|
}
|
|
}
|
|
wc.x = ev->x;
|
|
wc.y = ev->y;
|
|
wc.width = ev->width;
|
|
wc.height = ev->height;
|
|
if(c && c->frame) {
|
|
wc.x = def.border;
|
|
wc.y = labelh(&def.font);
|
|
wc.width = c->sel->rect.width - 2 * def.border;
|
|
wc.height = c->sel->rect.height - def.border - labelh(&def.font);
|
|
}
|
|
wc.border_width = 0;
|
|
wc.sibling = None;
|
|
wc.stack_mode = Above;
|
|
ev->value_mask &= ~CWStackMode;
|
|
ev->value_mask |= CWBorderWidth;
|
|
XConfigureWindow(blz.dpy, ev->window, ev->value_mask, &wc);
|
|
XSync(blz.dpy, False);
|
|
}
|
|
|
|
static void
|
|
destroynotify(XEvent *e) {
|
|
Client *c;
|
|
XDestroyWindowEvent *ev = &e->xdestroywindow;
|
|
|
|
if((c = client_of_win(ev->window)))
|
|
destroy_client(c);
|
|
}
|
|
|
|
static void
|
|
enternotify(XEvent *e) {
|
|
XCrossingEvent *ev = &e->xcrossing;
|
|
Client *c;
|
|
|
|
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
|
|
return;
|
|
if((c = client_of_win(ev->window))) {
|
|
Frame *f = c->sel;
|
|
Area *a = f->area;
|
|
if(a->mode == Colmax)
|
|
c = a->sel->client;
|
|
focus(c, False);
|
|
}
|
|
else if(ev->window == blz.root) {
|
|
sel_screen = True;
|
|
draw_frames();
|
|
}
|
|
}
|
|
|
|
static void
|
|
leavenotify(XEvent *e) {
|
|
XCrossingEvent *ev = &e->xcrossing;
|
|
|
|
if((ev->window == blz.root) && !ev->same_screen) {
|
|
sel_screen = True;
|
|
draw_frames();
|
|
}
|
|
}
|
|
|
|
static void
|
|
expose(XEvent *e) {
|
|
XExposeEvent *ev = &e->xexpose;
|
|
static Frame *f;
|
|
|
|
if(ev->count == 0) {
|
|
if(ev->window == screen->barwin)
|
|
draw_bar(screen);
|
|
else if((f = frame_of_win(ev->window)) && f->view == screen->sel)
|
|
draw_frame(f);
|
|
}
|
|
}
|
|
|
|
static void
|
|
keypress(XEvent *e) {
|
|
XKeyEvent *ev = &e->xkey;
|
|
KeySym k = 0;
|
|
char buf[32];
|
|
int n;
|
|
static Frame *f;
|
|
|
|
|
|
ev->state &= valid_mask;
|
|
if((f = frame_of_win(ev->window))) {
|
|
buf[0] = 0;
|
|
n = XLookupString(ev, buf, sizeof(buf), &k, 0);
|
|
if(IsFunctionKey(k) || IsKeypadKey(k) || IsMiscFunctionKey(k)
|
|
|| IsPFKey(k) || IsPrivateKeypadKey(k))
|
|
return;
|
|
buf[n] = 0;
|
|
}
|
|
else
|
|
kpress(blz.root, ev->state, (KeyCode) ev->keycode);
|
|
}
|
|
|
|
static void
|
|
mappingnotify(XEvent *e) {
|
|
XMappingEvent *ev = &e->xmapping;
|
|
|
|
XRefreshKeyboardMapping(ev);
|
|
if(ev->request == MappingKeyboard)
|
|
update_keys();
|
|
}
|
|
|
|
static void
|
|
maprequest(XEvent *e) {
|
|
XMapRequestEvent *ev = &e->xmaprequest;
|
|
static XWindowAttributes wa;
|
|
|
|
if(!XGetWindowAttributes(blz.dpy, ev->window, &wa))
|
|
return;
|
|
if(wa.override_redirect) {
|
|
XSelectInput(blz.dpy, ev->window,
|
|
(StructureNotifyMask | PropertyChangeMask));
|
|
return;
|
|
}
|
|
if(!client_of_win(ev->window))
|
|
manage_client(create_client(ev->window, &wa));
|
|
}
|
|
|
|
static void
|
|
propertynotify(XEvent *e) {
|
|
XPropertyEvent *ev = &e->xproperty;
|
|
Client *c;
|
|
|
|
if(ev->state == PropertyDelete)
|
|
return; /* ignore */
|
|
if((c = client_of_win(ev->window)))
|
|
prop_client(c, ev);
|
|
}
|
|
|
|
static void
|
|
unmapnotify(XEvent *e) {
|
|
Client *c;
|
|
XUnmapEvent *ev = &e->xunmap;
|
|
|
|
if((c = client_of_win(ev->window)))
|
|
destroy_client(c);
|
|
}
|