simplify unmanage code
[awesome.git] / client.c
blobeb3db59bee4c66308aa94e49dc29bc7b7e2935ba
1 /*
2 * client.c - client management
4 * Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
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/extensions/shape.h>
25 #include <X11/extensions/Xinerama.h>
27 #include "client.h"
28 #include "tag.h"
29 #include "rules.h"
30 #include "util.h"
31 #include "xutil.h"
32 #include "statusbar.h"
33 #include "window.h"
34 #include "focus.h"
35 #include "ewmh.h"
36 #include "screen.h"
37 #include "layouts/floating.h"
40 extern AwesomeConf globalconf;
42 /** Load windows properties, restoring client's tag
43 * and floating state before awesome was restarted if any
44 * \todo this may bug if number of tags is != than before
45 * \param c Client ref
46 * \param screen Screen ID
48 static Bool
49 client_loadprops(Client * c, int screen)
51 int i, ntags = 0;
52 Tag *tag;
53 char *prop;
54 Bool result = False;
56 for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
57 ntags++;
59 prop = p_new(char, ntags + 2);
61 if(xgettextprop(globalconf.display, c->win, AWESOMEPROPS_ATOM(globalconf.display), prop, ntags + 2))
63 for(i = 0, tag = globalconf.screens[screen].tags; tag && i < ntags && prop[i]; i++, tag = tag->next)
64 if(prop[i] == '1')
66 tag_client(c, tag);
67 result = True;
69 else
70 untag_client(c, tag);
72 if(i <= ntags && prop[i])
73 c->isfloating = prop[i] == '1';
76 p_delete(&prop);
78 return result;
81 /** Check if client supports protocol WM_DELETE_WINDOW
82 * \param disp the display
83 * \param win the Window
84 * \return True if client has WM_DELETE_WINDOW
86 static Bool
87 isprotodel(Display *disp, Window win)
89 int i, n;
90 Atom *protocols;
91 Bool ret = False;
93 if(XGetWMProtocols(disp, win, &protocols, &n))
95 for(i = 0; !ret && i < n; i++)
96 if(protocols[i] == XInternAtom(disp, "WM_DELETE_WINDOW", False))
97 ret = True;
98 XFree(protocols);
100 return ret;
103 /** Swap two client in the linked list clients
104 * \param head pointer ito the client list head
105 * \param c1 first client
106 * \param c2 second client
108 static void
109 client_swap(Client **head, Client *c1, Client *c2)
111 Client *tmp;
113 tmp = c1->next;
114 c1->next = c2->next;
115 c2->next = (tmp == c2 ? c1 : tmp);
117 tmp = c2->prev;
118 c2->prev = c1->prev;
119 c1->prev = (tmp == c1 ? c2 : tmp );
121 if(c1->next)
122 c1->next->prev = c1;
124 if(c1->prev)
125 c1->prev->next = c1;
127 if(c2->next)
128 c2->next->prev = c2;
130 if(c2->prev)
131 c2->prev->next = c2;
133 if(*head == c1)
134 *head = c2;
137 /** Get a Client by its window
138 * \param list Client list to look info
139 * \param w Client window to find
140 * \return client
142 Client *
143 get_client_bywin(Client *list, Window w)
145 Client *c;
147 for(c = list; c && c->win != w; c = c->next);
148 return c;
152 /** Get a client by its name
153 * \param list Client list
154 * \param name name to search
155 * \return first matching client
157 Client *
158 get_client_byname(Client *list, char *name)
160 Client *c;
162 for(c = list; c; c = c->next)
163 if(strstr(c->name, name))
164 return c;
166 return NULL;
169 /** Update client name attribute with its title
170 * \param c the client
172 void
173 client_updatetitle(Client *c)
175 if(!xgettextprop(globalconf.display, c->win, XInternAtom(globalconf.display, "_NET_WM_NAME", False), c->name, sizeof(c->name)))
176 xgettextprop(globalconf.display, c->win, XInternAtom(globalconf.display, "WM_NAME", False), c->name, sizeof(c->name));
179 /** Ban client and unmap it
180 * \param c the client
182 void
183 client_ban(Client * c)
185 XUnmapWindow(globalconf.display, c->win);
186 window_setstate(c->win, IconicState);
190 static void
191 client_attach_at_end(Client *c)
193 Client *iter;
194 for(iter = globalconf.clients; iter && iter->next; iter = iter->next);
195 /* stack is empty */
196 if(!iter)
197 globalconf.clients = c;
198 else
200 c->prev = iter;
201 iter->next = c;
205 /** Attach client to the beginning of the clients stack
206 * \param c the client
208 void
209 client_attach(Client *c)
211 if(globalconf.clients)
212 (globalconf.clients)->prev = c;
213 c->next = globalconf.clients;
214 globalconf.clients = c;
217 /** Detach client from clients list
218 * \param c client to detach
220 void
221 client_detach(Client *c)
223 if(c->prev)
224 c->prev->next = c->next;
225 if(c->next)
226 c->next->prev = c->prev;
227 if(c == globalconf.clients)
228 globalconf.clients = c->next;
229 c->next = c->prev = NULL;
232 /** Give focus to client, or to first client if c is NULL
233 * \param c client
234 * \param selscreen True if current screen is selected
235 * \param screen Screen ID
237 void
238 focus(Client *c, Bool selscreen, int screen)
240 int phys_screen = get_phys_screen(screen);
242 /* unfocus current selected client */
243 if(globalconf.focus->client)
245 window_grabbuttons(get_phys_screen(globalconf.focus->client->screen),
246 globalconf.focus->client->win, False, True);
247 XSetWindowBorder(globalconf.display, globalconf.focus->client->win,
248 globalconf.screens[screen].colors_normal[ColBorder].pixel);
249 window_settrans(globalconf.focus->client->win,
250 globalconf.screens[screen].opacity_unfocused);
254 /* if c is NULL or invisible, take next client in the focus history */
255 if((!c && selscreen) || (c && !client_isvisible(c, screen)))
257 c = focus_get_current_client(screen);
258 /* if c is still NULL take next client in the stack */
259 if(!c)
260 for(c = globalconf.clients; c && (c->skip || !client_isvisible(c, screen)); c = c->next);
263 if(c)
265 XSetWindowBorder(globalconf.display, c->win, globalconf.screens[screen].colors_selected[ColBorder].pixel);
266 window_grabbuttons(phys_screen, c->win, True, True);
269 if(!selscreen)
270 return;
272 /* save sel in focus history */
273 focus_add_client(c);
275 statusbar_draw_all(screen);
277 if(globalconf.focus->client)
279 XSetInputFocus(globalconf.display,
280 globalconf.focus->client->win, RevertToPointerRoot, CurrentTime);
281 for(c = globalconf.clients; c; c = c->next)
282 if(c != globalconf.focus->client)
283 window_settrans(globalconf.focus->client->win,
284 globalconf.screens[screen].opacity_unfocused);
285 window_settrans(globalconf.focus->client->win, -1);
287 else
288 XSetInputFocus(globalconf.display,
289 RootWindow(globalconf.display, phys_screen),
290 RevertToPointerRoot, CurrentTime);
292 ewmh_update_net_active_window(phys_screen);
295 /** Manage a new client
296 * \param w The window
297 * \param wa Window attributes
298 * \param screen Screen ID
300 void
301 client_manage(Window w, XWindowAttributes *wa, int screen)
303 Client *c, *t = NULL;
304 Window trans;
305 Status rettrans;
306 XWindowChanges wc;
307 Area area, darea;
308 Tag *tag;
309 Rule *rule;
310 int phys_screen = get_phys_screen(screen);
312 area = get_screen_area(screen, NULL, NULL);
314 c = p_new(Client, 1);
316 c->win = w;
317 c->geometry.x = c->f_geometry.x = c->m_geometry.x = wa->x;
318 c->geometry.y = c->f_geometry.y = c->m_geometry.y = wa->y;
319 c->geometry.width = c->f_geometry.width = c->m_geometry.width = wa->width;
320 c->geometry.height = c->f_geometry.height = c->m_geometry.height = wa->height;
321 c->oldborder = wa->border_width;
323 c->screen = get_screen_bycoord(c->geometry.x, c->geometry.y);
325 move_client_to_screen(c, screen, True);
327 /* update window title */
328 client_updatetitle(c);
330 if(c->geometry.width == area.width && c->geometry.height == area.height)
331 c->border = wa->border_width;
332 else
333 c->border = globalconf.screens[screen].borderpx;
335 ewmh_check_client_hints(c);
336 /* loadprops or apply rules if no props */
337 if(!client_loadprops(c, screen))
338 tag_client_with_rules(c);
341 /* if window request fullscreen mode */
342 if(c->geometry.width == area.width && c->geometry.height == area.height)
344 c->geometry.x = area.x;
345 c->geometry.y = area.y;
347 else
349 darea = get_display_area(phys_screen,
350 globalconf.screens[screen].statusbar,
351 &globalconf.screens[screen].padding);
353 if(c->geometry.x + c->geometry.width + 2 * c->border > darea.x + darea.width)
354 c->geometry.x = c->f_geometry.x = darea.x + darea.width - c->geometry.width - 2 * c->border;
355 if(c->geometry.y + c->geometry.height + 2 * c->border > darea.y + darea.height)
356 c->geometry.y = c->f_geometry.y = darea.y + darea.height - c->geometry.height - 2 * c->border;
357 if(c->geometry.x < darea.x)
358 c->geometry.x = c->f_geometry.x = darea.x;
359 if(c->geometry.y < darea.y)
360 c->geometry.y = c->f_geometry.y = darea.y;
363 /* XXX if this necessary ? */
364 /* set borders */
365 wc.border_width = c->border;
366 XConfigureWindow(globalconf.display, w, CWBorderWidth, &wc);
367 XSetWindowBorder(globalconf.display, w, globalconf.screens[screen].colors_normal[ColBorder].pixel);
368 /* propagates border_width, if size doesn't change */
369 window_configure(c->win, c->geometry, c->border);
371 /* update hints */
372 client_updatesizehints(c);
373 client_updatewmhints(c);
375 XSelectInput(globalconf.display, w, StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
377 /* handle xshape */
378 if(globalconf.have_shape)
380 XShapeSelectInput(globalconf.display, w, ShapeNotifyMask);
381 window_setshape(phys_screen, c->win);
384 /* grab buttons */
385 window_grabbuttons(phys_screen, c->win, False, True);
387 /* check for transient and set tags like its parent */
388 if((rettrans = XGetTransientForHint(globalconf.display, w, &trans) == Success)
389 && (t = get_client_bywin(globalconf.clients, trans)))
390 for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
391 if(is_client_tagged(t, tag))
392 tag_client(c, tag);
394 /* should be floating if transsient or fixed */
395 if(!c->isfloating)
396 c->isfloating = (rettrans == Success) || c->isfixed;
398 /* save new props */
399 client_saveprops(c);
401 /* attach to the stack */
402 for(rule = globalconf.rules; rule; rule = rule->next)
403 if(rule->not_master && client_match_rule(c, rule))
405 client_attach_at_end(c);
406 break;
408 if(!rule)
410 if(globalconf.screens[c->screen].new_become_master)
411 client_attach(c);
412 else
413 client_attach_at_end(c);
416 /* some windows require this */
417 XMoveResizeWindow(globalconf.display, c->win, c->geometry.x, c->geometry.y,
418 c->geometry.width, c->geometry.height);
420 focus(c, True, screen);
422 ewmh_update_net_client_list(phys_screen);
424 /* rearrange to display new window */
425 arrange(screen);
428 /** Resize client window
429 * \param c client to resize
430 * \param x x coord
431 * \param y y coord
432 * \param w width
433 * \param h height
434 * \param sizehints respect size hints
435 * \param volatile_coords register coords in rx/ry/rw/rh
436 * \param return True if resize has been done
438 Bool
439 client_resize(Client *c, Area geometry, Bool sizehints)
441 int new_screen;
442 double dx, dy, max, min, ratio;
443 Area area;
444 XWindowChanges wc;
446 if(sizehints)
448 if(c->minay > 0 && c->maxay > 0 && (geometry.height - c->baseh) > 0
449 && (geometry.width - c->basew) > 0)
451 dx = (double) (geometry.width - c->basew);
452 dy = (double) (geometry.height - c->baseh);
453 min = (double) (c->minax) / (double) (c->minay);
454 max = (double) (c->maxax) / (double) (c->maxay);
455 ratio = dx / dy;
456 if(max > 0 && min > 0 && ratio > 0)
458 if(ratio < min)
460 dy = (dx * min + dy) / (min * min + 1);
461 dx = dy * min;
462 geometry.width = (int) dx + c->basew;
463 geometry.height = (int) dy + c->baseh;
465 else if(ratio > max)
467 dy = (dx * min + dy) / (max * max + 1);
468 dx = dy * min;
469 geometry.width = (int) dx + c->basew;
470 geometry.height = (int) dy + c->baseh;
474 if(c->minw && geometry.width < c->minw)
475 geometry.width = c->minw;
476 if(c->minh && geometry.height < c->minh)
477 geometry.height = c->minh;
478 if(c->maxw && geometry.width > c->maxw)
479 geometry.width = c->maxw;
480 if(c->maxh && geometry.height > c->maxh)
481 geometry.height = c->maxh;
482 if(c->incw)
483 geometry.width -= (geometry.width - c->basew) % c->incw;
484 if(c->inch)
485 geometry.height -= (geometry.height - c->baseh) % c->inch;
487 if(geometry.width <= 0 || geometry.height <= 0)
488 return False;
489 /* offscreen appearance fixes */
490 area = get_display_area(get_phys_screen(c->screen),
491 NULL,
492 &globalconf.screens[c->screen].padding);
493 if(geometry.x > area.width)
494 geometry.x = area.width - geometry.width - 2 * c->border;
495 if(geometry.y > area.height)
496 geometry.y = area.height - geometry.height - 2 * c->border;
497 if(geometry.x + geometry.width + 2 * c->border < 0)
498 geometry.x = 0;
499 if(geometry.y + geometry.height + 2 * c->border < 0)
500 geometry.y = 0;
502 if(c->geometry.x != geometry.x || c->geometry.y != geometry.y
503 || c->geometry.width != geometry.width || c->geometry.height != geometry.height)
505 if(XineramaIsActive(globalconf.display))
506 new_screen = get_screen_bycoord(geometry.x, geometry.y);
507 else
508 new_screen = c->screen;
510 c->geometry.x = wc.x = geometry.x;
511 c->geometry.y = wc.y = geometry.y;
512 c->geometry.width = wc.width = geometry.width;
513 c->geometry.height = wc.height = geometry.height;
514 wc.border_width = c->border;
516 if(c->isfloating ||
517 get_current_layout(new_screen)->arrange == layout_floating)
518 c->f_geometry = geometry;
520 XConfigureWindow(globalconf.display, c->win,
521 CWX | CWY | CWWidth | CWHeight | CWBorderWidth, &wc);
522 window_configure(c->win, geometry, c->border);
524 if(c->screen != new_screen)
525 move_client_to_screen(c, new_screen, False);
527 return True;
529 return False;
532 /** Save client properties as an X property
533 * \param c client
535 void
536 client_saveprops(Client *c)
538 int i = 0, ntags = 0;
539 char *prop;
540 Tag *tag;
542 for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
543 ntags++;
545 prop = p_new(char, ntags + 2);
547 for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next, i++)
548 prop[i] = is_client_tagged(c, tag) ? '1' : '0';
550 if(i <= ntags)
551 prop[i] = c->isfloating ? '1' : '0';
553 prop[++i] = '\0';
555 XChangeProperty(globalconf.display, c->win, AWESOMEPROPS_ATOM(globalconf.display), XA_STRING, 8,
556 PropModeReplace, (unsigned char *) prop, i);
558 p_delete(&prop);
561 void
562 client_unban(Client *c)
564 XMapWindow(globalconf.display, c->win);
565 window_setstate(c->win, NormalState);
568 void
569 client_unmanage(Client *c)
571 XWindowChanges wc;
572 Tag *tag;
574 wc.border_width = c->oldborder;
576 /* The server grab construct avoids race conditions. */
577 XGrabServer(globalconf.display);
579 XConfigureWindow(globalconf.display, c->win, CWBorderWidth, &wc); /* restore border */
581 /* remove client everywhere */
582 client_detach(c);
583 focus_delete_client(c);
584 for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
585 untag_client(c, tag);
587 if(globalconf.focus->client == c)
588 focus(NULL, True, c->screen);
591 XUngrabButton(globalconf.display, AnyButton, AnyModifier, c->win);
592 window_setstate(c->win, WithdrawnState);
594 XSync(globalconf.display, False);
595 XUngrabServer(globalconf.display);
597 arrange(c->screen);
598 p_delete(&c);
601 void
602 client_updatewmhints(Client *c)
604 XWMHints *wmh;
606 if((wmh = XGetWMHints(globalconf.display, c->win)))
608 c->isurgent = (wmh->flags & XUrgencyHint);
609 if((wmh->flags & StateHint) && wmh->initial_state == WithdrawnState)
610 c->skip = True;
611 XFree(wmh);
615 void
616 client_updatesizehints(Client *c)
618 long msize;
619 XSizeHints size;
621 if(!XGetWMNormalHints(globalconf.display, c->win, &size, &msize) || !size.flags)
622 size.flags = PSize;
623 if(size.flags & PBaseSize)
625 c->basew = size.base_width;
626 c->baseh = size.base_height;
628 else if(size.flags & PMinSize)
630 c->basew = size.min_width;
631 c->baseh = size.min_height;
633 else
634 c->basew = c->baseh = 0;
635 if(size.flags & PResizeInc)
637 c->incw = size.width_inc;
638 c->inch = size.height_inc;
640 else
641 c->incw = c->inch = 0;
643 if(size.flags & PMaxSize)
645 c->maxw = size.max_width;
646 c->maxh = size.max_height;
648 else
649 c->maxw = c->maxh = 0;
651 if(size.flags & PMinSize)
653 c->minw = size.min_width;
654 c->minh = size.min_height;
656 else if(size.flags & PBaseSize)
658 c->minw = size.base_width;
659 c->minh = size.base_height;
661 else
662 c->minw = c->minh = 0;
664 if(size.flags & PAspect)
666 c->minax = size.min_aspect.x;
667 c->maxax = size.max_aspect.x;
668 c->minay = size.min_aspect.y;
669 c->maxay = size.max_aspect.y;
671 else
672 c->minax = c->maxax = c->minay = c->maxay = 0;
674 if(c->maxw && c->minw && c->maxh && c->minh
675 && c->maxw == c->minw && c->maxh == c->minh)
676 c->isfixed = True;
679 /** Returns True if a client is tagged
680 * with one of the tags
681 * \return True or False
683 Bool
684 client_isvisible(Client *c, int screen)
686 Tag *tag;
688 if(c->screen != screen)
689 return False;
691 for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
692 if(tag->selected && is_client_tagged(c, tag))
693 return True;
694 return False;
697 /** Set selected client transparency
698 * \param screen Screen ID
699 * \param arg unused arg
700 * \ingroup ui_callback
702 void
703 uicb_client_settrans(int screen __attribute__ ((unused)), char *arg)
705 double delta = 100.0, current_opacity = 100.0;
706 unsigned char *data;
707 Atom actual;
708 int format;
709 unsigned long n, left;
710 unsigned int current_opacity_raw = 0;
711 int set_prop = 0;
712 Client *sel = globalconf.focus->client;
714 if(!sel)
715 return;
717 XGetWindowProperty(globalconf.display, sel->win,
718 XInternAtom(globalconf.display, "_NET_WM_WINDOW_OPACITY", False),
719 0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left,
720 (unsigned char **) &data);
721 if(data)
723 memcpy(&current_opacity_raw, data, sizeof(unsigned int));
724 XFree(data);
725 current_opacity = (current_opacity_raw * 100.0) / 0xffffffff;
727 else
728 set_prop = 1;
730 delta = compute_new_value_from_arg(arg, current_opacity);
732 if(delta <= 0.0)
733 delta = 0.0;
734 else if(delta > 100.0)
736 delta = 100.0;
737 set_prop = 1;
740 if(delta == 100.0 && !set_prop)
741 window_settrans(sel->win, -1);
742 else
743 window_settrans(sel->win, delta);
746 /** Swap current with next client
747 * \param screen Screen ID
748 * \param arg nothing
749 * \ingroup ui_callback
751 void
752 uicb_client_swapnext(int screen, char *arg __attribute__ ((unused)))
754 Client *next, *sel = globalconf.focus->client;
756 if(!sel)
757 return;
759 for(next = sel->next; next && !client_isvisible(next, screen); next = next->next);
760 if(next)
762 client_swap(&globalconf.clients, sel, next);
763 arrange(screen);
764 /* restore focus */
765 focus(sel, True, screen);
769 /** Swap current with previous client
770 * \param screen Screen ID
771 * \param arg nothing
772 * \ingroup ui_callback
774 void
775 uicb_client_swapprev(int screen, char *arg __attribute__ ((unused)))
777 Client *prev, *sel = globalconf.focus->client;
779 if(!sel)
780 return;
782 for(prev = sel->prev; prev && !client_isvisible(prev, screen); prev = prev->prev);
783 if(prev)
785 client_swap(&globalconf.clients, prev, sel);
786 arrange(screen);
787 /* restore focus */
788 focus(sel, True, screen);
792 /** Move and resize client
793 * \param screen Screen ID
794 * \param arg x y w h
795 * \ingroup ui_callback
797 void
798 uicb_client_moveresize(int screen, char *arg)
800 int ox, oy, ow, oh;
801 char x[8], y[8], w[8], h[8];
802 int mx, my, dx, dy, nmx, nmy;
803 unsigned int dui;
804 Window dummy;
805 Area area;
806 Client *sel = globalconf.focus->client;
807 Tag **curtags = get_current_tags(screen);
809 if(curtags[0]->layout->arrange != layout_floating)
810 if(!sel || !sel->isfloating || sel->isfixed || !arg)
812 p_delete(&curtags);
813 return;
815 p_delete(&curtags);
816 if(sscanf(arg, "%s %s %s %s", x, y, w, h) != 4)
817 return;
818 area.x = (int) compute_new_value_from_arg(x, sel->geometry.x);
819 area.y = (int) compute_new_value_from_arg(y, sel->geometry.y);
820 area.width = (int) compute_new_value_from_arg(w, sel->geometry.width);
821 area.height = (int) compute_new_value_from_arg(h, sel->geometry.height);
823 ox = sel->geometry.x;
824 oy = sel->geometry.y;
825 ow = sel->geometry.width;
826 oh = sel->geometry.height;
828 Bool xqp = XQueryPointer(globalconf.display,
829 RootWindow(globalconf.display,
830 get_phys_screen(screen)),
831 &dummy, &dummy, &mx, &my, &dx, &dy, &dui);
832 client_resize(sel, area, globalconf.screens[sel->screen].resize_hints);
833 if (xqp && ox <= mx && (ox + ow) >= mx && oy <= my && (oy + oh) >= my)
835 nmx = mx - ox + sel->geometry.width - ow - 1 < 0 ? 0 : mx - ox + sel->geometry.width - ow - 1;
836 nmy = my - oy + sel->geometry.height - oh - 1 < 0 ? 0 : my - oy + sel->geometry.height - oh - 1;
837 XWarpPointer(globalconf.display,
838 None, sel->win,
839 0, 0, 0, 0, nmx, nmy);
844 void
845 client_kill(Client *c)
847 XEvent ev;
849 if(isprotodel(globalconf.display, c->win))
851 ev.type = ClientMessage;
852 ev.xclient.window = c->win;
853 ev.xclient.message_type = XInternAtom(globalconf.display, "WM_PROTOCOLS", False);
854 ev.xclient.format = 32;
855 ev.xclient.data.l[0] = XInternAtom(globalconf.display, "WM_DELETE_WINDOW", False);
856 ev.xclient.data.l[1] = CurrentTime;
857 XSendEvent(globalconf.display, c->win, False, NoEventMask, &ev);
859 else
860 XKillClient(globalconf.display, c->win);
863 /** Kill selected client
864 * \param screen Screen ID
865 * \param arg unused
866 * \ingroup ui_callback
868 void
869 uicb_client_kill(int screen __attribute__ ((unused)), char *arg __attribute__ ((unused)))
871 Client *sel = globalconf.focus->client;
873 if(sel)
874 client_kill(sel);
877 static void
878 client_maximize(Client *c, Area geometry)
881 if((c->ismax = !c->ismax))
883 c->wasfloating = c->isfloating;
884 c->m_geometry = c->geometry;
885 client_resize(c, geometry, False);
886 /* set floating after resizing so it won't save
887 * coords */
888 c->isfloating = True;
890 else if(c->wasfloating)
892 c->isfloating = True;
893 client_resize(c, c->m_geometry, False);
895 else
897 c->isfloating = False;
898 arrange(c->screen);
900 statusbar_draw_all(c->screen);
903 /** Toggle maximize for client
904 * \param screen Screen ID
905 * \param arg Unused
906 * \ingroup ui_callback
908 void
909 uicb_client_togglemax(int screen, char *arg __attribute__ ((unused)))
911 Client *sel = globalconf.focus->client;
912 Area area = get_screen_area(screen,
913 globalconf.screens[screen].statusbar,
914 &globalconf.screens[screen].padding);
916 if(sel)
918 area.width -= 2 * sel->border;
919 area.height -= 2 * sel->border;
920 client_maximize(sel, area);
924 /** Toggle vertical maximize for client
925 * \param screen Screen ID
926 * \param arg Unused
927 * \ingroup ui_callback
929 void
930 uicb_client_toggleverticalmax(int screen, char *arg __attribute__ ((unused)))
932 Client *sel = globalconf.focus->client;
933 Area area = get_screen_area(screen,
934 globalconf.screens[screen].statusbar,
935 &globalconf.screens[screen].padding);
937 if(sel)
939 area.x = sel->geometry.x;
940 area.height -= 2 * sel->border;
941 client_maximize(sel, area);
946 /** Toggle horizontal maximize for client
947 * \param screen Screen ID
948 * \param arg Unused
949 * \ingroup ui_callback
951 void
952 uicb_client_togglehorizontalmax(int screen, char *arg __attribute__ ((unused)))
954 Client *sel = globalconf.focus->client;
955 Area area = get_screen_area(screen,
956 globalconf.screens[screen].statusbar,
957 &globalconf.screens[screen].padding);
959 if(sel)
961 area.y = sel->geometry.y;
962 area.width -= 2 * sel->border;
963 client_maximize(sel, area);
967 /** Zoom client
968 * \param screen Screen ID
969 * \param arg Unused
970 * \ingroup ui_callback
972 void
973 uicb_client_zoom(int screen, char *arg __attribute__ ((unused)))
975 Client *sel = globalconf.focus->client;
977 if(globalconf.clients == sel)
978 for(sel = sel->next; sel && !client_isvisible(sel, screen); sel = sel->next);
980 if(!sel)
981 return;
983 client_detach(sel);
984 client_attach(sel);
986 focus(sel, True, screen);
987 arrange(screen);
990 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80