awesome/client.c

823 lines
24 KiB
C
Raw Normal View History

2007-09-12 14:29:51 +02:00
/*
* client.c - client management
*
* 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.
*
*/
2007-09-05 20:15:00 +02:00
#include <stdio.h>
#include <X11/Xatom.h>
2007-09-12 14:31:19 +02:00
#include <X11/Xutil.h>
2007-09-13 15:57:35 +02:00
#include <X11/extensions/shape.h>
2007-09-05 20:15:00 +02:00
#include "screen.h"
2007-09-10 12:06:54 +02:00
#include "awesome.h"
2007-09-05 20:15:00 +02:00
#include "layout.h"
#include "tag.h"
#include "util.h"
#include "statusbar.h"
2007-09-05 20:15:00 +02:00
#include "layouts/floating.h"
/* extern */
extern Client *clients, *sel, *stack; /* global client list and stack */
/** Attach client stack to clients stacks
* \param c the client
*/
static inline void
attachstack(Client * c)
{
c->snext = stack;
stack = c;
}
/** Detach client from stack
* \param c the client
*/
static inline void
detachstack(Client * c)
{
Client **tc;
for(tc = &stack; *tc && *tc != c; tc = &(*tc)->snext);
*tc = c->snext;
}
/** Grab or ungrab buttons when a client is focused
* \param c client
* \param focused True if client is focused
* \param modkey Mod key mask
* \param numlockmask Numlock mask
*/
static void
grabbuttons(Client * c, Bool focused, KeySym modkey, unsigned int numlockmask)
{
XUngrabButton(c->display, AnyButton, AnyModifier, c->win);
if(focused)
{
XGrabButton(c->display, Button1, modkey, c->win, False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button1, modkey | LockMask, c->win, False,
BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button1, modkey | numlockmask, c->win, False,
BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button1, modkey | numlockmask | LockMask,
c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button2, modkey, c->win, False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button2, modkey | LockMask, c->win, False,
BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button2, modkey | numlockmask, c->win, False,
BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button2, modkey | numlockmask | LockMask,
c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button3, modkey, c->win, False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button3, modkey | LockMask, c->win, False,
BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button3, modkey | numlockmask, c->win, False,
BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button3, modkey | numlockmask | LockMask,
c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
XUngrabButton(c->display, AnyButton, AnyModifier, RootWindow(c->display, c->screen));
2007-09-05 20:15:00 +02:00
}
else
{
XGrabButton(c->display, AnyButton, AnyModifier, c->win, False, BUTTONMASK,
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button4, NoSymbol, RootWindow(c->display, c->screen), False, BUTTONMASK,
2007-09-05 20:15:00 +02:00
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button4, LockMask, RootWindow(c->display, c->screen), False, BUTTONMASK,
2007-09-05 20:15:00 +02:00
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button4, numlockmask, RootWindow(c->display, c->screen), False, BUTTONMASK,
2007-09-05 20:15:00 +02:00
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button4, numlockmask | LockMask, RootWindow(c->display, c->screen), False, BUTTONMASK,
2007-09-05 20:15:00 +02:00
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button5, NoSymbol, RootWindow(c->display, c->screen), False, BUTTONMASK,
2007-09-05 20:15:00 +02:00
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button5, LockMask, RootWindow(c->display, c->screen), False, BUTTONMASK,
2007-09-05 20:15:00 +02:00
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button5, numlockmask, RootWindow(c->display, c->screen), False, BUTTONMASK,
2007-09-05 20:15:00 +02:00
GrabModeAsync, GrabModeSync, None, None);
XGrabButton(c->display, Button5, numlockmask | LockMask, RootWindow(c->display, c->screen), False, BUTTONMASK,
2007-09-05 20:15:00 +02:00
GrabModeAsync, GrabModeSync, None, None);
}
}
/** Check if client supports protocol WM_DELETE_WINDOW
2007-09-05 20:15:00 +02:00
* \param c the client
* \return True if client has WM_DELETE_WINDOW
2007-09-05 20:15:00 +02:00
*/
static Bool
isprotodel(Client * c)
{
int i, n;
Atom *protocols;
Bool ret = False;
if(XGetWMProtocols(c->display, c->win, &protocols, &n))
{
for(i = 0; !ret && i < n; i++)
2007-09-10 16:43:20 +02:00
if(protocols[i] == XInternAtom(c->display, "WM_DELETE_WINDOW", False))
2007-09-05 20:15:00 +02:00
ret = True;
XFree(protocols);
}
return ret;
}
/** Set client WM_STATE property
2007-09-05 20:15:00 +02:00
* \param c the client
* \param state no idea
*/
static void
setclientstate(Client * c, long state)
{
long data[] = { state, None };
2007-09-10 16:47:20 +02:00
XChangeProperty(c->display, c->win, XInternAtom(c->display, "WM_STATE", False),
XInternAtom(c->display, "WM_STATE", False), 32,
2007-09-05 20:15:00 +02:00
PropModeReplace, (unsigned char *) data, 2);
}
/** Set client transparency using composite
* \param c client
* \param opacity opacity percentage
*/
static void
setclienttrans(Client *c, double opacity)
{
unsigned int real_opacity = 0xffffffff;
if(opacity >= 0 && opacity <= 100)
{
real_opacity = ((opacity / 100.0) * 0xffffffff);
XChangeProperty(c->display, c->win,
XInternAtom(c->display, "_NET_WM_WINDOW_OPACITY", False),
XA_CARDINAL, 32, PropModeReplace, (unsigned char *) &real_opacity, 1L);
}
else
XDeleteProperty(c->display, c->win, XInternAtom(c->display, "_NET_WM_WINDOW_OPACITY", False));
XSync(c->display, False);
}
2007-09-05 20:15:00 +02:00
/** Swap two client in the linked list clients
* \param c1 first client
* \param c2 second client
*/
static void
client_swap(Client *c1, Client *c2)
{
Client *tmp;
tmp = c1->next;
c1->next = c2->next;
c2->next = (tmp == c2 ? c1 : tmp);
tmp = c2->prev;
c2->prev = c1->prev;
c1->prev = (tmp == c1 ? c2 : tmp );
if(c1->next)
c1->next->prev = c1;
if(c1->prev)
c1->prev->next = c1;
if(c2->next)
c2->next->prev = c2;
if(c2->prev)
c2->prev->next = c2;
if(clients == c1)
clients = c2;
}
2007-09-05 20:15:00 +02:00
/** Attach client to the beginning of the clients stack
* \param c the client
*/
inline void
attach(Client * c)
{
if(clients)
clients->prev = c;
c->next = clients;
clients = c;
}
inline void
updatetitle(Client * c)
{
if(!xgettextprop(c->display, c->win, XInternAtom(c->display, "_NET_WM_NAME", False), c->name, sizeof c->name))
xgettextprop(c->display, c->win, XInternAtom(c->display, "WM_NAME", False), c->name, sizeof c->name);
2007-09-05 20:15:00 +02:00
}
2007-09-20 21:27:43 +02:00
/** Ban client and unmapped it
2007-09-05 20:15:00 +02:00
* \param c the client
*/
void
ban(Client * c)
{
XUnmapWindow(c->display, c->win);
setclientstate(c, IconicState);
c->isbanned = True;
c->unmapped = True;
2007-09-05 20:15:00 +02:00
}
/** Configure client
* \param c the client
*/
void
configure(Client * c)
{
XConfigureEvent ce;
ce.type = ConfigureNotify;
ce.display = c->display;
ce.event = c->win;
ce.window = c->win;
ce.x = c->x;
ce.y = c->y;
ce.width = c->w;
ce.height = c->h;
ce.border_width = c->border;
ce.above = None;
ce.override_redirect = False;
XSendEvent(c->display, c->win, False, StructureNotifyMask, (XEvent *) & ce);
}
void
detach(Client * c)
{
if(c->prev)
c->prev->next = c->next;
if(c->next)
c->next->prev = c->prev;
if(c == clients)
clients = c->next;
c->next = c->prev = NULL;
}
/** Give focus to client, or to first client if c is NULL
* \param disp Display ref
* \param drawcontext drawcontext ref
* \param c client
* \param selscreen True if current screen is selected
2007-09-10 12:06:54 +02:00
* \param awesomeconf awesome config
2007-09-05 20:15:00 +02:00
*/
void
focus(Display *disp, DC *drawcontext, Client * c, Bool selscreen, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
/* if c is NULL or invisible, take next client in the stack */
2007-09-24 15:37:52 +02:00
if((!c && selscreen) || (c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags)))
for(c = stack; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->snext);
2007-09-05 20:15:00 +02:00
/* if a client was selected but it's not the current client, unfocus it */
if(sel && sel != c)
{
2007-09-10 12:06:54 +02:00
grabbuttons(sel, False, awesomeconf->modkey, awesomeconf->numlockmask);
2007-09-05 20:15:00 +02:00
XSetWindowBorder(sel->display, sel->win, drawcontext->norm[ColBorder]);
2007-09-10 12:06:54 +02:00
setclienttrans(sel, awesomeconf->opacity_unfocused);
2007-09-05 20:15:00 +02:00
}
if(c)
{
detachstack(c);
attachstack(c);
2007-09-10 12:06:54 +02:00
grabbuttons(c, True, awesomeconf->modkey, awesomeconf->numlockmask);
2007-09-05 20:15:00 +02:00
}
if(!selscreen)
return;
sel = c;
drawstatusbar(disp, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
if(sel)
{
XSetWindowBorder(sel->display, sel->win, drawcontext->sel[ColBorder]);
XSetInputFocus(sel->display, sel->win, RevertToPointerRoot, CurrentTime);
for(c = stack; c; c = c->snext)
if(c != sel)
2007-09-10 12:06:54 +02:00
setclienttrans(c, awesomeconf->opacity_unfocused);
setclienttrans(sel, -1);
2007-09-05 20:15:00 +02:00
}
else
XSetInputFocus(disp, RootWindow(disp, awesomeconf->screen), RevertToPointerRoot, CurrentTime);
2007-09-05 20:15:00 +02:00
}
/** Kill selected client
* \param disp Display ref
2007-09-20 21:27:43 +02:00
* \param drawcontext Drawcontext ref
2007-09-10 12:06:54 +02:00
* \param awesomeconf awesome config
2007-09-05 20:15:00 +02:00
* \param arg unused
* \ingroup ui_callback
*/
void
uicb_killclient(Display *disp __attribute__ ((unused)),
2007-09-12 18:11:27 +02:00
DC *drawcontext __attribute__ ((unused)),
2007-09-10 12:06:54 +02:00
awesome_config *awesomeconf __attribute__ ((unused)),
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
XEvent ev;
if(!sel)
return;
if(isprotodel(sel))
{
ev.type = ClientMessage;
ev.xclient.window = sel->win;
2007-09-10 16:44:23 +02:00
ev.xclient.message_type = XInternAtom(disp, "WM_PROTOCOLS", False);
2007-09-05 20:15:00 +02:00
ev.xclient.format = 32;
2007-09-10 16:43:20 +02:00
ev.xclient.data.l[0] = XInternAtom(disp, "WM_DELETE_WINDOW", False);
2007-09-05 20:15:00 +02:00
ev.xclient.data.l[1] = CurrentTime;
XSendEvent(sel->display, sel->win, False, NoEventMask, &ev);
}
else
XKillClient(sel->display, sel->win);
}
2007-09-20 21:27:43 +02:00
/** Load windows properties, restoring client's tag
* and floating state before awesome was restarted if any
* \todo this may bug if number of tags is != than before
* \param c Client ref
* \param ntags tags number
*/
2007-09-05 20:15:00 +02:00
static Bool
loadprops(Client * c, int ntags)
{
int i;
2007-09-06 23:48:18 +02:00
char *prop;
2007-09-05 20:15:00 +02:00
Bool result = False;
2007-09-06 23:48:18 +02:00
prop = p_new(char, ntags + 2);
if(xgettextprop(c->display, c->win, AWESOMEPROPS_ATOM(c->display), prop, ntags + 2))
2007-09-05 20:15:00 +02:00
{
2007-09-06 23:48:18 +02:00
for(i = 0; i < ntags && prop[i]; i++)
2007-09-05 20:15:00 +02:00
if((c->tags[i] = prop[i] == '1'))
result = True;
2007-09-06 23:48:18 +02:00
if(i <= ntags && prop[i])
2007-09-05 20:15:00 +02:00
c->isfloating = prop[i] == '1';
}
2007-09-06 23:48:18 +02:00
p_delete(&prop);
2007-09-05 20:15:00 +02:00
return result;
}
2007-09-20 21:27:43 +02:00
/** Manage a new client
* \param disp Display ref
* \param drawcontext Drawcontext ref
* \param w The window
* \param wa Window attributes
* \param awesomeconf awesome config
*/
2007-09-05 20:15:00 +02:00
void
2007-09-27 18:57:03 +02:00
manage(Display *disp, DC *drawcontext, Window w, XWindowAttributes *wa, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
int i;
Client *c, *t = NULL;
Window trans;
Status rettrans;
XWindowChanges wc;
2007-09-27 21:22:01 +02:00
ScreenInfo *si = get_display_info(disp, awesomeconf->screen, &awesomeconf->statusbar);
2007-09-05 20:15:00 +02:00
c = p_new(Client, 1);
move_client_to_screen(c, awesomeconf);
2007-09-05 20:15:00 +02:00
c->win = w;
c->ftview = True;
c->x = c->rw = wa->x;
c->y = c->ry = wa->y;
c->w = c->rw = wa->width;
c->h = c->rh = wa->height;
c->oldborder = wa->border_width;
c->display = disp;
2007-09-27 21:22:01 +02:00
if(c->w == si->width && c->h == si->height)
2007-09-05 20:15:00 +02:00
{
c->x = 0;
c->y = 0;
2007-09-05 20:15:00 +02:00
c->border = wa->border_width;
}
else
{
if(c->x + c->w + 2 * c->border > si->x_org + si->width)
c->x = c->rx = si->x_org + si->width - c->w - 2 * c->border;
if(c->y + c->h + 2 * c->border > si->y_org + si->height)
c->y = c->ry = si->y_org + si->height - c->h - 2 * c->border;
if(c->x < si->x_org)
c->x = c->rx = si->x_org;
if(c->y < si->y_org)
c->y = c->ry = si->y_org;
2007-09-10 12:06:54 +02:00
c->border = awesomeconf->borderpx;
XFree(si);
2007-09-05 20:15:00 +02:00
}
wc.border_width = c->border;
XConfigureWindow(disp, w, CWBorderWidth, &wc);
XSetWindowBorder(disp, w, drawcontext->norm[ColBorder]);
configure(c); /* propagates border_width, if size doesn't change */
updatesizehints(c);
XSelectInput(disp, w, StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
2007-09-13 15:57:35 +02:00
if(awesomeconf->have_shape)
{
XShapeSelectInput(disp, w, ShapeNotifyMask);
set_shape(c);
}
2007-09-10 12:06:54 +02:00
grabbuttons(c, False, awesomeconf->modkey, awesomeconf->numlockmask);
2007-09-05 20:15:00 +02:00
updatetitle(c);
if((rettrans = XGetTransientForHint(disp, w, &trans) == Success))
for(t = clients; t && t->win != trans; t = t->next);
if(t)
2007-09-10 12:06:54 +02:00
for(i = 0; i < awesomeconf->ntags; i++)
2007-09-05 20:15:00 +02:00
c->tags[i] = t->tags[i];
2007-09-10 12:06:54 +02:00
if(!loadprops(c, awesomeconf->ntags))
applyrules(c, awesomeconf);
2007-09-05 20:15:00 +02:00
if(!c->isfloating)
c->isfloating = (rettrans == Success) || c->isfixed;
2007-09-10 12:06:54 +02:00
saveprops(c, awesomeconf->ntags);
2007-09-05 20:15:00 +02:00
attach(c);
attachstack(c);
XMoveResizeWindow(disp, c->win, c->x, c->y, c->w, c->h); /* some windows require this */
2007-09-15 20:24:40 +02:00
c->isbanned = True;
2007-09-17 13:45:13 +02:00
arrange(disp, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
}
void
resize(Client *c, int x, int y, int w, int h, awesome_config *awesomeconf, Bool sizehints)
2007-09-05 20:15:00 +02:00
{
double dx, dy, max, min, ratio;
XWindowChanges wc;
ScreenInfo *si;
2007-09-05 20:15:00 +02:00
if(sizehints)
{
if(c->minay > 0 && c->maxay > 0 && (h - c->baseh) > 0 && (w - c->basew) > 0)
{
dx = (double) (w - c->basew);
dy = (double) (h - c->baseh);
min = (double) (c->minax) / (double) (c->minay);
max = (double) (c->maxax) / (double) (c->maxay);
ratio = dx / dy;
if(max > 0 && min > 0 && ratio > 0)
{
if(ratio < min)
{
dy = (dx * min + dy) / (min * min + 1);
dx = dy * min;
w = (int) dx + c->basew;
h = (int) dy + c->baseh;
}
else if(ratio > max)
{
dy = (dx * min + dy) / (max * max + 1);
dx = dy * min;
w = (int) dx + c->basew;
h = (int) dy + c->baseh;
}
}
}
if(c->minw && w < c->minw)
w = c->minw;
if(c->minh && h < c->minh)
h = c->minh;
if(c->maxw && w > c->maxw)
w = c->maxw;
if(c->maxh && h > c->maxh)
h = c->maxh;
if(c->incw)
w -= (w - c->basew) % c->incw;
if(c->inch)
h -= (h - c->baseh) % c->inch;
}
if(w <= 0 || h <= 0)
return;
/* offscreen appearance fixes */
if(XineramaIsActive(c->display))
si = get_display_info(c->display, DefaultScreen(c->display), NULL);
else
si = get_display_info(c->display, c->screen, NULL);
if(x > si->width)
x = si->width - w - 2 * c->border;
if(y > si->height)
y = si->height - h - 2 * c->border;
XFree(si);
if(x + w + 2 * c->border < 0)
x = 0;
if(y + h + 2 * c->border < 0)
y = 0;
2007-09-05 20:15:00 +02:00
if(c->x != x || c->y != y || c->w != w || c->h != h)
{
c->x = wc.x = x;
c->y = wc.y = y;
c->w = wc.width = w;
c->h = wc.height = h;
wc.border_width = c->border;
XConfigureWindow(c->display, c->win, CWX | CWY | CWWidth | CWHeight | CWBorderWidth, &wc);
configure(c);
XSync(c->display, False);
if(XineramaIsActive(c->display))
{
c->screen = get_screen_bycoord(c->display, c->x, c->y);
move_client_to_screen(c, &awesomeconf[c->screen - awesomeconf->screen]);
}
2007-09-05 20:15:00 +02:00
}
}
void
uicb_moveresize(Display *disp __attribute__ ((unused)),
2007-09-12 18:11:27 +02:00
DC *drawcontext __attribute__ ((unused)),
2007-09-10 12:06:54 +02:00
awesome_config *awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg)
{
int nx, ny, nw, nh, ox, oy, ow, oh;
char x[8], y[8], w[8], h[8];
2007-09-05 20:15:00 +02:00
int mx, my, dx, dy, nmx, nmy;
unsigned int dui;
Window dummy;
if(!IS_ARRANGE(layout_floating))
2007-09-05 20:15:00 +02:00
if(!sel || !sel->isfloating || sel->isfixed || !arg)
return;
if(sscanf(arg, "%s %s %s %s", x, y, w, h) != 4)
2007-09-05 20:15:00 +02:00
return;
nx = (int) compute_new_value_from_arg(x, sel->x);
ny = (int) compute_new_value_from_arg(y, sel->y);
nw = (int) compute_new_value_from_arg(w, sel->w);
nh = (int) compute_new_value_from_arg(h, sel->h);
2007-09-05 20:15:00 +02:00
ox = sel->x;
oy = sel->y;
ow = sel->w;
oh = sel->h;
2007-09-15 22:51:09 +02:00
Bool xqp = XQueryPointer(sel->display, RootWindow(sel->display, sel->screen), &dummy, &dummy, &mx, &my, &dx, &dy, &dui);
resize(sel, nx, ny, nw, nh, awesomeconf, True);
2007-09-05 20:15:00 +02:00
if (xqp && ox <= mx && (ox + ow) >= mx && oy <= my && (oy + oh) >= my)
{
nmx = mx-ox+sel->w-ow-1 < 0 ? 0 : mx-ox+sel->w-ow-1;
nmy = my-oy+sel->h-oh-1 < 0 ? 0 : my-oy+sel->h-oh-1;
XWarpPointer(sel->display, None, sel->win, 0, 0, 0, 0, nmx, nmy);
}
}
void
saveprops(Client * c, int ntags)
{
int i;
char *prop;
prop = p_new(char, ntags + 2);
for(i = 0; i < ntags; i++)
2007-09-05 20:15:00 +02:00
prop[i] = c->tags[i] ? '1' : '0';
if(i <= ntags)
prop[i] = c->isfloating ? '1' : '0';
prop[++i] = '\0';
XChangeProperty(c->display, c->win, AWESOMEPROPS_ATOM(c->display), XA_STRING, 8,
2007-09-05 20:15:00 +02:00
PropModeReplace, (unsigned char *) prop, i);
p_delete(&prop);
2007-09-05 20:15:00 +02:00
}
void
unban(Client * c)
{
XMapWindow(c->display, c->win);
setclientstate(c, NormalState);
c->isbanned = False;
c->unmapped = False;
2007-09-05 20:15:00 +02:00
}
void
2007-09-10 12:06:54 +02:00
unmanage(Client * c, DC *drawcontext, long state, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
XWindowChanges wc;
c->unmapped = True;
2007-09-05 20:15:00 +02:00
wc.border_width = c->oldborder;
/* The server grab construct avoids race conditions. */
XGrabServer(c->display);
XConfigureWindow(c->display, c->win, CWBorderWidth, &wc); /* restore border */
detach(c);
detachstack(c);
if(sel == c)
focus(c->display, drawcontext, NULL, True, awesomeconf);
2007-09-05 20:15:00 +02:00
XUngrabButton(c->display, AnyButton, AnyModifier, c->win);
setclientstate(c, state);
XSync(c->display, False);
XSetErrorHandler(xerror);
XUngrabServer(c->display);
if(state != NormalState)
2007-09-17 13:45:13 +02:00
arrange(c->display, drawcontext, awesomeconf);
2007-09-05 20:15:00 +02:00
p_delete(&c->tags);
p_delete(&c);
}
void
updatesizehints(Client * c)
{
long msize;
XSizeHints size;
if(!XGetWMNormalHints(c->display, c->win, &size, &msize) || !size.flags)
size.flags = PSize;
c->flags = size.flags;
if(c->flags & PBaseSize)
{
c->basew = size.base_width;
c->baseh = size.base_height;
}
else if(c->flags & PMinSize)
{
c->basew = size.min_width;
c->baseh = size.min_height;
}
else
c->basew = c->baseh = 0;
if(c->flags & PResizeInc)
{
c->incw = size.width_inc;
c->inch = size.height_inc;
}
else
c->incw = c->inch = 0;
if(c->flags & PMaxSize)
{
c->maxw = size.max_width;
c->maxh = size.max_height;
}
else
c->maxw = c->maxh = 0;
if(c->flags & PMinSize)
{
c->minw = size.min_width;
c->minh = size.min_height;
}
else if(c->flags & PBaseSize)
{
c->minw = size.base_width;
c->minh = size.base_height;
}
else
c->minw = c->minh = 0;
if(c->flags & PAspect)
{
c->minax = size.min_aspect.x;
c->maxax = size.max_aspect.x;
c->minay = size.min_aspect.y;
c->maxay = size.max_aspect.y;
}
else
c->minax = c->maxax = c->minay = c->maxay = 0;
c->isfixed = (c->maxw && c->minw && c->maxh && c->minh
&& c->maxw == c->minw && c->maxh == c->minh);
}
2007-09-13 15:57:35 +02:00
void
set_shape(Client *c)
{
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(c->display, c->win, &bounding_shaped, &i, &i,
&u, &u, &b, &i, &i, &u, &u) && bounding_shaped)
2007-09-15 22:51:09 +02:00
XShapeCombineShape(c->display, RootWindow(c->display, c->screen), ShapeBounding, 0, 0, c->win, ShapeBounding, ShapeSet);
2007-09-13 15:57:35 +02:00
}
2007-09-20 21:27:43 +02:00
/** Set selected client transparency
* \param disp Display ref
* \param drawcontext Drawcontext ref
* \param awesomeconf awesome config
* \param arg unused arg
* \ingroup ui_callback
*/
2007-09-05 20:15:00 +02:00
void
uicb_settrans(Display *disp __attribute__ ((unused)),
2007-09-12 18:11:27 +02:00
DC *drawcontext __attribute__ ((unused)),
2007-09-10 12:06:54 +02:00
awesome_config *awesomeconf __attribute__ ((unused)),
2007-09-05 20:15:00 +02:00
const char *arg)
{
2007-09-14 13:50:46 +02:00
double delta = 100.0, current_opacity = 0.0;
2007-09-05 20:15:00 +02:00
unsigned char *data;
Atom actual;
int format;
unsigned long n, left;
2007-09-14 13:50:46 +02:00
unsigned int current_opacity_raw = 0;
2007-09-05 20:15:00 +02:00
int set_prop = 0;
if(!sel)
return;
2007-09-14 13:50:46 +02:00
XGetWindowProperty(sel->display, sel->win, XInternAtom(sel->display, "_NET_WM_WINDOW_OPACITY", False),
0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left,
(unsigned char **) &data);
if(data)
2007-09-05 20:15:00 +02:00
{
2007-09-14 13:50:46 +02:00
memcpy(&current_opacity_raw, data, sizeof(unsigned int));
XFree(data);
current_opacity = (current_opacity_raw * 100.0) / 0xffffffff;
2007-09-05 20:15:00 +02:00
}
2007-09-14 13:50:46 +02:00
else
set_prop = 1;
delta = compute_new_value_from_arg(arg, current_opacity);
2007-09-05 20:15:00 +02:00
if(delta <= 0.0)
delta = 0.0;
else if(delta > 100.0)
{
delta = 100.0;
set_prop = 1;
}
if(delta == 100.0 && !set_prop)
setclienttrans(sel, -1);
2007-09-05 20:15:00 +02:00
else
setclienttrans(sel, delta);
2007-09-05 20:15:00 +02:00
}
/** Set borrder size
* \param disp Display ref
* \param drawcontext Drawcontext ref
* \param awesomeconf awesome config
* \param arg X, +X or -X
2007-09-20 21:27:43 +02:00
* \ingroup ui_callback
*/
void
uicb_setborder(Display *disp __attribute__ ((unused)),
DC *drawcontext __attribute__ ((unused)),
awesome_config *awesomeconf,
const char *arg)
{
if(!arg)
return;
if((awesomeconf->borderpx = (int) compute_new_value_from_arg(arg, (double) awesomeconf->borderpx)) < 0)
awesomeconf->borderpx = 0;
}
void
uicb_swapnext(Display *disp,
DC *drawcontext,
awesome_config *awesomeconf,
const char *arg __attribute__ ((unused)))
{
Client *next;
if(!sel)
return;
for(next = sel->next; next && !isvisible(next, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); next = next->next);
if(next)
{
client_swap(sel, next);
arrange(disp, drawcontext, awesomeconf);
}
}
void
uicb_swapprev(Display *disp,
DC *drawcontext,
awesome_config *awesomeconf,
const char *arg __attribute__ ((unused)))
{
Client *prev;
if(!sel)
return;
for(prev = sel->prev; prev && !isvisible(prev, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); prev = prev->prev);
if(prev)
{
client_swap(prev, sel);
arrange(disp, drawcontext, awesomeconf);
}
}