2007-10-26 18:23:15 +02:00
|
|
|
/*
|
|
|
|
* window.c - window handling functions
|
|
|
|
*
|
2008-01-26 17:58:01 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-10-26 18:23:15 +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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xcb_atom.h>
|
2007-10-26 18:23:15 +02:00
|
|
|
|
|
|
|
#include "window.h"
|
2008-06-30 18:55:14 +02:00
|
|
|
#include "common/atoms.h"
|
2007-10-26 18:23:15 +02:00
|
|
|
|
2008-05-24 08:59:27 +02:00
|
|
|
extern awesome_t globalconf;
|
2007-12-16 02:45:38 +01:00
|
|
|
|
2008-03-06 16:04:58 +01:00
|
|
|
/** Mask shorthands */
|
2008-03-21 16:50:17 +01:00
|
|
|
#define BUTTONMASK (XCB_EVENT_MASK_BUTTON_PRESS | XCB_EVENT_MASK_BUTTON_RELEASE)
|
2008-01-23 15:18:37 +01:00
|
|
|
|
2008-04-29 08:58:36 +02:00
|
|
|
/** Set client state (WM_STATE) property.
|
|
|
|
* \param win The window to set state.
|
|
|
|
* \param state The state to set.
|
2007-10-26 18:23:15 +02:00
|
|
|
*/
|
2008-03-21 16:50:17 +01:00
|
|
|
void
|
|
|
|
window_setstate(xcb_window_t win, long state)
|
2007-10-26 18:23:15 +02:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
long data[] = { state, XCB_NONE };
|
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE, win,
|
2008-06-30 18:55:14 +02:00
|
|
|
WM_STATE, WM_STATE, 32, 2, data);
|
2007-10-26 18:23:15 +02:00
|
|
|
}
|
|
|
|
|
2008-04-29 08:58:36 +02:00
|
|
|
/** Get a window state (WM_STATE).
|
|
|
|
* \param w A client window.
|
2008-04-30 11:01:42 +02:00
|
|
|
* \return The current state of the window, or -1 on error.
|
2007-10-26 18:23:15 +02:00
|
|
|
*/
|
|
|
|
long
|
2008-03-21 16:50:17 +01:00
|
|
|
window_getstate(xcb_window_t w)
|
2007-10-26 18:23:15 +02:00
|
|
|
{
|
|
|
|
long result = -1;
|
|
|
|
unsigned char *p = NULL;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_get_property_cookie_t prop_c;
|
|
|
|
xcb_get_property_reply_t *prop_r;
|
|
|
|
|
|
|
|
prop_c = xcb_get_property_unchecked(globalconf.connection, false, w,
|
2008-06-30 18:55:14 +02:00
|
|
|
WM_STATE, WM_STATE,
|
2008-03-21 16:50:17 +01:00
|
|
|
0L, 2L);
|
|
|
|
|
2008-04-29 08:58:36 +02:00
|
|
|
if(!(prop_r = xcb_get_property_reply(globalconf.connection, prop_c, NULL)))
|
2007-10-26 18:23:15 +02:00
|
|
|
return -1;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
p = xcb_get_property_value(prop_r);
|
|
|
|
if(xcb_get_property_value_length(prop_r) != 0)
|
2007-10-26 18:23:15 +02:00
|
|
|
result = *p;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
p_delete(&prop_r);
|
|
|
|
|
2007-10-26 18:23:15 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2008-04-29 08:58:36 +02:00
|
|
|
/** Configure a window with its new geometry and border size.
|
2008-06-13 19:17:35 +02:00
|
|
|
* \param win The X window id to configure.
|
2008-04-29 08:58:36 +02:00
|
|
|
* \param geometry The new window geometry.
|
|
|
|
* \param border The new border size.
|
2008-03-06 16:04:58 +01:00
|
|
|
*/
|
2008-03-21 16:50:17 +01:00
|
|
|
void
|
|
|
|
window_configure(xcb_window_t win, area_t geometry, int border)
|
2007-10-26 18:23:15 +02:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_configure_notify_event_t ce;
|
2007-10-26 18:23:15 +02:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
ce.response_type = XCB_CONFIGURE_NOTIFY;
|
2007-10-26 18:23:15 +02:00
|
|
|
ce.event = win;
|
|
|
|
ce.window = win;
|
2008-01-05 20:25:55 +01:00
|
|
|
ce.x = geometry.x;
|
|
|
|
ce.y = geometry.y;
|
|
|
|
ce.width = geometry.width;
|
|
|
|
ce.height = geometry.height;
|
2007-10-26 18:23:15 +02:00
|
|
|
ce.border_width = border;
|
2008-03-21 16:50:17 +01:00
|
|
|
ce.above_sibling = XCB_NONE;
|
|
|
|
ce.override_redirect = false;
|
|
|
|
xcb_send_event(globalconf.connection, false, win, XCB_EVENT_MASK_STRUCTURE_NOTIFY, (char *) &ce);
|
2007-10-26 18:23:15 +02:00
|
|
|
}
|
|
|
|
|
2008-04-29 08:58:36 +02:00
|
|
|
/** Grab or ungrab buttons on a window.
|
|
|
|
* \param win The window.
|
2008-06-17 14:35:58 +02:00
|
|
|
* \param root The root window.
|
2008-06-13 19:17:35 +02:00
|
|
|
* \param buttons The buttons to grab.
|
2007-10-26 19:45:33 +02:00
|
|
|
*/
|
|
|
|
void
|
2008-06-17 14:35:58 +02:00
|
|
|
window_grabbuttons(xcb_window_t win, xcb_window_t root, button_t *buttons)
|
2007-10-26 19:45:33 +02:00
|
|
|
{
|
2008-05-23 13:35:46 +02:00
|
|
|
button_t *b;
|
2007-11-12 10:53:48 +01:00
|
|
|
|
2008-06-13 15:35:47 +02:00
|
|
|
for(b = buttons; b; b = b->next)
|
2008-01-25 12:55:44 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_grab_button(globalconf.connection, false, win, BUTTONMASK,
|
2008-05-26 16:17:57 +02:00
|
|
|
XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, XCB_NONE, XCB_NONE,
|
2008-03-21 16:50:17 +01:00
|
|
|
b->button, b->mod);
|
|
|
|
xcb_grab_button(globalconf.connection, false, win, BUTTONMASK,
|
2008-05-26 16:17:57 +02:00
|
|
|
XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, XCB_NONE, XCB_NONE,
|
2008-03-21 16:50:17 +01:00
|
|
|
b->button, b->mod | XCB_MOD_MASK_LOCK);
|
|
|
|
xcb_grab_button(globalconf.connection, false, win, BUTTONMASK,
|
2008-05-26 16:17:57 +02:00
|
|
|
XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, XCB_NONE, XCB_NONE,
|
2008-03-21 16:50:17 +01:00
|
|
|
b->button, b->mod | globalconf.numlockmask);
|
|
|
|
xcb_grab_button(globalconf.connection, false, win, BUTTONMASK,
|
2008-05-26 16:17:57 +02:00
|
|
|
XCB_GRAB_MODE_SYNC, XCB_GRAB_MODE_ASYNC, XCB_NONE, XCB_NONE,
|
2008-03-21 16:50:17 +01:00
|
|
|
b->button, b->mod | globalconf.numlockmask | XCB_MOD_MASK_LOCK);
|
2007-10-26 19:45:33 +02:00
|
|
|
}
|
2008-02-13 06:53:08 +01:00
|
|
|
|
2008-06-17 14:35:58 +02:00
|
|
|
xcb_ungrab_button(globalconf.connection, XCB_BUTTON_INDEX_ANY, root, ANY_MODIFIER);
|
2008-01-25 12:55:44 +01:00
|
|
|
}
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
/** Grab all buttons on the root window.
|
2008-06-17 14:35:58 +02:00
|
|
|
* \param root The root window.
|
2008-03-06 16:04:58 +01:00
|
|
|
*/
|
2008-01-25 12:55:44 +01:00
|
|
|
void
|
2008-06-17 14:35:58 +02:00
|
|
|
window_root_grabbuttons(xcb_window_t root)
|
2008-01-25 12:55:44 +01:00
|
|
|
{
|
2008-05-23 13:35:46 +02:00
|
|
|
button_t *b;
|
2008-01-25 12:55:44 +01:00
|
|
|
|
2008-06-17 14:35:58 +02:00
|
|
|
for(b = globalconf.buttons.root; b; b = b->next)
|
2007-10-26 19:45:33 +02:00
|
|
|
{
|
2008-06-17 14:35:58 +02:00
|
|
|
xcb_grab_button(globalconf.connection, false, root, BUTTONMASK,
|
2008-03-21 16:50:17 +01:00
|
|
|
XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_SYNC, XCB_NONE, XCB_NONE,
|
|
|
|
b->button, b->mod);
|
2008-06-17 14:35:58 +02:00
|
|
|
xcb_grab_button(globalconf.connection, false, root, BUTTONMASK,
|
2008-03-21 16:50:17 +01:00
|
|
|
XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_SYNC, XCB_NONE, XCB_NONE,
|
|
|
|
b->button, b->mod | XCB_MOD_MASK_LOCK);
|
2008-06-17 14:35:58 +02:00
|
|
|
xcb_grab_button(globalconf.connection, false, root, BUTTONMASK,
|
2008-03-21 16:50:17 +01:00
|
|
|
XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_SYNC, XCB_NONE, XCB_NONE,
|
|
|
|
b->button, b->mod | globalconf.numlockmask);
|
2008-06-17 14:35:58 +02:00
|
|
|
xcb_grab_button(globalconf.connection, false, root, BUTTONMASK,
|
2008-03-21 16:50:17 +01:00
|
|
|
XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_SYNC, XCB_NONE, XCB_NONE,
|
|
|
|
b->button, b->mod | globalconf.numlockmask | XCB_MOD_MASK_LOCK);
|
2008-06-17 14:35:58 +02:00
|
|
|
}
|
2007-10-26 19:45:33 +02:00
|
|
|
}
|
|
|
|
|
2008-04-29 08:58:36 +02:00
|
|
|
/** Set transparency of a window.
|
|
|
|
* \param win The window.
|
|
|
|
* \param opacity Opacity of the window, between 0 and 1.
|
|
|
|
*/
|
2008-03-21 16:50:17 +01:00
|
|
|
void
|
|
|
|
window_settrans(xcb_window_t win, double opacity)
|
2007-10-26 18:23:15 +02:00
|
|
|
{
|
|
|
|
unsigned int real_opacity = 0xffffffff;
|
|
|
|
|
2008-03-24 07:47:07 +01:00
|
|
|
if(opacity >= 0 && opacity <= 1)
|
2007-10-26 18:23:15 +02:00
|
|
|
{
|
2008-03-24 07:47:07 +01:00
|
|
|
real_opacity = opacity * 0xffffffff;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE, win,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_WM_WINDOW_OPACITY, CARDINAL, 32, 1L, &real_opacity);
|
2007-10-26 18:23:15 +02:00
|
|
|
}
|
|
|
|
else
|
2008-06-30 18:55:14 +02:00
|
|
|
xcb_delete_property(globalconf.connection, win, _NET_WM_WINDOW_OPACITY);
|
2007-10-26 18:23:15 +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
|