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.
23 #include <X11/Xatom.h>
24 #include <X11/extensions/shape.h>
25 #include <X11/extensions/Xinerama.h>
36 #include "layouts/floating.h"
38 extern AwesomeConf globalconf
;
40 /** Load windows properties, restoring client's tag
41 * and floating state before awesome was restarted if any
42 * \todo this may bug if number of tags is != than before
44 * \param screen Screen ID
45 * \return true if client had property
48 client_loadprops(Client
* c
, int screen
)
55 for(tag
= globalconf
.screens
[screen
].tags
; tag
; tag
= tag
->next
)
58 prop
= p_new(char, ntags
+ 2);
60 if(xgettextprop(c
->win
,
61 XInternAtom(globalconf
.display
, "_AWESOME_PROPERTIES", False
),
64 for(i
= 0, tag
= globalconf
.screens
[screen
].tags
; tag
&& i
< ntags
&& prop
[i
]; i
++, tag
= tag
->next
)
73 if(i
<= ntags
&& prop
[i
])
74 client_setfloating(c
, prop
[i
] == '1');
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
88 client_isprotodel(Display
*disp
, Window win
)
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
))
104 /** Get a Client by its window
105 * \param list Client list to look info
106 * \param w Client window to find
110 client_get_bywin(Client
*list
, Window w
)
114 for(c
= list
; c
&& c
->win
!= w
; c
= c
->next
);
118 /** Get a client by its name
119 * \param list Client list
120 * \param name name to search
121 * \return first matching client
124 client_get_byname(Client
*list
, char *name
)
128 for(c
= list
; c
; c
= c
->next
)
129 if(strstr(c
->name
, name
))
135 /** Update client name attribute with its title
136 * \param c the client
139 client_updatetitle(Client
*c
)
141 if(!xgettextprop(c
->win
, XInternAtom(globalconf
.display
, "_NET_WM_NAME", False
), c
->name
, sizeof(c
->name
)))
142 xgettextprop(c
->win
, XInternAtom(globalconf
.display
, "WM_NAME", False
), c
->name
, sizeof(c
->name
));
144 widget_invalidate_cache(c
->screen
, WIDGET_CACHE_CLIENTS
);
148 client_unfocus(Client
*c
)
150 if(globalconf
.screens
[c
->screen
].opacity_unfocused
!= -1)
151 window_settrans(c
->win
, globalconf
.screens
[c
->screen
].opacity_unfocused
);
152 XSetWindowBorder(globalconf
.display
, c
->win
,
153 globalconf
.screens
[c
->screen
].colors_normal
[ColBorder
].pixel
);
154 widget_invalidate_cache(c
->screen
, WIDGET_CACHE_CLIENTS
);
155 focus_add_client(NULL
);
158 /** Ban client and unmap it
159 * \param c the client
162 client_ban(Client
*c
)
164 if(globalconf
.focus
->client
== c
)
166 XUnmapWindow(globalconf
.display
, c
->win
);
167 window_setstate(c
->win
, IconicState
);
170 /** Give focus to client, or to first client if c is NULL
172 * \param screen Screen ID
175 client_focus(Client
*c
, int screen
, Bool raise
)
177 int phys_screen
= get_phys_screen(screen
);
179 /* if c is NULL or invisible, take next client in the focus history */
180 if(!c
|| (c
&& !client_isvisible(c
, screen
)))
182 c
= focus_get_current_client(screen
);
183 /* if c is still NULL take next client in the stack */
185 for(c
= globalconf
.clients
; c
&& (c
->skip
|| !client_isvisible(c
, screen
)); c
= c
->next
);
188 /* unfocus current selected client */
189 if(globalconf
.focus
->client
)
190 client_unfocus(globalconf
.focus
->client
);
194 /* unban the client before focusing or it will fail */
196 /* save sel in focus history */
198 if(globalconf
.screens
[c
->screen
].opacity_unfocused
!= -1)
199 window_settrans(c
->win
, globalconf
.screens
[screen
].opacity_unfocused
);
200 XSetWindowBorder(globalconf
.display
, c
->win
,
201 globalconf
.screens
[screen
].colors_selected
[ColBorder
].pixel
);
202 XSetInputFocus(globalconf
.display
, c
->win
, RevertToPointerRoot
, CurrentTime
);
206 Layout
*curlay
= layout_get_current(screen
);
207 if(c
->isfloating
|| curlay
->arrange
== layout_floating
)
208 XRaiseWindow(globalconf
.display
, c
->win
);
212 wc
.stack_mode
= Below
;
214 for(client
= globalconf
.clients
; client
; client
= client
->next
)
215 if(client
!= c
&& IS_TILED(client
, c
->screen
))
217 XConfigureWindow(globalconf
.display
, client
->win
, CWSibling
| CWStackMode
, &wc
);
218 wc
.sibling
= client
->win
;
222 /* since we're dropping EnterWindow events and sometimes the window
223 * will appear under the mouse, grabbuttons */
224 window_grabbuttons(phys_screen
, c
->win
);
227 XSetInputFocus(globalconf
.display
,
228 RootWindow(globalconf
.display
, phys_screen
),
229 RevertToPointerRoot
, CurrentTime
);
231 widget_invalidate_cache(screen
, WIDGET_CACHE_CLIENTS
);
232 ewmh_update_net_active_window(phys_screen
);
233 globalconf
.drop_events
|= EnterWindowMask
;
236 /** Manage a new client
237 * \param w The window
238 * \param wa Window attributes
239 * \param screen Screen ID
242 client_manage(Window w
, XWindowAttributes
*wa
, int screen
)
244 Client
*c
, *t
= NULL
;
251 int phys_screen
= get_phys_screen(screen
);
254 c
= p_new(Client
, 1);
256 c
->screen
= screen_get_bycoord(screen
, wa
->x
, wa
->y
);
258 screen_geom
= screen_get_area(c
->screen
,
259 globalconf
.screens
[screen
].statusbar
,
260 &globalconf
.screens
[screen
].padding
);
263 c
->geometry
.x
= c
->f_geometry
.x
= c
->m_geometry
.x
= MAX(wa
->x
, screen_geom
.x
);
264 c
->geometry
.y
= c
->f_geometry
.y
= c
->m_geometry
.y
= MAX(wa
->y
, screen_geom
.y
);
265 c
->geometry
.width
= c
->f_geometry
.width
= c
->m_geometry
.width
= wa
->width
;
266 c
->geometry
.height
= c
->f_geometry
.height
= c
->m_geometry
.height
= wa
->height
;
267 c
->oldborder
= wa
->border_width
;
270 c
->border
= globalconf
.screens
[screen
].borderpx
;
272 /* Set windows borders */
273 wc
.border_width
= c
->border
;
274 XConfigureWindow(globalconf
.display
, w
, CWBorderWidth
, &wc
);
275 XSetWindowBorder(globalconf
.display
, w
, globalconf
.screens
[screen
].colors_normal
[ColBorder
].pixel
);
276 /* propagates border_width, if size doesn't change */
277 window_configure(c
->win
, c
->geometry
, c
->border
);
279 /* update window title */
280 client_updatetitle(c
);
283 flags
= client_updatesizehints(c
);
284 client_updatewmhints(c
);
286 /* First check clients hints */
287 ewmh_check_client_hints(c
);
289 /* loadprops or apply rules if no props */
290 if(!client_loadprops(c
, screen
))
292 /* Get the client's rule */
293 if((rule
= rule_matching_client(c
)))
295 if(rule
->screen
!= RULE_NOSCREEN
)
296 move_client_to_screen(c
, rule
->screen
, True
);
298 move_client_to_screen(c
, screen
, True
);
299 tag_client_with_rule(c
, rule
);
301 switch(rule
->isfloating
)
306 client_setfloating(c
, True
);
309 client_setfloating(c
, False
);
313 if(rule
->opacity
>= 0.0f
)
314 window_settrans(c
->win
, rule
->opacity
);
317 move_client_to_screen(c
, screen
, True
);
320 /* check for transient and set tags like its parent,
321 * XGetTransientForHint returns 1 on success
323 if((rettrans
= XGetTransientForHint(globalconf
.display
, w
, &trans
))
324 && (t
= client_get_bywin(globalconf
.clients
, trans
)))
325 for(tag
= globalconf
.screens
[c
->screen
].tags
; tag
; tag
= tag
->next
)
326 if(is_client_tagged(t
, tag
))
329 /* should be floating if transsient or fixed */
331 client_setfloating(c
, rettrans
|| c
->isfixed
);
333 if(!(flags
& (USPosition
| PPosition
)))
335 globalconf
.screens
[c
->screen
].floating_placement(c
->f_geometry
, c
->border
, c
->screen
);
337 XSelectInput(globalconf
.display
, w
, StructureNotifyMask
| PropertyChangeMask
| EnterWindowMask
);
340 if(globalconf
.have_shape
)
342 XShapeSelectInput(globalconf
.display
, w
, ShapeNotifyMask
);
343 window_setshape(phys_screen
, c
->win
);
346 /* attach to the stack */
347 if((rule
= rule_matching_client(c
)))
348 switch(rule
->ismaster
)
351 client_list_push(&globalconf
.clients
, c
);
354 client_list_append(&globalconf
.clients
, c
);
363 if(globalconf
.screens
[c
->screen
].new_become_master
)
364 client_list_push(&globalconf
.clients
, c
);
366 client_list_append(&globalconf
.clients
, c
);
369 /* some windows require this */
370 XMoveResizeWindow(globalconf
.display
, c
->win
, c
->geometry
.x
, c
->geometry
.y
,
371 c
->geometry
.width
, c
->geometry
.height
);
373 widget_invalidate_cache(c
->screen
, WIDGET_CACHE_CLIENTS
);
374 ewmh_update_net_client_list(phys_screen
);
377 /** Resize client window
378 * \param c client to resize
379 * \param geometry new window geometry
380 * \param sizehints respect size hints
381 * \param return True if resize has been done
384 client_resize(Client
*c
, Area geometry
, Bool sizehints
)
387 double dx
, dy
, max
, min
, ratio
;
393 if(c
->minay
> 0 && c
->maxay
> 0 && (geometry
.height
- c
->baseh
) > 0
394 && (geometry
.width
- c
->basew
) > 0)
396 dx
= (double) (geometry
.width
- c
->basew
);
397 dy
= (double) (geometry
.height
- c
->baseh
);
398 min
= (double) (c
->minax
) / (double) (c
->minay
);
399 max
= (double) (c
->maxax
) / (double) (c
->maxay
);
401 if(max
> 0 && min
> 0 && ratio
> 0)
405 dy
= (dx
* min
+ dy
) / (min
* min
+ 1);
407 geometry
.width
= (int) dx
+ c
->basew
;
408 geometry
.height
= (int) dy
+ c
->baseh
;
412 dy
= (dx
* min
+ dy
) / (max
* max
+ 1);
414 geometry
.width
= (int) dx
+ c
->basew
;
415 geometry
.height
= (int) dy
+ c
->baseh
;
419 if(c
->minw
&& geometry
.width
< c
->minw
)
420 geometry
.width
= c
->minw
;
421 if(c
->minh
&& geometry
.height
< c
->minh
)
422 geometry
.height
= c
->minh
;
423 if(c
->maxw
&& geometry
.width
> c
->maxw
)
424 geometry
.width
= c
->maxw
;
425 if(c
->maxh
&& geometry
.height
> c
->maxh
)
426 geometry
.height
= c
->maxh
;
428 geometry
.width
-= (geometry
.width
- c
->basew
) % c
->incw
;
430 geometry
.height
-= (geometry
.height
- c
->baseh
) % c
->inch
;
432 if(geometry
.width
<= 0 || geometry
.height
<= 0)
434 /* offscreen appearance fixes */
435 area
= get_display_area(get_phys_screen(c
->screen
),
437 &globalconf
.screens
[c
->screen
].padding
);
438 if(geometry
.x
> area
.width
)
439 geometry
.x
= area
.width
- geometry
.width
- 2 * c
->border
;
440 if(geometry
.y
> area
.height
)
441 geometry
.y
= area
.height
- geometry
.height
- 2 * c
->border
;
442 if(geometry
.x
+ geometry
.width
+ 2 * c
->border
< 0)
444 if(geometry
.y
+ geometry
.height
+ 2 * c
->border
< 0)
447 if(c
->geometry
.x
!= geometry
.x
|| c
->geometry
.y
!= geometry
.y
448 || c
->geometry
.width
!= geometry
.width
|| c
->geometry
.height
!= geometry
.height
)
450 new_screen
= screen_get_bycoord(c
->screen
, geometry
.x
, geometry
.y
);
452 c
->geometry
.x
= wc
.x
= geometry
.x
;
453 c
->geometry
.y
= wc
.y
= geometry
.y
;
454 c
->geometry
.width
= wc
.width
= geometry
.width
;
455 c
->geometry
.height
= wc
.height
= geometry
.height
;
456 wc
.border_width
= c
->border
;
458 /* save the floating geometry if the window is floating but not
461 layout_get_current(new_screen
)->arrange
== layout_floating
) && !c
->ismax
)
462 c
->f_geometry
= geometry
;
464 XConfigureWindow(globalconf
.display
, c
->win
,
465 CWX
| CWY
| CWWidth
| CWHeight
| CWBorderWidth
, &wc
);
466 window_configure(c
->win
, geometry
, c
->border
);
468 if(c
->screen
!= new_screen
)
469 move_client_to_screen(c
, new_screen
, False
);
477 client_setfloating(Client
*c
, Bool floating
)
479 if(c
->isfloating
!= floating
)
481 if((c
->isfloating
= floating
))
483 client_resize(c
, c
->f_geometry
, False
);
484 XRaiseWindow(globalconf
.display
, c
->win
);
488 XLowerWindow(globalconf
.display
, c
->win
);
492 client_resize(c
, c
->m_geometry
, False
);
495 if(client_isvisible(c
, c
->screen
))
496 globalconf
.screens
[c
->screen
].need_arrange
= True
;
497 widget_invalidate_cache(c
->screen
, WIDGET_CACHE_CLIENTS
);
502 /** Save client properties as an X property
506 client_saveprops(Client
*c
)
508 int i
= 0, ntags
= 0;
512 for(tag
= globalconf
.screens
[c
->screen
].tags
; tag
; tag
= tag
->next
)
515 prop
= p_new(char, ntags
+ 2);
517 for(tag
= globalconf
.screens
[c
->screen
].tags
; tag
; tag
= tag
->next
, i
++)
518 prop
[i
] = is_client_tagged(c
, tag
) ? '1' : '0';
521 prop
[i
] = c
->isfloating
? '1' : '0';
525 XChangeProperty(globalconf
.display
, c
->win
,
526 XInternAtom(globalconf
.display
, "_AWESOME_PROPERTIES", False
),
527 XA_STRING
, 8, PropModeReplace
, (unsigned char *) prop
, i
);
533 client_unban(Client
*c
)
535 XMapWindow(globalconf
.display
, c
->win
);
536 window_setstate(c
->win
, NormalState
);
540 client_unmanage(Client
*c
)
545 wc
.border_width
= c
->oldborder
;
547 /* The server grab construct avoids race conditions. */
548 XGrabServer(globalconf
.display
);
550 XConfigureWindow(globalconf
.display
, c
->win
, CWBorderWidth
, &wc
); /* restore border */
552 /* remove client everywhere */
553 client_list_detach(&globalconf
.clients
, c
);
554 focus_delete_client(c
);
555 if(globalconf
.scratch
.client
== c
)
556 globalconf
.scratch
.client
= NULL
;
557 for(tag
= globalconf
.screens
[c
->screen
].tags
; tag
; tag
= tag
->next
)
558 untag_client(c
, tag
);
560 if(globalconf
.focus
->client
== c
)
561 client_focus(NULL
, c
->screen
, True
);
563 XUngrabButton(globalconf
.display
, AnyButton
, AnyModifier
, c
->win
);
564 window_setstate(c
->win
, WithdrawnState
);
566 XSync(globalconf
.display
, False
);
567 XUngrabServer(globalconf
.display
);
573 client_updatewmhints(Client
*c
)
577 if((wmh
= XGetWMHints(globalconf
.display
, c
->win
)))
579 if((c
->isurgent
= (wmh
->flags
& XUrgencyHint
)))
580 widget_invalidate_cache(c
->screen
, WIDGET_CACHE_CLIENTS
);
581 if((wmh
->flags
& StateHint
) && wmh
->initial_state
== WithdrawnState
)
591 client_updatesizehints(Client
*c
)
596 if(!XGetWMNormalHints(globalconf
.display
, c
->win
, &size
, &msize
))
599 if(size
.flags
& PBaseSize
)
601 c
->basew
= size
.base_width
;
602 c
->baseh
= size
.base_height
;
604 else if(size
.flags
& PMinSize
)
606 c
->basew
= size
.min_width
;
607 c
->baseh
= size
.min_height
;
610 c
->basew
= c
->baseh
= 0;
611 if(size
.flags
& PResizeInc
)
613 c
->incw
= size
.width_inc
;
614 c
->inch
= size
.height_inc
;
617 c
->incw
= c
->inch
= 0;
619 if(size
.flags
& PMaxSize
)
621 c
->maxw
= size
.max_width
;
622 c
->maxh
= size
.max_height
;
625 c
->maxw
= c
->maxh
= 0;
627 if(size
.flags
& PMinSize
)
629 c
->minw
= size
.min_width
;
630 c
->minh
= size
.min_height
;
632 else if(size
.flags
& PBaseSize
)
634 c
->minw
= size
.base_width
;
635 c
->minh
= size
.base_height
;
638 c
->minw
= c
->minh
= 0;
640 if(size
.flags
& PAspect
)
642 c
->minax
= size
.min_aspect
.x
;
643 c
->maxax
= size
.max_aspect
.x
;
644 c
->minay
= size
.min_aspect
.y
;
645 c
->maxay
= size
.max_aspect
.y
;
648 c
->minax
= c
->maxax
= c
->minay
= c
->maxay
= 0;
650 if(c
->maxw
&& c
->minw
&& c
->maxh
&& c
->minh
651 && c
->maxw
== c
->minw
&& c
->maxh
== c
->minh
)
657 /** Returns True if a client is tagged
658 * with one of the tags
659 * \return True or False
662 client_isvisible(Client
*c
, int screen
)
666 if(!c
|| c
->screen
!= screen
)
669 if(globalconf
.scratch
.client
== c
)
670 return globalconf
.scratch
.isvisible
;
672 for(tag
= globalconf
.screens
[screen
].tags
; tag
; tag
= tag
->next
)
673 if(tag
->selected
&& is_client_tagged(c
, tag
))
678 /** Set selected client transparency
679 * \param screen Screen ID
680 * \param arg unused arg
681 * \ingroup ui_callback
684 uicb_client_settrans(int screen
__attribute__ ((unused
)), char *arg
)
686 double delta
= 100.0, current_opacity
= 100.0;
690 unsigned long n
, left
;
691 unsigned int current_opacity_raw
= 0;
693 Client
*sel
= globalconf
.focus
->client
;
698 XGetWindowProperty(globalconf
.display
, sel
->win
,
699 XInternAtom(globalconf
.display
, "_NET_WM_WINDOW_OPACITY", False
),
700 0L, 1L, False
, XA_CARDINAL
, &actual
, &format
, &n
, &left
,
701 (unsigned char **) &data
);
704 memcpy(¤t_opacity_raw
, data
, sizeof(unsigned int));
706 current_opacity
= (current_opacity_raw
* 100.0) / 0xffffffff;
711 delta
= compute_new_value_from_arg(arg
, current_opacity
);
715 else if(delta
> 100.0)
721 if(delta
== 100.0 && !set_prop
)
722 window_settrans(sel
->win
, -1);
724 window_settrans(sel
->win
, delta
);
728 client_find_prev_visible(Client
*sel
)
732 if(!sel
) return NULL
;
734 /* look for previous starting at sel */
735 for(prev
= client_list_prev_cycle(&globalconf
.clients
, sel
);
736 prev
&& (prev
->skip
|| !client_isvisible(prev
, sel
->screen
));
737 prev
= client_list_prev_cycle(&globalconf
.clients
, prev
));
743 client_find_next_visible(Client
*sel
)
747 if(!sel
) return NULL
;
749 for(next
= sel
->next
; next
&& !client_isvisible(next
, sel
->screen
); next
= next
->next
);
751 for(next
= globalconf
.clients
; next
&& !client_isvisible(next
, sel
->screen
); next
= next
->next
);
756 /** Swap current with previous client
757 * \param screen Screen ID
759 * \ingroup ui_callback
762 uicb_client_swapprev(int screen
__attribute__ ((unused
)),
763 char *arg
__attribute__ ((unused
)))
767 if((prev
= client_find_prev_visible(globalconf
.focus
->client
)))
769 client_list_swap(&globalconf
.clients
, prev
, globalconf
.focus
->client
);
770 globalconf
.screens
[prev
->screen
].need_arrange
= True
;
771 globalconf
.drop_events
|= EnterWindowMask
;
775 /** Swap current with next client
776 * \param screen Screen ID
778 * \ingroup ui_callback
781 uicb_client_swapnext(int screen
__attribute__ ((unused
)),
782 char *arg
__attribute__ ((unused
)))
786 if((next
= client_find_next_visible(globalconf
.focus
->client
)))
788 client_list_swap(&globalconf
.clients
, globalconf
.focus
->client
, next
);
789 globalconf
.screens
[next
->screen
].need_arrange
= True
;
790 globalconf
.drop_events
|= EnterWindowMask
;
794 /** Move and resize client
795 * \param screen Screen ID
797 * \ingroup ui_callback
800 uicb_client_moveresize(int screen
, char *arg
)
803 char x
[8], y
[8], w
[8], h
[8];
804 int mx
, my
, dx
, dy
, nmx
, nmy
;
808 Client
*sel
= globalconf
.focus
->client
;
809 Layout
*curlay
= layout_get_current(screen
);
811 if(curlay
->arrange
!= layout_floating
||
812 !sel
|| !sel
->isfloating
|| sel
->isfixed
|| !arg
)
815 if(sscanf(arg
, "%s %s %s %s", x
, y
, w
, h
) != 4)
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
,
839 0, 0, 0, 0, nmx
, nmy
);
844 client_kill(Client
*c
)
848 if(client_isprotodel(globalconf
.display
, c
->win
))
850 ev
.type
= ClientMessage
;
851 ev
.xclient
.window
= c
->win
;
852 ev
.xclient
.message_type
= XInternAtom(globalconf
.display
, "WM_PROTOCOLS", False
);
853 ev
.xclient
.format
= 32;
854 ev
.xclient
.data
.l
[0] = XInternAtom(globalconf
.display
, "WM_DELETE_WINDOW", False
);
855 ev
.xclient
.data
.l
[1] = CurrentTime
;
856 XSendEvent(globalconf
.display
, c
->win
, False
, NoEventMask
, &ev
);
859 XKillClient(globalconf
.display
, c
->win
);
862 /** Kill selected client
863 * \param screen Screen ID
865 * \ingroup ui_callback
868 uicb_client_kill(int screen
__attribute__ ((unused
)), char *arg
__attribute__ ((unused
)))
870 Client
*sel
= globalconf
.focus
->client
;
877 client_maximize(Client
*c
, Area geometry
)
880 if((c
->ismax
= !c
->ismax
))
882 c
->wasfloating
= c
->isfloating
;
883 c
->m_geometry
= c
->geometry
;
884 if(layout_get_current(c
->screen
)->arrange
!= layout_floating
)
885 client_setfloating(c
, True
);
886 client_focus(c
, c
->screen
, True
);
887 client_resize(c
, geometry
, False
);
888 widget_invalidate_cache(c
->screen
, WIDGET_CACHE_CLIENTS
);
890 else if(c
->wasfloating
)
892 client_setfloating(c
, True
);
893 client_resize(c
, c
->m_geometry
, False
);
894 widget_invalidate_cache(c
->screen
, WIDGET_CACHE_CLIENTS
);
896 else if(layout_get_current(c
->screen
)->arrange
== layout_floating
)
898 client_resize(c
, c
->m_geometry
, False
);
899 widget_invalidate_cache(c
->screen
, WIDGET_CACHE_CLIENTS
);
903 client_setfloating(c
, False
);
904 widget_invalidate_cache(c
->screen
, WIDGET_CACHE_CLIENTS
);
908 /** Toggle maximize for client
909 * \param screen Screen ID
911 * \ingroup ui_callback
914 uicb_client_togglemax(int screen
, char *arg
__attribute__ ((unused
)))
916 Client
*sel
= globalconf
.focus
->client
;
917 Area area
= screen_get_area(screen
,
918 globalconf
.screens
[screen
].statusbar
,
919 &globalconf
.screens
[screen
].padding
);
923 area
.width
-= 2 * sel
->border
;
924 area
.height
-= 2 * sel
->border
;
925 client_maximize(sel
, area
);
929 /** Toggle vertical maximize for client
930 * \param screen Screen ID
932 * \ingroup ui_callback
935 uicb_client_toggleverticalmax(int screen
, char *arg
__attribute__ ((unused
)))
937 Client
*sel
= globalconf
.focus
->client
;
938 Area area
= screen_get_area(screen
,
939 globalconf
.screens
[screen
].statusbar
,
940 &globalconf
.screens
[screen
].padding
);
944 area
.x
= sel
->geometry
.x
;
945 area
.width
= sel
->geometry
.width
;
946 area
.height
-= 2 * sel
->border
;
947 client_maximize(sel
, area
);
952 /** Toggle horizontal maximize for client
953 * \param screen Screen ID
955 * \ingroup ui_callback
958 uicb_client_togglehorizontalmax(int screen
, char *arg
__attribute__ ((unused
)))
960 Client
*sel
= globalconf
.focus
->client
;
961 Area area
= screen_get_area(screen
,
962 globalconf
.screens
[screen
].statusbar
,
963 &globalconf
.screens
[screen
].padding
);
967 area
.y
= sel
->geometry
.y
;
968 area
.height
= sel
->geometry
.height
;
969 area
.width
-= 2 * sel
->border
;
970 client_maximize(sel
, area
);
975 * \param screen Screen ID
977 * \ingroup ui_callback
980 uicb_client_zoom(int screen
, char *arg
__attribute__ ((unused
)))
982 Client
*c
, *sel
= globalconf
.focus
->client
;
987 for(c
= globalconf
.clients
; !client_isvisible(c
, screen
); c
= c
->next
);
989 for(sel
= sel
->next
; sel
&& !client_isvisible(sel
, screen
); sel
= sel
->next
);
993 client_list_detach(&globalconf
.clients
, sel
);
994 client_list_push(&globalconf
.clients
, sel
);
995 globalconf
.screens
[screen
].need_arrange
= True
;
996 globalconf
.drop_events
|= EnterWindowMask
;
1000 /** Send focus to next client in stack
1001 * \param screen Screen ID
1003 * \ingroup ui_callback
1006 uicb_client_focusnext(int screen
, char *arg
__attribute__ ((unused
)))
1008 Client
*c
, *sel
= globalconf
.focus
->client
;
1012 for(c
= sel
->next
; c
&& (c
->skip
|| !client_isvisible(c
, screen
)); c
= c
->next
);
1014 for(c
= globalconf
.clients
; c
&& (c
->skip
|| !client_isvisible(c
, screen
)); c
= c
->next
);
1016 client_focus(c
, screen
, True
);
1019 /** Send focus to previous client in stack
1020 * \param screen Screen ID
1022 * \ingroup ui_callback
1025 uicb_client_focusprev(int screen
, char *arg
__attribute__ ((unused
)))
1029 if((prev
= client_find_prev_visible(globalconf
.focus
->client
)))
1030 client_focus(prev
, screen
, True
);
1033 /** Toggle floating state of a client
1034 * \param screen Screen ID
1036 * \ingroup ui_callback
1039 uicb_client_togglefloating(int screen
__attribute__ ((unused
)),
1040 char *arg
__attribute__ ((unused
)))
1042 if(globalconf
.focus
->client
)
1043 client_setfloating(globalconf
.focus
->client
, !globalconf
.focus
->client
->isfloating
);
1046 /** Toggle scratch client attribute
1047 * \param screen screen number
1048 * \param arg unused argument
1049 * \ingroup ui_callback
1052 uicb_client_setscratch(int screen
,
1053 char *arg
__attribute__ ((unused
)))
1055 if(!globalconf
.focus
->client
)
1058 if(globalconf
.scratch
.client
== globalconf
.focus
->client
)
1059 globalconf
.scratch
.client
= NULL
;
1061 globalconf
.scratch
.client
= globalconf
.focus
->client
;
1063 widget_invalidate_cache(screen
, WIDGET_CACHE_CLIENTS
| WIDGET_CACHE_TAGS
);
1064 globalconf
.screens
[screen
].need_arrange
= True
;
1067 /** Toggle scratch client visibility
1068 * \param screen screen number
1069 * \param arg unused argument
1070 * \ingroup ui_callback
1073 uicb_client_togglescratch(int screen
,
1074 char *arg
__attribute__ ((unused
)))
1076 if(globalconf
.scratch
.client
)
1078 globalconf
.scratch
.isvisible
= !globalconf
.scratch
.isvisible
;
1079 if(globalconf
.scratch
.isvisible
)
1080 client_focus(globalconf
.scratch
.client
, screen
, True
);
1081 globalconf
.screens
[globalconf
.scratch
.client
->screen
].need_arrange
= True
;
1082 widget_invalidate_cache(globalconf
.scratch
.client
->screen
, WIDGET_CACHE_CLIENTS
);
1085 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80