add common.h to dist target
[awesome.git] / client.c
blob044dce9fbbcc3b99ac5e6fc41040aa56a572c0bf
1 /*
2 * client.c - client management
3 *
4 * Copyright © 2007 Julien Danjou <julien@danjou.info>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <stdio.h>
23 #include <X11/Xatom.h>
24 #include <X11/Xutil.h>
25 #include <X11/extensions/shape.h>
27 #include "screen.h"
28 #include "awesome.h"
29 #include "layout.h"
30 #include "tag.h"
31 #include "util.h"
32 #include "statusbar.h"
34 #include "layouts/floating.h"
36 /* extern */
37 extern Client *clients, *sel, *stack; /* global client list and stack */
39 /** Attach client stack to clients stacks
40 * \param c the client
41 */
42 static inline void
43 attachstack(Client * c)
45 c->snext = stack;
46 stack = c;
49 /** Detach client from stack
50 * \param c the client
52 static inline void
53 detachstack(Client * c)
55 Client **tc;
57 for(tc = &stack; *tc && *tc != c; tc = &(*tc)->snext);
58 *tc = c->snext;
61 /** Grab or ungrab buttons when a client is focused
62 * \param c client
63 * \param focused True if client is focused
64 * \param modkey Mod key mask
65 * \param numlockmask Numlock mask
67 static void
68 grabbuttons(Client * c, Bool focused, KeySym modkey, unsigned int numlockmask)
70 XUngrabButton(c->display, AnyButton, AnyModifier, c->win);
72 if(focused)
74 XGrabButton(c->display, Button1, modkey, c->win, False, BUTTONMASK,
75 GrabModeAsync, GrabModeSync, None, None);
76 XGrabButton(c->display, Button1, modkey | LockMask, c->win, False,
77 BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
78 XGrabButton(c->display, Button1, modkey | numlockmask, c->win, False,
79 BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
80 XGrabButton(c->display, Button1, modkey | numlockmask | LockMask,
81 c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
83 XGrabButton(c->display, Button2, modkey, c->win, False, BUTTONMASK,
84 GrabModeAsync, GrabModeSync, None, None);
85 XGrabButton(c->display, Button2, modkey | LockMask, c->win, False,
86 BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
87 XGrabButton(c->display, Button2, modkey | numlockmask, c->win, False,
88 BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
89 XGrabButton(c->display, Button2, modkey | numlockmask | LockMask,
90 c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
92 XGrabButton(c->display, Button3, modkey, c->win, False, BUTTONMASK,
93 GrabModeAsync, GrabModeSync, None, None);
94 XGrabButton(c->display, Button3, modkey | LockMask, c->win, False,
95 BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
96 XGrabButton(c->display, Button3, modkey | numlockmask, c->win, False,
97 BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
98 XGrabButton(c->display, Button3, modkey | numlockmask | LockMask,
99 c->win, False, BUTTONMASK, GrabModeAsync, GrabModeSync, None, None);
101 XUngrabButton(c->display, AnyButton, AnyModifier, RootWindow(c->display, c->screen));
103 else
105 XGrabButton(c->display, AnyButton, AnyModifier, c->win, False, BUTTONMASK,
106 GrabModeAsync, GrabModeSync, None, None);
107 XGrabButton(c->display, Button4, NoSymbol, RootWindow(c->display, c->screen), False, BUTTONMASK,
108 GrabModeAsync, GrabModeSync, None, None);
109 XGrabButton(c->display, Button4, LockMask, RootWindow(c->display, c->screen), False, BUTTONMASK,
110 GrabModeAsync, GrabModeSync, None, None);
111 XGrabButton(c->display, Button4, numlockmask, RootWindow(c->display, c->screen), False, BUTTONMASK,
112 GrabModeAsync, GrabModeSync, None, None);
113 XGrabButton(c->display, Button4, numlockmask | LockMask, RootWindow(c->display, c->screen), False, BUTTONMASK,
114 GrabModeAsync, GrabModeSync, None, None);
116 XGrabButton(c->display, Button5, NoSymbol, RootWindow(c->display, c->screen), False, BUTTONMASK,
117 GrabModeAsync, GrabModeSync, None, None);
118 XGrabButton(c->display, Button5, LockMask, RootWindow(c->display, c->screen), False, BUTTONMASK,
119 GrabModeAsync, GrabModeSync, None, None);
120 XGrabButton(c->display, Button5, numlockmask, RootWindow(c->display, c->screen), False, BUTTONMASK,
121 GrabModeAsync, GrabModeSync, None, None);
122 XGrabButton(c->display, Button5, numlockmask | LockMask, RootWindow(c->display, c->screen), False, BUTTONMASK,
123 GrabModeAsync, GrabModeSync, None, None);
128 /** Check if client supports protocol WM_DELETE_WINDOW
129 * \param c the client
130 * \return True if client has WM_DELETE_WINDOW
132 static Bool
133 isprotodel(Client * c)
135 int i, n;
136 Atom *protocols;
137 Bool ret = False;
139 if(XGetWMProtocols(c->display, c->win, &protocols, &n))
141 for(i = 0; !ret && i < n; i++)
142 if(protocols[i] == XInternAtom(c->display, "WM_DELETE_WINDOW", False))
143 ret = True;
144 XFree(protocols);
146 return ret;
149 /** Set client WM_STATE property
150 * \param c the client
151 * \param state no idea
153 static void
154 setclientstate(Client * c, long state)
156 long data[] = { state, None };
158 XChangeProperty(c->display, c->win, XInternAtom(c->display, "WM_STATE", False),
159 XInternAtom(c->display, "WM_STATE", False), 32,
160 PropModeReplace, (unsigned char *) data, 2);
163 /** Set client transparency using composite
164 * \param c client
165 * \param opacity opacity percentage
167 static void
168 setclienttrans(Client *c, double opacity)
170 unsigned int real_opacity = 0xffffffff;
172 if(opacity >= 0 && opacity <= 100)
174 real_opacity = ((opacity / 100.0) * 0xffffffff);
175 XChangeProperty(c->display, c->win,
176 XInternAtom(c->display, "_NET_WM_WINDOW_OPACITY", False),
177 XA_CARDINAL, 32, PropModeReplace, (unsigned char *) &real_opacity, 1L);
179 else
180 XDeleteProperty(c->display, c->win, XInternAtom(c->display, "_NET_WM_WINDOW_OPACITY", False));
182 XSync(c->display, False);
185 /** Swap two client in the linked list clients
186 * \param c1 first client
187 * \param c2 second client
189 static void
190 client_swap(Client *c1, Client *c2)
192 Client *tmp;
194 tmp = c1->next;
195 c1->next = c2->next;
196 c2->next = (tmp == c2 ? c1 : tmp);
198 tmp = c2->prev;
199 c2->prev = c1->prev;
200 c1->prev = (tmp == c1 ? c2 : tmp );
202 if(c1->next)
203 c1->next->prev = c1;
205 if(c1->prev)
206 c1->prev->next = c1;
208 if(c2->next)
209 c2->next->prev = c2;
211 if(c2->prev)
212 c2->prev->next = c2;
214 if(clients == c1)
215 clients = c2;
218 /** Attach client to the beginning of the clients stack
219 * \param c the client
221 inline void
222 attach(Client * c)
224 if(clients)
225 clients->prev = c;
226 c->next = clients;
227 clients = c;
230 inline void
231 updatetitle(Client * c)
233 if(!xgettextprop(c->display, c->win, XInternAtom(c->display, "_NET_WM_NAME", False), c->name, sizeof c->name))
234 xgettextprop(c->display, c->win, XInternAtom(c->display, "WM_NAME", False), c->name, sizeof c->name);
237 /** Ban client and unmapped it
238 * \param c the client
240 void
241 ban(Client * c)
243 XUnmapWindow(c->display, c->win);
244 setclientstate(c, IconicState);
245 c->isbanned = True;
246 c->unmapped = True;
249 /** Configure client
250 * \param c the client
252 void
253 configure(Client * c)
255 XConfigureEvent ce;
257 ce.type = ConfigureNotify;
258 ce.display = c->display;
259 ce.event = c->win;
260 ce.window = c->win;
261 ce.x = c->x;
262 ce.y = c->y;
263 ce.width = c->w;
264 ce.height = c->h;
265 ce.border_width = c->border;
266 ce.above = None;
267 ce.override_redirect = False;
268 XSendEvent(c->display, c->win, False, StructureNotifyMask, (XEvent *) & ce);
271 void
272 detach(Client * c)
274 if(c->prev)
275 c->prev->next = c->next;
276 if(c->next)
277 c->next->prev = c->prev;
278 if(c == clients)
279 clients = c->next;
280 c->next = c->prev = NULL;
283 /** Give focus to client, or to first client if c is NULL
284 * \param disp Display ref
285 * \param drawcontext drawcontext ref
286 * \param c client
287 * \param selscreen True if current screen is selected
288 * \param awesomeconf awesome config
290 void
291 focus(Display *disp, DC *drawcontext, Client * c, Bool selscreen, awesome_config *awesomeconf)
293 /* if c is NULL or invisible, take next client in the stack */
294 if((!c && selscreen) || (c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags)))
295 for(c = stack; c && !isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); c = c->snext);
297 /* if a client was selected but it's not the current client, unfocus it */
298 if(sel && sel != c)
300 grabbuttons(sel, False, awesomeconf->modkey, awesomeconf->numlockmask);
301 XSetWindowBorder(sel->display, sel->win, drawcontext->norm[ColBorder]);
302 setclienttrans(sel, awesomeconf->opacity_unfocused);
304 if(c)
306 detachstack(c);
307 attachstack(c);
308 grabbuttons(c, True, awesomeconf->modkey, awesomeconf->numlockmask);
310 if(!selscreen)
311 return;
312 sel = c;
313 drawstatusbar(disp, drawcontext, awesomeconf);
314 if(sel)
316 XSetWindowBorder(sel->display, sel->win, drawcontext->sel[ColBorder]);
317 XSetInputFocus(sel->display, sel->win, RevertToPointerRoot, CurrentTime);
318 for(c = stack; c; c = c->snext)
319 if(c != sel)
320 setclienttrans(c, awesomeconf->opacity_unfocused);
321 setclienttrans(sel, -1);
323 else
324 XSetInputFocus(disp, RootWindow(disp, awesomeconf->screen), RevertToPointerRoot, CurrentTime);
327 /** Kill selected client
328 * \param disp Display ref
329 * \param drawcontext Drawcontext ref
330 * \param awesomeconf awesome config
331 * \param arg unused
332 * \ingroup ui_callback
334 void
335 uicb_killclient(Display *disp __attribute__ ((unused)),
336 DC *drawcontext __attribute__ ((unused)),
337 awesome_config *awesomeconf __attribute__ ((unused)),
338 const char *arg __attribute__ ((unused)))
340 XEvent ev;
342 if(!sel)
343 return;
344 if(isprotodel(sel))
346 ev.type = ClientMessage;
347 ev.xclient.window = sel->win;
348 ev.xclient.message_type = XInternAtom(disp, "WM_PROTOCOLS", False);
349 ev.xclient.format = 32;
350 ev.xclient.data.l[0] = XInternAtom(disp, "WM_DELETE_WINDOW", False);
351 ev.xclient.data.l[1] = CurrentTime;
352 XSendEvent(sel->display, sel->win, False, NoEventMask, &ev);
354 else
355 XKillClient(sel->display, sel->win);
359 /** Load windows properties, restoring client's tag
360 * and floating state before awesome was restarted if any
361 * \todo this may bug if number of tags is != than before
362 * \param c Client ref
363 * \param ntags tags number
365 static Bool
366 loadprops(Client * c, int ntags)
368 int i;
369 char *prop;
370 Bool result = False;
372 prop = p_new(char, ntags + 2);
374 if(xgettextprop(c->display, c->win, AWESOMEPROPS_ATOM(c->display), prop, ntags + 2))
376 for(i = 0; i < ntags && prop[i]; i++)
377 if((c->tags[i] = prop[i] == '1'))
378 result = True;
379 if(i <= ntags && prop[i])
380 c->isfloating = prop[i] == '1';
383 p_delete(&prop);
385 return result;
388 /** Manage a new client
389 * \param disp Display ref
390 * \param drawcontext Drawcontext ref
391 * \param w The window
392 * \param wa Window attributes
393 * \param awesomeconf awesome config
395 void
396 manage(Display * disp, DC *drawcontext, Window w, XWindowAttributes * wa, awesome_config *awesomeconf)
398 int i;
399 Client *c, *t = NULL;
400 Window trans;
401 Status rettrans;
402 XWindowChanges wc;
404 c = p_new(Client, 1);
405 c->tags = p_new(Bool, awesomeconf->ntags);
406 c->win = w;
407 c->ftview = True;
408 c->x = c->rw = wa->x;
409 c->y = c->ry = wa->y;
410 c->w = c->rw = wa->width;
411 c->h = c->rh = wa->height;
412 c->oldborder = wa->border_width;
413 c->display = disp;
414 c->screen = awesomeconf->screen;
415 if(c->w == DisplayWidth(disp, c->screen)
416 && c->h == DisplayHeight(disp, c->screen))
418 c->x = 0;
419 c->y = 0;
420 c->border = wa->border_width;
422 else
424 ScreenInfo *si = get_display_info(disp, c->screen, awesomeconf->statusbar);
426 if(c->x + c->w + 2 * c->border > si->x_org + si->width)
427 c->x = c->rx = si->x_org + si->width - c->w - 2 * c->border;
428 if(c->y + c->h + 2 * c->border > si->y_org + si->height)
429 c->y = c->ry = si->y_org + si->height - c->h - 2 * c->border;
430 if(c->x < si->x_org)
431 c->x = c->rx = si->x_org;
432 if(c->y < si->y_org)
433 c->y = c->ry = si->y_org;
434 c->border = awesomeconf->borderpx;
435 XFree(si);
437 wc.border_width = c->border;
438 XConfigureWindow(disp, w, CWBorderWidth, &wc);
439 XSetWindowBorder(disp, w, drawcontext->norm[ColBorder]);
440 configure(c); /* propagates border_width, if size doesn't change */
441 updatesizehints(c);
442 XSelectInput(disp, w, StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
443 if(awesomeconf->have_shape)
445 XShapeSelectInput(disp, w, ShapeNotifyMask);
446 set_shape(c);
448 grabbuttons(c, False, awesomeconf->modkey, awesomeconf->numlockmask);
449 updatetitle(c);
450 if((rettrans = XGetTransientForHint(disp, w, &trans) == Success))
451 for(t = clients; t && t->win != trans; t = t->next);
452 if(t)
453 for(i = 0; i < awesomeconf->ntags; i++)
454 c->tags[i] = t->tags[i];
455 if(!loadprops(c, awesomeconf->ntags))
456 applyrules(c, awesomeconf);
457 if(!c->isfloating)
458 c->isfloating = (rettrans == Success) || c->isfixed;
459 saveprops(c, awesomeconf->ntags);
460 attach(c);
461 attachstack(c);
462 XMoveResizeWindow(disp, c->win, c->x, c->y, c->w, c->h); /* some windows require this */
463 c->isbanned = True;
464 arrange(disp, drawcontext, awesomeconf);
467 void
468 resize(Client * c, int x, int y, int w, int h, Bool sizehints)
470 double dx, dy, max, min, ratio;
471 XWindowChanges wc;
473 if(sizehints)
475 if(c->minay > 0 && c->maxay > 0 && (h - c->baseh) > 0 && (w - c->basew) > 0)
477 dx = (double) (w - c->basew);
478 dy = (double) (h - c->baseh);
479 min = (double) (c->minax) / (double) (c->minay);
480 max = (double) (c->maxax) / (double) (c->maxay);
481 ratio = dx / dy;
482 if(max > 0 && min > 0 && ratio > 0)
484 if(ratio < min)
486 dy = (dx * min + dy) / (min * min + 1);
487 dx = dy * min;
488 w = (int) dx + c->basew;
489 h = (int) dy + c->baseh;
491 else if(ratio > max)
493 dy = (dx * min + dy) / (max * max + 1);
494 dx = dy * min;
495 w = (int) dx + c->basew;
496 h = (int) dy + c->baseh;
500 if(c->minw && w < c->minw)
501 w = c->minw;
502 if(c->minh && h < c->minh)
503 h = c->minh;
504 if(c->maxw && w > c->maxw)
505 w = c->maxw;
506 if(c->maxh && h > c->maxh)
507 h = c->maxh;
508 if(c->incw)
509 w -= (w - c->basew) % c->incw;
510 if(c->inch)
511 h -= (h - c->baseh) % c->inch;
513 if(w <= 0 || h <= 0)
514 return;
515 /* offscreen appearance fixes */
516 if(x > DisplayWidth(c->display, c->screen))
517 x = DisplayWidth(c->display, c->screen) - w - 2 * c->border;
518 if(y > DisplayHeight(c->display, c->screen))
519 y = DisplayHeight(c->display, c->screen) - h - 2 * c->border;
520 if(x + w + 2 * c->border < 0)
521 x = 0;
522 if(y + h + 2 * c->border < 0)
523 y = 0;
524 if(c->x != x || c->y != y || c->w != w || c->h != h)
526 c->x = wc.x = x;
527 c->y = wc.y = y;
528 c->w = wc.width = w;
529 c->h = wc.height = h;
530 wc.border_width = c->border;
531 XConfigureWindow(c->display, c->win, CWX | CWY | CWWidth | CWHeight | CWBorderWidth, &wc);
532 configure(c);
533 XSync(c->display, False);
537 void
538 uicb_moveresize(Display *disp __attribute__ ((unused)),
539 DC *drawcontext __attribute__ ((unused)),
540 awesome_config *awesomeconf,
541 const char *arg)
543 int x, y, w, h, nx, ny, nw, nh, ox, oy, ow, oh;
544 char xabs, yabs, wabs, habs;
545 int mx, my, dx, dy, nmx, nmy;
546 unsigned int dui;
547 Window dummy;
549 if(!IS_ARRANGE(layout_floating))
550 if(!sel || !sel->isfloating || sel->isfixed || !arg)
551 return;
552 if(sscanf(arg, "%d%c %d%c %d%c %d%c", &x, &xabs, &y, &yabs, &w, &wabs, &h, &habs) != 8)
553 return;
554 nx = xabs == 'x' ? sel->x + x : x;
555 ny = yabs == 'y' ? sel->y + y : y;
556 nw = wabs == 'w' ? sel->w + w : w;
557 nh = habs == 'h' ? sel->h + h : h;
559 ox = sel->x;
560 oy = sel->y;
561 ow = sel->w;
562 oh = sel->h;
564 Bool xqp = XQueryPointer(sel->display, RootWindow(sel->display, sel->screen), &dummy, &dummy, &mx, &my, &dx, &dy, &dui);
565 resize(sel, nx, ny, nw, nh, True);
566 if (xqp && ox <= mx && (ox + ow) >= mx && oy <= my && (oy + oh) >= my)
568 nmx = mx-ox+sel->w-ow-1 < 0 ? 0 : mx-ox+sel->w-ow-1;
569 nmy = my-oy+sel->h-oh-1 < 0 ? 0 : my-oy+sel->h-oh-1;
570 XWarpPointer(sel->display, None, sel->win, 0, 0, 0, 0, nmx, nmy);
574 void
575 saveprops(Client * c, int ntags)
577 int i;
578 char *prop;
580 prop = p_new(char, ntags + 2);
582 for(i = 0; i < ntags; i++)
583 prop[i] = c->tags[i] ? '1' : '0';
585 if(i <= ntags)
586 prop[i] = c->isfloating ? '1' : '0';
588 prop[++i] = '\0';
590 XChangeProperty(c->display, c->win, AWESOMEPROPS_ATOM(c->display), XA_STRING, 8,
591 PropModeReplace, (unsigned char *) prop, i);
593 p_delete(&prop);
596 void
597 unban(Client * c)
599 XMapWindow(c->display, c->win);
600 setclientstate(c, NormalState);
601 c->isbanned = False;
602 c->unmapped = False;
605 void
606 unmanage(Client * c, DC *drawcontext, long state, awesome_config *awesomeconf)
608 XWindowChanges wc;
610 c->unmapped = True;
611 wc.border_width = c->oldborder;
612 /* The server grab construct avoids race conditions. */
613 XGrabServer(c->display);
614 XConfigureWindow(c->display, c->win, CWBorderWidth, &wc); /* restore border */
615 detach(c);
616 detachstack(c);
617 if(sel == c)
618 focus(c->display, drawcontext, NULL, True, awesomeconf);
619 XUngrabButton(c->display, AnyButton, AnyModifier, c->win);
620 setclientstate(c, state);
621 XSync(c->display, False);
622 XSetErrorHandler(xerror);
623 XUngrabServer(c->display);
624 if(state != NormalState)
625 arrange(c->display, drawcontext, awesomeconf);
626 p_delete(&c->tags);
627 p_delete(&c);
630 void
631 updatesizehints(Client * c)
633 long msize;
634 XSizeHints size;
636 if(!XGetWMNormalHints(c->display, c->win, &size, &msize) || !size.flags)
637 size.flags = PSize;
638 c->flags = size.flags;
639 if(c->flags & PBaseSize)
641 c->basew = size.base_width;
642 c->baseh = size.base_height;
644 else if(c->flags & PMinSize)
646 c->basew = size.min_width;
647 c->baseh = size.min_height;
649 else
650 c->basew = c->baseh = 0;
651 if(c->flags & PResizeInc)
653 c->incw = size.width_inc;
654 c->inch = size.height_inc;
656 else
657 c->incw = c->inch = 0;
659 if(c->flags & PMaxSize)
661 c->maxw = size.max_width;
662 c->maxh = size.max_height;
664 else
665 c->maxw = c->maxh = 0;
667 if(c->flags & PMinSize)
669 c->minw = size.min_width;
670 c->minh = size.min_height;
672 else if(c->flags & PBaseSize)
674 c->minw = size.base_width;
675 c->minh = size.base_height;
677 else
678 c->minw = c->minh = 0;
680 if(c->flags & PAspect)
682 c->minax = size.min_aspect.x;
683 c->maxax = size.max_aspect.x;
684 c->minay = size.min_aspect.y;
685 c->maxay = size.max_aspect.y;
687 else
688 c->minax = c->maxax = c->minay = c->maxay = 0;
690 c->isfixed = (c->maxw && c->minw && c->maxh && c->minh
691 && c->maxw == c->minw && c->maxh == c->minh);
694 void
695 set_shape(Client *c)
697 int bounding_shaped;
698 int i, b; unsigned int u; /* dummies */
699 /* Logic to decide if we have a shaped window cribbed from fvwm-2.5.10. */
700 if (XShapeQueryExtents(c->display, c->win, &bounding_shaped, &i, &i,
701 &u, &u, &b, &i, &i, &u, &u) && bounding_shaped)
702 XShapeCombineShape(c->display, RootWindow(c->display, c->screen), ShapeBounding, 0, 0, c->win, ShapeBounding, ShapeSet);
705 /** Set selected client transparency
706 * \param disp Display ref
707 * \param drawcontext Drawcontext ref
708 * \param awesomeconf awesome config
709 * \param arg unused arg
710 * \ingroup ui_callback
712 void
713 uicb_settrans(Display *disp __attribute__ ((unused)),
714 DC *drawcontext __attribute__ ((unused)),
715 awesome_config *awesomeconf __attribute__ ((unused)),
716 const char *arg)
718 double delta = 100.0, current_opacity = 0.0;
719 unsigned char *data;
720 Atom actual;
721 int format;
722 unsigned long n, left;
723 unsigned int current_opacity_raw = 0;
724 int set_prop = 0;
726 if(!sel)
727 return;
729 XGetWindowProperty(sel->display, sel->win, XInternAtom(sel->display, "_NET_WM_WINDOW_OPACITY", False),
730 0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left,
731 (unsigned char **) &data);
732 if(data)
734 memcpy(&current_opacity_raw, data, sizeof(unsigned int));
735 XFree(data);
736 current_opacity = (current_opacity_raw * 100.0) / 0xffffffff;
738 else
739 set_prop = 1;
741 delta = compute_new_value_from_arg(arg, current_opacity);
743 if(delta <= 0.0)
744 delta = 0.0;
745 else if(delta > 100.0)
747 delta = 100.0;
748 set_prop = 1;
751 if(delta == 100.0 && !set_prop)
752 setclienttrans(sel, -1);
753 else
754 setclienttrans(sel, delta);
758 /** Set borrder size
759 * \param disp Display ref
760 * \param drawcontext Drawcontext ref
761 * \param awesomeconf awesome config
762 * \param arg X, +X or -X
763 * \ingroup ui_callback
765 void
766 uicb_setborder(Display *disp __attribute__ ((unused)),
767 DC *drawcontext __attribute__ ((unused)),
768 awesome_config *awesomeconf,
769 const char *arg)
771 if(!arg)
772 return;
774 if((awesomeconf->borderpx = (int) compute_new_value_from_arg(arg, (double) awesomeconf->borderpx)) < 0)
775 awesomeconf->borderpx = 0;
778 void
779 uicb_swapnext(Display *disp,
780 DC *drawcontext,
781 awesome_config *awesomeconf,
782 const char *arg __attribute__ ((unused)))
784 Client *next;
786 if(!sel)
787 return;
789 for(next = sel->next; next && !isvisible(next, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); next = next->next);
790 if(next)
792 client_swap(sel, next);
793 arrange(disp, drawcontext, awesomeconf);
797 void
798 uicb_swapprev(Display *disp,
799 DC *drawcontext,
800 awesome_config *awesomeconf,
801 const char *arg __attribute__ ((unused)))
803 Client *prev;
805 if(!sel)
806 return;
808 for(prev = sel->prev; prev && !isvisible(prev, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags); prev = prev->prev);
809 if(prev)
811 client_swap(prev, sel);
812 arrange(disp, drawcontext, awesomeconf);