2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* event.c - event handlers
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2008-01-02 16:59:43 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
2008-06-26 18:10:45 +02:00
|
|
|
#include <xcb/xcb.h>
|
2008-06-26 22:42:58 +02:00
|
|
|
#include <xcb/randr.h>
|
2008-09-16 15:36:44 +02:00
|
|
|
#include <xcb/xcb_atom.h>
|
2008-07-28 17:54:33 +02:00
|
|
|
#include <xcb/xcb_icccm.h>
|
2008-09-16 15:36:44 +02:00
|
|
|
#include <xcb/xcb_event.h>
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-09-02 17:12:10 +02:00
|
|
|
#include "awesome.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
#include "event.h"
|
2010-08-08 17:35:48 +02:00
|
|
|
#include "property.h"
|
2009-09-14 20:20:27 +02:00
|
|
|
#include "objects/tag.h"
|
2010-10-06 13:35:14 +02:00
|
|
|
#include "objects/drawin.h"
|
2009-09-17 17:51:06 +02:00
|
|
|
#include "xwindow.h"
|
2007-12-27 20:49:38 +01:00
|
|
|
#include "ewmh.h"
|
2009-09-14 20:22:12 +02:00
|
|
|
#include "objects/client.h"
|
2009-10-02 17:50:13 +02:00
|
|
|
#include "keyresolv.h"
|
2008-06-10 16:50:55 +02:00
|
|
|
#include "keygrabber.h"
|
2008-11-13 16:08:34 +01:00
|
|
|
#include "mousegrabber.h"
|
2008-09-17 16:38:38 +02:00
|
|
|
#include "luaa.h"
|
2008-06-14 18:12:16 +02:00
|
|
|
#include "systray.h"
|
2008-09-03 22:37:43 +02:00
|
|
|
#include "screen.h"
|
2008-06-30 18:55:14 +02:00
|
|
|
#include "common/atoms.h"
|
2009-04-17 16:52:25 +02:00
|
|
|
#include "common/xutil.h"
|
2007-12-16 02:45:38 +01:00
|
|
|
|
2009-06-29 11:02:13 +02:00
|
|
|
#define DO_EVENT_HOOK_CALLBACK(type, xcbtype, xcbeventprefix, arraytype, match) \
|
2009-08-14 16:52:22 +02:00
|
|
|
static void \
|
2009-05-25 14:42:41 +02:00
|
|
|
event_##xcbtype##_callback(xcb_##xcbtype##_press_event_t *ev, \
|
2009-08-14 16:46:35 +02:00
|
|
|
arraytype *arr, \
|
2009-05-25 14:42:41 +02:00
|
|
|
int oud, \
|
|
|
|
int nargs, \
|
|
|
|
void *data) \
|
2009-04-27 17:46:15 +02:00
|
|
|
{ \
|
2009-05-25 14:42:41 +02:00
|
|
|
int abs_oud = oud < 0 ? ((lua_gettop(globalconf.L) + 1) + oud) : oud; \
|
2009-08-14 16:52:22 +02:00
|
|
|
int item_matching = 0; \
|
2009-08-14 16:46:35 +02:00
|
|
|
foreach(item, *arr) \
|
|
|
|
if(match(ev, *item, data)) \
|
2009-05-25 14:42:41 +02:00
|
|
|
{ \
|
2009-08-14 16:46:35 +02:00
|
|
|
if(oud) \
|
|
|
|
luaA_object_push_item(globalconf.L, abs_oud, *item); \
|
|
|
|
else \
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_push(globalconf.L, *item); \
|
2009-05-25 14:42:41 +02:00
|
|
|
item_matching++; \
|
|
|
|
} \
|
2009-08-14 16:52:22 +02:00
|
|
|
for(; item_matching > 0; item_matching--) \
|
2009-05-25 14:42:41 +02:00
|
|
|
{ \
|
|
|
|
switch(ev->response_type) \
|
|
|
|
{ \
|
|
|
|
case xcbeventprefix##_PRESS: \
|
2009-06-25 16:32:15 +02:00
|
|
|
for(int i = 0; i < nargs; i++) \
|
|
|
|
lua_pushvalue(globalconf.L, - nargs - item_matching); \
|
|
|
|
luaA_object_emit_signal(globalconf.L, - nargs - 1, "press", nargs); \
|
2009-05-25 14:42:41 +02:00
|
|
|
break; \
|
|
|
|
case xcbeventprefix##_RELEASE: \
|
2009-06-25 16:32:15 +02:00
|
|
|
for(int i = 0; i < nargs; i++) \
|
|
|
|
lua_pushvalue(globalconf.L, - nargs - item_matching); \
|
|
|
|
luaA_object_emit_signal(globalconf.L, - nargs - 1, "release", nargs); \
|
2009-05-25 14:42:41 +02:00
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
lua_pop(globalconf.L, 1); \
|
|
|
|
} \
|
2009-04-27 17:46:15 +02:00
|
|
|
lua_pop(globalconf.L, nargs); \
|
|
|
|
}
|
|
|
|
|
2009-04-27 17:52:36 +02:00
|
|
|
static bool
|
2009-04-27 17:56:06 +02:00
|
|
|
event_key_match(xcb_key_press_event_t *ev, keyb_t *k, void *data)
|
2009-04-27 17:52:36 +02:00
|
|
|
{
|
2009-04-27 17:56:06 +02:00
|
|
|
assert(data);
|
|
|
|
xcb_keysym_t keysym = *(xcb_keysym_t *) data;
|
2009-04-27 17:52:36 +02:00
|
|
|
return (((k->keycode && ev->detail == k->keycode)
|
|
|
|
|| (k->keysym && keysym == k->keysym))
|
2009-06-24 17:44:06 +02:00
|
|
|
&& (k->modifiers == XCB_BUTTON_MASK_ANY || k->modifiers == ev->state));
|
2009-04-27 17:52:36 +02:00
|
|
|
}
|
|
|
|
|
2009-08-17 14:10:03 +02:00
|
|
|
static bool
|
|
|
|
event_button_match(xcb_button_press_event_t *ev, button_t *b, void *data)
|
|
|
|
{
|
|
|
|
return ((!b->button || ev->detail == b->button)
|
|
|
|
&& (b->modifiers == XCB_BUTTON_MASK_ANY || b->modifiers == ev->state));
|
|
|
|
}
|
|
|
|
|
2009-06-29 11:02:13 +02:00
|
|
|
DO_EVENT_HOOK_CALLBACK(button_t, button, XCB_BUTTON, button_array_t, event_button_match)
|
|
|
|
DO_EVENT_HOOK_CALLBACK(keyb_t, key, XCB_KEY, key_array_t, event_key_match)
|
2009-04-27 17:46:15 +02:00
|
|
|
|
2008-11-13 16:08:34 +01:00
|
|
|
/** Handle an event with mouse grabber if needed
|
|
|
|
* \param x The x coordinate.
|
|
|
|
* \param y The y coordinate.
|
|
|
|
* \param mask The mask buttons.
|
2009-04-29 13:59:13 +02:00
|
|
|
* \return True if the event was handled.
|
2008-11-13 16:08:34 +01:00
|
|
|
*/
|
2009-04-29 13:59:13 +02:00
|
|
|
static bool
|
2008-11-13 16:08:34 +01:00
|
|
|
event_handle_mousegrabber(int x, int y, uint16_t mask)
|
|
|
|
{
|
|
|
|
if(globalconf.mousegrabber != LUA_REFNIL)
|
|
|
|
{
|
|
|
|
lua_rawgeti(globalconf.L, LUA_REGISTRYINDEX, globalconf.mousegrabber);
|
|
|
|
mousegrabber_handleevent(globalconf.L, x, y, mask);
|
|
|
|
if(lua_pcall(globalconf.L, 1, 1, 0))
|
|
|
|
{
|
|
|
|
warn("error running function: %s", lua_tostring(globalconf.L, -1));
|
|
|
|
luaA_mousegrabber_stop(globalconf.L);
|
|
|
|
}
|
|
|
|
else if(!lua_isboolean(globalconf.L, -1) || !lua_toboolean(globalconf.L, -1))
|
|
|
|
luaA_mousegrabber_stop(globalconf.L);
|
|
|
|
lua_pop(globalconf.L, 1); /* pop returned value */
|
2009-04-29 13:59:13 +02:00
|
|
|
return true;
|
2008-11-13 16:08:34 +01:00
|
|
|
}
|
2009-04-29 13:59:13 +02:00
|
|
|
return false;
|
2008-11-13 16:08:34 +01:00
|
|
|
}
|
|
|
|
|
2010-10-06 10:53:05 +02:00
|
|
|
/** Emit a button signal.
|
|
|
|
* The top of the lua stack has to be the object on which to emit the event.
|
|
|
|
* \param ev The event to handle.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
event_emit_button(xcb_button_press_event_t *ev)
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
switch(ev->response_type)
|
|
|
|
{
|
|
|
|
case XCB_BUTTON_PRESS:
|
|
|
|
name = "button::press";
|
|
|
|
break;
|
|
|
|
case XCB_BUTTON_RELEASE:
|
|
|
|
name = "button::release";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fatal("Invalid event type");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Push the event's info */
|
|
|
|
lua_pushnumber(globalconf.L, ev->event_x);
|
|
|
|
lua_pushnumber(globalconf.L, ev->event_y);
|
|
|
|
lua_pushnumber(globalconf.L, ev->detail);
|
|
|
|
luaA_pushmodifiers(globalconf.L, ev->state);
|
|
|
|
/* And emit the signal */
|
|
|
|
luaA_object_emit_signal(globalconf.L, -5, name, 4);
|
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The button press event handler.
|
|
|
|
* \param ev The event.
|
2008-03-06 09:05:15 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_button(xcb_button_press_event_t *ev)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *c;
|
2010-10-06 13:35:14 +02:00
|
|
|
drawin_t *drawin;
|
2008-04-09 18:27:25 +02:00
|
|
|
|
2010-08-12 14:37:39 +02:00
|
|
|
globalconf.timestamp = ev->time;
|
|
|
|
|
2009-04-29 17:20:12 +02:00
|
|
|
if(event_handle_mousegrabber(ev->root_x, ev->root_y, 1 << (ev->detail - 1 + 8)))
|
2010-08-08 17:54:13 +02:00
|
|
|
return;
|
2009-04-29 17:20:12 +02:00
|
|
|
|
2008-08-12 13:23:10 +02:00
|
|
|
/* ev->state is
|
|
|
|
* button status (8 bits) + modifiers status (8 bits)
|
|
|
|
* we don't care for button status that we get, especially on release, so
|
|
|
|
* drop them */
|
|
|
|
ev->state &= 0x00ff;
|
|
|
|
|
2010-10-06 13:35:14 +02:00
|
|
|
if((drawin = drawin_getbywin(ev->event))
|
|
|
|
|| (drawin = drawin_getbywin(ev->child)))
|
2008-09-24 12:13:21 +02:00
|
|
|
{
|
2010-10-06 13:35:14 +02:00
|
|
|
/* If the drawin is child, then x,y are
|
2008-09-24 12:13:21 +02:00
|
|
|
* relative to root window */
|
2010-10-06 13:35:14 +02:00
|
|
|
if(drawin->window == ev->child)
|
2008-09-20 16:45:43 +02:00
|
|
|
{
|
2010-10-06 13:35:14 +02:00
|
|
|
ev->event_x -= drawin->geometry.x;
|
|
|
|
ev->event_y -= drawin->geometry.y;
|
2008-09-20 16:45:43 +02:00
|
|
|
}
|
2008-12-10 18:05:08 +01:00
|
|
|
|
2010-10-06 13:35:14 +02:00
|
|
|
/* Push the drawin */
|
|
|
|
luaA_object_push(globalconf.L, drawin);
|
2010-10-10 13:32:47 +02:00
|
|
|
/* and handle the button raw button event */
|
2010-10-06 10:53:05 +02:00
|
|
|
event_emit_button(ev);
|
2010-10-10 13:32:47 +02:00
|
|
|
/* check if any button object matches */
|
|
|
|
event_button_callback(ev, &drawin->buttons, -1, 1, NULL);
|
2008-06-03 18:41:54 +02:00
|
|
|
}
|
2010-07-30 22:07:24 +02:00
|
|
|
else if((c = client_getbyframewin(ev->event)))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_push(globalconf.L, c);
|
2010-10-10 13:32:47 +02:00
|
|
|
/* And handle the button raw button event */
|
|
|
|
event_emit_button(ev);
|
2010-10-06 10:53:05 +02:00
|
|
|
/* then check if any button objects match */
|
2009-08-14 16:46:35 +02:00
|
|
|
event_button_callback(ev, &c->buttons, -1, 1, NULL);
|
2008-08-12 13:23:10 +02:00
|
|
|
xcb_allow_events(globalconf.connection,
|
|
|
|
XCB_ALLOW_REPLAY_POINTER,
|
|
|
|
XCB_CURRENT_TIME);
|
2007-10-16 01:24:04 +02:00
|
|
|
}
|
2009-02-24 17:32:48 +01:00
|
|
|
else if(ev->child == XCB_NONE)
|
2010-08-16 14:10:58 +02:00
|
|
|
if(globalconf.screen->root == ev->event)
|
2010-08-16 13:47:40 +02:00
|
|
|
{
|
|
|
|
event_button_callback(ev, &globalconf.buttons, 0, 0, NULL);
|
|
|
|
return;
|
|
|
|
}
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2009-01-30 15:20:04 +01:00
|
|
|
static void
|
|
|
|
event_handle_configurerequest_configure_window(xcb_configure_request_event_t *ev)
|
|
|
|
{
|
|
|
|
uint16_t config_win_mask = 0;
|
|
|
|
uint32_t config_win_vals[7];
|
|
|
|
unsigned short i = 0;
|
|
|
|
|
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_X)
|
|
|
|
{
|
|
|
|
config_win_mask |= XCB_CONFIG_WINDOW_X;
|
|
|
|
config_win_vals[i++] = ev->x;
|
|
|
|
}
|
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_Y)
|
|
|
|
{
|
|
|
|
config_win_mask |= XCB_CONFIG_WINDOW_Y;
|
|
|
|
config_win_vals[i++] = ev->y;
|
|
|
|
}
|
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_WIDTH)
|
|
|
|
{
|
|
|
|
config_win_mask |= XCB_CONFIG_WINDOW_WIDTH;
|
|
|
|
config_win_vals[i++] = ev->width;
|
|
|
|
}
|
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_HEIGHT)
|
|
|
|
{
|
|
|
|
config_win_mask |= XCB_CONFIG_WINDOW_HEIGHT;
|
|
|
|
config_win_vals[i++] = ev->height;
|
|
|
|
}
|
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH)
|
|
|
|
{
|
|
|
|
config_win_mask |= XCB_CONFIG_WINDOW_BORDER_WIDTH;
|
|
|
|
config_win_vals[i++] = ev->border_width;
|
|
|
|
}
|
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_SIBLING)
|
|
|
|
{
|
|
|
|
config_win_mask |= XCB_CONFIG_WINDOW_SIBLING;
|
|
|
|
config_win_vals[i++] = ev->sibling;
|
|
|
|
}
|
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_STACK_MODE)
|
|
|
|
{
|
|
|
|
config_win_mask |= XCB_CONFIG_WINDOW_STACK_MODE;
|
|
|
|
config_win_vals[i++] = ev->stack_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
xcb_configure_window(globalconf.connection, ev->window, config_win_mask, config_win_vals);
|
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The configure event handler.
|
|
|
|
* \param ev The event.
|
2008-03-06 09:05:15 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_configurerequest(xcb_configure_request_event_t *ev)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *c;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-06-05 09:25:38 +02:00
|
|
|
if((c = client_getbywin(ev->window)))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2009-10-07 14:24:39 +02:00
|
|
|
area_t geometry = c->geometry;
|
2008-01-06 14:40:23 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_X)
|
2008-01-06 14:40:23 +01:00
|
|
|
geometry.x = ev->x;
|
2008-03-21 16:50:17 +01:00
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_Y)
|
2008-01-06 14:40:23 +01:00
|
|
|
geometry.y = ev->y;
|
2008-03-21 16:50:17 +01:00
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_WIDTH)
|
2008-01-06 14:40:23 +01:00
|
|
|
geometry.width = ev->width;
|
2008-03-21 16:50:17 +01:00
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_HEIGHT)
|
2008-01-06 14:40:23 +01:00
|
|
|
geometry.height = ev->height;
|
|
|
|
|
2009-03-29 20:26:39 +02:00
|
|
|
if(ev->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH)
|
2009-08-17 17:02:45 +02:00
|
|
|
{
|
|
|
|
luaA_object_push(globalconf.L, c);
|
2009-10-06 19:04:36 +02:00
|
|
|
window_set_border_width(globalconf.L, -1, ev->border_width);
|
2009-08-17 17:02:45 +02:00
|
|
|
lua_pop(globalconf.L, 1);
|
|
|
|
}
|
2009-02-14 20:41:54 +01:00
|
|
|
|
2011-03-11 17:13:20 +01:00
|
|
|
if(!client_resize(c, geometry))
|
2010-08-01 14:24:58 +02:00
|
|
|
/* ICCCM 4.1.5 / 4.2.3, if nothing was changed, send an event saying so */
|
2009-09-17 17:51:06 +02:00
|
|
|
xwindow_configure(c->window, geometry, c->border_width);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
else
|
2009-01-30 15:20:04 +01:00
|
|
|
event_handle_configurerequest_configure_window(ev);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The configure notify event handler.
|
|
|
|
* \param ev The event.
|
2008-03-06 09:05:15 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_configurenotify(xcb_configure_notify_event_t *ev)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2010-08-16 14:10:58 +02:00
|
|
|
const xcb_screen_t *screen = globalconf.screen;
|
2010-08-16 13:47:40 +02:00
|
|
|
|
|
|
|
if(ev->window == screen->root
|
|
|
|
&& (ev->width != screen->width_in_pixels
|
|
|
|
|| ev->height != screen->height_in_pixels))
|
|
|
|
/* it's not that we panic, but restart */
|
|
|
|
awesome_restart();
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The destroy notify event handler.
|
|
|
|
* \param ev The event.
|
2008-03-06 09:05:15 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_destroynotify(xcb_destroy_notify_event_t *ev)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *c;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-06-05 09:25:38 +02:00
|
|
|
if((c = client_getbywin(ev->window)))
|
2010-10-07 12:05:43 +02:00
|
|
|
client_unmanage(c, false);
|
2008-12-01 16:43:44 +01:00
|
|
|
else
|
|
|
|
for(int i = 0; i < globalconf.embedded.len; i++)
|
|
|
|
if(globalconf.embedded.tab[i].win == ev->window)
|
|
|
|
{
|
|
|
|
xembed_window_array_take(&globalconf.embedded, i);
|
2010-10-06 15:38:44 +02:00
|
|
|
luaA_systray_invalidate();
|
2008-12-01 16:43:44 +01:00
|
|
|
}
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-08-25 14:34:56 +02:00
|
|
|
/** The motion notify event handler.
|
|
|
|
* \param ev The event.
|
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_motionnotify(xcb_motion_notify_event_t *ev)
|
2008-08-25 14:34:56 +02:00
|
|
|
{
|
2010-10-06 20:43:33 +02:00
|
|
|
drawin_t *w;
|
|
|
|
client_t *c;
|
|
|
|
|
2010-08-12 14:37:39 +02:00
|
|
|
globalconf.timestamp = ev->time;
|
|
|
|
|
2009-04-29 13:59:13 +02:00
|
|
|
if(event_handle_mousegrabber(ev->root_x, ev->root_y, ev->state))
|
2010-08-08 17:54:13 +02:00
|
|
|
return;
|
2008-11-13 16:08:34 +01:00
|
|
|
|
2010-10-06 20:43:33 +02:00
|
|
|
if((c = client_getbyframewin(ev->event)))
|
|
|
|
{
|
|
|
|
luaA_object_push(globalconf.L, c);
|
|
|
|
lua_pushnumber(globalconf.L, ev->event_x);
|
|
|
|
lua_pushnumber(globalconf.L, ev->event_y);
|
|
|
|
luaA_object_emit_signal(globalconf.L, -3, "mouse::move", 2);
|
|
|
|
lua_pop(globalconf.L, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if((w = drawin_getbywin(ev->event)))
|
|
|
|
{
|
|
|
|
luaA_object_push(globalconf.L, w);
|
|
|
|
lua_pushnumber(globalconf.L, ev->event_x);
|
|
|
|
lua_pushnumber(globalconf.L, ev->event_y);
|
|
|
|
luaA_object_emit_signal(globalconf.L, -3, "mouse::move", 2);
|
|
|
|
lua_pop(globalconf.L, 1);
|
|
|
|
}
|
2008-08-25 14:34:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** The leave notify event handler.
|
|
|
|
* \param ev The event.
|
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_leavenotify(xcb_leave_notify_event_t *ev)
|
2008-08-25 14:34:56 +02:00
|
|
|
{
|
2010-10-06 13:35:14 +02:00
|
|
|
drawin_t *drawin;
|
2009-02-14 20:41:56 +01:00
|
|
|
client_t *c;
|
2008-08-25 14:34:56 +02:00
|
|
|
|
2010-08-12 14:37:39 +02:00
|
|
|
globalconf.timestamp = ev->time;
|
|
|
|
|
2009-04-04 16:16:02 +02:00
|
|
|
if(ev->mode != XCB_NOTIFY_MODE_NORMAL)
|
2010-08-08 17:54:13 +02:00
|
|
|
return;
|
2009-04-04 16:16:02 +02:00
|
|
|
|
2010-07-30 22:07:24 +02:00
|
|
|
if((c = client_getbyframewin(ev->event)))
|
2009-08-19 15:45:56 +02:00
|
|
|
{
|
|
|
|
luaA_object_push(globalconf.L, c);
|
|
|
|
luaA_object_emit_signal(globalconf.L, -1, "mouse::leave", 0);
|
|
|
|
lua_pop(globalconf.L, 1);
|
|
|
|
}
|
2009-04-12 14:32:36 +02:00
|
|
|
|
2010-10-06 13:35:14 +02:00
|
|
|
if((drawin = drawin_getbywin(ev->event)))
|
2008-08-25 14:34:56 +02:00
|
|
|
{
|
2010-10-06 13:35:14 +02:00
|
|
|
luaA_object_push(globalconf.L, drawin);
|
2009-08-17 16:56:03 +02:00
|
|
|
luaA_object_emit_signal(globalconf.L, -1, "mouse::leave", 0);
|
|
|
|
lua_pop(globalconf.L, 1);
|
2008-08-25 14:34:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The enter notify event handler.
|
|
|
|
* \param ev The event.
|
2008-03-04 10:14:13 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_enternotify(xcb_enter_notify_event_t *ev)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-06-14 18:12:16 +02:00
|
|
|
client_t *c;
|
2010-10-06 13:35:14 +02:00
|
|
|
drawin_t *drawin;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2010-08-12 14:37:39 +02:00
|
|
|
globalconf.timestamp = ev->time;
|
|
|
|
|
2009-03-06 14:01:29 +01:00
|
|
|
if(ev->mode != XCB_NOTIFY_MODE_NORMAL)
|
2010-08-08 17:54:13 +02:00
|
|
|
return;
|
2008-01-24 18:31:44 +01:00
|
|
|
|
2010-10-06 13:35:14 +02:00
|
|
|
if((drawin = drawin_getbywin(ev->event)))
|
2008-10-25 15:35:14 +02:00
|
|
|
{
|
2010-10-06 13:35:14 +02:00
|
|
|
luaA_object_push(globalconf.L, drawin);
|
2009-08-17 16:56:03 +02:00
|
|
|
luaA_object_emit_signal(globalconf.L, -1, "mouse::enter", 0);
|
|
|
|
lua_pop(globalconf.L, 1);
|
2008-10-25 15:35:14 +02:00
|
|
|
}
|
2009-04-12 14:29:53 +02:00
|
|
|
|
2010-07-30 22:07:24 +02:00
|
|
|
if((c = client_getbyframewin(ev->event)))
|
2009-08-19 15:45:56 +02:00
|
|
|
{
|
|
|
|
luaA_object_push(globalconf.L, c);
|
|
|
|
luaA_object_emit_signal(globalconf.L, -1, "mouse::enter", 0);
|
|
|
|
lua_pop(globalconf.L, 1);
|
|
|
|
}
|
2008-03-04 10:14:13 +01:00
|
|
|
}
|
|
|
|
|
2009-02-28 21:08:41 +01:00
|
|
|
/** The focus in event handler.
|
|
|
|
* \param ev The event.
|
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_focusin(xcb_focus_in_event_t *ev)
|
2009-02-28 21:08:41 +01:00
|
|
|
{
|
2009-04-07 14:20:22 +02:00
|
|
|
/* Events that we are interested in: */
|
|
|
|
switch(ev->detail)
|
|
|
|
{
|
2009-04-28 10:54:10 +02:00
|
|
|
/* These are events that jump between root windows.
|
2009-04-07 14:20:22 +02:00
|
|
|
*/
|
|
|
|
case XCB_NOTIFY_DETAIL_ANCESTOR:
|
|
|
|
case XCB_NOTIFY_DETAIL_INFERIOR:
|
|
|
|
|
|
|
|
/* These are events that jump between clients.
|
|
|
|
* Virtual events ensure we always get an event on our top-level window.
|
|
|
|
*/
|
|
|
|
case XCB_NOTIFY_DETAIL_NONLINEAR_VIRTUAL:
|
|
|
|
case XCB_NOTIFY_DETAIL_NONLINEAR:
|
2009-09-17 15:05:53 +02:00
|
|
|
{
|
|
|
|
client_t *c;
|
|
|
|
|
|
|
|
if((c = client_getbywin(ev->event)))
|
2009-04-07 14:20:22 +02:00
|
|
|
client_focus_update(c);
|
2009-09-17 15:05:53 +02:00
|
|
|
}
|
2009-04-07 14:20:22 +02:00
|
|
|
/* all other events are ignored */
|
|
|
|
default:
|
2009-04-28 10:54:10 +02:00
|
|
|
break;
|
2009-04-07 14:20:22 +02:00
|
|
|
}
|
2009-02-28 21:08:41 +01:00
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The expose event handler.
|
|
|
|
* \param ev The event.
|
2008-03-06 09:05:15 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_expose(xcb_expose_event_t *ev)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2010-10-06 13:35:14 +02:00
|
|
|
drawin_t *drawin;
|
2008-03-14 14:27:56 +01:00
|
|
|
|
2010-10-06 13:35:14 +02:00
|
|
|
if((drawin = drawin_getbywin(ev->window)))
|
|
|
|
drawin_refresh_pixmap_partial(drawin,
|
|
|
|
ev->x, ev->y,
|
|
|
|
ev->width, ev->height);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The key press event handler.
|
|
|
|
* \param ev The event.
|
2008-03-06 09:05:15 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_key(xcb_key_press_event_t *ev)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2010-08-12 14:37:39 +02:00
|
|
|
globalconf.timestamp = ev->time;
|
|
|
|
|
2008-06-10 16:50:55 +02:00
|
|
|
if(globalconf.keygrabber != LUA_REFNIL)
|
|
|
|
{
|
|
|
|
lua_rawgeti(globalconf.L, LUA_REGISTRYINDEX, globalconf.keygrabber);
|
2008-06-10 22:37:45 +02:00
|
|
|
if(keygrabber_handlekpress(globalconf.L, ev))
|
2008-06-10 16:50:55 +02:00
|
|
|
{
|
2008-12-16 15:02:54 +01:00
|
|
|
if(lua_pcall(globalconf.L, 3, 1, 0))
|
2008-06-10 22:37:45 +02:00
|
|
|
{
|
|
|
|
warn("error running function: %s", lua_tostring(globalconf.L, -1));
|
2008-11-10 17:26:38 +01:00
|
|
|
luaA_keygrabber_stop(globalconf.L);
|
2008-06-10 22:37:45 +02:00
|
|
|
}
|
|
|
|
else if(!lua_isboolean(globalconf.L, -1) || !lua_toboolean(globalconf.L, -1))
|
2008-11-10 17:26:38 +01:00
|
|
|
luaA_keygrabber_stop(globalconf.L);
|
2008-06-10 16:50:55 +02:00
|
|
|
}
|
2008-06-10 22:37:45 +02:00
|
|
|
lua_pop(globalconf.L, 1); /* pop returned value or function if not called */
|
2008-06-10 16:50:55 +02:00
|
|
|
}
|
2009-04-27 17:56:06 +02:00
|
|
|
else
|
2009-01-05 16:59:20 +01:00
|
|
|
{
|
2009-04-28 17:26:15 +02:00
|
|
|
/* get keysym ignoring all modifiers */
|
2009-10-02 17:50:13 +02:00
|
|
|
xcb_keysym_t keysym = keyresolv_get_keysym(ev->detail, 0);
|
2009-04-27 17:56:06 +02:00
|
|
|
client_t *c;
|
2010-07-30 22:07:24 +02:00
|
|
|
if((c = client_getbyframewin(ev->event)))
|
2009-04-27 17:56:06 +02:00
|
|
|
{
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_push(globalconf.L, c);
|
2009-08-14 16:52:22 +02:00
|
|
|
event_key_callback(ev, &c->keys, -1, 1, &keysym);
|
2009-04-27 17:56:06 +02:00
|
|
|
}
|
|
|
|
else
|
2009-08-14 16:46:35 +02:00
|
|
|
event_key_callback(ev, &globalconf.keys, 0, 0, &keysym);
|
2009-01-05 16:59:20 +01:00
|
|
|
}
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The map request event handler.
|
|
|
|
* \param ev The event.
|
2008-03-06 09:05:15 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_maprequest(xcb_map_request_event_t *ev)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-05-20 20:30:07 +02:00
|
|
|
client_t *c;
|
2008-04-09 18:27:25 +02:00
|
|
|
xcb_get_window_attributes_cookie_t wa_c;
|
|
|
|
xcb_get_window_attributes_reply_t *wa_r;
|
|
|
|
xcb_get_geometry_cookie_t geom_c;
|
|
|
|
xcb_get_geometry_reply_t *geom_r;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2010-08-08 17:54:13 +02:00
|
|
|
wa_c = xcb_get_window_attributes_unchecked(globalconf.connection, ev->window);
|
2008-04-09 18:27:25 +02:00
|
|
|
|
2010-08-08 17:54:13 +02:00
|
|
|
if(!(wa_r = xcb_get_window_attributes_reply(globalconf.connection, wa_c, NULL)))
|
|
|
|
return;
|
2008-04-09 18:27:25 +02:00
|
|
|
|
|
|
|
if(wa_r->override_redirect)
|
2008-06-05 18:13:11 +02:00
|
|
|
goto bailout;
|
2008-03-30 15:46:58 +02:00
|
|
|
|
2008-12-01 16:43:44 +01:00
|
|
|
if(xembed_getbywin(&globalconf.embedded, ev->window))
|
2008-06-14 18:12:16 +02:00
|
|
|
{
|
2010-08-08 17:54:13 +02:00
|
|
|
xcb_map_window(globalconf.connection, ev->window);
|
|
|
|
xembed_window_activate(globalconf.connection, ev->window);
|
2008-06-14 18:12:16 +02:00
|
|
|
}
|
2008-06-27 22:50:10 +02:00
|
|
|
else if((c = client_getbywin(ev->window)))
|
|
|
|
{
|
2008-09-06 13:52:05 +02:00
|
|
|
/* Check that it may be visible, but not asked to be hidden */
|
2011-03-27 20:07:14 +02:00
|
|
|
if(client_maybevisible(c) && !c->hidden)
|
2008-06-28 11:47:29 +02:00
|
|
|
{
|
2009-08-17 17:02:45 +02:00
|
|
|
luaA_object_push(globalconf.L, c);
|
|
|
|
client_set_minimized(globalconf.L, -1, false);
|
|
|
|
lua_pop(globalconf.L, 1);
|
2008-06-28 11:47:29 +02:00
|
|
|
/* it will be raised, so just update ourself */
|
|
|
|
client_raise(c);
|
|
|
|
}
|
2008-06-27 22:50:10 +02:00
|
|
|
}
|
|
|
|
else
|
2008-05-20 20:30:07 +02:00
|
|
|
{
|
2010-08-08 17:54:13 +02:00
|
|
|
geom_c = xcb_get_geometry_unchecked(globalconf.connection, ev->window);
|
2008-05-20 20:30:07 +02:00
|
|
|
|
2010-08-08 17:54:13 +02:00
|
|
|
if(!(geom_r = xcb_get_geometry_reply(globalconf.connection, geom_c, NULL)))
|
2008-05-20 20:30:07 +02:00
|
|
|
{
|
2008-06-30 13:06:23 +02:00
|
|
|
goto bailout;
|
2008-05-20 20:30:07 +02:00
|
|
|
}
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2010-08-16 13:47:40 +02:00
|
|
|
client_manage(ev->window, geom_r, false);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-04-09 18:27:25 +02:00
|
|
|
p_delete(&geom_r);
|
2007-09-16 00:11:10 +02:00
|
|
|
}
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-06-05 18:13:11 +02:00
|
|
|
bailout:
|
|
|
|
p_delete(&wa_r);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The unmap notify event handler.
|
|
|
|
* \param ev The event.
|
2008-03-06 09:05:15 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_unmapnotify(xcb_unmap_notify_event_t *ev)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *c;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-06-29 13:38:02 +02:00
|
|
|
if((c = client_getbywin(ev->window)))
|
2010-10-07 12:05:43 +02:00
|
|
|
client_unmanage(c, true);
|
2008-12-01 16:43:44 +01:00
|
|
|
else
|
|
|
|
for(int i = 0; i < globalconf.embedded.len; i++)
|
|
|
|
if(globalconf.embedded.tab[i].win == ev->window)
|
|
|
|
{
|
|
|
|
xembed_window_array_take(&globalconf.embedded, i);
|
2010-07-25 09:26:27 +02:00
|
|
|
xcb_change_save_set(globalconf.connection, XCB_SET_MODE_DELETE, ev->window);
|
2010-10-06 15:38:44 +02:00
|
|
|
luaA_systray_invalidate();
|
2008-12-01 16:43:44 +01:00
|
|
|
}
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The randr screen change notify event handler.
|
|
|
|
* \param ev The event.
|
2008-03-06 09:05:15 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_randr_screen_change_notify(xcb_randr_screen_change_notify_event_t *ev)
|
2007-09-13 16:00:03 +02:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
/* Code of XRRUpdateConfiguration Xlib function ported to XCB
|
|
|
|
* (only the code relevant to RRScreenChangeNotify) as the latter
|
|
|
|
* doesn't provide this kind of function */
|
|
|
|
if(ev->rotation & (XCB_RANDR_ROTATION_ROTATE_90 | XCB_RANDR_ROTATION_ROTATE_270))
|
2010-08-08 17:54:13 +02:00
|
|
|
xcb_randr_set_screen_size(globalconf.connection, ev->root, ev->height, ev->width,
|
2008-03-21 16:50:17 +01:00
|
|
|
ev->mheight, ev->mwidth);
|
|
|
|
else
|
2010-08-08 17:54:13 +02:00
|
|
|
xcb_randr_set_screen_size(globalconf.connection, ev->root, ev->width, ev->height,
|
2008-03-21 16:50:17 +01:00
|
|
|
ev->mwidth, ev->mheight);
|
|
|
|
|
2008-03-28 22:59:05 +01:00
|
|
|
/* XRRUpdateConfiguration also executes the following instruction
|
|
|
|
* but it's not useful because SubpixelOrder is not used at all at
|
|
|
|
* the moment
|
2008-03-21 16:50:17 +01:00
|
|
|
*
|
|
|
|
* XRenderSetSubpixelOrder(dpy, snum, scevent->subpixel_order);
|
|
|
|
*/
|
|
|
|
|
2008-09-02 17:12:10 +02:00
|
|
|
awesome_restart();
|
2007-09-13 16:00:03 +02:00
|
|
|
}
|
|
|
|
|
2008-06-13 18:20:20 +02:00
|
|
|
/** The client message event handler.
|
|
|
|
* \param ev The event.
|
2008-03-06 09:05:15 +01:00
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_clientmessage(xcb_client_message_event_t *ev)
|
2007-12-27 20:49:38 +01:00
|
|
|
{
|
2009-04-03 16:30:18 +02:00
|
|
|
/* check for startup notification messages */
|
|
|
|
if(sn_xcb_display_process_event(globalconf.sndisplay, (xcb_generic_event_t *) ev))
|
2010-08-08 17:54:13 +02:00
|
|
|
return;
|
2008-07-28 17:13:30 +02:00
|
|
|
|
|
|
|
if(ev->type == WM_CHANGE_STATE)
|
|
|
|
{
|
2009-04-03 16:30:18 +02:00
|
|
|
client_t *c;
|
2008-07-28 17:13:30 +02:00
|
|
|
if((c = client_getbywin(ev->window))
|
|
|
|
&& ev->format == 32
|
2008-09-09 16:14:36 +02:00
|
|
|
&& ev->data.data32[0] == XCB_WM_STATE_ICONIC)
|
2009-08-17 17:02:45 +02:00
|
|
|
{
|
|
|
|
luaA_object_push(globalconf.L, c);
|
|
|
|
client_set_minimized(globalconf.L, -1, true);
|
|
|
|
lua_pop(globalconf.L, 1);
|
|
|
|
}
|
2008-07-28 17:13:30 +02:00
|
|
|
}
|
|
|
|
else if(ev->type == _XEMBED)
|
2010-08-08 17:54:13 +02:00
|
|
|
xembed_process_client_message(ev);
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(ev->type == _NET_SYSTEM_TRAY_OPCODE)
|
2010-08-08 17:54:13 +02:00
|
|
|
systray_process_client_message(ev);
|
|
|
|
else
|
|
|
|
ewmh_process_client_message(ev);
|
2007-12-27 20:49:38 +01:00
|
|
|
}
|
|
|
|
|
2008-09-07 23:22:53 +02:00
|
|
|
/** The keymap change notify event handler.
|
|
|
|
* \param ev The event.
|
|
|
|
*/
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_mappingnotify(xcb_mapping_notify_event_t *ev)
|
2008-09-07 23:22:53 +02:00
|
|
|
{
|
|
|
|
if(ev->request == XCB_MAPPING_MODIFIER
|
|
|
|
|| ev->request == XCB_MAPPING_KEYBOARD)
|
|
|
|
{
|
2009-04-28 18:17:16 +02:00
|
|
|
xcb_get_modifier_mapping_cookie_t xmapping_cookie =
|
|
|
|
xcb_get_modifier_mapping_unchecked(globalconf.connection);
|
|
|
|
|
2008-09-07 23:22:53 +02:00
|
|
|
/* Free and then allocate the key symbols */
|
|
|
|
xcb_key_symbols_free(globalconf.keysyms);
|
|
|
|
globalconf.keysyms = xcb_key_symbols_alloc(globalconf.connection);
|
|
|
|
|
2009-04-28 18:17:16 +02:00
|
|
|
xutil_lock_mask_get(globalconf.connection, xmapping_cookie,
|
|
|
|
globalconf.keysyms, &globalconf.numlockmask,
|
|
|
|
&globalconf.shiftlockmask, &globalconf.capslockmask,
|
|
|
|
&globalconf.modeswitchmask);
|
2009-08-14 16:52:22 +02:00
|
|
|
|
|
|
|
/* regrab everything */
|
2010-08-16 14:10:58 +02:00
|
|
|
xcb_screen_t *s = globalconf.screen;
|
2010-08-16 13:47:40 +02:00
|
|
|
/* yes XCB_BUTTON_MASK_ANY is also for grab_key even if it's look weird */
|
|
|
|
xcb_ungrab_key(globalconf.connection, XCB_GRAB_ANY, s->root, XCB_BUTTON_MASK_ANY);
|
|
|
|
xwindow_grabkeys(s->root, &globalconf.keys);
|
2009-08-14 16:52:22 +02:00
|
|
|
|
|
|
|
foreach(_c, globalconf.clients)
|
|
|
|
{
|
|
|
|
client_t *c = *_c;
|
2010-07-30 20:54:20 +02:00
|
|
|
xcb_ungrab_key(globalconf.connection, XCB_GRAB_ANY, c->frame_window, XCB_BUTTON_MASK_ANY);
|
|
|
|
xwindow_grabkeys(c->frame_window, &c->keys);
|
2009-08-14 16:52:22 +02:00
|
|
|
}
|
2008-09-07 23:22:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-08 17:54:13 +02:00
|
|
|
static void
|
|
|
|
event_handle_reparentnotify(xcb_reparent_notify_event_t *ev)
|
2008-09-07 23:43:40 +02:00
|
|
|
{
|
|
|
|
client_t *c;
|
|
|
|
|
2010-07-30 22:25:19 +02:00
|
|
|
if((c = client_getbywin(ev->window)) && c->frame_window != ev->parent)
|
2010-08-11 11:56:47 +02:00
|
|
|
{
|
|
|
|
/* Ignore reparents to the root window, they *might* be caused by
|
|
|
|
* ourselves if a client quickly unmaps and maps itself again. */
|
2010-08-16 14:10:58 +02:00
|
|
|
if (ev->parent != globalconf.screen->root)
|
2010-10-07 12:05:43 +02:00
|
|
|
client_unmanage(c, true);
|
2010-08-11 11:56:47 +02:00
|
|
|
}
|
2008-09-07 23:43:40 +02:00
|
|
|
}
|
|
|
|
|
2010-08-08 17:35:48 +02:00
|
|
|
/** \brief awesome xerror function.
|
|
|
|
* There's no way to check accesses to destroyed windows, thus those cases are
|
|
|
|
* ignored (especially on UnmapNotify's).
|
|
|
|
* \param e The error event.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
xerror(xcb_generic_error_t *e)
|
|
|
|
{
|
|
|
|
/* ignore this */
|
2010-09-15 21:30:45 +02:00
|
|
|
if(e->error_code == XCB_WINDOW
|
|
|
|
|| (e->error_code == XCB_MATCH
|
2010-08-08 17:35:48 +02:00
|
|
|
&& e->major_code == XCB_SET_INPUT_FOCUS)
|
2010-09-15 21:30:45 +02:00
|
|
|
|| (e->error_code == XCB_VALUE
|
2010-08-08 17:35:48 +02:00
|
|
|
&& e->major_code == XCB_KILL_CLIENT)
|
2010-09-15 21:30:45 +02:00
|
|
|
|| (e->error_code == XCB_MATCH
|
|
|
|
&& e->major_code == XCB_CONFIGURE_WINDOW))
|
2010-08-08 17:35:48 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
warn("X error: request=%s, error=%s",
|
|
|
|
xcb_event_get_request_label(e->major_code),
|
|
|
|
xcb_event_get_error_label(e->error_code));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void event_handle(xcb_generic_event_t *event)
|
2008-06-26 22:42:58 +02:00
|
|
|
{
|
2010-08-08 17:35:48 +02:00
|
|
|
uint8_t response_type = XCB_EVENT_RESPONSE_TYPE(event);
|
|
|
|
|
|
|
|
if(response_type == 0)
|
|
|
|
{
|
|
|
|
/* This is an error, not a event */
|
|
|
|
xerror((xcb_generic_error_t *) event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(response_type)
|
|
|
|
{
|
2010-08-08 17:54:13 +02:00
|
|
|
#define EVENT(type, callback) case type: callback((void *) event); return
|
2010-08-08 17:35:48 +02:00
|
|
|
EVENT(XCB_BUTTON_PRESS, event_handle_button);
|
|
|
|
EVENT(XCB_BUTTON_RELEASE, event_handle_button);
|
|
|
|
EVENT(XCB_CONFIGURE_REQUEST, event_handle_configurerequest);
|
|
|
|
EVENT(XCB_CONFIGURE_NOTIFY, event_handle_configurenotify);
|
|
|
|
EVENT(XCB_DESTROY_NOTIFY, event_handle_destroynotify);
|
|
|
|
EVENT(XCB_ENTER_NOTIFY, event_handle_enternotify);
|
|
|
|
EVENT(XCB_CLIENT_MESSAGE, event_handle_clientmessage);
|
|
|
|
EVENT(XCB_EXPOSE, event_handle_expose);
|
|
|
|
EVENT(XCB_FOCUS_IN, event_handle_focusin);
|
|
|
|
EVENT(XCB_KEY_PRESS, event_handle_key);
|
|
|
|
EVENT(XCB_KEY_RELEASE, event_handle_key);
|
|
|
|
EVENT(XCB_LEAVE_NOTIFY, event_handle_leavenotify);
|
|
|
|
EVENT(XCB_MAPPING_NOTIFY, event_handle_mappingnotify);
|
|
|
|
EVENT(XCB_MAP_REQUEST, event_handle_maprequest);
|
|
|
|
EVENT(XCB_MOTION_NOTIFY, event_handle_motionnotify);
|
|
|
|
EVENT(XCB_PROPERTY_NOTIFY, property_handle_propertynotify);
|
|
|
|
EVENT(XCB_REPARENT_NOTIFY, event_handle_reparentnotify);
|
|
|
|
EVENT(XCB_UNMAP_NOTIFY, event_handle_unmapnotify);
|
|
|
|
#undef EVENT
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint8_t randr_screen_change_notify = 0;
|
|
|
|
|
|
|
|
if(randr_screen_change_notify == 0)
|
|
|
|
{
|
|
|
|
/* check for randr extension */
|
|
|
|
const xcb_query_extension_reply_t *randr_query;
|
|
|
|
randr_query = xcb_get_extension_data(globalconf.connection, &xcb_randr_id);
|
|
|
|
if(randr_query->present)
|
|
|
|
randr_screen_change_notify = randr_query->first_event + XCB_RANDR_SCREEN_CHANGE_NOTIFY;
|
|
|
|
}
|
2008-06-26 22:42:58 +02:00
|
|
|
|
2010-08-08 17:35:48 +02:00
|
|
|
if (response_type == randr_screen_change_notify)
|
2010-08-08 17:54:13 +02:00
|
|
|
event_handle_randr_screen_change_notify((void *) event);
|
2008-06-26 22:42:58 +02:00
|
|
|
}
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|