remove unused variable
[awesome.git] / client.c
blobb9d5622002e2b93cc73d71e9a2eaffaecd69408a
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 "awesome.h"
29 #include "tag.h"
30 #include "rules.h"
31 #include "util.h"
32 #include "xutil.h"
33 #include "statusbar.h"
34 #include "window.h"
35 #include "focus.h"
36 #include "ewmh.h"
37 #include "screen.h"
38 #include "layouts/floating.h"
41 extern AwesomeConf globalconf;
43 /** Load windows properties, restoring client's tag
44 * and floating state before awesome was restarted if any
45 * \todo this may bug if number of tags is != than before
46 * \param c Client ref
47 * \param screen Screen ID
49 static Bool
50 client_loadprops(Client * c, int screen)
52 int i, ntags = 0;
53 Tag *tag;
54 char *prop;
55 Bool result = False;
57 for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
58 ntags++;
60 prop = p_new(char, ntags + 2);
62 if(xgettextprop(globalconf.display, c->win, AWESOMEPROPS_ATOM(globalconf.display), prop, ntags + 2))
64 for(i = 0, tag = globalconf.screens[screen].tags; tag && i < ntags && prop[i]; i++, tag = tag->next)
65 if(prop[i] == '1')
67 tag_client(c, tag);
68 result = True;
70 else
71 untag_client(c, tag);
73 if(i <= ntags && prop[i])
74 c->isfloating = prop[i] == '1';
77 p_delete(&prop);
79 return result;
82 /** Check if client supports protocol WM_DELETE_WINDOW
83 * \param disp the display
84 * \param win the Window
85 * \return True if client has WM_DELETE_WINDOW
87 static Bool
88 isprotodel(Display *disp, Window win)
90 int i, n;
91 Atom *protocols;
92 Bool ret = False;
94 if(XGetWMProtocols(disp, win, &protocols, &n))
96 for(i = 0; !ret && i < n; i++)
97 if(protocols[i] == XInternAtom(disp, "WM_DELETE_WINDOW", False))
98 ret = True;
99 XFree(protocols);
101 return ret;
104 /** Swap two client in the linked list clients
105 * \param head pointer ito the client list head
106 * \param c1 first client
107 * \param c2 second client
109 static void
110 client_swap(Client **head, Client *c1, Client *c2)
112 Client *tmp;
114 tmp = c1->next;
115 c1->next = c2->next;
116 c2->next = (tmp == c2 ? c1 : tmp);
118 tmp = c2->prev;
119 c2->prev = c1->prev;
120 c1->prev = (tmp == c1 ? c2 : tmp );
122 if(c1->next)
123 c1->next->prev = c1;
125 if(c1->prev)
126 c1->prev->next = c1;
128 if(c2->next)
129 c2->next->prev = c2;
131 if(c2->prev)
132 c2->prev->next = c2;
134 if(*head == c1)
135 *head = c2;
138 /** Get a Client by its window
139 * \param list Client list to look info
140 * \param w Client window to find
141 * \return client
143 Client *
144 get_client_bywin(Client *list, Window w)
146 Client *c;
148 for(c = list; c && c->win != w; c = c->next);
149 return c;
153 /** Get a client by its name
154 * \param list Client list
155 * \param name name to search
156 * \return first matching client
158 Client *
159 get_client_byname(Client *list, char *name)
161 Client *c;
163 for(c = list; c; c = c->next)
164 if(strstr(c->name, name))
165 return c;
167 return NULL;
170 /** Update client name attribute with its title
171 * \param c the client
173 void
174 client_updatetitle(Client *c)
176 if(!xgettextprop(globalconf.display, c->win, XInternAtom(globalconf.display, "_NET_WM_NAME", False), c->name, sizeof(c->name)))
177 xgettextprop(globalconf.display, c->win, XInternAtom(globalconf.display, "WM_NAME", False), c->name, sizeof(c->name));
180 /** Ban client and unmap it
181 * \param c the client
183 void
184 client_ban(Client * c)
186 XUnmapWindow(globalconf.display, c->win);
187 window_setstate(c->win, IconicState);
191 static void
192 client_attach_at_end(Client *c)
194 Client *iter;
195 for(iter = globalconf.clients; iter && iter->next; iter = iter->next);
196 /* stack is empty */
197 if(!iter)
198 globalconf.clients = c;
199 else
201 c->prev = iter;
202 iter->next = c;
206 /** Attach client to the beginning of the clients stack
207 * \param c the client
209 void
210 client_attach(Client *c)
212 if(globalconf.clients)
213 (globalconf.clients)->prev = c;
214 c->next = globalconf.clients;
215 globalconf.clients = c;
218 /** Detach client from clients list
219 * \param c client to detach
221 void
222 client_detach(Client *c)
224 if(c->prev)
225 c->prev->next = c->next;
226 if(c->next)
227 c->next->prev = c->prev;
228 if(c == globalconf.clients)
229 globalconf.clients = c->next;
230 c->next = c->prev = NULL;
233 /** Give focus to client, or to first client if c is NULL
234 * \param c client
235 * \param selscreen True if current screen is selected
236 * \param screen Screen ID
238 void
239 focus(Client *c, Bool selscreen, int screen)
241 int phys_screen = get_phys_screen(screen);
243 /* unfocus current selected client */
244 if(globalconf.focus->client)
246 window_grabbuttons(get_phys_screen(globalconf.focus->client->screen),
247 globalconf.focus->client->win, False, True);
248 XSetWindowBorder(globalconf.display, globalconf.focus->client->win,
249 globalconf.screens[screen].colors_normal[ColBorder].pixel);
250 window_settrans(globalconf.focus->client->win,
251 globalconf.screens[screen].opacity_unfocused);
255 /* if c is NULL or invisible, take next client in the focus history */
256 if((!c && selscreen) || (c && !client_isvisible(c, screen)))
258 c = focus_get_current_client(screen);
259 /* if c is still NULL take next client in the stack */
260 if(!c)
261 for(c = globalconf.clients; c && (c->skip || !client_isvisible(c, screen)); c = c->next);
264 if(c)
266 XSetWindowBorder(globalconf.display, c->win, globalconf.screens[screen].colors_selected[ColBorder].pixel);
267 window_grabbuttons(phys_screen, c->win, True, True);
270 if(!selscreen)
271 return;
273 /* save sel in focus history */
274 focus_add_client(c);
276 statusbar_draw_all(screen);
278 if(globalconf.focus->client)
280 XSetInputFocus(globalconf.display,
281 globalconf.focus->client->win, RevertToPointerRoot, CurrentTime);
282 for(c = globalconf.clients; c; c = c->next)
283 if(c != globalconf.focus->client)
284 window_settrans(globalconf.focus->client->win,
285 globalconf.screens[screen].opacity_unfocused);
286 window_settrans(globalconf.focus->client->win, -1);
288 else
289 XSetInputFocus(globalconf.display,
290 RootWindow(globalconf.display, phys_screen),
291 RevertToPointerRoot, CurrentTime);
293 ewmh_update_net_active_window(phys_screen);
296 /** Manage a new client
297 * \param w The window
298 * \param wa Window attributes
299 * \param screen Screen ID
301 void
302 client_manage(Window w, XWindowAttributes *wa, int screen)
304 Client *c, *t = NULL;
305 Window trans;
306 Status rettrans;
307 XWindowChanges wc;
308 Area area, darea;
309 Tag *tag;
310 Rule *rule;
311 int phys_screen = get_phys_screen(screen);
313 area = get_screen_area(screen, NULL, NULL);
315 c = p_new(Client, 1);
317 c->win = w;
318 c->geometry.x = c->f_geometry.x = c->m_geometry.x = wa->x;
319 c->geometry.y = c->f_geometry.y = c->m_geometry.y = wa->y;
320 c->geometry.width = c->f_geometry.width = c->m_geometry.width = wa->width;
321 c->geometry.height = c->f_geometry.height = c->m_geometry.height = wa->height;
322 c->oldborder = wa->border_width;
324 c->screen = get_screen_bycoord(c->geometry.x, c->geometry.y);
326 move_client_to_screen(c, screen, True);
328 /* update window title */
329 client_updatetitle(c);
331 if(c->geometry.width == area.width && c->geometry.height == area.height)
332 c->border = wa->border_width;
333 else
334 c->border = globalconf.screens[screen].borderpx;
336 ewmh_check_client_hints(c);
337 /* loadprops or apply rules if no props */
338 if(!client_loadprops(c, screen))
339 tag_client_with_rules(c);
342 /* if window request fullscreen mode */
343 if(c->geometry.width == area.width && c->geometry.height == area.height)
345 c->geometry.x = area.x;
346 c->geometry.y = area.y;
348 else
350 darea = get_display_area(phys_screen,
351 globalconf.screens[screen].statusbar,
352 &globalconf.screens[screen].padding);
354 if(c->geometry.x + c->geometry.width + 2 * c->border > darea.x + darea.width)
355 c->geometry.x = c->f_geometry.x = darea.x + darea.width - c->geometry.width - 2 * c->border;
356 if(c->geometry.y + c->geometry.height + 2 * c->border > darea.y + darea.height)
357 c->geometry.y = c->f_geometry.y = darea.y + darea.height - c->geometry.height - 2 * c->border;
358 if(c->geometry.x < darea.x)
359 c->geometry.x = c->f_geometry.x = darea.x;
360 if(c->geometry.y < darea.y)
361 c->geometry.y = c->f_geometry.y = darea.y;
364 /* XXX if this necessary ? */
365 /* set borders */
366 wc.border_width = c->border;
367 XConfigureWindow(globalconf.display, w, CWBorderWidth, &wc);
368 XSetWindowBorder(globalconf.display, w, globalconf.screens[screen].colors_normal[ColBorder].pixel);
369 /* propagates border_width, if size doesn't change */
370 window_configure(c->win, c->geometry, c->border);
372 /* update hints */
373 client_updatesizehints(c);
374 client_updatewmhints(c);
376 XSelectInput(globalconf.display, w, StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
378 /* handle xshape */
379 if(globalconf.have_shape)
381 XShapeSelectInput(globalconf.display, w, ShapeNotifyMask);
382 window_setshape(phys_screen, c->win);
385 /* grab buttons */
386 window_grabbuttons(phys_screen, c->win, False, True);
388 /* check for transient and set tags like its parent */
389 if((rettrans = XGetTransientForHint(globalconf.display, w, &trans) == Success)
390 && (t = get_client_bywin(globalconf.clients, trans)))
391 for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
392 if(is_client_tagged(t, tag))
393 tag_client(c, tag);
395 /* should be floating if transsient or fixed */
396 if(!c->isfloating)
397 c->isfloating = (rettrans == Success) || c->isfixed;
399 /* save new props */
400 client_saveprops(c);
402 /* attach to the stack */
403 for(rule = globalconf.rules; rule; rule = rule->next)
404 if(rule->not_master && client_match_rule(c, rule))
406 client_attach_at_end(c);
407 break;
409 if(!rule)
411 if(globalconf.screens[c->screen].new_become_master)
412 client_attach(c);
413 else
414 client_attach_at_end(c);
417 /* some windows require this */
418 XMoveResizeWindow(globalconf.display, c->win, c->geometry.x, c->geometry.y,
419 c->geometry.width, c->geometry.height);
421 focus(c, True, screen);
423 ewmh_update_net_client_list(phys_screen);
425 /* rearrange to display new window */
426 arrange(screen);
429 /** Resize client window
430 * \param c client to resize
431 * \param x x coord
432 * \param y y coord
433 * \param w width
434 * \param h height
435 * \param sizehints respect size hints
436 * \param volatile_coords register coords in rx/ry/rw/rh
437 * \param return True if resize has been done
439 Bool
440 client_resize(Client *c, Area geometry, Bool sizehints)
442 int new_screen;
443 double dx, dy, max, min, ratio;
444 Area area;
445 XWindowChanges wc;
447 if(sizehints)
449 if(c->minay > 0 && c->maxay > 0 && (geometry.height - c->baseh) > 0
450 && (geometry.width - c->basew) > 0)
452 dx = (double) (geometry.width - c->basew);
453 dy = (double) (geometry.height - c->baseh);
454 min = (double) (c->minax) / (double) (c->minay);
455 max = (double) (c->maxax) / (double) (c->maxay);
456 ratio = dx / dy;
457 if(max > 0 && min > 0 && ratio > 0)
459 if(ratio < min)
461 dy = (dx * min + dy) / (min * min + 1);
462 dx = dy * min;
463 geometry.width = (int) dx + c->basew;
464 geometry.height = (int) dy + c->baseh;
466 else if(ratio > max)
468 dy = (dx * min + dy) / (max * max + 1);
469 dx = dy * min;
470 geometry.width = (int) dx + c->basew;
471 geometry.height = (int) dy + c->baseh;
475 if(c->minw && geometry.width < c->minw)
476 geometry.width = c->minw;
477 if(c->minh && geometry.height < c->minh)
478 geometry.height = c->minh;
479 if(c->maxw && geometry.width > c->maxw)
480 geometry.width = c->maxw;
481 if(c->maxh && geometry.height > c->maxh)
482 geometry.height = c->maxh;
483 if(c->incw)
484 geometry.width -= (geometry.width - c->basew) % c->incw;
485 if(c->inch)
486 geometry.height -= (geometry.height - c->baseh) % c->inch;
488 if(geometry.width <= 0 || geometry.height <= 0)
489 return False;
490 /* offscreen appearance fixes */
491 area = get_display_area(get_phys_screen(c->screen),
492 NULL,
493 &globalconf.screens[c->screen].padding);
494 if(geometry.x > area.width)
495 geometry.x = area.width - geometry.width - 2 * c->border;
496 if(geometry.y > area.height)
497 geometry.y = area.height - geometry.height - 2 * c->border;
498 if(geometry.x + geometry.width + 2 * c->border < 0)
499 geometry.x = 0;
500 if(geometry.y + geometry.height + 2 * c->border < 0)
501 geometry.y = 0;
503 if(c->geometry.x != geometry.x || c->geometry.y != geometry.y
504 || c->geometry.width != geometry.width || c->geometry.height != geometry.height)
506 if(XineramaIsActive(globalconf.display))
507 new_screen = get_screen_bycoord(geometry.x, geometry.y);
508 else
509 new_screen = c->screen;
511 c->geometry.x = wc.x = geometry.x;
512 c->geometry.y = wc.y = geometry.y;
513 c->geometry.width = wc.width = geometry.width;
514 c->geometry.height = wc.height = geometry.height;
515 wc.border_width = c->border;
517 if(c->isfloating ||
518 get_current_layout(new_screen)->arrange == layout_floating)
519 c->f_geometry = geometry;
521 XConfigureWindow(globalconf.display, c->win,
522 CWX | CWY | CWWidth | CWHeight | CWBorderWidth, &wc);
523 window_configure(c->win, geometry, c->border);
525 if(c->screen != new_screen)
526 move_client_to_screen(c, new_screen, False);
528 return True;
530 return False;
533 /** Save client properties as an X property
534 * \param c client
536 void
537 client_saveprops(Client *c)
539 int i = 0, ntags = 0;
540 char *prop;
541 Tag *tag;
543 for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
544 ntags++;
546 prop = p_new(char, ntags + 2);
548 for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next, i++)
549 prop[i] = is_client_tagged(c, tag) ? '1' : '0';
551 if(i <= ntags)
552 prop[i] = c->isfloating ? '1' : '0';
554 prop[++i] = '\0';
556 XChangeProperty(globalconf.display, c->win, AWESOMEPROPS_ATOM(globalconf.display), XA_STRING, 8,
557 PropModeReplace, (unsigned char *) prop, i);
559 p_delete(&prop);
562 void
563 client_unban(Client *c)
565 XMapWindow(globalconf.display, c->win);
566 window_setstate(c->win, NormalState);
569 void
570 client_unmanage(Client *c, long state)
572 XWindowChanges wc;
573 Tag *tag;
575 wc.border_width = c->oldborder;
576 /* The server grab construct avoids race conditions. */
577 XGrabServer(globalconf.display);
578 XConfigureWindow(globalconf.display, c->win, CWBorderWidth, &wc); /* restore border */
579 client_detach(c);
580 if(globalconf.focus->client == c)
581 focus(NULL, True, c->screen);
582 focus_delete_client(c);
583 for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
584 untag_client(c, tag);
585 XUngrabButton(globalconf.display, AnyButton, AnyModifier, c->win);
586 window_setstate(c->win, state);
587 XSync(globalconf.display, False);
588 XSetErrorHandler(xerror);
589 XUngrabServer(globalconf.display);
590 if(state != NormalState)
591 arrange(c->screen);
592 p_delete(&c);
595 void
596 client_updatewmhints(Client *c)
598 XWMHints *wmh;
600 if((wmh = XGetWMHints(globalconf.display, c->win)))
602 c->isurgent = (wmh->flags & XUrgencyHint);
603 if((wmh->flags & StateHint) && wmh->initial_state == WithdrawnState)
604 c->skip = True;
605 XFree(wmh);
609 void
610 client_updatesizehints(Client *c)
612 long msize;
613 XSizeHints size;
615 if(!XGetWMNormalHints(globalconf.display, c->win, &size, &msize) || !size.flags)
616 size.flags = PSize;
617 if(size.flags & PBaseSize)
619 c->basew = size.base_width;
620 c->baseh = size.base_height;
622 else if(size.flags & PMinSize)
624 c->basew = size.min_width;
625 c->baseh = size.min_height;
627 else
628 c->basew = c->baseh = 0;
629 if(size.flags & PResizeInc)
631 c->incw = size.width_inc;
632 c->inch = size.height_inc;
634 else
635 c->incw = c->inch = 0;
637 if(size.flags & PMaxSize)
639 c->maxw = size.max_width;
640 c->maxh = size.max_height;
642 else
643 c->maxw = c->maxh = 0;
645 if(size.flags & PMinSize)
647 c->minw = size.min_width;
648 c->minh = size.min_height;
650 else if(size.flags & PBaseSize)
652 c->minw = size.base_width;
653 c->minh = size.base_height;
655 else
656 c->minw = c->minh = 0;
658 if(size.flags & PAspect)
660 c->minax = size.min_aspect.x;
661 c->maxax = size.max_aspect.x;
662 c->minay = size.min_aspect.y;
663 c->maxay = size.max_aspect.y;
665 else
666 c->minax = c->maxax = c->minay = c->maxay = 0;
668 if(c->maxw && c->minw && c->maxh && c->minh
669 && c->maxw == c->minw && c->maxh == c->minh)
670 c->isfixed = True;
673 /** Returns True if a client is tagged
674 * with one of the tags
675 * \return True or False
677 Bool
678 client_isvisible(Client *c, int screen)
680 Tag *tag;
682 if(c->screen != screen)
683 return False;
685 for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
686 if(tag->selected && is_client_tagged(c, tag))
687 return True;
688 return False;
691 /** Set selected client transparency
692 * \param screen Screen ID
693 * \param arg unused arg
694 * \ingroup ui_callback
696 void
697 uicb_client_settrans(int screen __attribute__ ((unused)), char *arg)
699 double delta = 100.0, current_opacity = 100.0;
700 unsigned char *data;
701 Atom actual;
702 int format;
703 unsigned long n, left;
704 unsigned int current_opacity_raw = 0;
705 int set_prop = 0;
706 Client *sel = globalconf.focus->client;
708 if(!sel)
709 return;
711 XGetWindowProperty(globalconf.display, sel->win,
712 XInternAtom(globalconf.display, "_NET_WM_WINDOW_OPACITY", False),
713 0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left,
714 (unsigned char **) &data);
715 if(data)
717 memcpy(&current_opacity_raw, data, sizeof(unsigned int));
718 XFree(data);
719 current_opacity = (current_opacity_raw * 100.0) / 0xffffffff;
721 else
722 set_prop = 1;
724 delta = compute_new_value_from_arg(arg, current_opacity);
726 if(delta <= 0.0)
727 delta = 0.0;
728 else if(delta > 100.0)
730 delta = 100.0;
731 set_prop = 1;
734 if(delta == 100.0 && !set_prop)
735 window_settrans(sel->win, -1);
736 else
737 window_settrans(sel->win, delta);
740 /** Swap current with next client
741 * \param screen Screen ID
742 * \param arg nothing
743 * \ingroup ui_callback
745 void
746 uicb_client_swapnext(int screen, char *arg __attribute__ ((unused)))
748 Client *next, *sel = globalconf.focus->client;
750 if(!sel)
751 return;
753 for(next = sel->next; next && !client_isvisible(next, screen); next = next->next);
754 if(next)
756 client_swap(&globalconf.clients, sel, next);
757 arrange(screen);
758 /* restore focus */
759 focus(sel, True, screen);
763 /** Swap current with previous client
764 * \param screen Screen ID
765 * \param arg nothing
766 * \ingroup ui_callback
768 void
769 uicb_client_swapprev(int screen, char *arg __attribute__ ((unused)))
771 Client *prev, *sel = globalconf.focus->client;
773 if(!sel)
774 return;
776 for(prev = sel->prev; prev && !client_isvisible(prev, screen); prev = prev->prev);
777 if(prev)
779 client_swap(&globalconf.clients, prev, sel);
780 arrange(screen);
781 /* restore focus */
782 focus(sel, True, screen);
786 /** Move and resize client
787 * \param screen Screen ID
788 * \param arg x y w h
789 * \ingroup ui_callback
791 void
792 uicb_client_moveresize(int screen, char *arg)
794 int ox, oy, ow, oh;
795 char x[8], y[8], w[8], h[8];
796 int mx, my, dx, dy, nmx, nmy;
797 unsigned int dui;
798 Window dummy;
799 Area area;
800 Client *sel = globalconf.focus->client;
801 Tag **curtags = get_current_tags(screen);
803 if(curtags[0]->layout->arrange != layout_floating)
804 if(!sel || !sel->isfloating || sel->isfixed || !arg)
806 p_delete(&curtags);
807 return;
809 p_delete(&curtags);
810 if(sscanf(arg, "%s %s %s %s", x, y, w, h) != 4)
811 return;
812 area.x = (int) compute_new_value_from_arg(x, sel->geometry.x);
813 area.y = (int) compute_new_value_from_arg(y, sel->geometry.y);
814 area.width = (int) compute_new_value_from_arg(w, sel->geometry.width);
815 area.height = (int) compute_new_value_from_arg(h, sel->geometry.height);
817 ox = sel->geometry.x;
818 oy = sel->geometry.y;
819 ow = sel->geometry.width;
820 oh = sel->geometry.height;
822 Bool xqp = XQueryPointer(globalconf.display,
823 RootWindow(globalconf.display,
824 get_phys_screen(screen)),
825 &dummy, &dummy, &mx, &my, &dx, &dy, &dui);
826 client_resize(sel, area, globalconf.screens[sel->screen].resize_hints);
827 if (xqp && ox <= mx && (ox + ow) >= mx && oy <= my && (oy + oh) >= my)
829 nmx = mx - ox + sel->geometry.width - ow - 1 < 0 ? 0 : mx - ox + sel->geometry.width - ow - 1;
830 nmy = my - oy + sel->geometry.height - oh - 1 < 0 ? 0 : my - oy + sel->geometry.height - oh - 1;
831 XWarpPointer(globalconf.display,
832 None, sel->win,
833 0, 0, 0, 0, nmx, nmy);
838 void
839 client_kill(Client *c)
841 XEvent ev;
843 if(isprotodel(globalconf.display, c->win))
845 ev.type = ClientMessage;
846 ev.xclient.window = c->win;
847 ev.xclient.message_type = XInternAtom(globalconf.display, "WM_PROTOCOLS", False);
848 ev.xclient.format = 32;
849 ev.xclient.data.l[0] = XInternAtom(globalconf.display, "WM_DELETE_WINDOW", False);
850 ev.xclient.data.l[1] = CurrentTime;
851 XSendEvent(globalconf.display, c->win, False, NoEventMask, &ev);
853 else
854 XKillClient(globalconf.display, c->win);
857 /** Kill selected client
858 * \param screen Screen ID
859 * \param arg unused
860 * \ingroup ui_callback
862 void
863 uicb_client_kill(int screen __attribute__ ((unused)), char *arg __attribute__ ((unused)))
865 Client *sel = globalconf.focus->client;
867 if(sel)
868 client_kill(sel);
871 static void
872 client_maximize(Client *c, Area geometry)
875 if((c->ismax = !c->ismax))
877 c->wasfloating = c->isfloating;
878 c->m_geometry = c->geometry;
879 client_resize(c, geometry, False);
880 /* set floating after resizing so it won't save
881 * coords */
882 c->isfloating = True;
884 else if(c->wasfloating)
886 c->isfloating = True;
887 client_resize(c, c->m_geometry, False);
889 else
891 c->isfloating = False;
892 arrange(c->screen);
894 statusbar_draw_all(c->screen);
897 /** Toggle maximize for client
898 * \param screen Screen ID
899 * \param arg Unused
900 * \ingroup ui_callback
902 void
903 uicb_client_togglemax(int screen, char *arg __attribute__ ((unused)))
905 Client *sel = globalconf.focus->client;
906 Area area = get_screen_area(screen,
907 globalconf.screens[screen].statusbar,
908 &globalconf.screens[screen].padding);
910 if(sel)
912 area.width -= 2 * sel->border;
913 area.height -= 2 * sel->border;
914 client_maximize(sel, area);
918 /** Toggle vertical maximize for client
919 * \param screen Screen ID
920 * \param arg Unused
921 * \ingroup ui_callback
923 void
924 uicb_client_toggleverticalmax(int screen, char *arg __attribute__ ((unused)))
926 Client *sel = globalconf.focus->client;
927 Area area = get_screen_area(screen,
928 globalconf.screens[screen].statusbar,
929 &globalconf.screens[screen].padding);
931 if(sel)
933 area.x = sel->geometry.x;
934 area.height -= 2 * sel->border;
935 client_maximize(sel, area);
940 /** Toggle horizontal maximize for client
941 * \param screen Screen ID
942 * \param arg Unused
943 * \ingroup ui_callback
945 void
946 uicb_client_togglehorizontalmax(int screen, char *arg __attribute__ ((unused)))
948 Client *sel = globalconf.focus->client;
949 Area area = get_screen_area(screen,
950 globalconf.screens[screen].statusbar,
951 &globalconf.screens[screen].padding);
953 if(sel)
955 area.y = sel->geometry.y;
956 area.width -= 2 * sel->border;
957 client_maximize(sel, area);
961 /** Zoom client
962 * \param screen Screen ID
963 * \param arg Unused
964 * \ingroup ui_callback
966 void
967 uicb_client_zoom(int screen, char *arg __attribute__ ((unused)))
969 Client *sel = globalconf.focus->client;
971 if(globalconf.clients == sel)
972 for(sel = sel->next; sel && !client_isvisible(sel, screen); sel = sel->next);
974 if(!sel)
975 return;
977 client_detach(sel);
978 client_attach(sel);
980 focus(sel, True, screen);
981 arrange(screen);
984 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80