2006-10-12 18:10:57 +04:00
|
|
|
/* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
2005-11-18 18:54:58 +03:00
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
2006-10-20 12:07:55 +04:00
|
|
|
#include "wmii.h"
|
2005-11-18 18:54:58 +03:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <X11/keysym.h>
|
2007-02-15 07:20:47 +03:00
|
|
|
#include "printevent.h"
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2007-02-12 09:24:24 +03:00
|
|
|
uint
|
2006-10-12 18:10:57 +04:00
|
|
|
flush_masked_events(long even_mask) {
|
2006-04-25 17:48:33 +04:00
|
|
|
XEvent ev;
|
2007-02-12 09:24:24 +03:00
|
|
|
uint n = 0;
|
2006-07-03 20:41:14 +04:00
|
|
|
while(XCheckMaskEvent(blz.dpy, even_mask, &ev)) n++;
|
2006-05-01 22:40:33 +04:00
|
|
|
return n;
|
2006-04-25 17:48:33 +04:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
buttonrelease(XEvent *e) {
|
2006-06-28 10:20:17 +04:00
|
|
|
Frame *f;
|
2006-06-08 12:54:19 +04:00
|
|
|
Bar *b;
|
2006-03-23 16:22:43 +03:00
|
|
|
XButtonPressedEvent *ev = &e->xbutton;
|
2006-06-30 04:02:52 +04:00
|
|
|
if(ev->window == screen->barwin) {
|
|
|
|
for(b=screen->lbar; b; b=b->next)
|
2006-10-30 11:54:22 +03:00
|
|
|
if(ispointinrect(ev->x, ev->y, &b->brush.rect)) {
|
|
|
|
write_event("LeftBarClick %d %s\n",
|
2006-06-23 08:37:59 +04:00
|
|
|
ev->button, b->name);
|
2006-10-30 11:54:22 +03:00
|
|
|
return;
|
|
|
|
}
|
2006-06-30 04:02:52 +04:00
|
|
|
for(b=screen->rbar; b; b=b->next)
|
2006-10-30 11:54:22 +03:00
|
|
|
if(ispointinrect(ev->x, ev->y, &b->brush.rect)) {
|
|
|
|
write_event("RightBarClick %d %s\n",
|
2006-06-23 08:37:59 +04:00
|
|
|
ev->button, b->name);
|
2006-10-30 11:54:22 +03:00
|
|
|
return;
|
|
|
|
}
|
2006-02-10 00:48:01 +03:00
|
|
|
}
|
2007-02-10 00:42:03 +03:00
|
|
|
else if((f = frame_of_win(ev->window)))
|
2007-02-02 19:43:22 +03:00
|
|
|
write_event("ClientClick 0x%x %d\n", f->client->win, ev->button);
|
2006-04-25 20:51:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
buttonpress(XEvent *e) {
|
2006-06-28 10:20:17 +04:00
|
|
|
Frame *f;
|
2007-02-10 00:27:10 +03:00
|
|
|
Bool inclient;
|
|
|
|
XButtonPressedEvent *ev;
|
|
|
|
|
|
|
|
ev = &e->xbutton;
|
2006-06-28 10:20:17 +04:00
|
|
|
if((f = frame_of_win(ev->window))) {
|
2007-02-10 00:42:03 +03:00
|
|
|
inclient = (ev->subwindow == f->client->win);
|
2006-07-06 16:11:09 +04:00
|
|
|
if((ev->state & def.mod) == def.mod) {
|
2006-05-04 16:34:44 +04:00
|
|
|
switch(ev->button) {
|
|
|
|
case Button1:
|
2007-02-10 23:13:35 +03:00
|
|
|
do_mouse_resize(f->client, False, CENTER);
|
2007-02-09 04:39:10 +03:00
|
|
|
focus(f->client, True);
|
|
|
|
frame_to_top(f);
|
|
|
|
focus(f->client, True);
|
2006-05-04 16:34:44 +04:00
|
|
|
break;
|
|
|
|
case Button3:
|
2007-02-10 23:13:35 +03:00
|
|
|
do_mouse_resize(f->client, False,
|
2007-02-05 09:54:39 +03:00
|
|
|
quadofcoord(&f->client->rect, ev->x, ev->y));
|
2007-02-09 04:39:10 +03:00
|
|
|
frame_to_top(f);
|
|
|
|
focus(f->client, True);
|
2007-02-10 02:07:59 +03:00
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
XAllowEvents(blz.dpy, ReplayPointer, CurrentTime);
|
2006-01-13 15:24:55 +03:00
|
|
|
}
|
2007-02-08 06:04:18 +03:00
|
|
|
}else{
|
2007-02-08 07:23:18 +03:00
|
|
|
if(ev->button == Button1) {
|
2007-02-10 02:16:15 +03:00
|
|
|
if(frame_to_top(f))
|
|
|
|
restack_view(f->view);
|
2007-02-10 19:53:27 +03:00
|
|
|
if(ispointinrect(ev->x, ev->y, &f->grabbox.rect))
|
2007-02-10 23:13:35 +03:00
|
|
|
do_mouse_resize(f->client, True, CENTER);
|
2007-02-15 07:20:47 +03:00
|
|
|
else if(!ev->subwindow
|
|
|
|
&& !ispointinrect(ev->x, ev->y, &f->titlebar.rect))
|
2007-02-10 23:13:35 +03:00
|
|
|
do_mouse_resize(f->client, False,
|
2007-02-10 19:53:27 +03:00
|
|
|
quadofcoord(&f->client->rect, ev->x, ev->y));
|
2007-02-10 02:16:15 +03:00
|
|
|
if(f->client != sel_client())
|
|
|
|
focus(f->client, True);
|
2007-02-08 07:23:18 +03:00
|
|
|
}
|
2007-02-10 02:10:50 +03:00
|
|
|
XAllowEvents(blz.dpy, ReplayPointer, CurrentTime);
|
2006-01-13 15:24:55 +03:00
|
|
|
}
|
2007-02-10 00:27:10 +03:00
|
|
|
}else
|
2007-02-10 02:07:59 +03:00
|
|
|
XAllowEvents(blz.dpy, ReplayPointer, CurrentTime);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
configurerequest(XEvent *e) {
|
2006-03-23 16:22:43 +03:00
|
|
|
XConfigureRequestEvent *ev = &e->xconfigurerequest;
|
|
|
|
XWindowChanges wc;
|
2006-06-26 06:18:00 +04:00
|
|
|
XRectangle *frect;
|
2006-03-23 16:22:43 +03:00
|
|
|
Client *c;
|
2005-12-21 18:18:11 +03:00
|
|
|
|
2006-04-12 12:44:07 +04:00
|
|
|
c = client_of_win(ev->window);
|
2007-02-13 02:18:00 +03:00
|
|
|
wc.x = ev->x;
|
|
|
|
wc.y = ev->y;
|
|
|
|
wc.width = ev->width;
|
|
|
|
wc.height = ev->height;
|
|
|
|
|
2007-02-15 07:20:47 +03:00
|
|
|
ev->value_mask &= ~(CWSibling|CWStackMode);
|
2006-03-23 16:22:43 +03:00
|
|
|
if(c) {
|
2006-06-26 06:18:00 +04:00
|
|
|
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;
|
2007-02-13 02:18:00 +03:00
|
|
|
|
|
|
|
frect->y = -labelh(&def.font);
|
|
|
|
frect->x = -def.border;
|
|
|
|
frect->width = c->rect.width + 2 * def.border;
|
|
|
|
frect->height = c->rect.height + def.border + labelh(&def.font);
|
|
|
|
|
2006-06-26 06:18:00 +04:00
|
|
|
wc.border_width = 1;
|
|
|
|
wc.stack_mode = ev->detail;
|
2007-02-13 02:18:00 +03:00
|
|
|
if(c->sel->area->floating)
|
|
|
|
resize_client(c, frect);
|
|
|
|
wc.x = frect->x + labelh(&def.font);
|
|
|
|
wc.y = frect->y + def.border;
|
|
|
|
wc.width = frect->width - 2 * def.border;
|
|
|
|
wc.height = frect->height - def.border - labelh(&def.font);
|
2006-03-23 16:22:43 +03:00
|
|
|
}
|
|
|
|
}
|
2007-02-13 02:18:00 +03:00
|
|
|
|
2006-02-06 15:11:34 +03:00
|
|
|
ev->value_mask &= ~CWStackMode;
|
2006-02-07 19:55:33 +03:00
|
|
|
ev->value_mask |= CWBorderWidth;
|
2006-07-03 20:41:14 +04:00
|
|
|
XConfigureWindow(blz.dpy, ev->window, ev->value_mask, &wc);
|
|
|
|
XSync(blz.dpy, False);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
destroynotify(XEvent *e) {
|
2006-03-23 16:22:43 +03:00
|
|
|
Client *c;
|
|
|
|
XDestroyWindowEvent *ev = &e->xdestroywindow;
|
2006-03-09 22:25:50 +03:00
|
|
|
|
2006-04-12 12:44:07 +04:00
|
|
|
if((c = client_of_win(ev->window)))
|
2006-03-09 22:25:50 +03:00
|
|
|
destroy_client(c);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2006-04-25 17:48:33 +04:00
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
enternotify(XEvent *e) {
|
2006-04-25 17:48:33 +04:00
|
|
|
XCrossingEvent *ev = &e->xcrossing;
|
|
|
|
Client *c;
|
|
|
|
|
|
|
|
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
|
|
|
|
return;
|
2006-04-26 10:59:55 +04:00
|
|
|
if((c = client_of_win(ev->window))) {
|
2007-02-06 10:12:47 +03:00
|
|
|
if(c->sel->area->mode == Colmax)
|
|
|
|
c = c->sel->area->sel->client;
|
2006-06-16 10:52:13 +04:00
|
|
|
focus(c, False);
|
|
|
|
}
|
2006-06-22 13:03:42 +04:00
|
|
|
else if(ev->window == blz.root) {
|
2006-06-16 10:52:13 +04:00
|
|
|
sel_screen = True;
|
2006-06-20 16:32:19 +04:00
|
|
|
draw_frames();
|
2006-06-16 10:52:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
leavenotify(XEvent *e) {
|
2006-06-16 10:52:13 +04:00
|
|
|
XCrossingEvent *ev = &e->xcrossing;
|
|
|
|
|
2006-06-22 13:03:42 +04:00
|
|
|
if((ev->window == blz.root) && !ev->same_screen) {
|
2006-06-16 10:52:13 +04:00
|
|
|
sel_screen = True;
|
2006-06-20 16:32:19 +04:00
|
|
|
draw_frames();
|
2006-04-25 17:48:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
expose(XEvent *e) {
|
2006-02-10 00:48:01 +03:00
|
|
|
XExposeEvent *ev = &e->xexpose;
|
2006-06-28 10:20:17 +04:00
|
|
|
static Frame *f;
|
2006-06-30 10:02:44 +04:00
|
|
|
|
2006-03-23 16:22:43 +03:00
|
|
|
if(ev->count == 0) {
|
2006-06-30 04:02:52 +04:00
|
|
|
if(ev->window == screen->barwin)
|
|
|
|
draw_bar(screen);
|
2006-06-30 10:02:44 +04:00
|
|
|
else if((f = frame_of_win(ev->window)) && f->view == screen->sel)
|
2006-06-28 10:20:17 +04:00
|
|
|
draw_frame(f);
|
2006-03-23 16:22:43 +03:00
|
|
|
}
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
keypress(XEvent *e) {
|
2006-02-09 21:40:12 +03:00
|
|
|
XKeyEvent *ev = &e->xkey;
|
2006-07-04 19:31:37 +04:00
|
|
|
KeySym k = 0;
|
2006-07-03 14:14:26 +04:00
|
|
|
char buf[32];
|
|
|
|
int n;
|
|
|
|
static Frame *f;
|
|
|
|
|
|
|
|
|
2006-02-09 21:40:12 +03:00
|
|
|
ev->state &= valid_mask;
|
2006-07-03 14:14:26 +04:00
|
|
|
if((f = frame_of_win(ev->window))) {
|
|
|
|
buf[0] = 0;
|
2006-07-03 14:22:46 +04:00
|
|
|
n = XLookupString(ev, buf, sizeof(buf), &k, 0);
|
2006-07-03 14:14:26 +04:00
|
|
|
if(IsFunctionKey(k) || IsKeypadKey(k) || IsMiscFunctionKey(k)
|
|
|
|
|| IsPFKey(k) || IsPrivateKeypadKey(k))
|
|
|
|
return;
|
|
|
|
buf[n] = 0;
|
|
|
|
}
|
|
|
|
else
|
2006-07-11 10:42:15 +04:00
|
|
|
kpress(blz.root, ev->state, (KeyCode) ev->keycode);
|
2006-02-09 21:40:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
mappingnotify(XEvent *e) {
|
2006-08-14 20:41:59 +04:00
|
|
|
XMappingEvent *ev = &e->xmapping;
|
|
|
|
|
|
|
|
XRefreshKeyboardMapping(ev);
|
|
|
|
if(ev->request == MappingKeyboard)
|
|
|
|
update_keys();
|
2006-02-09 21:40:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
maprequest(XEvent *e) {
|
2006-03-23 16:22:43 +03:00
|
|
|
XMapRequestEvent *ev = &e->xmaprequest;
|
|
|
|
static XWindowAttributes wa;
|
2005-12-21 18:18:11 +03:00
|
|
|
|
2006-07-03 20:41:14 +04:00
|
|
|
if(!XGetWindowAttributes(blz.dpy, ev->window, &wa))
|
2006-03-23 16:22:43 +03:00
|
|
|
return;
|
|
|
|
if(wa.override_redirect) {
|
2006-07-03 20:41:14 +04:00
|
|
|
XSelectInput(blz.dpy, ev->window,
|
2006-03-23 16:22:43 +03:00
|
|
|
(StructureNotifyMask | PropertyChangeMask));
|
|
|
|
return;
|
|
|
|
}
|
2006-04-12 12:44:07 +04:00
|
|
|
if(!client_of_win(ev->window))
|
|
|
|
manage_client(create_client(ev->window, &wa));
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
propertynotify(XEvent *e) {
|
2006-03-23 16:22:43 +03:00
|
|
|
XPropertyEvent *ev = &e->xproperty;
|
|
|
|
Client *c;
|
2005-12-12 21:06:10 +03:00
|
|
|
|
2006-03-23 16:22:43 +03:00
|
|
|
if(ev->state == PropertyDelete)
|
|
|
|
return; /* ignore */
|
2006-04-12 12:44:07 +04:00
|
|
|
if((c = client_of_win(ev->window)))
|
|
|
|
prop_client(c, ev);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-10-12 18:10:57 +04:00
|
|
|
unmapnotify(XEvent *e) {
|
2006-03-23 16:22:43 +03:00
|
|
|
Client *c;
|
|
|
|
XUnmapEvent *ev = &e->xunmap;
|
2006-03-09 22:25:50 +03:00
|
|
|
|
2006-04-12 12:44:07 +04:00
|
|
|
if((c = client_of_win(ev->window)))
|
2007-02-10 06:06:07 +03:00
|
|
|
if(!c->unmapped--)
|
|
|
|
destroy_client(c);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
2007-02-09 05:26:45 +03:00
|
|
|
|
2007-02-15 07:20:47 +03:00
|
|
|
static void
|
|
|
|
focusin(XEvent *e) {
|
|
|
|
#if 0
|
|
|
|
Client *c;
|
|
|
|
XFocusChangeEvent *ev = &e->xfocus;
|
|
|
|
|
|
|
|
c = client_of_win(ev->window);
|
|
|
|
if(ev->mode == NotifyGrab) {
|
|
|
|
screen->focus = nil;
|
|
|
|
if(!c)
|
|
|
|
focus_client(nil);
|
|
|
|
else
|
|
|
|
focus(c, False);
|
|
|
|
}if(ev->mode == NotifyUngrab) {
|
|
|
|
if(c)
|
|
|
|
focus(c, False);
|
|
|
|
screen->focus = c;
|
|
|
|
}else if(c) {
|
|
|
|
screen->focus = c;
|
|
|
|
if(c != sel_client()) {
|
|
|
|
focus_client(sel_client());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
focusout(XEvent *e) {
|
|
|
|
#if 0
|
|
|
|
Client *c;
|
|
|
|
XFocusChangeEvent *ev = &e->xfocus;
|
|
|
|
|
|
|
|
c = client_of_win(ev->window);
|
|
|
|
if(ev->mode == NotifyUngrab
|
|
|
|
|| ev->mode == NotifyGrab)
|
|
|
|
return;
|
|
|
|
else if(c) {
|
|
|
|
screen->focus = c;
|
|
|
|
/* Don't let clients grab focus */
|
|
|
|
if(c != sel_client()) {
|
|
|
|
focus_client(sel_client());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-02-09 05:26:45 +03:00
|
|
|
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,
|
2007-02-15 07:20:47 +03:00
|
|
|
[UnmapNotify] = unmapnotify,
|
|
|
|
[FocusIn] = focusin,
|
|
|
|
[FocusOut] = focusout
|
2007-02-09 05:26:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
check_x_event(IXPConn *c) {
|
|
|
|
XEvent ev;
|
|
|
|
while(XPending(blz.dpy)) { /* main event loop */
|
|
|
|
XNextEvent(blz.dpy, &ev);
|
2007-02-15 07:20:47 +03:00
|
|
|
if(verbose)
|
|
|
|
printevent(&ev);
|
2007-02-09 05:26:45 +03:00
|
|
|
if(handler[ev.type])
|
|
|
|
(handler[ev.type]) (&ev); /* call handler */
|
|
|
|
}
|
|
|
|
}
|