wmii/cmd/wm/event.c

298 lines
6.5 KiB
C
Raw Normal View History

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_buttonrelease(XEvent * e);
2005-12-05 01:45:59 +03:00
static void handle_configurerequest(XEvent * e);
static void handle_destroynotify(XEvent * e);
static void handle_enternotify(XEvent * e);
2005-12-05 01:45:59 +03:00
static void handle_expose(XEvent * e);
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_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
init_x_event_handler()
2005-11-18 18:54:58 +03:00
{
int i;
/* init event handler */
for(i = 0; i < LASTEvent; i++)
handler[i] = nil;
handler[ButtonPress] = handle_buttonpress;
handler[ButtonRelease] = handle_buttonrelease;
handler[ConfigureRequest] = handle_configurerequest;
handler[DestroyNotify] = handle_destroynotify;
handler[EnterNotify] = handle_enternotify;
handler[Expose] = handle_expose;
handler[KeyPress] = handle_keypress;
handler[KeymapNotify] = handle_keymapnotify;
handler[MapRequest] = handle_maprequest;
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
{
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
}
unsigned int
flush_masked_events(long even_mask)
{
XEvent ev;
unsigned int n = 0;
while(XCheckMaskEvent(dpy, even_mask, &ev)) n++;
return n;
}
2005-12-21 18:18:11 +03:00
static void
handle_buttonrelease(XEvent *e)
2005-11-18 18:54:58 +03:00
{
Client *c;
XButtonPressedEvent *ev = &e->xbutton;
static char buf[32];
if(ev->window == barwin) {
unsigned int i;
2006-04-13 18:52:33 +04:00
for(i = 0; i < bar.size; i++)
if(blitz_ispointinrect(ev->x, ev->y, &bar.data[i]->rect)) {
2006-04-12 12:44:07 +04:00
snprintf(buf, sizeof(buf), "BarClick %s %d\n",
2006-04-13 18:52:33 +04:00
bar.data[i]->name, ev->button);
write_event(buf);
2006-03-09 18:23:18 +03:00
return;
}
}
else if((c = frame_of_win(ev->window)) && c->frame.size) {
snprintf(buf, sizeof(buf), "ClientClick %d %d\n",
idx_of_client_id(c->id), ev->button);
write_event(buf);
}
}
static void
handle_buttonpress(XEvent *e)
{
Client *c;
XButtonPressedEvent *ev = &e->xbutton;
if((c = frame_of_win(ev->window))) {
ev->state &= valid_mask;
2006-04-14 11:40:18 +04:00
if(ev->state & def.mod) {
2006-05-05 02:06:27 +04:00
if((ev->button == Button1 || ev->button == Button2 || ev->button == Button3))
focus(c, True);
switch(ev->button) {
case Button1:
do_mouse_move(c, False);
break;
case Button2:
if(idx_of_area(c->frame.data[c->sel]->area))
do_mouse_move(c, True);
break;
case Button3:
{
BlitzAlign align = blitz_align_of_rect(&c->rect, ev->x, ev->y);
if(align != CENTER)
do_mouse_resize(c, align);
else
do_mouse_move(c, False);
}
default:
break;
}
}
else if(ev->button == Button1)
focus(c, True);
2006-02-03 21:00:00 +03:00
}
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
static void
handle_configurerequest(XEvent *e)
2005-11-18 18:54:58 +03:00
{
XConfigureRequestEvent *ev = &e->xconfigurerequest;
XWindowChanges wc;
Client *c;
2005-12-21 18:18:11 +03:00
2006-04-12 12:44:07 +04:00
c = client_of_win(ev->window);
ev->value_mask &= ~CWSibling;
if(c) {
if(c->frame.size && !idx_of_area(c->frame.data[c->sel]->area)) {
gravitate_client(c, True);
if(c->frame.size) {
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.size) {
Frame *f = c->frame.data[c->sel];
if(c->rect.width >= rect.width && c->rect.height >= rect.height) {
f->rect.y = wc.y = -height_of_bar();
2006-05-10 17:24:09 +04:00
f->rect.x = wc.x = -def.border;
}
else {
f->rect.x = wc.x = c->rect.x - def.border;
f->rect.y = wc.y = c->rect.y - height_of_bar();
}
f->rect.width = wc.width = c->rect.width + 2 * def.border;
f->rect.height = wc.height = c->rect.height + def.border
+ height_of_bar();
wc.border_width = 1;
wc.sibling = None;
wc.stack_mode = ev->detail;
if(f->area->view != view.data[sel])
f->rect.x += 2 * rect.width;
XConfigureWindow(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.size) {
wc.x = def.border;
2006-04-12 12:44:07 +04:00
wc.y = height_of_bar();
wc.width = c->rect.width;
wc.height = c->rect.height;
}
wc.border_width = 0;
wc.sibling = None;
wc.stack_mode = Above;
2006-02-06 15:11:34 +03:00
ev->value_mask &= ~CWStackMode;
ev->value_mask |= CWBorderWidth;
XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
XSync(dpy, False);
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
static void
handle_destroynotify(XEvent *e)
2005-11-18 18:54:58 +03:00
{
Client *c;
XDestroyWindowEvent *ev = &e->xdestroywindow;
2006-04-12 12:44:07 +04:00
if((c = client_of_win(ev->window)))
destroy_client(c);
2005-11-18 18:54:58 +03:00
}
static void
handle_enternotify(XEvent *e)
{
XCrossingEvent *ev = &e->xcrossing;
Client *c;
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
return;
if((c = client_of_win(ev->window))) {
2006-04-28 17:03:01 +04:00
Client *old = sel_client_of_view(view.data[sel]);
2006-05-06 23:48:49 +04:00
Frame *f = c->frame.data[c->sel];
Area *a = f->area;
if(a->mode == Colmax)
c = a->frame.data[a->sel]->client;
2006-04-28 17:03:01 +04:00
if(c != old)
focus(c, False);
}
}
2005-12-21 18:18:11 +03:00
static void
handle_expose(XEvent *e)
2005-11-18 18:54:58 +03:00
{
XExposeEvent *ev = &e->xexpose;
static Client *c;
if(ev->count == 0) {
if(ev->window == barwin)
draw_bar();
2006-04-12 12:44:07 +04:00
else if((c = frame_of_win(ev->window)))
draw_client(c);
}
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
static void
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)
{
update_keys();
}
static void
handle_maprequest(XEvent *e)
2005-11-18 18:54:58 +03:00
{
XMapRequestEvent *ev = &e->xmaprequest;
static XWindowAttributes wa;
2005-12-21 18:18:11 +03:00
if(!XGetWindowAttributes(dpy, ev->window, &wa))
return;
if(wa.override_redirect) {
XSelectInput(dpy, ev->window,
(StructureNotifyMask | PropertyChangeMask));
return;
}
2005-12-21 18:18:11 +03:00
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
handle_propertynotify(XEvent *e)
2005-11-18 18:54:58 +03:00
{
XPropertyEvent *ev = &e->xproperty;
Client *c;
2005-12-12 21:06:10 +03:00
if(ev->state == PropertyDelete)
return; /* ignore */
2005-11-18 18:54:58 +03:00
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
handle_unmapnotify(XEvent *e)
2005-11-18 18:54:58 +03:00
{
Client *c;
XUnmapEvent *ev = &e->xunmap;
2006-04-12 12:44:07 +04:00
if((c = client_of_win(ev->window)))
destroy_client(c);
2005-11-18 18:54:58 +03:00
}