wmii/cmd/wm/event.c

264 lines
6.2 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_configurerequest(XEvent * e);
static void handle_destroynotify(XEvent * e);
static void handle_expose(XEvent * e);
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-12-27 23:13:50 +03:00
static void handle_clientmessage(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
{
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;
handler[MapRequest] = handle_maprequest;
handler[MotionNotify] = handle_motionnotify;
handler[PropertyNotify] = handle_propertynotify;
handler[UnmapNotify] = handle_unmapnotify;
2005-12-27 23:13:50 +03:00
handler[ClientMessage] = handle_clientmessage;
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
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-01-26 14:39:20 +03:00
Align align;
static char buf[32];
2006-02-03 21:00:00 +03:00
if((c = win_to_frame(ev->window))) {
2006-01-26 14:56:28 +03:00
if(ev->button == Button1) {
if(sel_client() != c) {
focus_client(c);
return;
}
2006-01-26 14:39:20 +03:00
align = cursor_to_align(c->frame.cursor);
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);
}
}
else if((c = win_to_client(ev->window))) {
ev->state &= valid_mask;
if(ev->state & Mod1Mask) {
2006-01-26 14:56:28 +03:00
XRaiseWindow(dpy, c->frame.win);
switch (ev->button) {
case Button1:
focus_client(c);
2006-01-26 14:56:28 +03:00
mouse_move(c);
break;
case Button3:
focus_client(c);
align = xy_to_align(&c->rect, ev->x, ev->y);
if(align == CENTER)
2006-01-26 14:56:28 +03:00
mouse_move(c);
else
2006-01-26 14:56:28 +03:00
mouse_resize(c, align);
break;
}
}
else if(ev->button == Button1)
focus_client(c);
2006-02-03 21:00:00 +03:00
}
if(c) {
snprintf(buf, sizeof(buf), "Button%dPress\n", ev->button);
do_pend_fcall(buf);
}
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
{
2005-12-21 18:18:11 +03:00
XConfigureRequestEvent *ev = &e->xconfigurerequest;
XWindowChanges wc;
Client *c;
2006-02-02 22:36:10 +03:00
unsigned int bw = 0, bh = 0;
2005-12-21 18:18:11 +03:00
c = win_to_client(ev->window);
if(c) {
if(c->page) {
bw = c->frame.border;
2006-02-02 22:36:10 +03:00
bh = bar_height(c);
2005-12-21 18:18:11 +03:00
}
2006-02-02 22:36:10 +03:00
gravitate(c, bh ? bh : bw, bw, 1);
2005-12-21 18:18:11 +03:00
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;
2006-02-02 22:36:10 +03:00
gravitate(c, bh ? bh : bw, bw, 0);
2005-12-21 18:18:11 +03:00
if(c->page) {
2006-01-26 14:56:28 +03:00
c->frame.rect.x = wc.x = c->rect.x - bw;
2006-02-02 22:36:10 +03:00
c->frame.rect.y = wc.y = c->rect.y - (bh ? bh : bw);
2006-01-26 14:56:28 +03:00
c->frame.rect.width = wc.width = c->rect.width + 2 * bw;
2006-02-02 22:36:10 +03:00
c->frame.rect.height = wc.height = c->rect.height + bw + (bh ? bh : bw);
2005-12-21 18:18:11 +03:00
wc.border_width = 1;
2006-01-26 14:56:28 +03:00
XConfigureWindow(dpy, c->frame.win, ev->value_mask, &wc);
2005-12-21 18:18:11 +03:00
configure_client(c);
}
}
2005-12-21 18:18:11 +03:00
wc.x = ev->x;
wc.y = ev->y;
if(c && c->page) {
2005-12-21 18:18:11 +03:00
/* if so, then bw and tabh are already initialized */
wc.x = bw;
wc.y = (bh ? bh : bw);
2005-12-21 18:18:11 +03:00
}
wc.width = ev->width;
wc.height = ev->height;
wc.border_width = 0;
ev->value_mask |= CWBorderWidth;
2006-01-26 14:56:28 +03:00
XConfigureWindow(dpy, e->xconfigurerequest.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
handle_destroynotify(XEvent * e)
2005-11-18 18:54:58 +03:00
{
2005-12-21 18:18:11 +03:00
XDestroyWindowEvent *ev = &e->xdestroywindow;
Client *c = win_to_client(ev->window);
if(c) {
c->destroyed = True;
detach_client(c, False);
}
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
static void
handle_expose(XEvent * e)
2005-11-18 18:54:58 +03:00
{
2006-01-26 14:56:28 +03:00
static Client *c;
2005-12-21 18:18:11 +03:00
if(e->xexpose.count == 0) {
2006-01-26 14:56:28 +03:00
if((c = win_to_frame(e->xbutton.window)))
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
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;
static Client *c;
if(!XGetWindowAttributes(dpy, ev->window, &wa))
return;
if(wa.override_redirect) {
XSelectInput(dpy, ev->window,
(StructureNotifyMask | PropertyChangeMask));
return;
}
/* attach heuristic support */
if(aqsz && aq[0]) {
2006-01-26 14:56:28 +03:00
focus_page(0);
cext_array_detach((void **)aq, aq[0], &aqsz);
}
2006-01-26 17:24:34 +03:00
/* there're client which send map requests twice */
2005-12-21 18:18:11 +03:00
c = win_to_client(ev->window);
if(!c)
2006-01-26 14:56:28 +03:00
c = alloc_client(ev->window, &wa);
if(!c->page)
2005-12-21 18:18:11 +03:00
attach_client(c);
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
static void
handle_motionnotify(XEvent * e)
2005-11-18 18:54:58 +03:00
{
2006-01-26 14:56:28 +03:00
Client *c = win_to_frame(e->xmotion.window);
if(c) {
Cursor cursor = cursor_for_motion(c, e->xmotion.x, e->xmotion.y);
if(cursor != c->frame.cursor) {
c->frame.cursor = cursor;
XDefineCursor(dpy, c->frame.win, cursor);
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
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
2005-12-21 18:18:11 +03:00
if((c = win_to_client(ev->window)))
handle_client_property(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
{
2005-12-21 18:18:11 +03:00
XUnmapEvent *ev = &e->xunmap;
Client *c;
if((c = win_to_client(ev->window))) {
if(!c->ignore_unmap)
detach_client(c, True);
else
c->ignore_unmap--;
}
2005-11-18 18:54:58 +03:00
}
2005-12-27 23:13:50 +03:00
static void handle_clientmessage(XEvent *e)
{
XClientMessageEvent *ev = &e->xclient;
2006-01-17 19:01:35 +03:00
if (ev->message_type == net_atoms[NET_NUMBER_OF_DESKTOPS] && ev->format == 32)
2005-12-27 23:13:50 +03:00
return; /* ignore */
else if (ev->message_type == net_atoms[NET_CURRENT_DESKTOP] && ev->format == 32) {
2006-01-26 17:24:34 +03:00
focus_page(page[ev->data.l[0]]);
2005-12-27 23:13:50 +03:00
return;
}
}