awesome/event.c

437 lines
14 KiB
C
Raw Normal View History

/*
2007-09-12 14:29:51 +02:00
* event.c - event handlers
*
2008-01-02 16:59:43 +01:00
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
2007-09-12 14:29:51 +02:00
*/
2007-09-05 20:15:00 +02:00
#include <X11/keysym.h>
#include <X11/Xatom.h>
#include <X11/Xutil.h>
#include <X11/extensions/shape.h>
#include <X11/extensions/Xrandr.h>
2007-09-05 20:15:00 +02:00
#include "screen.h"
2007-09-05 20:15:00 +02:00
#include "event.h"
#include "tag.h"
#include "statusbar.h"
2007-09-15 15:26:51 +02:00
#include "util.h"
#include "window.h"
#include "mouse.h"
2007-12-27 20:49:38 +01:00
#include "ewmh.h"
2008-01-01 17:25:48 +01:00
#include "client.h"
2007-09-05 20:15:00 +02:00
#include "layouts/tile.h"
#include "layouts/floating.h"
extern AwesomeConf globalconf;
static void
handle_mouse_button_press(int screen, unsigned int button, unsigned int state,
Button *buttons, char *arg)
{
Button *b;
for(b = buttons; b; b = b->next)
if(button == b->button && CLEANMASK(state) == b->mod && b->func)
{
if(arg)
b->func(screen, arg);
else
b->func(screen, b->arg);
return;
}
}
void
2007-12-27 15:49:00 +01:00
handle_event_buttonpress(XEvent *e)
2007-09-05 20:15:00 +02:00
{
int i, screen, x = 0, y = 0;
unsigned int udummy;
2007-09-05 20:15:00 +02:00
Client *c;
Window wdummy;
2007-12-27 15:49:00 +01:00
Widget *widget;
2007-12-30 21:00:34 +01:00
Statusbar *statusbar;
2007-09-05 20:15:00 +02:00
XButtonPressedEvent *ev = &e->xbutton;
for(screen = 0; screen < get_screen_count(); screen++)
2007-12-30 21:00:34 +01:00
for(statusbar = globalconf.screens[screen].statusbar; statusbar; statusbar = statusbar->next)
if(statusbar->window == ev->window)
2008-01-05 11:57:24 +01:00
switch(statusbar->position)
2008-01-04 13:04:15 +01:00
{
2008-01-05 11:57:24 +01:00
case Top:
case Bottom:
2007-12-30 21:00:34 +01:00
for(widget = statusbar->widgets; widget; widget = widget->next)
2008-01-05 12:51:40 +01:00
if(ev->x >= widget->area.x && ev->x < widget->area.x + widget->area.width
&& ev->y >= widget->area.y && ev->y < widget->area.y + widget->area.height)
2007-12-30 21:00:34 +01:00
{
widget->button_press(widget, ev);
return;
}
2008-01-05 11:57:24 +01:00
break;
case Right:
2007-12-30 21:00:34 +01:00
for(widget = statusbar->widgets; widget; widget = widget->next)
2008-01-05 12:51:40 +01:00
if(ev->y >= widget->area.x && ev->y < widget->area.x + widget->area.width
&& statusbar->height - ev->x >= widget->area.y
&& statusbar->height - ev->x < widget->area.y + widget->area.height)
2007-12-30 21:00:34 +01:00
{
widget->button_press(widget, ev);
return;
}
2008-01-05 11:57:24 +01:00
break;
default:
2007-12-30 21:00:34 +01:00
for(widget = statusbar->widgets; widget; widget = widget->next)
2008-01-04 21:46:25 +01:00
if(statusbar->width - ev->y >= widget->area.x
2008-01-05 12:51:40 +01:00
&& statusbar->width - ev->y < widget->area.x + widget->area.width
&& ev->x >= widget->area.y && ev->x < widget->area.y + widget->area.height)
2007-12-30 21:00:34 +01:00
{
widget->button_press(widget, ev);
return;
}
2008-01-05 11:57:24 +01:00
break;
2008-01-04 13:04:15 +01:00
}
if((c = get_client_bywin(globalconf.clients, ev->window)))
2007-09-05 20:15:00 +02:00
{
focus(c, ev->same_screen, c->screen);
if(CLEANMASK(ev->state) == NoSymbol
&& ev->button == Button1)
{
restack(c->screen);
2007-12-27 23:10:43 +01:00
XAllowEvents(globalconf.display, ReplayPointer, CurrentTime);
2008-01-02 19:26:55 +01:00
window_grabbuttons(get_phys_screen(c->screen), c->win, True, True);
}
else
handle_mouse_button_press(c->screen, ev->button, ev->state, globalconf.buttons.client, NULL);
2007-10-16 01:24:04 +02:00
}
else
for(screen = 0; screen < ScreenCount(e->xany.display); screen++)
if(RootWindow(e->xany.display, screen) == ev->window
&& XQueryPointer(e->xany.display,
ev->window, &wdummy,
&wdummy, &x, &y, &i,
&i, &udummy))
2007-09-16 00:17:05 +02:00
{
screen = get_screen_bycoord(x, y);
handle_mouse_button_press(screen, ev->button, ev->state,
globalconf.buttons.root, NULL);
return;
2007-09-16 00:17:05 +02:00
}
2007-09-05 20:15:00 +02:00
}
void
handle_event_configurerequest(XEvent * e)
2007-09-05 20:15:00 +02:00
{
Client *c;
XConfigureRequestEvent *ev = &e->xconfigurerequest;
XWindowChanges wc;
int old_screen;
2007-09-05 20:15:00 +02:00
if((c = get_client_bywin(globalconf.clients, ev->window)))
2007-09-05 20:15:00 +02:00
{
if(c->isfixed)
2007-09-05 20:15:00 +02:00
{
if(ev->value_mask & CWX)
2008-01-05 19:38:50 +01:00
c->f_geometry.x = c->geometry.x = ev->x - c->border;
if(ev->value_mask & CWY)
2008-01-05 19:38:50 +01:00
c->f_geometry.y = c->f_geometry.y = ev->y - c->border;
if(ev->value_mask & CWWidth)
2008-01-05 19:38:50 +01:00
c->f_geometry.width = c->geometry.width = ev->width;
if(ev->value_mask & CWHeight)
2008-01-05 19:38:50 +01:00
c->f_geometry.height = c->geometry.height = ev->height;
if((ev->value_mask & (CWX | CWY)) && !(ev->value_mask & (CWWidth | CWHeight)))
2008-01-05 20:25:55 +01:00
window_configure(c->win, c->geometry, c->border);
/* recompute screen */
old_screen = c->screen;
2008-01-05 19:38:50 +01:00
c->screen = get_screen_bycoord(c->geometry.x, c->geometry.y);
if(old_screen != c->screen)
{
move_client_to_screen(c, c->screen, False);
statusbar_draw_all(old_screen);
statusbar_draw_all(c->screen);
}
tag_client_with_rules(c);
2008-01-05 19:38:50 +01:00
XMoveResizeWindow(e->xany.display, c->win, c->f_geometry.x, c->f_geometry.y,
c->f_geometry.width, c->f_geometry.height);
2008-01-05 20:25:55 +01:00
window_configure(c->win, c->f_geometry, c->border);
arrange(c->screen);
2007-09-05 20:15:00 +02:00
}
else
2008-01-05 20:25:55 +01:00
window_configure(c->win, c->geometry, c->border);
2007-09-05 20:15:00 +02:00
}
else
{
wc.x = ev->x;
wc.y = ev->y;
wc.width = ev->width;
wc.height = ev->height;
wc.border_width = ev->border_width;
wc.sibling = ev->above;
wc.stack_mode = ev->detail;
XConfigureWindow(e->xany.display, ev->window, ev->value_mask, &wc);
}
XSync(e->xany.display, False);
}
void
handle_event_configurenotify(XEvent * e)
2007-09-05 20:15:00 +02:00
{
XConfigureEvent *ev = &e->xconfigure;
2007-10-01 20:58:29 +02:00
int screen;
Area area;
2007-09-05 20:15:00 +02:00
for(screen = 0; screen < ScreenCount(e->xany.display); screen++)
if(ev->window == RootWindow(e->xany.display, screen)
&& (ev->width != DisplayWidth(e->xany.display, screen)
|| ev->height != DisplayHeight(e->xany.display, screen)))
{
DisplayWidth(e->xany.display, screen) = ev->width;
DisplayHeight(e->xany.display, screen) = ev->height;
/* update statusbar */
area = get_screen_area(screen, NULL, &globalconf.screens[screen].padding);
globalconf.screens[screen].statusbar->width = area.width;
XResizeWindow(e->xany.display,
globalconf.screens[screen].statusbar->window,
globalconf.screens[screen].statusbar->width,
globalconf.screens[screen].statusbar->height);
2007-12-30 21:00:34 +01:00
statusbar_draw_all(screen);
arrange(screen);
}
2007-09-05 20:15:00 +02:00
}
void
handle_event_destroynotify(XEvent * e)
2007-09-05 20:15:00 +02:00
{
Client *c;
XDestroyWindowEvent *ev = &e->xdestroywindow;
if((c = get_client_bywin(globalconf.clients, ev->window)))
client_unmanage(c, WithdrawnState);
2007-09-05 20:15:00 +02:00
}
void
handle_event_enternotify(XEvent * e)
2007-09-05 20:15:00 +02:00
{
Client *c;
XCrossingEvent *ev = &e->xcrossing;
int screen;
Tag **curtags;
2007-09-05 20:15:00 +02:00
if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
return;
if((c = get_client_bywin(globalconf.clients, ev->window)) && globalconf.screens[c->screen].sloppy_focus)
{
focus(c, ev->same_screen, c->screen);
curtags = get_current_tags(c->screen);
if (c->isfloating || curtags[0]->layout->arrange == layout_floating)
2008-01-02 19:26:55 +01:00
window_grabbuttons(get_phys_screen(c->screen), c->win, True, False);
2007-12-27 14:21:26 +01:00
p_delete(&curtags);
}
else
for(screen = 0; screen < ScreenCount(e->xany.display); screen++)
if(ev->window == RootWindow(e->xany.display, screen))
focus(NULL, True, screen);
2007-09-05 20:15:00 +02:00
}
void
handle_event_expose(XEvent *e)
2007-09-05 20:15:00 +02:00
{
XExposeEvent *ev = &e->xexpose;
int screen;
2007-12-30 21:00:34 +01:00
Statusbar *statusbar;
2007-09-05 20:15:00 +02:00
if(!ev->count)
for(screen = 0; screen < get_screen_count(); screen++)
2007-12-30 21:00:34 +01:00
for(statusbar = globalconf.screens[screen].statusbar; statusbar; statusbar = statusbar->next)
if(statusbar->window == ev->window)
{
statusbar_display(statusbar);
return;
}
2007-09-05 20:15:00 +02:00
}
void
handle_event_keypress(XEvent * e)
2007-09-05 20:15:00 +02:00
{
int screen, x, y, d;
2007-09-16 01:05:43 +02:00
unsigned int m;
2007-09-05 20:15:00 +02:00
KeySym keysym;
XKeyEvent *ev = &e->xkey;
2007-09-16 01:05:43 +02:00
Window dummy;
Key *k;
2007-09-05 20:15:00 +02:00
keysym = XKeycodeToKeysym(e->xany.display, (KeyCode) ev->keycode, 0);
/* find the right screen for this event */
for(screen = 0; screen < ScreenCount(e->xany.display); screen++)
if(XQueryPointer(e->xany.display, RootWindow(e->xany.display, screen), &dummy, &dummy, &x, &y, &d, &d, &m))
{
/* if screen is 0, we are on first Zaphod screen or on the
* only screen in Xinerama, so we can ask for a better screen
* number with get_screen_bycoord: we'll get 0 in Zaphod mode
* so it's the same, or maybe the real Xinerama screen */
2007-10-10 21:48:31 +02:00
if(screen == 0)
screen = get_screen_bycoord(x, y);
2007-10-10 21:48:31 +02:00
break;
}
for(k = globalconf.keys; k; k = k->next)
if(keysym == k->keysym && k->func
&& CLEANMASK(k->mod) == CLEANMASK(ev->state))
{
k->func(screen, k->arg);
break;
}
2007-09-05 20:15:00 +02:00
}
void
handle_event_leavenotify(XEvent * e)
2007-09-05 20:15:00 +02:00
{
XCrossingEvent *ev = &e->xcrossing;
int screen;
2007-09-05 20:15:00 +02:00
for(screen = 0; screen < ScreenCount(e->xany.display); screen++)
if((ev->window == RootWindow(e->xany.display, screen)) && !ev->same_screen)
focus(NULL, ev->same_screen, screen);
2007-09-05 20:15:00 +02:00
}
void
handle_event_mappingnotify(XEvent * e)
2007-09-05 20:15:00 +02:00
{
XMappingEvent *ev = &e->xmapping;
int screen;
2007-09-05 20:15:00 +02:00
XRefreshKeyboardMapping(ev);
if(ev->request == MappingKeyboard)
for(screen = 0; screen < ScreenCount(e->xany.display); screen++)
grabkeys(get_phys_screen(screen));
2007-09-05 20:15:00 +02:00
}
void
handle_event_maprequest(XEvent * e)
2007-09-05 20:15:00 +02:00
{
static XWindowAttributes wa;
XMapRequestEvent *ev = &e->xmaprequest;
int screen, x, y, d;
unsigned int m;
Window dummy;
2007-09-05 20:15:00 +02:00
if(!XGetWindowAttributes(e->xany.display, ev->window, &wa))
return;
if(wa.override_redirect)
return;
if(!get_client_bywin(globalconf.clients, ev->window))
{
for(screen = 0; wa.screen != ScreenOfDisplay(e->xany.display, screen); screen++);
2007-11-12 09:58:04 +01:00
if(screen == 0 && XQueryPointer(e->xany.display, RootWindow(e->xany.display, screen),
&dummy, &dummy, &x, &y, &d, &d, &m))
screen = get_screen_bycoord(x, y);
client_manage(ev->window, &wa, screen);
}
2007-09-05 20:15:00 +02:00
}
void
handle_event_propertynotify(XEvent * e)
2007-09-05 20:15:00 +02:00
{
Client *c;
Window trans;
XPropertyEvent *ev = &e->xproperty;
if(ev->state == PropertyDelete)
return; /* ignore */
if((c = get_client_bywin(globalconf.clients, ev->window)))
2007-09-05 20:15:00 +02:00
{
switch (ev->atom)
{
2007-11-12 09:59:54 +01:00
case XA_WM_TRANSIENT_FOR:
2007-09-05 20:15:00 +02:00
XGetTransientForHint(e->xany.display, c->win, &trans);
if(!c->isfloating && (c->isfloating = (get_client_bywin(globalconf.clients, trans) != NULL)))
arrange(c->screen);
2007-09-05 20:15:00 +02:00
break;
2007-11-12 09:59:54 +01:00
case XA_WM_NORMAL_HINTS:
client_updatesizehints(c);
2007-09-05 20:15:00 +02:00
break;
2007-12-23 15:16:10 +01:00
case XA_WM_HINTS:
client_updatewmhints(c);
2007-12-30 21:00:34 +01:00
statusbar_draw_all(c->screen);
2007-12-23 15:16:10 +01:00
break;
2007-09-05 20:15:00 +02:00
}
2007-12-27 23:10:43 +01:00
if(ev->atom == XA_WM_NAME || ev->atom == XInternAtom(globalconf.display, "_NET_WM_NAME", False))
2007-09-05 20:15:00 +02:00
{
client_updatetitle(c);
if(c == globalconf.focus->client)
2007-12-30 21:00:34 +01:00
statusbar_draw_all(c->screen);
2007-09-05 20:15:00 +02:00
}
}
}
void
handle_event_unmapnotify(XEvent * e)
2007-09-05 20:15:00 +02:00
{
Client *c;
XUnmapEvent *ev = &e->xunmap;
if((c = get_client_bywin(globalconf.clients, ev->window))
2008-01-02 19:26:55 +01:00
&& ev->event == RootWindow(e->xany.display, get_phys_screen(c->screen))
&& ev->send_event && window_getstate(c->win) == NormalState)
client_unmanage(c, WithdrawnState);
2007-09-05 20:15:00 +02:00
}
2007-09-13 15:57:35 +02:00
void
handle_event_shape(XEvent * e)
2007-09-13 15:57:35 +02:00
{
XShapeEvent *ev = (XShapeEvent *) e;
Client *c = get_client_bywin(globalconf.clients, ev->window);
2007-09-13 15:57:35 +02:00
if(c)
2008-01-02 19:26:55 +01:00
window_setshape(get_phys_screen(c->screen), c->win);
2007-09-13 15:57:35 +02:00
}
2007-09-13 16:00:03 +02:00
void
handle_event_randr_screen_change_notify(XEvent *e)
2007-09-13 16:00:03 +02:00
{
XRRUpdateConfiguration(e);
}
2007-09-05 20:15:00 +02:00
void
2007-12-27 20:49:38 +01:00
handle_event_clientmessage(XEvent *e)
{
ewmh_process_client_message(&e->xclient);
}
void
grabkeys(int phys_screen)
2007-09-05 20:15:00 +02:00
{
Key *k;
2007-09-05 20:15:00 +02:00
KeyCode code;
XUngrabKey(globalconf.display, AnyKey, AnyModifier, RootWindow(globalconf.display, phys_screen));
for(k = globalconf.keys; k; k = k->next)
2007-09-05 20:15:00 +02:00
{
if((code = XKeysymToKeycode(globalconf.display, k->keysym)) == NoSymbol)
2007-09-16 02:14:37 +02:00
continue;
XGrabKey(globalconf.display, code, k->mod, RootWindow(globalconf.display, phys_screen), True, GrabModeAsync, GrabModeAsync);
XGrabKey(globalconf.display, code, k->mod | LockMask, RootWindow(globalconf.display, phys_screen), True, GrabModeAsync, GrabModeAsync);
XGrabKey(globalconf.display, code, k->mod | globalconf.numlockmask, RootWindow(globalconf.display, phys_screen), True, GrabModeAsync, GrabModeAsync);
XGrabKey(globalconf.display, code, k->mod | globalconf.numlockmask | LockMask, RootWindow(globalconf.display, phys_screen), True, GrabModeAsync, GrabModeAsync);
2007-09-05 20:15:00 +02:00
}
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80