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 */
|
2006-06-22 16:56:21 +04:00
|
|
|
static void handle_buttonpress(XEvent *e);
|
|
|
|
static void handle_buttonrelease(XEvent *e);
|
|
|
|
static void handle_configurerequest(XEvent *e);
|
|
|
|
static void handle_destroynotify(XEvent *e);
|
|
|
|
static void handle_enternotify(XEvent *e);
|
|
|
|
static void handle_leavenotify(XEvent *e);
|
|
|
|
static void handle_expose(XEvent *e);
|
|
|
|
static void handle_keypress(XEvent *e);
|
|
|
|
static void handle_keymapnotify(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-11-18 18:54:58 +03:00
|
|
|
|
2006-06-22 11:47:54 +04:00
|
|
|
void (*handler[LASTEvent]) (XEvent *) = {
|
|
|
|
[ButtonPress] = handle_buttonpress,
|
|
|
|
[ButtonRelease] = handle_buttonrelease,
|
|
|
|
[ConfigureRequest]= handle_configurerequest,
|
|
|
|
[DestroyNotify] = handle_destroynotify,
|
|
|
|
[EnterNotify] = handle_enternotify,
|
|
|
|
[LeaveNotify] = handle_leavenotify,
|
|
|
|
[Expose] = handle_expose,
|
|
|
|
[KeyPress] = handle_keypress,
|
|
|
|
[KeymapNotify] = handle_keymapnotify,
|
2006-06-22 16:56:21 +04:00
|
|
|
[MotionNotify] = handle_motionnotify,
|
2006-06-22 11:47:54 +04:00
|
|
|
[MapRequest] = handle_maprequest,
|
|
|
|
[PropertyNotify]= handle_propertynotify,
|
|
|
|
[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
|
|
|
{
|
2006-03-23 16:22:43 +03:00
|
|
|
XEvent ev;
|
2006-06-22 13:03:42 +04:00
|
|
|
while(XPending(blz.display)) { /* main event loop */
|
|
|
|
XNextEvent(blz.display, &ev);
|
2006-03-23 16:22:43 +03:00
|
|
|
if(handler[ev.type])
|
|
|
|
(handler[ev.type]) (&ev); /* call handler */
|
|
|
|
}
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|
|
|
|
|
2006-05-01 22:40:33 +04:00
|
|
|
unsigned int
|
2006-05-01 23:15:24 +04:00
|
|
|
flush_masked_events(long even_mask)
|
2006-04-25 17:48:33 +04:00
|
|
|
{
|
|
|
|
XEvent ev;
|
2006-05-01 22:40:33 +04:00
|
|
|
unsigned int n = 0;
|
2006-06-22 13:03:42 +04:00
|
|
|
while(XCheckMaskEvent(blz.display, 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-04-25 20:51:25 +04:00
|
|
|
handle_buttonrelease(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
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-03-10 20:35:00 +03:00
|
|
|
if(ev->window == barwin) {
|
2006-06-17 15:32:49 +04:00
|
|
|
for(b=lbar; b; b=b->next)
|
2006-06-28 10:30:49 +04:00
|
|
|
if(blitz_ispointinrect(ev->x, ev->y, &b->brush.rect))
|
2006-06-24 04:26:24 +04:00
|
|
|
return write_event("LeftBarClick %d %s\n",
|
2006-06-23 08:37:59 +04:00
|
|
|
ev->button, b->name);
|
2006-06-22 01:12:02 +04:00
|
|
|
for(b=rbar; b; b=b->next)
|
2006-06-28 10:30:49 +04:00
|
|
|
if(blitz_ispointinrect(ev->x, ev->y, &b->brush.rect))
|
2006-06-24 04:26:24 +04:00
|
|
|
return write_event("RightBarClick %d %s\n",
|
2006-06-23 08:37:59 +04:00
|
|
|
ev->button, b->name);
|
2006-02-10 00:48:01 +03:00
|
|
|
}
|
2006-06-28 10:20:17 +04:00
|
|
|
else if((f = frame_of_win(ev->window))) {
|
2006-06-28 10:30:49 +04:00
|
|
|
if(blitz_brelease_input(&f->tagbar, ev->x, ev->y))
|
2006-06-29 13:53:45 +04:00
|
|
|
draw_frame(f);
|
2006-06-28 10:20:17 +04:00
|
|
|
write_event("ClientClick %d %d\n", idx_of_client(f->client), ev->button);
|
2006-06-22 16:56:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_motionnotify(XEvent *e)
|
|
|
|
{
|
2006-06-28 10:20:17 +04:00
|
|
|
Frame *f;
|
2006-06-22 16:56:21 +04:00
|
|
|
XMotionEvent *ev = &e->xmotion;
|
|
|
|
|
2006-06-28 10:20:17 +04:00
|
|
|
if((f = frame_of_win(ev->window))) {
|
2006-06-28 10:30:49 +04:00
|
|
|
if(blitz_bmotion_input(&f->tagbar, ev->x, ev->y))
|
2006-06-29 13:53:45 +04:00
|
|
|
draw_frame(f);
|
2006-04-25 20:51:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_buttonpress(XEvent *e)
|
|
|
|
{
|
2006-06-28 10:20:17 +04:00
|
|
|
Frame *f;
|
2006-04-25 20:51:25 +04:00
|
|
|
XButtonPressedEvent *ev = &e->xbutton;
|
|
|
|
|
2006-06-28 10:20:17 +04:00
|
|
|
if((f = frame_of_win(ev->window))) {
|
2006-01-13 15:24:55 +03:00
|
|
|
ev->state &= valid_mask;
|
2006-06-28 10:30:49 +04:00
|
|
|
if(blitz_bpress_input(&f->tagbar, ev->x, ev->y))
|
2006-06-29 13:53:45 +04:00
|
|
|
draw_frame(f);
|
2006-06-21 06:52:40 +04:00
|
|
|
if((ev->state & def.mod) == def.mod) {
|
2006-06-28 10:20:17 +04:00
|
|
|
focus(f->client, True);
|
2006-05-04 16:34:44 +04:00
|
|
|
switch(ev->button) {
|
|
|
|
case Button1:
|
2006-06-28 10:20:17 +04:00
|
|
|
do_mouse_resize(f->client, CENTER);
|
2006-05-04 16:34:44 +04:00
|
|
|
break;
|
|
|
|
case Button3:
|
2006-06-28 10:20:17 +04:00
|
|
|
do_mouse_resize(f->client, quadofcoord(&f->client->rect, ev->x, ev->y));
|
2006-05-04 16:34:44 +04:00
|
|
|
default:
|
|
|
|
break;
|
2006-01-13 15:24:55 +03:00
|
|
|
}
|
|
|
|
}
|
2006-04-26 11:03:06 +04:00
|
|
|
else if(ev->button == Button1)
|
2006-06-28 10:20:17 +04:00
|
|
|
focus(f->client, 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
|
2006-02-06 11:20:23 +03:00
|
|
|
handle_configurerequest(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
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);
|
2006-02-07 19:55:33 +03:00
|
|
|
ev->value_mask &= ~CWSibling;
|
2006-03-23 16:22:43 +03:00
|
|
|
if(c) {
|
2006-06-26 06:18:00 +04:00
|
|
|
gravitate_client(c, True);
|
2006-04-27 21:49:43 +04:00
|
|
|
|
2006-06-26 06:18:00 +04: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;
|
|
|
|
|
|
|
|
gravitate_client(c, False);
|
2006-04-27 21:49:43 +04:00
|
|
|
|
2006-06-26 06:18:00 +04:00
|
|
|
if(c->frame) {
|
|
|
|
if(c->sel->area->floating)
|
|
|
|
frect=&c->sel->rect;
|
|
|
|
else
|
|
|
|
frect=&c->sel->revert;
|
2006-04-27 21:49:43 +04:00
|
|
|
|
2006-06-26 06:18:00 +04:00
|
|
|
if(c->rect.width >= rect.width && c->rect.height >= rect.height) {
|
|
|
|
frect->y = wc.y = -height_of_bar();
|
|
|
|
frect->x = wc.x = -def.border;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
frect->y = wc.y = c->rect.y - height_of_bar();
|
|
|
|
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
|
|
|
|
+ height_of_bar();
|
|
|
|
wc.border_width = 1;
|
|
|
|
wc.sibling = None;
|
|
|
|
wc.stack_mode = ev->detail;
|
|
|
|
if(c->sel->area->view != sel)
|
|
|
|
wc.x += 2 * rect.width;
|
|
|
|
if(c->sel->area->floating) {
|
2006-06-22 13:03:42 +04:00
|
|
|
XConfigureWindow(blz.display, c->framewin, ev->value_mask, &wc);
|
2006-04-27 21:49:43 +04:00
|
|
|
configure_client(c);
|
2006-04-24 20:23:06 +04:00
|
|
|
}
|
2006-03-23 16:22:43 +03:00
|
|
|
}
|
|
|
|
}
|
2006-02-06 11:20:23 +03:00
|
|
|
|
2006-03-23 16:22:43 +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
|
|
|
|
2006-06-08 12:54:19 +04:00
|
|
|
if(c && c->frame) {
|
2006-03-12 02:35:15 +03:00
|
|
|
wc.x = def.border;
|
2006-04-12 12:44:07 +04:00
|
|
|
wc.y = height_of_bar();
|
2006-06-26 06:18:00 +04:00
|
|
|
wc.width = c->sel->rect.width - 2 * def.border;
|
|
|
|
wc.height = c->sel->rect.height - def.border - height_of_bar();
|
2006-03-23 16:22:43 +03:00
|
|
|
}
|
2006-03-12 02:35:15 +03:00
|
|
|
|
2006-03-23 16:22:43 +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-06-22 13:03:42 +04:00
|
|
|
XConfigureWindow(blz.display, ev->window, ev->value_mask, &wc);
|
2006-06-26 06:18:00 +04:00
|
|
|
|
2006-06-22 13:03:42 +04:00
|
|
|
XSync(blz.display, 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-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
|
|
|
|
handle_enternotify(XEvent *e)
|
|
|
|
{
|
|
|
|
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))) {
|
2006-06-08 12:54:19 +04:00
|
|
|
Frame *f = c->sel;
|
2006-05-06 23:48:49 +04:00
|
|
|
Area *a = f->area;
|
|
|
|
if(a->mode == Colmax)
|
2006-06-08 12:54:19 +04:00
|
|
|
c = a->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
|
|
|
|
handle_leavenotify(XEvent *e)
|
|
|
|
{
|
|
|
|
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-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-06-28 10:20:17 +04:00
|
|
|
static Frame *f;
|
2006-03-23 16:22:43 +03:00
|
|
|
if(ev->count == 0) {
|
|
|
|
if(ev->window == barwin)
|
2006-02-10 00:48:01 +03:00
|
|
|
draw_bar();
|
2006-06-28 10:20:17 +04:00
|
|
|
else if((f = frame_of_win(ev->window)))
|
|
|
|
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-02-09 21:40:12 +03:00
|
|
|
handle_keypress(XEvent *e)
|
|
|
|
{
|
|
|
|
XKeyEvent *ev = &e->xkey;
|
|
|
|
ev->state &= valid_mask;
|
2006-06-22 13:03:42 +04:00
|
|
|
handle_key(blz.root, ev->state, (KeyCode) ev->keycode);
|
2006-02-09 21:40:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2006-03-23 16:22:43 +03:00
|
|
|
XMapRequestEvent *ev = &e->xmaprequest;
|
|
|
|
static XWindowAttributes wa;
|
2005-12-21 18:18:11 +03:00
|
|
|
|
2006-06-22 13:03:42 +04:00
|
|
|
if(!XGetWindowAttributes(blz.display, ev->window, &wa))
|
2006-03-23 16:22:43 +03:00
|
|
|
return;
|
2006-04-25 17:48:33 +04:00
|
|
|
|
2006-03-23 16:22:43 +03:00
|
|
|
if(wa.override_redirect) {
|
2006-06-22 13:03:42 +04:00
|
|
|
XSelectInput(blz.display, ev->window,
|
2006-03-23 16:22:43 +03:00
|
|
|
(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
|
2006-02-09 21:40:12 +03:00
|
|
|
handle_propertynotify(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
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 */
|
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
|
2006-02-09 21:40:12 +03:00
|
|
|
handle_unmapnotify(XEvent *e)
|
2005-11-18 18:54:58 +03:00
|
|
|
{
|
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)))
|
2006-03-23 16:22:43 +03:00
|
|
|
destroy_client(c);
|
2005-11-18 18:54:58 +03:00
|
|
|
}
|