2005-11-18 18:54:58 +03:00
|
|
|
/*
|
2006-01-20 17:20:24 +03: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
|
|
|
|
#include "wm.h"
|
|
|
|
|
|
|
|
/* local functions */
|
2005-12-05 01:45:59 +03:00
|
|
|
static void handle_buttonpress(XEvent * e);
|
|
|
|
static void handle_configurerequest(XEvent * e);
|
|
|
|
static void handle_destroynotify(XEvent * e);
|
|
|
|
static void handle_expose(XEvent * e);
|
2006-02-09 21:40:12 +03:00
|
|
|
static void handle_keypress(XEvent * e);
|
|
|
|
static void handle_keymapnotify(XEvent * e);
|
2005-12-05 01:45:59 +03:00
|
|
|
static void handle_maprequest(XEvent * e);
|
|
|
|
static void handle_motionnotify(XEvent * e);
|
|
|
|
static void handle_propertynotify(XEvent * e);
|
|
|
|
static void handle_unmapnotify(XEvent * e);
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2005-12-05 01:45:59 +03:00
|
|
|
void (*handler[LASTEvent]) (XEvent *);
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
2006-02-02 18:44:45 +03:00
|
|
|
init_x_event_handler()
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
int i;
|
|
|
|
/* init event handler */
|
|
|
|
for(i = 0; i < LASTEvent; i++) {
|
|
|
|
handler[i] = 0;
|
|
|
|
}
|
|
|
|
handler[ButtonPress] = handle_buttonpress;
|
|
|
|
handler[ConfigureRequest] = handle_configurerequest;
|
|
|
|
handler[DestroyNotify] = handle_destroynotify;
|
|
|
|
handler[Expose] = handle_expose;
|
2006-02-09 21:40:12 +03:00
|
|
|
handler[KeyPress] = handle_keypress;
|
|
|
|
handler[KeymapNotify] = handle_keymapnotify;
|
2005-12-21 18:18:11 +03:00
|
|
|
handler[MapRequest] = handle_maprequest;
|
|
|
|
handler[MotionNotify] = handle_motionnotify;
|
|
|
|
handler[PropertyNotify] = handle_propertynotify;
|
|
|
|
handler[UnmapNotify] = handle_unmapnotify;
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
void
|
2006-02-03 20:11:22 +03:00
|
|
|
check_x_event(IXPConn *c)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
XEvent ev;
|
|
|
|
while(XPending(dpy)) { /* main evet loop */
|
|
|
|
XNextEvent(dpy, &ev);
|
|
|
|
if(handler[ev.type])
|
|
|
|
(handler[ev.type]) (&ev); /* call handler */
|
|
|
|
}
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-02-09 21:40:12 +03:00
|
|
|
handle_buttonpress(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
Client *c;
|
|
|
|
XButtonPressedEvent *ev = &e->xbutton;
|
2006-02-02 15:20:07 +03:00
|
|
|
static char buf[32];
|
2006-03-10 20:35:00 +03:00
|
|
|
if(ev->window == barwin) {
|
2006-03-01 13:55:46 +03:00
|
|
|
unsigned int i;
|
2006-02-10 17:59:30 +03:00
|
|
|
for(i = 0; i < nlabel; i++)
|
|
|
|
if(blitz_ispointinrect(ev->x, ev->y, &label[i]->rect)) {
|
2006-03-10 23:42:39 +03:00
|
|
|
snprintf(buf, sizeof(buf), "LabelClick %s %d\n", label[i]->name, ev->button);
|
2006-02-16 13:53:10 +03:00
|
|
|
write_event(buf);
|
2006-03-09 18:23:18 +03:00
|
|
|
return;
|
2006-02-10 00:48:01 +03:00
|
|
|
}
|
|
|
|
}
|
2006-03-01 09:51:04 +03:00
|
|
|
else if((c = win2clientframe(ev->window))) {
|
2006-01-26 14:56:28 +03:00
|
|
|
if(ev->button == Button1) {
|
2006-03-22 19:08:21 +03:00
|
|
|
Align align = xy2align(&c->rect, ev->x, ev->y);
|
2006-02-06 11:20:23 +03:00
|
|
|
if(sel_client() != c) {
|
2006-02-28 10:51:53 +03:00
|
|
|
focus(c);
|
2006-02-06 11:20:23 +03:00
|
|
|
return;
|
|
|
|
}
|
2006-01-26 14:39:20 +03:00
|
|
|
if(align == CENTER)
|
|
|
|
mouse_move(c);
|
2006-02-03 21:00:00 +03:00
|
|
|
else
|
2006-01-26 14:39:20 +03:00
|
|
|
mouse_resize(c, align);
|
|
|
|
}
|
2006-03-07 01:55:47 +03:00
|
|
|
if(c->nframe) {
|
2006-03-10 23:42:39 +03:00
|
|
|
snprintf(buf, sizeof(buf), "ClientClick %d %d\n", frame2index(c->frame[c->sel]) + 1, ev->button);
|
2006-02-16 13:53:10 +03:00
|
|
|
write_event(buf);
|
2006-02-12 00:36:25 +03:00
|
|
|
}
|
2006-01-26 14:39:20 +03:00
|
|
|
}
|
2006-03-01 09:51:04 +03:00
|
|
|
else if((c = win2client(ev->window))) {
|
2006-01-13 15:24:55 +03:00
|
|
|
ev->state &= valid_mask;
|
|
|
|
if(ev->state & Mod1Mask) {
|
2006-03-22 19:08:21 +03:00
|
|
|
Align align = xy2align(&c->rect, ev->x, ev->y);
|
2006-01-13 15:24:55 +03:00
|
|
|
switch (ev->button) {
|
|
|
|
case Button1:
|
2006-02-28 10:51:53 +03:00
|
|
|
focus(c);
|
2006-02-28 20:13:28 +03:00
|
|
|
mouse_move(c);
|
2006-01-13 15:24:55 +03:00
|
|
|
break;
|
|
|
|
case Button3:
|
2006-02-28 10:51:53 +03:00
|
|
|
focus(c);
|
2006-01-13 15:24:55 +03:00
|
|
|
if(align == CENTER)
|
2006-01-26 14:56:28 +03:00
|
|
|
mouse_move(c);
|
2006-01-13 15:24:55 +03:00
|
|
|
else
|
2006-01-26 14:56:28 +03:00
|
|
|
mouse_resize(c, align);
|
2006-01-13 15:24:55 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-02-04 21:55:37 +03:00
|
|
|
else if(ev->button == Button1)
|
2006-02-28 10:51:53 +03:00
|
|
|
focus(c);
|
2006-02-12 00:36:25 +03:00
|
|
|
|
2006-03-07 01:55:47 +03:00
|
|
|
if(c->nframe) {
|
2006-03-10 23:42:39 +03:00
|
|
|
snprintf(buf, sizeof(buf), "ClientClick %d %d\n", frame2index(c->frame[c->sel]) + 1, ev->button);
|
2006-02-16 13:53:10 +03:00
|
|
|
write_event(buf);
|
2006-02-12 00:36:25 +03:00
|
|
|
}
|
2006-02-03 21:00:00 +03:00
|
|
|
}
|
2006-02-12 00:36:25 +03:00
|
|
|
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-02-06 11:20:23 +03:00
|
|
|
handle_configurerequest(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
XConfigureRequestEvent *ev = &e->xconfigurerequest;
|
|
|
|
XWindowChanges wc;
|
|
|
|
Client *c;
|
|
|
|
|
2006-03-01 09:51:04 +03:00
|
|
|
c = win2client(ev->window);
|
2006-02-07 19:55:33 +03:00
|
|
|
ev->value_mask &= ~CWSibling;
|
2005-12-21 18:18:11 +03:00
|
|
|
|
|
|
|
if(c) {
|
2006-03-05 02:38:40 +03:00
|
|
|
gravitate(c, True);
|
2005-12-21 18:18:11 +03:00
|
|
|
|
2006-03-12 02:35:15 +03:00
|
|
|
if(c->frame && (area2index(c->frame[c->sel]->area) == 0)) {
|
|
|
|
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;
|
|
|
|
}
|
2005-12-21 18:18:11 +03:00
|
|
|
if(ev->value_mask & CWBorderWidth)
|
|
|
|
c->border = ev->border_width;
|
|
|
|
|
2006-03-05 02:38:40 +03:00
|
|
|
gravitate(c, False);
|
2005-12-21 18:18:11 +03:00
|
|
|
|
2006-03-07 01:55:47 +03:00
|
|
|
if(c->nframe) {
|
|
|
|
Frame *f = c->frame[c->sel];
|
2006-03-05 03:55:45 +03:00
|
|
|
f->rect.x = wc.x = c->rect.x - def.border;
|
|
|
|
f->rect.y = wc.y = c->rect.y - bar_height();
|
|
|
|
f->rect.width = wc.width = c->rect.width + 2 * def.border;
|
|
|
|
f->rect.height = wc.height = c->rect.height + def.border + bar_height();
|
2005-12-21 18:18:11 +03:00
|
|
|
wc.border_width = 1;
|
2006-02-07 19:55:33 +03:00
|
|
|
wc.sibling = None;
|
|
|
|
wc.stack_mode = ev->detail;
|
2006-03-11 12:09:04 +03:00
|
|
|
if(f->area->tag != tag[sel])
|
|
|
|
f->rect.x += 2 * rect.width;
|
2006-03-05 02:25:49 +03:00
|
|
|
XConfigureWindow(dpy, c->framewin, ev->value_mask, &wc);
|
2005-12-21 18:18:11 +03:00
|
|
|
configure_client(c);
|
|
|
|
}
|
|
|
|
}
|
2006-02-06 11:20:23 +03:00
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
wc.x = ev->x;
|
|
|
|
wc.y = ev->y;
|
|
|
|
wc.width = ev->width;
|
|
|
|
wc.height = ev->height;
|
2006-03-12 02:35:15 +03:00
|
|
|
|
|
|
|
if(c && c->frame) {
|
|
|
|
wc.x = def.border;
|
|
|
|
wc.y = bar_height();
|
|
|
|
if(area2index(c->frame[c->sel]->area) > 0) {
|
|
|
|
wc.width = c->rect.width;
|
|
|
|
wc.height = c->rect.height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
wc.border_width = 0;
|
2006-02-07 19:55:33 +03:00
|
|
|
wc.sibling = None;
|
|
|
|
wc.stack_mode = Above;
|
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-02-06 15:11:34 +03:00
|
|
|
XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
|
2005-12-21 18:18:11 +03:00
|
|
|
XSync(dpy, False);
|
2005-11-18 18:54:58 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-02-09 21:40:12 +03:00
|
|
|
handle_destroynotify(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2006-03-09 22:25:50 +03:00
|
|
|
Client *c;
|
2005-12-21 18:18:11 +03:00
|
|
|
XDestroyWindowEvent *ev = &e->xdestroywindow;
|
2006-03-09 22:25:50 +03:00
|
|
|
|
|
|
|
if((c = win2client(ev->window)))
|
|
|
|
destroy_client(c);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-02-09 21:40:12 +03:00
|
|
|
handle_expose(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2006-02-10 00:48:01 +03:00
|
|
|
XExposeEvent *ev = &e->xexpose;
|
2006-01-26 14:56:28 +03:00
|
|
|
static Client *c;
|
2006-02-10 00:48:01 +03:00
|
|
|
if(ev->count == 0) {
|
2006-03-10 20:35:00 +03:00
|
|
|
if(ev->window == barwin)
|
2006-02-10 00:48:01 +03:00
|
|
|
draw_bar();
|
2006-03-08 18:05:09 +03:00
|
|
|
else if((c = win2clientframe(ev->window)))
|
2006-01-26 14:56:28 +03:00
|
|
|
draw_client(c);
|
2005-12-21 18:18:11 +03:00
|
|
|
}
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-02-09 21:40:12 +03:00
|
|
|
handle_keypress(XEvent *e)
|
|
|
|
{
|
|
|
|
XKeyEvent *ev = &e->xkey;
|
|
|
|
ev->state &= valid_mask;
|
|
|
|
handle_key(root, ev->state, (KeyCode) ev->keycode);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_keymapnotify(XEvent *e)
|
|
|
|
{
|
2006-03-10 18:21:20 +03:00
|
|
|
update_keys();
|
2006-02-09 21:40:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_maprequest(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
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-01-26 17:24:34 +03:00
|
|
|
/* there're client which send map requests twice */
|
2006-03-09 01:53:52 +03:00
|
|
|
if(!win2client(ev->window))
|
|
|
|
manage_client(alloc_client(ev->window, &wa));
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-02-09 21:40:12 +03:00
|
|
|
handle_motionnotify(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2006-03-01 09:51:04 +03:00
|
|
|
Client *c = win2clientframe(e->xmotion.window);
|
2006-01-26 14:56:28 +03:00
|
|
|
if(c) {
|
2006-03-22 18:25:24 +03:00
|
|
|
Cursor cur = cursor4motion(c, e->xmotion.x, e->xmotion.y);
|
2006-03-22 19:08:21 +03:00
|
|
|
if(cur == cursor[CurUnknown])
|
2006-03-22 18:25:24 +03:00
|
|
|
XUndefineCursor(dpy, c->framewin);
|
|
|
|
else
|
2006-03-12 02:20:47 +03:00
|
|
|
XDefineCursor(dpy, c->framewin, cur);
|
2005-12-21 18:18:11 +03:00
|
|
|
}
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-02-09 21:40:12 +03:00
|
|
|
handle_propertynotify(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
XPropertyEvent *ev = &e->xproperty;
|
|
|
|
Client *c;
|
2005-12-12 21:06:10 +03:00
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
if(ev->state == PropertyDelete)
|
|
|
|
return; /* ignore */
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2006-03-01 09:51:04 +03:00
|
|
|
if((c = win2client(ev->window)))
|
2006-03-09 01:53:52 +03:00
|
|
|
update_client_property(c, ev);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:11 +03:00
|
|
|
static void
|
2006-02-09 21:40:12 +03:00
|
|
|
handle_unmapnotify(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
2005-12-21 18:18:11 +03:00
|
|
|
Client *c;
|
2006-03-09 22:25:50 +03:00
|
|
|
XUnmapEvent *ev = &e->xunmap;
|
|
|
|
|
2006-03-06 19:22:54 +03:00
|
|
|
if((c = win2client(ev->window)))
|
2006-03-09 22:25:50 +03:00
|
|
|
destroy_client(c);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|