awesome/window.c

176 lines
6.2 KiB
C
Raw Normal View History

/*
* window.c - window handling functions
*
* Copyright © 2007 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.
*
*/
#include <X11/Xatom.h>
#include <X11/extensions/shape.h>
#include "config.h"
#include "window.h"
#include "util.h"
extern AwesomeConf globalconf;
/** Set client WM_STATE property
* \param win Window
* \param state state
*/
int
window_setstate(Window win, long state)
{
long data[] = { state, None };
return XChangeProperty(globalconf.display, win, XInternAtom(globalconf.display, "WM_STATE", False),
XInternAtom(globalconf.display, "WM_STATE", False), 32,
PropModeReplace, (unsigned char *) data, 2);
}
/** Get a window state (WM_STATE)
* \param w Client window
* \return state
*/
long
window_getstate(Window w)
{
int format;
long result = -1;
unsigned char *p = NULL;
unsigned long n, extra;
Atom real;
if(XGetWindowProperty(globalconf.display, w, XInternAtom(globalconf.display, "WM_STATE", False),
0L, 2L, False, XInternAtom(globalconf.display, "WM_STATE", False),
&real, &format, &n, &extra, (unsigned char **) &p) != Success)
return -1;
if(n != 0)
result = *p;
p_delete(&p);
return result;
}
Status
window_configure(Window win, int x, int y, int w, int h, int border)
{
XConfigureEvent ce;
ce.type = ConfigureNotify;
ce.display = globalconf.display;
ce.event = win;
ce.window = win;
ce.x = x;
ce.y = y;
ce.width = w;
ce.height = h;
ce.border_width = border;
ce.above = None;
ce.override_redirect = False;
return XSendEvent(globalconf.display, win, False, StructureNotifyMask, (XEvent *) & ce);
}
2007-10-26 19:45:33 +02:00
/** Grab or ungrab buttons on a window
2007-12-16 03:14:47 +01:00
* \param screen The screen
* \param win The window
2007-10-26 19:45:33 +02:00
* \param focused True if client is focused
* \param raised True if the client is above other clients
*/
void
window_grabbuttons(int screen,
Window win,
Bool focused,
Bool raised)
2007-10-26 19:45:33 +02:00
{
Button *b;
XUngrabButton(globalconf.display, AnyButton, AnyModifier, win);
2007-10-26 19:45:33 +02:00
if(focused)
{
if(!raised)
XGrabButton(globalconf.display, Button1, NoSymbol, win, False,
2007-10-26 19:45:33 +02:00
BUTTONMASK, GrabModeSync, GrabModeAsync, None, None);
for(b = globalconf.buttons.client; b; b = b->next)
{
XGrabButton(globalconf.display, b->button, b->mod, win, False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(globalconf.display, b->button, b->mod | LockMask, win, False,
BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XGrabButton(globalconf.display, b->button, b->mod | globalconf.numlockmask, win, False,
BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XGrabButton(globalconf.display, b->button, b->mod | globalconf.numlockmask | LockMask,
win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
}
2007-10-26 19:45:33 +02:00
XUngrabButton(globalconf.display, AnyButton, AnyModifier, RootWindow(globalconf.display, screen));
2007-10-26 19:45:33 +02:00
}
else
{
XGrabButton(globalconf.display, AnyButton, AnyModifier, win, False, BUTTONMASK,
2007-10-26 19:45:33 +02:00
GrabModeAsync, GrabModeSync, None, None);
for(b = globalconf.buttons.root; b; b = b->next)
{
XGrabButton(globalconf.display, b->button, b->mod,
RootWindow(globalconf.display, screen), False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(globalconf.display, b->button, b->mod | LockMask,
RootWindow(globalconf.display, screen), False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(globalconf.display, b->button, b->mod | globalconf.numlockmask,
RootWindow(globalconf.display, screen), False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(globalconf.display, b->button, b->mod | globalconf.numlockmask | LockMask,
RootWindow(globalconf.display, screen), False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
}
2007-10-26 19:45:33 +02:00
}
}
void
window_setshape(int screen, Window win)
{
int bounding_shaped;
int i, b; unsigned int u; /* dummies */
/* Logic to decide if we have a shaped window cribbed from fvwm-2.5.10. */
if(XShapeQueryExtents(globalconf.display, win, &bounding_shaped, &i, &i,
&u, &u, &b, &i, &i, &u, &u) && bounding_shaped)
XShapeCombineShape(globalconf.display, RootWindow(globalconf.display, screen), ShapeBounding, 0, 0, win, ShapeBounding, ShapeSet);
}
void
window_settrans(Window win, double opacity)
{
unsigned int real_opacity = 0xffffffff;
if(opacity >= 0 && opacity <= 100)
{
real_opacity = ((opacity / 100.0) * 0xffffffff);
XChangeProperty(globalconf.display, win, XInternAtom(globalconf.display, "_NET_WM_WINDOW_OPACITY", False),
XA_CARDINAL, 32, PropModeReplace, (unsigned char *) &real_opacity, 1L);
}
else
XDeleteProperty(globalconf.display, win, XInternAtom(globalconf.display, "_NET_WM_WINDOW_OPACITY", False));
XSync(globalconf.display, False);
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80