]> Dogcows Code - chaz/openbox/blob - openbox/client.c
rm the unused vars
[chaz/openbox] / openbox / client.c
1 #include "client.h"
2 #include "screen.h"
3 #include "prop.h"
4 #include "extensions.h"
5 #include "frame.h"
6 #include "event.h"
7 #include "grab.h"
8 #include "focus.h"
9 #include "stacking.h"
10 #include "dispatch.h"
11 #include "group.h"
12 #include "config.h"
13
14 #include <glib.h>
15 #include <X11/Xutil.h>
16
17 /*! The event mask to grab on client windows */
18 #define CLIENT_EVENTMASK (PropertyChangeMask | FocusChangeMask | \
19 StructureNotifyMask)
20
21 #define CLIENT_NOPROPAGATEMASK (ButtonPressMask | ButtonReleaseMask | \
22 ButtonMotionMask)
23
24 GList *client_list = NULL;
25 GHashTable *client_map = NULL;
26
27 static Window *client_startup_stack_order = NULL;
28 static gulong client_startup_stack_size = 0;
29
30 static void client_get_all(Client *self);
31 static void client_toggle_border(Client *self, gboolean show);
32 static void client_get_area(Client *self);
33 static void client_get_desktop(Client *self);
34 static void client_get_state(Client *self);
35 static void client_get_shaped(Client *self);
36 static void client_get_mwm_hints(Client *self);
37 static void client_get_gravity(Client *self);
38 static void client_showhide(Client *self);
39 static void client_change_allowed_actions(Client *self);
40 static void client_change_state(Client *self);
41 static void client_move_onscreen(Client *self);
42 static Client *search_focus_tree(Client *node, Client *skip);
43 static void client_apply_startup_state(Client *self);
44 static Client *search_modal_tree(Client *node, Client *skip);
45
46 static guint map_hash(Window *w) { return *w; }
47 static gboolean map_key_comp(Window *w1, Window *w2) { return *w1 == *w2; }
48
49 void client_startup()
50 {
51 client_map = g_hash_table_new((GHashFunc)map_hash,
52 (GEqualFunc)map_key_comp);
53
54 /* save the stacking order on startup! */
55 PROP_GET32U(ob_root, net_client_list_stacking, window,
56 client_startup_stack_order, client_startup_stack_size);
57
58 client_set_list();
59 }
60
61 void client_shutdown()
62 {
63 g_hash_table_destroy(client_map);
64 }
65
66 void client_set_list()
67 {
68 Window *windows, *win_it;
69 GList *it;
70 guint size = g_list_length(client_list);
71
72 /* create an array of the window ids */
73 if (size > 0) {
74 windows = g_new(Window, size);
75 win_it = windows;
76 for (it = client_list; it != NULL; it = it->next, ++win_it)
77 *win_it = ((Client*)it->data)->window;
78 } else
79 windows = NULL;
80
81 PROP_SET32A(ob_root, net_client_list, window, windows, size);
82
83 if (windows)
84 g_free(windows);
85
86 stacking_set_list();
87 }
88
89 void client_manage_all()
90 {
91 unsigned int i, j, nchild;
92 Window w, *children;
93 XWMHints *wmhints;
94 XWindowAttributes attrib;
95
96 XQueryTree(ob_display, ob_root, &w, &w, &children, &nchild);
97
98 /* remove all icon windows from the list */
99 for (i = 0; i < nchild; i++) {
100 if (children[i] == None) continue;
101 wmhints = XGetWMHints(ob_display, children[i]);
102 if (wmhints) {
103 if ((wmhints->flags & IconWindowHint) &&
104 (wmhints->icon_window != children[i]))
105 for (j = 0; j < nchild; j++)
106 if (children[j] == wmhints->icon_window) {
107 children[j] = None;
108 break;
109 }
110 XFree(wmhints);
111 }
112 }
113
114 for (i = 0; i < nchild; ++i) {
115 if (children[i] == None)
116 continue;
117 if (XGetWindowAttributes(ob_display, children[i], &attrib)) {
118 if (attrib.override_redirect) continue;
119
120 if (attrib.map_state != IsUnmapped)
121 client_manage(children[i]);
122 }
123 }
124 XFree(children);
125
126 /* stack them as they were on startup!
127 why with stacking_lower? Why, because then windows who aren't in the
128 stacking list are on the top where you can see them instead of buried
129 at the bottom! */
130 for (i = client_startup_stack_size; i > 0; --i) {
131 Client *c;
132
133 w = client_startup_stack_order[i-1];
134 c = g_hash_table_lookup(client_map, &w);
135 if (c) stacking_lower(c);
136 }
137 g_free(client_startup_stack_order);
138 client_startup_stack_order = NULL;
139 client_startup_stack_size = 0;
140
141 if (config_focus_new)
142 focus_fallback(Fallback_NoFocus);
143 }
144
145 void client_manage(Window window)
146 {
147 Client *self;
148 XEvent e;
149 XWindowAttributes attrib;
150 XSetWindowAttributes attrib_set;
151 /* XWMHints *wmhint; */
152 guint i;
153
154 grab_server(TRUE);
155
156 /* check if it has already been unmapped by the time we started mapping
157 the grab does a sync so we don't have to here */
158 if (XCheckTypedWindowEvent(ob_display, window, DestroyNotify, &e) ||
159 XCheckTypedWindowEvent(ob_display, window, UnmapNotify, &e)) {
160 XPutBackEvent(ob_display, &e);
161
162 grab_server(FALSE);
163 return; /* don't manage it */
164 }
165
166 /* make sure it isn't an override-redirect window */
167 if (!XGetWindowAttributes(ob_display, window, &attrib) ||
168 attrib.override_redirect) {
169 grab_server(FALSE);
170 return; /* don't manage it */
171 }
172
173 /* /\* is the window a docking app *\/
174 if ((wmhint = XGetWMHints(ob_display, window))) {
175 if ((wmhint->flags & StateHint) &&
176 wmhint->initial_state == WithdrawnState) {
177 /\* XXX: make dock apps work! *\/
178 grab_server(FALSE);
179 XFree(wmhint);
180 return;
181 }
182 XFree(wmhint);
183 }
184 */
185 g_message("Managing window: %lx", window);
186
187 /* choose the events we want to receive on the CLIENT window */
188 attrib_set.event_mask = CLIENT_EVENTMASK;
189 attrib_set.do_not_propagate_mask = CLIENT_NOPROPAGATEMASK;
190 XChangeWindowAttributes(ob_display, window,
191 CWEventMask|CWDontPropagate, &attrib_set);
192
193
194 /* create the Client struct, and populate it from the hints on the
195 window */
196 self = g_new(Client, 1);
197 self->window = window;
198 client_get_all(self);
199
200 /* remove the client's border (and adjust re gravity) */
201 client_toggle_border(self, FALSE);
202
203 /* specify that if we exit, the window should not be destroyed and should
204 be reparented back to root automatically */
205 XChangeSaveSet(ob_display, window, SetModeInsert);
206
207 /* create the decoration frame for the client window */
208 self->frame = frame_new();
209
210 frame_grab_client(self->frame, self);
211
212 client_apply_startup_state(self);
213
214 grab_server(FALSE);
215
216 client_list = g_list_append(client_list, self);
217 stacking_list = g_list_append(stacking_list, self);
218 g_assert(!g_hash_table_lookup(client_map, &self->window));
219 g_hash_table_insert(client_map, &self->window, self);
220
221 /* update the focus lists */
222 if (self->desktop == DESKTOP_ALL) {
223 for (i = 0; i < screen_num_desktops; ++i)
224 focus_order[i] = g_list_append(focus_order[i], self);
225 } else {
226 i = self->desktop;
227 focus_order[i] = g_list_append(focus_order[i], self);
228 }
229
230 stacking_raise(self);
231
232 screen_update_struts();
233
234 dispatch_client(Event_Client_New, self, 0, 0);
235
236 client_showhide(self);
237
238 dispatch_client(Event_Client_Mapped, self, 0, 0);
239
240 /* focus the new window? */
241 if (ob_state != State_Starting && client_normal(self)) {
242 if (config_focus_new)
243 client_focus(self);
244 else if (self->transient_for) {
245 if (self->transient_for != TRAN_GROUP) {/* transient of a window */
246 if (focus_client == self->transient_for)
247 client_focus(self);
248 } else { /* transient of a group */
249 GSList *it;
250
251 for (it = self->group->members; it; it = it->next)
252 if (focus_client == it->data) {
253 client_focus(self);
254 break;
255 }
256 }
257 }
258 }
259
260 /* update the list hints */
261 client_set_list();
262
263 /* make sure the window is visible */
264 client_move_onscreen(self);
265
266 g_message("Managed window 0x%lx", window);
267 }
268
269 void client_unmanage_all()
270 {
271 while (client_list != NULL)
272 client_unmanage(client_list->data);
273 }
274
275 void client_unmanage(Client *self)
276 {
277 guint i;
278 int j;
279 GSList *it;
280
281 g_message("Unmanaging window: %lx", self->window);
282
283 dispatch_client(Event_Client_Destroy, self, 0, 0);
284 g_assert(self != NULL);
285
286 /* remove the window from our save set */
287 XChangeSaveSet(ob_display, self->window, SetModeDelete);
288
289 /* we dont want events no more */
290 XSelectInput(ob_display, self->window, NoEventMask);
291
292 frame_hide(self->frame);
293
294 client_list = g_list_remove(client_list, self);
295 stacking_list = g_list_remove(stacking_list, self);
296 g_hash_table_remove(client_map, &self->window);
297
298 /* update the focus lists */
299 if (self->desktop == DESKTOP_ALL) {
300 for (i = 0; i < screen_num_desktops; ++i)
301 focus_order[i] = g_list_remove(focus_order[i], self);
302 } else {
303 i = self->desktop;
304 focus_order[i] = g_list_remove(focus_order[i], self);
305 }
306
307 /* once the client is out of the list, update the struts to remove it's
308 influence */
309 screen_update_struts();
310
311 /* tell our parent(s) that we're gone */
312 if (self->transient_for == TRAN_GROUP) { /* transient of group */
313 GSList *it;
314
315 for (it = self->group->members; it; it = it->next)
316 if (it->data != self)
317 ((Client*)it->data)->transients =
318 g_slist_remove(((Client*)it->data)->transients, self);
319 } else if (self->transient_for) { /* transient of window */
320 self->transient_for->transients =
321 g_slist_remove(self->transient_for->transients, self);
322 }
323
324 /* tell our transients that we're gone */
325 for (it = self->transients; it != NULL; it = it->next) {
326 if (((Client*)it->data)->transient_for != TRAN_GROUP) {
327 ((Client*)it->data)->transient_for = NULL;
328 client_calc_layer(it->data);
329 }
330 }
331
332 if (focus_client == self)
333 client_unfocus(self);
334
335 /* remove from its group */
336 if (self->group) {
337 group_remove(self->group, self);
338 self->group = NULL;
339 }
340
341 /* dispatch the unmapped event */
342 dispatch_client(Event_Client_Unmapped, self, 0, 0);
343 g_assert(self != NULL);
344
345 /* give the client its border back */
346 client_toggle_border(self, TRUE);
347
348 /* reparent the window out of the frame, and free the frame */
349 frame_release_client(self->frame, self);
350 self->frame = NULL;
351
352 if (ob_state != State_Exiting) {
353 /* these values should not be persisted across a window
354 unmapping/mapping */
355 prop_erase(self->window, prop_atoms.net_wm_desktop);
356 prop_erase(self->window, prop_atoms.net_wm_state);
357 } else {
358 /* if we're left in an iconic state, the client wont be mapped. this is
359 bad, since we will no longer be managing the window on restart */
360 if (self->iconic)
361 XMapWindow(ob_display, self->window);
362 }
363
364 g_message("Unmanaged window 0x%lx", self->window);
365
366 /* free all data allocated in the client struct */
367 g_slist_free(self->transients);
368 for (j = 0; j < self->nicons; ++j)
369 g_free(self->icons[j].data);
370 if (self->nicons > 0)
371 g_free(self->icons);
372 g_free(self->title);
373 g_free(self->icon_title);
374 g_free(self->name);
375 g_free(self->class);
376 g_free(self->role);
377 g_free(self);
378
379 /* update the list hints */
380 client_set_list();
381 }
382
383 static void client_move_onscreen(Client *self)
384 {
385 Rect *a;
386 int x = self->frame->area.x, y = self->frame->area.y;
387
388 a = screen_area(self->desktop);
389 if (x >= a->x + a->width - 1)
390 x = a->x + a->width - self->frame->area.width;
391 if (y >= a->y + a->height - 1)
392 y = a->y + a->height - self->frame->area.height;
393 if (x + self->frame->area.width - 1 < a->x)
394 x = a->x;
395 if (y + self->frame->area.height - 1< a->y)
396 y = a->y;
397
398 frame_frame_gravity(self->frame, &x, &y); /* get where the client
399 should be */
400 client_configure(self , Corner_TopLeft, x, y,
401 self->area.width, self->area.height,
402 TRUE, TRUE);
403 }
404
405 static void client_toggle_border(Client *self, gboolean show)
406 {
407 /* adjust our idea of where the client is, based on its border. When the
408 border is removed, the client should now be considered to be in a
409 different position.
410 when re-adding the border to the client, the same operation needs to be
411 reversed. */
412 int oldx = self->area.x, oldy = self->area.y;
413 int x = oldx, y = oldy;
414 switch(self->gravity) {
415 default:
416 case NorthWestGravity:
417 case WestGravity:
418 case SouthWestGravity:
419 break;
420 case NorthEastGravity:
421 case EastGravity:
422 case SouthEastGravity:
423 if (show) x -= self->border_width * 2;
424 else x += self->border_width * 2;
425 break;
426 case NorthGravity:
427 case SouthGravity:
428 case CenterGravity:
429 case ForgetGravity:
430 case StaticGravity:
431 if (show) x -= self->border_width;
432 else x += self->border_width;
433 break;
434 }
435 switch(self->gravity) {
436 default:
437 case NorthWestGravity:
438 case NorthGravity:
439 case NorthEastGravity:
440 break;
441 case SouthWestGravity:
442 case SouthGravity:
443 case SouthEastGravity:
444 if (show) y -= self->border_width * 2;
445 else y += self->border_width * 2;
446 break;
447 case WestGravity:
448 case EastGravity:
449 case CenterGravity:
450 case ForgetGravity:
451 case StaticGravity:
452 if (show) y -= self->border_width;
453 else y += self->border_width;
454 break;
455 }
456 self->area.x = x;
457 self->area.y = y;
458
459 if (show) {
460 XSetWindowBorderWidth(ob_display, self->window, self->border_width);
461
462 /* move the client so it is back it the right spot _with_ its
463 border! */
464 if (x != oldx || y != oldy)
465 XMoveWindow(ob_display, self->window, x, y);
466 } else
467 XSetWindowBorderWidth(ob_display, self->window, 0);
468 }
469
470
471 static void client_get_all(Client *self)
472 {
473 /* update EVERYTHING!! */
474
475 self->ignore_unmaps = 0;
476
477 /* defaults */
478 self->frame = NULL;
479 self->title = self->icon_title = NULL;
480 self->name = self->class = self->role = NULL;
481 self->wmstate = NormalState;
482 self->transient = FALSE;
483 self->transients = NULL;
484 self->transient_for = NULL;
485 self->layer = -1;
486 self->urgent = FALSE;
487 self->positioned = FALSE;
488 self->disabled_decorations = 0;
489 self->group = NULL;
490 self->nicons = 0;
491
492 client_get_area(self);
493 client_get_desktop(self);
494 client_get_state(self);
495 client_get_shaped(self);
496
497 client_update_transient_for(self);
498 client_get_mwm_hints(self);
499 client_get_type(self);/* this can change the mwmhints for special cases */
500
501 client_update_protocols(self);
502
503 client_get_gravity(self); /* get the attribute gravity */
504 client_update_normal_hints(self); /* this may override the attribute
505 gravity */
506
507 /* got the type, the mwmhints, the protocols, and the normal hints
508 (min/max sizes), so we're ready to set up the decorations/functions */
509 client_setup_decor_and_functions(self);
510
511 client_update_wmhints(self);
512 client_update_title(self);
513 client_update_icon_title(self);
514 client_update_class(self);
515 client_update_strut(self);
516 client_update_icons(self);
517 client_update_kwm_icon(self);
518
519 /* this makes sure that these windows appear on all desktops */
520 if (self->type == Type_Desktop)
521 self->desktop = DESKTOP_ALL;
522
523 /* set the desktop hint, to make sure that it always exists, and to
524 reflect any changes we've made here */
525 PROP_SET32(self->window, net_wm_desktop, cardinal, self->desktop);
526
527 client_change_state(self);
528 }
529
530 static void client_get_area(Client *self)
531 {
532 XWindowAttributes wattrib;
533 Status ret;
534
535 ret = XGetWindowAttributes(ob_display, self->window, &wattrib);
536 g_assert(ret != BadWindow);
537
538 RECT_SET(self->area, wattrib.x, wattrib.y, wattrib.width, wattrib.height);
539 self->border_width = wattrib.border_width;
540 }
541
542 static void client_get_desktop(Client *self)
543 {
544 unsigned int d;
545
546 if (PROP_GET32(self->window, net_wm_desktop, cardinal, d)) {
547 if (d >= screen_num_desktops && d != DESKTOP_ALL)
548 d = screen_num_desktops - 1;
549 self->desktop = d;
550 } else {
551 /* defaults to the current desktop */
552 self->desktop = screen_desktop;
553 }
554 }
555
556 static void client_get_state(Client *self)
557 {
558 gulong *state;
559 gulong num;
560
561 self->modal = self->shaded = self->max_horz = self->max_vert =
562 self->fullscreen = self->above = self->below = self->iconic =
563 self->skip_taskbar = self->skip_pager = FALSE;
564
565 if (PROP_GET32U(self->window, net_wm_state, atom, state, num)) {
566 gulong i;
567 for (i = 0; i < num; ++i) {
568 if (state[i] == prop_atoms.net_wm_state_modal)
569 self->modal = TRUE;
570 else if (state[i] == prop_atoms.net_wm_state_shaded)
571 self->shaded = TRUE;
572 else if (state[i] == prop_atoms.net_wm_state_hidden)
573 self->iconic = TRUE;
574 else if (state[i] == prop_atoms.net_wm_state_skip_taskbar)
575 self->skip_taskbar = TRUE;
576 else if (state[i] == prop_atoms.net_wm_state_skip_pager)
577 self->skip_pager = TRUE;
578 else if (state[i] == prop_atoms.net_wm_state_fullscreen)
579 self->fullscreen = TRUE;
580 else if (state[i] == prop_atoms.net_wm_state_maximized_vert)
581 self->max_vert = TRUE;
582 else if (state[i] == prop_atoms.net_wm_state_maximized_horz)
583 self->max_horz = TRUE;
584 else if (state[i] == prop_atoms.net_wm_state_above)
585 self->above = TRUE;
586 else if (state[i] == prop_atoms.net_wm_state_below)
587 self->below = TRUE;
588 }
589
590 g_free(state);
591 }
592 }
593
594 static void client_get_shaped(Client *self)
595 {
596 self->shaped = FALSE;
597 #ifdef SHAPE
598 if (extensions_shape) {
599 int foo;
600 guint ufoo;
601 int s;
602
603 XShapeSelectInput(ob_display, self->window, ShapeNotifyMask);
604
605 XShapeQueryExtents(ob_display, self->window, &s, &foo,
606 &foo, &ufoo, &ufoo, &foo, &foo, &foo, &ufoo,
607 &ufoo);
608 self->shaped = (s != 0);
609 }
610 #endif
611 }
612
613 void client_update_transient_for(Client *self)
614 {
615 Window t = None;
616 Client *c = NULL;
617
618 if (XGetTransientForHint(ob_display, self->window, &t) &&
619 t != self->window) { /* cant be transient to itself! */
620 self->transient = TRUE;
621 c = g_hash_table_lookup(client_map, &t);
622 g_assert(c != self);/* if this happens then we need to check for it*/
623
624 if (!c && self->group) {
625 /* not transient to a client, see if it is transient for a
626 group */
627 if (t == self->group->leader ||
628 t == None ||
629 t == ob_root) {
630 /* window is a transient for its group! */
631 c = TRAN_GROUP;
632 }
633 }
634 } else
635 self->transient = FALSE;
636
637 /* if anything has changed... */
638 if (c != self->transient_for) {
639 if (self->transient_for == TRAN_GROUP) { /* transient of group */
640 GSList *it;
641
642 /* remove from old parents */
643 for (it = self->group->members; it; it = it->next)
644 if (it->data != self)
645 ((Client*)it->data)->transients =
646 g_slist_remove(((Client*)it->data)->transients, self);
647 } else if (self->transient_for != NULL) { /* transient of window */
648 /* remove from old parent */
649 self->transient_for->transients =
650 g_slist_remove(self->transient_for->transients, self);
651 }
652 self->transient_for = c;
653 if (self->transient_for == TRAN_GROUP) { /* transient of group */
654 GSList *it;
655
656 /* add to new parents */
657 for (it = self->group->members; it; it = it->next)
658 if (it->data != self)
659 ((Client*)it->data)->transients =
660 g_slist_append(((Client*)it->data)->transients, self);
661 } else if (self->transient_for != NULL) { /* transient of window */
662 /* add to new parent */
663 self->transient_for->transients =
664 g_slist_append(self->transient_for->transients, self);
665 }
666 }
667 }
668
669 static void client_get_mwm_hints(Client *self)
670 {
671 unsigned long num;
672 unsigned long *hints;
673
674 self->mwmhints.flags = 0; /* default to none */
675
676 if (PROP_GET32U(self->window, motif_wm_hints, motif_wm_hints, hints, num)) {
677 if (num >= MWM_ELEMENTS) {
678 self->mwmhints.flags = hints[0];
679 self->mwmhints.functions = hints[1];
680 self->mwmhints.decorations = hints[2];
681 }
682 g_free(hints);
683 }
684 }
685
686 void client_get_type(Client *self)
687 {
688 gulong *val, num, i;
689
690 self->type = -1;
691
692 if (PROP_GET32U(self->window, net_wm_window_type, atom, val, num)) {
693 /* use the first value that we know about in the array */
694 for (i = 0; i < num; ++i) {
695 if (val[i] == prop_atoms.net_wm_window_type_desktop)
696 self->type = Type_Desktop;
697 else if (val[i] == prop_atoms.net_wm_window_type_dock)
698 self->type = Type_Dock;
699 else if (val[i] == prop_atoms.net_wm_window_type_toolbar)
700 self->type = Type_Toolbar;
701 else if (val[i] == prop_atoms.net_wm_window_type_menu)
702 self->type = Type_Menu;
703 else if (val[i] == prop_atoms.net_wm_window_type_utility)
704 self->type = Type_Utility;
705 else if (val[i] == prop_atoms.net_wm_window_type_splash)
706 self->type = Type_Splash;
707 else if (val[i] == prop_atoms.net_wm_window_type_dialog)
708 self->type = Type_Dialog;
709 else if (val[i] == prop_atoms.net_wm_window_type_normal)
710 self->type = Type_Normal;
711 else if (val[i] == prop_atoms.kde_net_wm_window_type_override) {
712 /* prevent this window from getting any decor or
713 functionality */
714 self->mwmhints.flags &= (MwmFlag_Functions |
715 MwmFlag_Decorations);
716 self->mwmhints.decorations = 0;
717 self->mwmhints.functions = 0;
718 }
719 if (self->type != (WindowType) -1)
720 break; /* grab the first legit type */
721 }
722 g_free(val);
723 }
724
725 if (self->type == (WindowType) -1) {
726 /*the window type hint was not set, which means we either classify
727 ourself as a normal window or a dialog, depending on if we are a
728 transient. */
729 if (self->transient)
730 self->type = Type_Dialog;
731 else
732 self->type = Type_Normal;
733 }
734 }
735
736 void client_update_protocols(Client *self)
737 {
738 Atom *proto;
739 gulong num_return, i;
740
741 self->focus_notify = FALSE;
742 self->delete_window = FALSE;
743
744 if (PROP_GET32U(self->window, wm_protocols, atom, proto, num_return)) {
745 for (i = 0; i < num_return; ++i) {
746 if (proto[i] == prop_atoms.wm_delete_window) {
747 /* this means we can request the window to close */
748 self->delete_window = TRUE;
749 } else if (proto[i] == prop_atoms.wm_take_focus)
750 /* if this protocol is requested, then the window will be
751 notified whenever we want it to receive focus */
752 self->focus_notify = TRUE;
753 }
754 g_free(proto);
755 }
756 }
757
758 static void client_get_gravity(Client *self)
759 {
760 XWindowAttributes wattrib;
761 Status ret;
762
763 ret = XGetWindowAttributes(ob_display, self->window, &wattrib);
764 g_assert(ret != BadWindow);
765 self->gravity = wattrib.win_gravity;
766 }
767
768 void client_update_normal_hints(Client *self)
769 {
770 XSizeHints size;
771 long ret;
772 int oldgravity = self->gravity;
773
774 /* defaults */
775 self->min_ratio = 0.0f;
776 self->max_ratio = 0.0f;
777 SIZE_SET(self->size_inc, 1, 1);
778 SIZE_SET(self->base_size, 0, 0);
779 SIZE_SET(self->min_size, 0, 0);
780 SIZE_SET(self->max_size, G_MAXINT, G_MAXINT);
781
782 /* get the hints from the window */
783 if (XGetWMNormalHints(ob_display, self->window, &size, &ret)) {
784 self->positioned = !!(size.flags & (PPosition|USPosition));
785
786 if (size.flags & PWinGravity) {
787 self->gravity = size.win_gravity;
788
789 /* if the client has a frame, i.e. has already been mapped and
790 is changing its gravity */
791 if (self->frame && self->gravity != oldgravity) {
792 /* move our idea of the client's position based on its new
793 gravity */
794 self->area.x = self->frame->area.x;
795 self->area.y = self->frame->area.y;
796 frame_frame_gravity(self->frame, &self->area.x, &self->area.y);
797 }
798 }
799
800 if (size.flags & PAspect) {
801 if (size.min_aspect.y)
802 self->min_ratio = (float)size.min_aspect.x / size.min_aspect.y;
803 if (size.max_aspect.y)
804 self->max_ratio = (float)size.max_aspect.x / size.max_aspect.y;
805 }
806
807 if (size.flags & PMinSize)
808 SIZE_SET(self->min_size, size.min_width, size.min_height);
809
810 if (size.flags & PMaxSize)
811 SIZE_SET(self->max_size, size.max_width, size.max_height);
812
813 if (size.flags & PBaseSize)
814 SIZE_SET(self->base_size, size.base_width, size.base_height);
815
816 if (size.flags & PResizeInc)
817 SIZE_SET(self->size_inc, size.width_inc, size.height_inc);
818 }
819 }
820
821 void client_setup_decor_and_functions(Client *self)
822 {
823 /* start with everything (cept fullscreen) */
824 self->decorations = Decor_Titlebar | Decor_Handle | Decor_Border |
825 Decor_Icon | Decor_AllDesktops | Decor_Iconify | Decor_Maximize |
826 Decor_Shade;
827 self->functions = Func_Resize | Func_Move | Func_Iconify | Func_Maximize |
828 Func_Shade;
829 if (self->delete_window) {
830 self->decorations |= Decor_Close;
831 self->functions |= Func_Close;
832 }
833
834 if (!(self->min_size.width < self->max_size.width ||
835 self->min_size.height < self->max_size.height)) {
836 self->decorations &= ~(Decor_Maximize | Decor_Handle);
837 self->functions &= ~(Func_Resize | Func_Maximize);
838 }
839
840 switch (self->type) {
841 case Type_Normal:
842 /* normal windows retain all of the possible decorations and
843 functionality, and are the only windows that you can fullscreen */
844 self->functions |= Func_Fullscreen;
845 break;
846
847 case Type_Dialog:
848 case Type_Utility:
849 /* these windows cannot be maximized */
850 self->decorations &= ~Decor_Maximize;
851 self->functions &= ~Func_Maximize;
852 break;
853
854 case Type_Menu:
855 case Type_Toolbar:
856 /* these windows get less functionality */
857 self->decorations &= ~(Decor_Iconify | Decor_Handle);
858 self->functions &= ~(Func_Iconify | Func_Resize);
859 break;
860
861 case Type_Desktop:
862 case Type_Dock:
863 case Type_Splash:
864 /* none of these windows are manipulated by the window manager */
865 self->decorations = 0;
866 self->functions = 0;
867 break;
868 }
869
870 /* Mwm Hints are applied subtractively to what has already been chosen for
871 decor and functionality */
872 if (self->mwmhints.flags & MwmFlag_Decorations) {
873 if (! (self->mwmhints.decorations & MwmDecor_All)) {
874 if (! (self->mwmhints.decorations & MwmDecor_Border))
875 self->decorations &= ~Decor_Border;
876 if (! (self->mwmhints.decorations & MwmDecor_Handle))
877 self->decorations &= ~Decor_Handle;
878 if (! (self->mwmhints.decorations & MwmDecor_Title))
879 self->decorations &= ~Decor_Titlebar;
880 if (! (self->mwmhints.decorations & MwmDecor_Iconify))
881 self->decorations &= ~Decor_Iconify;
882 if (! (self->mwmhints.decorations & MwmDecor_Maximize))
883 self->decorations &= ~Decor_Maximize;
884 }
885 }
886
887 if (self->mwmhints.flags & MwmFlag_Functions) {
888 if (! (self->mwmhints.functions & MwmFunc_All)) {
889 if (! (self->mwmhints.functions & MwmFunc_Resize))
890 self->functions &= ~Func_Resize;
891 if (! (self->mwmhints.functions & MwmFunc_Move))
892 self->functions &= ~Func_Move;
893 if (! (self->mwmhints.functions & MwmFunc_Iconify))
894 self->functions &= ~Func_Iconify;
895 if (! (self->mwmhints.functions & MwmFunc_Maximize))
896 self->functions &= ~Func_Maximize;
897 /* dont let mwm hints kill the close button
898 if (! (self->mwmhints.functions & MwmFunc_Close))
899 self->functions &= ~Func_Close; */
900 }
901 }
902
903 /* can't maximize without moving/resizing */
904 if (!((self->functions & Func_Move) && (self->functions & Func_Resize)))
905 self->functions &= ~(Func_Maximize | Func_Fullscreen);
906
907 /* finally, user specified disabled decorations are applied to subtract
908 decorations */
909 if (self->disabled_decorations & Decor_Titlebar)
910 self->decorations &= ~Decor_Titlebar;
911 if (self->disabled_decorations & Decor_Handle)
912 self->decorations &= ~Decor_Handle;
913 if (self->disabled_decorations & Decor_Border)
914 self->decorations &= ~Decor_Border;
915 if (self->disabled_decorations & Decor_Iconify)
916 self->decorations &= ~Decor_Iconify;
917 if (self->disabled_decorations & Decor_Maximize)
918 self->decorations &= ~Decor_Maximize;
919 if (self->disabled_decorations & Decor_AllDesktops)
920 self->decorations &= ~Decor_AllDesktops;
921 if (self->disabled_decorations & Decor_Shade)
922 self->decorations &= ~Decor_Shade;
923 if (self->disabled_decorations & Decor_Close)
924 self->decorations &= ~Decor_Close;
925
926 /* if we don't have a titlebar, then we cannot shade! */
927 if (!(self->decorations & Decor_Titlebar))
928 self->functions &= ~Func_Shade;
929
930 /* now we need to check against rules for the client's current state */
931 if (self->fullscreen) {
932 self->functions &= (Func_Close | Func_Fullscreen | Func_Iconify);
933 self->decorations = 0;
934 }
935
936 client_change_allowed_actions(self);
937
938 if (self->frame) {
939 /* change the decors on the frame, and with more/less decorations,
940 we may also need to be repositioned */
941 frame_adjust_area(self->frame, TRUE, TRUE);
942 /* with new decor, the window's maximized size may change */
943 client_remaximize(self);
944 }
945 }
946
947 static void client_change_allowed_actions(Client *self)
948 {
949 Atom actions[9];
950 int num = 0;
951
952 actions[num++] = prop_atoms.net_wm_action_change_desktop;
953
954 if (self->functions & Func_Shade)
955 actions[num++] = prop_atoms.net_wm_action_shade;
956 if (self->functions & Func_Close)
957 actions[num++] = prop_atoms.net_wm_action_close;
958 if (self->functions & Func_Move)
959 actions[num++] = prop_atoms.net_wm_action_move;
960 if (self->functions & Func_Iconify)
961 actions[num++] = prop_atoms.net_wm_action_minimize;
962 if (self->functions & Func_Resize)
963 actions[num++] = prop_atoms.net_wm_action_resize;
964 if (self->functions & Func_Fullscreen)
965 actions[num++] = prop_atoms.net_wm_action_fullscreen;
966 if (self->functions & Func_Maximize) {
967 actions[num++] = prop_atoms.net_wm_action_maximize_horz;
968 actions[num++] = prop_atoms.net_wm_action_maximize_vert;
969 }
970
971 PROP_SET32A(self->window, net_wm_allowed_actions, atom, actions, num);
972
973 /* make sure the window isn't breaking any rules now */
974
975 if (!(self->functions & Func_Shade) && self->shaded) {
976 if (self->frame) client_shade(self, FALSE);
977 else self->shaded = FALSE;
978 }
979 if (!(self->functions & Func_Iconify) && self->iconic) {
980 g_message("UNSETTING ICONIC");
981 if (self->frame) client_iconify(self, FALSE, TRUE);
982 else self->iconic = FALSE;
983 }
984 if (!(self->functions & Func_Fullscreen) && self->fullscreen) {
985 if (self->frame) client_fullscreen(self, FALSE, TRUE);
986 else self->fullscreen = FALSE;
987 }
988 if (!(self->functions & Func_Maximize) && (self->max_horz ||
989 self->max_vert)) {
990 if (self->frame) client_maximize(self, FALSE, 0, TRUE);
991 else self->max_vert = self->max_horz = FALSE;
992 }
993 }
994
995 void client_remaximize(Client *self)
996 {
997 int dir;
998 if (self->max_horz && self->max_vert)
999 dir = 0;
1000 else if (self->max_horz)
1001 dir = 1;
1002 else if (self->max_vert)
1003 dir = 2;
1004 else
1005 return; /* not maximized */
1006 self->max_horz = self->max_vert = FALSE;
1007 client_maximize(self, TRUE, dir, FALSE);
1008 }
1009
1010 void client_update_wmhints(Client *self)
1011 {
1012 XWMHints *hints;
1013 gboolean ur = FALSE;
1014
1015 /* assume a window takes input if it doesnt specify */
1016 self->can_focus = TRUE;
1017
1018 if ((hints = XGetWMHints(ob_display, self->window)) != NULL) {
1019 if (hints->flags & InputHint)
1020 self->can_focus = hints->input;
1021
1022 /* only do this when first managing the window *AND* when we aren't
1023 starting up! */
1024 if (ob_state != State_Starting && self->frame == NULL)
1025 if (hints->flags & StateHint)
1026 self->iconic = hints->initial_state == IconicState;
1027
1028 if (hints->flags & XUrgencyHint)
1029 ur = TRUE;
1030
1031 if (!(hints->flags & WindowGroupHint))
1032 hints->window_group = None; /* no group */
1033 /* did the group state change? */
1034 if (hints->window_group != (self->group ? self->group->leader : None)){
1035 /* remove from the old group if there was one */
1036 if (self->group != NULL)
1037 group_remove(self->group, self);
1038 if (hints->window_group != None)
1039 self->group = group_add(hints->window_group, self);
1040
1041 /* because the self->transient flag wont change from this call,
1042 we don't need to update the window's type and such, only its
1043 transient_for, and the transients lists of other windows in the
1044 group may be affected */
1045 client_update_transient_for(self);
1046 }
1047
1048 if (hints->flags & IconPixmapHint) {
1049 client_update_kwm_icon(self);
1050 /* try get the kwm icon first, this is a fallback only */
1051 if (self->pixmap_icon == None) {
1052 self->pixmap_icon = hints->icon_pixmap;
1053 if (hints->flags & IconMaskHint)
1054 self->pixmap_icon_mask = hints->icon_mask;
1055 else
1056 self->pixmap_icon_mask = None;
1057
1058 if (self->frame)
1059 frame_adjust_icon(self->frame);
1060 }
1061 }
1062
1063 XFree(hints);
1064 }
1065
1066 if (ur != self->urgent) {
1067 self->urgent = ur;
1068 g_message("Urgent Hint for 0x%lx: %s", self->window,
1069 ur ? "ON" : "OFF");
1070 /* fire the urgent callback if we're mapped, otherwise, wait until
1071 after we're mapped */
1072 if (self->frame)
1073 dispatch_client(Event_Client_Urgent, self, self->urgent, 0);
1074 }
1075 }
1076
1077 void client_update_title(Client *self)
1078 {
1079 gchar *data = NULL;
1080
1081 g_free(self->title);
1082
1083 /* try netwm */
1084 if (!PROP_GETS(self->window, net_wm_name, utf8, data)) {
1085 /* try old x stuff */
1086 if (PROP_GETS(self->window, wm_name, string, data)) {
1087 /* convert it to UTF-8 */
1088 gsize r, w;
1089 gchar *u;
1090
1091 u = g_locale_to_utf8(data, -1, &r, &w, NULL);
1092 if (u == NULL) {
1093 g_warning("Unable to convert string to UTF-8");
1094 } else {
1095 g_free(data);
1096 data = u;
1097 }
1098 }
1099 if (data == NULL)
1100 data = g_strdup("Unnamed Window");
1101
1102 PROP_SETS(self->window, net_wm_visible_name, utf8, data);
1103 }
1104
1105 self->title = data;
1106
1107 if (self->frame)
1108 frame_adjust_title(self->frame);
1109 }
1110
1111 void client_update_icon_title(Client *self)
1112 {
1113 gchar *data = NULL;
1114
1115 g_free(self->icon_title);
1116
1117 /* try netwm */
1118 if (!PROP_GETS(self->window, net_wm_icon_name, utf8, data)) {
1119 /* try old x stuff */
1120 if (PROP_GETS(self->window, wm_icon_name, string, data)) {
1121 /* convert it to UTF-8 */
1122 gsize r, w;
1123 gchar *u;
1124
1125 u = g_locale_to_utf8(data, -1, &r, &w, NULL);
1126 if (u == NULL) {
1127 g_warning("Unable to convert string to UTF-8");
1128 } else {
1129 g_free(data);
1130 data = u;
1131 }
1132 }
1133 if (data == NULL)
1134 data = g_strdup("Unnamed Window");
1135
1136 PROP_SETS(self->window, net_wm_visible_icon_name, utf8, data);
1137 }
1138
1139 self->icon_title = data;
1140 }
1141
1142 void client_update_class(Client *self)
1143 {
1144 GPtrArray *data;
1145 gchar *s;
1146 guint i;
1147
1148 if (self->name) g_free(self->name);
1149 if (self->class) g_free(self->class);
1150 if (self->role) g_free(self->role);
1151
1152 self->name = self->class = self->role = NULL;
1153
1154 data = g_ptr_array_new();
1155
1156 if (PROP_GETSA(self->window, wm_class, string, data)) {
1157 if (data->len > 0)
1158 self->name = g_strdup(g_ptr_array_index(data, 0));
1159 if (data->len > 1)
1160 self->class = g_strdup(g_ptr_array_index(data, 1));
1161 }
1162
1163 for (i = 0; i < data->len; ++i)
1164 g_free(g_ptr_array_index(data, i));
1165 g_ptr_array_free(data, TRUE);
1166
1167 if (PROP_GETS(self->window, wm_window_role, string, s))
1168 self->role = g_strdup(s);
1169
1170 if (self->name == NULL) self->name = g_strdup("");
1171 if (self->class == NULL) self->class = g_strdup("");
1172 if (self->role == NULL) self->role = g_strdup("");
1173 }
1174
1175 void client_update_strut(Client *self)
1176 {
1177 gulong *data;
1178
1179 if (PROP_GET32A(self->window, net_wm_strut, cardinal, data, 4)) {
1180 STRUT_SET(self->strut, data[0], data[2], data[1], data[3]);
1181 g_free(data);
1182 } else
1183 STRUT_SET(self->strut, 0, 0, 0, 0);
1184
1185 /* updating here is pointless while we're being mapped cuz we're not in
1186 the client list yet */
1187 if (self->frame)
1188 screen_update_struts();
1189 }
1190
1191 void client_update_icons(Client *self)
1192 {
1193 unsigned long num;
1194 unsigned long *data;
1195 unsigned long w, h, i;
1196 int j;
1197
1198 for (j = 0; j < self->nicons; ++j)
1199 g_free(self->icons[j].data);
1200 if (self->nicons > 0)
1201 g_free(self->icons);
1202 self->nicons = 0;
1203
1204 if (PROP_GET32U(self->window, net_wm_icon, cardinal, data, num)) {
1205 /* figure out how many valid icons are in here */
1206 i = 0;
1207 while (num - i > 2) {
1208 w = data[i++];
1209 h = data[i++];
1210 i += w * h;
1211 if (i > num) break;
1212 ++self->nicons;
1213 }
1214
1215 self->icons = g_new(Icon, self->nicons);
1216
1217 /* store the icons */
1218 i = 0;
1219 for (j = 0; j < self->nicons; ++j) {
1220 w = self->icons[j].width = data[i++];
1221 h = self->icons[j].height = data[i++];
1222 self->icons[j].data =
1223 g_memdup(&data[i], w * h * sizeof(gulong));
1224 i += w * h;
1225 g_assert(i <= num);
1226 }
1227
1228 g_free(data);
1229 }
1230
1231 if (self->frame)
1232 frame_adjust_icon(self->frame);
1233 }
1234
1235 void client_update_kwm_icon(Client *self)
1236 {
1237 Pixmap *data;
1238
1239 if (PROP_GET32A(self->window, kwm_win_icon, kwm_win_icon, data, 2)) {
1240 self->pixmap_icon = data[0];
1241 self->pixmap_icon_mask = data[1];
1242 g_free(data);
1243 } else {
1244 self->pixmap_icon = self->pixmap_icon_mask = None;
1245 }
1246 if (self->frame)
1247 frame_adjust_icon(self->frame);
1248 }
1249
1250 static void client_change_state(Client *self)
1251 {
1252 unsigned long state[2];
1253 Atom netstate[10];
1254 int num;
1255
1256 state[0] = self->wmstate;
1257 state[1] = None;
1258 PROP_SET32A(self->window, wm_state, wm_state, state, 2);
1259
1260 num = 0;
1261 if (self->modal)
1262 netstate[num++] = prop_atoms.net_wm_state_modal;
1263 if (self->shaded)
1264 netstate[num++] = prop_atoms.net_wm_state_shaded;
1265 if (self->iconic)
1266 netstate[num++] = prop_atoms.net_wm_state_hidden;
1267 if (self->skip_taskbar)
1268 netstate[num++] = prop_atoms.net_wm_state_skip_taskbar;
1269 if (self->skip_pager)
1270 netstate[num++] = prop_atoms.net_wm_state_skip_pager;
1271 if (self->fullscreen)
1272 netstate[num++] = prop_atoms.net_wm_state_fullscreen;
1273 if (self->max_vert)
1274 netstate[num++] = prop_atoms.net_wm_state_maximized_vert;
1275 if (self->max_horz)
1276 netstate[num++] = prop_atoms.net_wm_state_maximized_horz;
1277 if (self->above)
1278 netstate[num++] = prop_atoms.net_wm_state_above;
1279 if (self->below)
1280 netstate[num++] = prop_atoms.net_wm_state_below;
1281 PROP_SET32A(self->window, net_wm_state, atom, netstate, num);
1282
1283 client_calc_layer(self);
1284
1285 if (self->frame)
1286 frame_adjust_state(self->frame);
1287 }
1288
1289 static Client *search_focus_tree(Client *node, Client *skip)
1290 {
1291 GSList *it;
1292 Client *ret;
1293
1294 for (it = node->transients; it != NULL; it = it->next) {
1295 Client *c = it->data;
1296 if (c == skip) continue; /* circular? */
1297 if ((ret = search_focus_tree(c, skip))) return ret;
1298 if (client_focused(c)) return c;
1299 }
1300 return NULL;
1301 }
1302
1303 void client_calc_layer(Client *self)
1304 {
1305 StackLayer l;
1306
1307 if (self->iconic) l = Layer_Icon;
1308 /* fullscreen windows are only in the fullscreen layer while focused */
1309 else if (self->fullscreen && focus_client == self) l = Layer_Fullscreen;
1310 else if (self->type == Type_Desktop) l = Layer_Desktop;
1311 else if (self->type == Type_Dock) {
1312 if (!self->below) l = Layer_Top;
1313 else l = Layer_Normal;
1314 }
1315 else if (self->above) l = Layer_Above;
1316 else if (self->below) l = Layer_Below;
1317 else l = Layer_Normal;
1318
1319 if (l != self->layer) {
1320 self->layer = l;
1321 if (self->frame)
1322 stacking_raise(self);
1323 }
1324 }
1325
1326 gboolean client_should_show(Client *self)
1327 {
1328 if (self->iconic) return FALSE;
1329 else if (!(self->desktop == screen_desktop ||
1330 self->desktop == DESKTOP_ALL)) return FALSE;
1331 else if (client_normal(self) && screen_showing_desktop) return FALSE;
1332
1333 return TRUE;
1334 }
1335
1336 static void client_showhide(Client *self)
1337 {
1338
1339 if (client_should_show(self))
1340 frame_show(self->frame);
1341 else
1342 frame_hide(self->frame);
1343 }
1344
1345 gboolean client_normal(Client *self) {
1346 return ! (self->type == Type_Desktop || self->type == Type_Dock ||
1347 self->type == Type_Splash);
1348 }
1349
1350 static void client_apply_startup_state(Client *self)
1351 {
1352 /* these are in a carefully crafted order.. */
1353
1354 if (self->iconic) {
1355 self->iconic = FALSE;
1356 client_iconify(self, TRUE, FALSE);
1357 }
1358 if (self->fullscreen) {
1359 self->fullscreen = FALSE;
1360 client_fullscreen(self, TRUE, FALSE);
1361 }
1362 if (self->shaded) {
1363 self->shaded = FALSE;
1364 client_shade(self, TRUE);
1365 }
1366 if (self->urgent)
1367 dispatch_client(Event_Client_Urgent, self, self->urgent, 0);
1368
1369 if (self->max_vert && self->max_horz) {
1370 self->max_vert = self->max_horz = FALSE;
1371 client_maximize(self, TRUE, 0, FALSE);
1372 } else if (self->max_vert) {
1373 self->max_vert = FALSE;
1374 client_maximize(self, TRUE, 2, FALSE);
1375 } else if (self->max_horz) {
1376 self->max_horz = FALSE;
1377 client_maximize(self, TRUE, 1, FALSE);
1378 }
1379
1380 /* nothing to do for the other states:
1381 skip_taskbar
1382 skip_pager
1383 modal
1384 above
1385 below
1386 */
1387 }
1388
1389 void client_configure(Client *self, Corner anchor, int x, int y, int w, int h,
1390 gboolean user, gboolean final)
1391 {
1392 gboolean moved = FALSE, resized = FALSE;
1393
1394 /* gets the frame's position */
1395 frame_client_gravity(self->frame, &x, &y);
1396
1397 /* these positions are frame positions, not client positions */
1398
1399 /* set the size and position if fullscreen */
1400 if (self->fullscreen) {
1401 x = 0;
1402 y = 0;
1403 w = screen_physical_size.width;
1404 h = screen_physical_size.height;
1405 user = FALSE; /* ignore that increment etc shit when in fullscreen */
1406 } else {
1407 /* set the size and position if maximized */
1408 if (self->max_horz) {
1409 x = screen_area(self->desktop)->x - self->frame->size.left;
1410 w = screen_area(self->desktop)->width;
1411 }
1412 if (self->max_vert) {
1413 y = screen_area(self->desktop)->y;
1414 h = screen_area(self->desktop)->height -
1415 self->frame->size.top - self->frame->size.bottom;
1416 }
1417 }
1418
1419 /* gets the client's position */
1420 frame_frame_gravity(self->frame, &x, &y);
1421
1422 /* these override the above states! if you cant move you can't move! */
1423 if (user) {
1424 if (!(self->functions & Func_Move)) {
1425 x = self->area.x;
1426 y = self->area.y;
1427 }
1428 if (!(self->functions & Func_Resize)) {
1429 w = self->area.width;
1430 h = self->area.height;
1431 }
1432 }
1433
1434 if (!(w == self->area.width && h == self->area.height)) {
1435 w -= self->base_size.width;
1436 h -= self->base_size.height;
1437
1438 if (user) {
1439 /* for interactive resizing. have to move half an increment in each
1440 direction. */
1441
1442 /* how far we are towards the next size inc */
1443 int mw = w % self->size_inc.width;
1444 int mh = h % self->size_inc.height;
1445 /* amount to add */
1446 int aw = self->size_inc.width / 2;
1447 int ah = self->size_inc.height / 2;
1448 /* don't let us move into a new size increment */
1449 if (mw + aw >= self->size_inc.width)
1450 aw = self->size_inc.width - mw - 1;
1451 if (mh + ah >= self->size_inc.height)
1452 ah = self->size_inc.height - mh - 1;
1453 w += aw;
1454 h += ah;
1455
1456 /* if this is a user-requested resize, then check against min/max
1457 sizes and aspect ratios */
1458
1459 /* smaller than min size or bigger than max size? */
1460 if (w > self->max_size.width) w = self->max_size.width;
1461 if (w < self->min_size.width) w = self->min_size.width;
1462 if (h > self->max_size.height) h = self->max_size.height;
1463 if (h < self->min_size.height) h = self->min_size.height;
1464
1465 /* adjust the height ot match the width for the aspect ratios */
1466 if (self->min_ratio)
1467 if (h * self->min_ratio > w) h = (int)(w / self->min_ratio);
1468 if (self->max_ratio)
1469 if (h * self->max_ratio < w) h = (int)(w / self->max_ratio);
1470 }
1471
1472 /* keep to the increments */
1473 w /= self->size_inc.width;
1474 h /= self->size_inc.height;
1475
1476 /* you cannot resize to nothing */
1477 if (w < 1) w = 1;
1478 if (h < 1) h = 1;
1479
1480 /* store the logical size */
1481 SIZE_SET(self->logical_size, w, h);
1482
1483 w *= self->size_inc.width;
1484 h *= self->size_inc.height;
1485
1486 w += self->base_size.width;
1487 h += self->base_size.height;
1488 }
1489
1490 switch (anchor) {
1491 case Corner_TopLeft:
1492 break;
1493 case Corner_TopRight:
1494 x -= w - self->area.width;
1495 break;
1496 case Corner_BottomLeft:
1497 y -= h - self->area.height;
1498 break;
1499 case Corner_BottomRight:
1500 x -= w - self->area.width;
1501 y -= h - self->area.height;
1502 break;
1503 }
1504
1505 moved = x != self->area.x || y != self->area.y;
1506 resized = w != self->area.width || h != self->area.height;
1507
1508 RECT_SET(self->area, x, y, w, h);
1509
1510 if (resized)
1511 XResizeWindow(ob_display, self->window, w, h);
1512
1513 /* move/resize the frame to match the request */
1514 if (self->frame) {
1515 if (moved || resized)
1516 frame_adjust_area(self->frame, moved, resized);
1517
1518 if (!user || final) {
1519 XEvent event;
1520 event.type = ConfigureNotify;
1521 event.xconfigure.display = ob_display;
1522 event.xconfigure.event = self->window;
1523 event.xconfigure.window = self->window;
1524
1525 /* root window coords with border in mind */
1526 event.xconfigure.x = x - self->border_width +
1527 self->frame->size.left;
1528 event.xconfigure.y = y - self->border_width +
1529 self->frame->size.top;
1530
1531 event.xconfigure.width = self->area.width;
1532 event.xconfigure.height = self->area.height;
1533 event.xconfigure.border_width = self->border_width;
1534 event.xconfigure.above = self->frame->plate;
1535 event.xconfigure.override_redirect = FALSE;
1536 XSendEvent(event.xconfigure.display, event.xconfigure.window,
1537 FALSE, StructureNotifyMask, &event);
1538 }
1539 }
1540 }
1541
1542 void client_fullscreen(Client *self, gboolean fs, gboolean savearea)
1543 {
1544 int x, y, w, h;
1545
1546 if (!(self->functions & Func_Fullscreen) || /* can't */
1547 self->fullscreen == fs) return; /* already done */
1548
1549 self->fullscreen = fs;
1550 client_change_state(self); /* change the state hints on the client */
1551
1552 if (fs) {
1553 if (savearea) {
1554 long dimensions[4];
1555 dimensions[0] = self->area.x;
1556 dimensions[1] = self->area.y;
1557 dimensions[2] = self->area.width;
1558 dimensions[3] = self->area.height;
1559
1560 PROP_SET32A(self->window, openbox_premax, cardinal,
1561 dimensions, 4);
1562 }
1563
1564 /* these are not actually used cuz client_configure will set them
1565 as appropriate when the window is fullscreened */
1566 x = y = w = h = 0;
1567 } else {
1568 long *dimensions;
1569
1570 if (PROP_GET32A(self->window, openbox_premax, cardinal,
1571 dimensions, 4)) {
1572 x = dimensions[0];
1573 y = dimensions[1];
1574 w = dimensions[2];
1575 h = dimensions[3];
1576 g_free(dimensions);
1577 } else {
1578 /* pick some fallbacks... */
1579 x = screen_area(self->desktop)->x +
1580 screen_area(self->desktop)->width / 4;
1581 y = screen_area(self->desktop)->y +
1582 screen_area(self->desktop)->height / 4;
1583 w = screen_area(self->desktop)->width / 2;
1584 h = screen_area(self->desktop)->height / 2;
1585 }
1586 }
1587
1588 client_setup_decor_and_functions(self);
1589
1590 client_configure(self, Corner_TopLeft, x, y, w, h, TRUE, TRUE);
1591
1592 /* raise (back) into our stacking layer */
1593 stacking_raise(self);
1594
1595 /* try focus us when we go into fullscreen mode */
1596 client_focus(self);
1597 }
1598
1599 void client_iconify(Client *self, gboolean iconic, gboolean curdesk)
1600 {
1601 /* move up the transient chain as far as possible first if deiconifying */
1602 if (!iconic)
1603 while (self->transient_for) {
1604 if (self->transient_for != TRAN_GROUP) {
1605 if (self->transient_for->iconic == iconic)
1606 break;
1607 self = self->transient_for;
1608 } else {
1609 GSList *it;
1610
1611 /* the check for TRAN_GROUP is to prevent an infinate loop with
1612 2 transients of the same group at the head of the group's
1613 members list */
1614 for (it = self->group->members; it; it = it->next) {
1615 Client *c = it->data;
1616
1617 if (c != self && c->transient_for->iconic != iconic &&
1618 (c->transient_for != TRAN_GROUP ||
1619 c->group != self->group)) {
1620 self = it->data;
1621 break;
1622 }
1623 }
1624 if (it == NULL) break;
1625 }
1626 }
1627
1628 if (self->iconic == iconic) return; /* nothing to do */
1629
1630 g_message("%sconifying window: 0x%lx", (iconic ? "I" : "Uni"),
1631 self->window);
1632
1633 self->iconic = iconic;
1634
1635 if (iconic) {
1636 self->wmstate = IconicState;
1637 self->ignore_unmaps++;
1638 /* we unmap the client itself so that we can get MapRequest events,
1639 and because the ICCCM tells us to! */
1640 XUnmapWindow(ob_display, self->window);
1641 } else {
1642 if (curdesk)
1643 client_set_desktop(self, screen_desktop, FALSE);
1644 self->wmstate = self->shaded ? IconicState : NormalState;
1645 XMapWindow(ob_display, self->window);
1646 }
1647 client_change_state(self);
1648 client_showhide(self);
1649 screen_update_struts();
1650
1651 dispatch_client(iconic ? Event_Client_Unmapped : Event_Client_Mapped,
1652 self, 0, 0);
1653
1654 /* iconify all transients */
1655 if (self->transients) {
1656 GSList *it;
1657
1658 for (it = self->transients; it != NULL; it = it->next)
1659 if (it->data != self) client_iconify(it->data, iconic, curdesk);
1660 }
1661 }
1662
1663 void client_maximize(Client *self, gboolean max, int dir, gboolean savearea)
1664 {
1665 int x, y, w, h;
1666
1667 g_assert(dir == 0 || dir == 1 || dir == 2);
1668 if (!(self->functions & Func_Maximize)) return; /* can't */
1669
1670 /* check if already done */
1671 if (max) {
1672 if (dir == 0 && self->max_horz && self->max_vert) return;
1673 if (dir == 1 && self->max_horz) return;
1674 if (dir == 2 && self->max_vert) return;
1675 } else {
1676 if (dir == 0 && !self->max_horz && !self->max_vert) return;
1677 if (dir == 1 && !self->max_horz) return;
1678 if (dir == 2 && !self->max_vert) return;
1679 }
1680
1681 /* work with the frame's coords */
1682 x = self->frame->area.x;
1683 y = self->frame->area.y;
1684 w = self->area.width;
1685 h = self->area.height;
1686
1687 if (max) {
1688 if (savearea) {
1689 long dimensions[4];
1690 long *readdim;
1691
1692 dimensions[0] = x;
1693 dimensions[1] = y;
1694 dimensions[2] = w;
1695 dimensions[3] = h;
1696
1697 /* get the property off the window and use it for the dimensions
1698 we are already maxed on */
1699 if (PROP_GET32A(self->window, openbox_premax, cardinal,
1700 readdim, 4)) {
1701 if (self->max_horz) {
1702 dimensions[0] = readdim[0];
1703 dimensions[2] = readdim[2];
1704 }
1705 if (self->max_vert) {
1706 dimensions[1] = readdim[1];
1707 dimensions[3] = readdim[3];
1708 }
1709 g_free(readdim);
1710 }
1711
1712 PROP_SET32A(self->window, openbox_premax, cardinal,
1713 dimensions, 4);
1714 }
1715 } else {
1716 long *dimensions;
1717
1718 if (PROP_GET32A(self->window, openbox_premax, cardinal,
1719 dimensions, 4)) {
1720 if (dir == 0 || dir == 1) { /* horz */
1721 x = dimensions[0];
1722 w = dimensions[2];
1723 }
1724 if (dir == 0 || dir == 2) { /* vert */
1725 y = dimensions[1];
1726 h = dimensions[3];
1727 }
1728 g_free(dimensions);
1729 } else {
1730 /* pick some fallbacks... */
1731 if (dir == 0 || dir == 1) { /* horz */
1732 x = screen_area(self->desktop)->x +
1733 screen_area(self->desktop)->width / 4;
1734 w = screen_area(self->desktop)->width / 2;
1735 }
1736 if (dir == 0 || dir == 2) { /* vert */
1737 y = screen_area(self->desktop)->y +
1738 screen_area(self->desktop)->height / 4;
1739 h = screen_area(self->desktop)->height / 2;
1740 }
1741 }
1742 }
1743
1744 if (dir == 0 || dir == 1) /* horz */
1745 self->max_horz = max;
1746 if (dir == 0 || dir == 2) /* vert */
1747 self->max_vert = max;
1748
1749 if (!self->max_horz && !self->max_vert)
1750 PROP_ERASE(self->window, openbox_premax);
1751
1752 client_change_state(self); /* change the state hints on the client */
1753
1754 /* figure out where the client should be going */
1755 frame_frame_gravity(self->frame, &x, &y);
1756 client_configure(self, Corner_TopLeft, x, y, w, h, TRUE, TRUE);
1757 }
1758
1759 void client_shade(Client *self, gboolean shade)
1760 {
1761 if ((!(self->functions & Func_Shade) && shade) || /* can't shade */
1762 self->shaded == shade) return; /* already done */
1763
1764 /* when we're iconic, don't change the wmstate */
1765 if (!self->iconic)
1766 self->wmstate = shade ? IconicState : NormalState;
1767 self->shaded = shade;
1768 client_change_state(self);
1769 /* resize the frame to just the titlebar */
1770 frame_adjust_area(self->frame, FALSE, FALSE);
1771 }
1772
1773 void client_close(Client *self)
1774 {
1775 XEvent ce;
1776
1777 if (!(self->functions & Func_Close)) return;
1778
1779 /*
1780 XXX: itd be cool to do timeouts and shit here for killing the client's
1781 process off
1782 like... if the window is around after 5 seconds, then the close button
1783 turns a nice red, and if this function is called again, the client is
1784 explicitly killed.
1785 */
1786
1787 ce.xclient.type = ClientMessage;
1788 ce.xclient.message_type = prop_atoms.wm_protocols;
1789 ce.xclient.display = ob_display;
1790 ce.xclient.window = self->window;
1791 ce.xclient.format = 32;
1792 ce.xclient.data.l[0] = prop_atoms.wm_delete_window;
1793 ce.xclient.data.l[1] = event_lasttime;
1794 ce.xclient.data.l[2] = 0l;
1795 ce.xclient.data.l[3] = 0l;
1796 ce.xclient.data.l[4] = 0l;
1797 XSendEvent(ob_display, self->window, FALSE, NoEventMask, &ce);
1798 }
1799
1800 void client_kill(Client *self)
1801 {
1802 XKillClient(ob_display, self->window);
1803 }
1804
1805 void client_set_desktop(Client *self, guint target, gboolean donthide)
1806 {
1807 guint old, i;
1808
1809 if (target == self->desktop) return;
1810
1811 g_message("Setting desktop %u", target);
1812
1813 g_assert(target < screen_num_desktops || target == DESKTOP_ALL);
1814
1815 old = self->desktop;
1816 self->desktop = target;
1817 PROP_SET32(self->window, net_wm_desktop, cardinal, target);
1818 /* the frame can display the current desktop state */
1819 frame_adjust_state(self->frame);
1820 /* 'move' the window to the new desktop */
1821 if (!donthide)
1822 client_showhide(self);
1823 /* raise if it was not already on the desktop */
1824 if (old != DESKTOP_ALL)
1825 stacking_raise(self);
1826 screen_update_struts();
1827
1828 /* update the focus lists */
1829 if (old == DESKTOP_ALL) {
1830 for (i = 0; i < screen_num_desktops; ++i)
1831 focus_order[i] = g_list_remove(focus_order[i], self);
1832 } else
1833 focus_order[old] = g_list_remove(focus_order[old], self);
1834 if (target == DESKTOP_ALL) {
1835 for (i = 0; i < screen_num_desktops; ++i) {
1836 if (config_focus_new)
1837 focus_order[i] = g_list_prepend(focus_order[i], self);
1838 else
1839 focus_order[i] = g_list_append(focus_order[i], self);
1840 }
1841 } else {
1842 if (config_focus_new)
1843 focus_order[target] = g_list_prepend(focus_order[target], self);
1844 else
1845 focus_order[target] = g_list_append(focus_order[target], self);
1846 }
1847
1848 dispatch_client(Event_Client_Desktop, self, target, old);
1849 }
1850
1851 static Client *search_modal_tree(Client *node, Client *skip)
1852 {
1853 GSList *it;
1854 Client *ret;
1855
1856 for (it = node->transients; it != NULL; it = it->next) {
1857 Client *c = it->data;
1858 if (c == skip) continue; /* circular? */
1859 if ((ret = search_modal_tree(c, skip))) return ret;
1860 if (c->modal) return c;
1861 }
1862 return NULL;
1863 }
1864
1865 Client *client_find_modal_child(Client *self)
1866 {
1867 return search_modal_tree(self, self);
1868 }
1869
1870 gboolean client_validate(Client *self)
1871 {
1872 XEvent e;
1873
1874 XSync(ob_display, FALSE); /* get all events on the server */
1875
1876 if (XCheckTypedWindowEvent(ob_display, self->window, DestroyNotify, &e) ||
1877 XCheckTypedWindowEvent(ob_display, self->window, UnmapNotify, &e)) {
1878 XPutBackEvent(ob_display, &e);
1879 return FALSE;
1880 }
1881
1882 return TRUE;
1883 }
1884
1885 void client_set_wm_state(Client *self, long state)
1886 {
1887 if (state == self->wmstate) return; /* no change */
1888
1889 switch (state) {
1890 case IconicState:
1891 client_iconify(self, TRUE, TRUE);
1892 break;
1893 case NormalState:
1894 client_iconify(self, FALSE, TRUE);
1895 break;
1896 }
1897 }
1898
1899 void client_set_state(Client *self, Atom action, long data1, long data2)
1900 {
1901 gboolean shaded = self->shaded;
1902 gboolean fullscreen = self->fullscreen;
1903 gboolean max_horz = self->max_horz;
1904 gboolean max_vert = self->max_vert;
1905 int i;
1906
1907 if (!(action == prop_atoms.net_wm_state_add ||
1908 action == prop_atoms.net_wm_state_remove ||
1909 action == prop_atoms.net_wm_state_toggle))
1910 /* an invalid action was passed to the client message, ignore it */
1911 return;
1912
1913 for (i = 0; i < 2; ++i) {
1914 Atom state = i == 0 ? data1 : data2;
1915
1916 if (!state) continue;
1917
1918 /* if toggling, then pick whether we're adding or removing */
1919 if (action == prop_atoms.net_wm_state_toggle) {
1920 if (state == prop_atoms.net_wm_state_modal)
1921 action = self->modal ? prop_atoms.net_wm_state_remove :
1922 prop_atoms.net_wm_state_add;
1923 else if (state == prop_atoms.net_wm_state_maximized_vert)
1924 action = self->max_vert ? prop_atoms.net_wm_state_remove :
1925 prop_atoms.net_wm_state_add;
1926 else if (state == prop_atoms.net_wm_state_maximized_horz)
1927 action = self->max_horz ? prop_atoms.net_wm_state_remove :
1928 prop_atoms.net_wm_state_add;
1929 else if (state == prop_atoms.net_wm_state_shaded)
1930 action = self->shaded ? prop_atoms.net_wm_state_remove :
1931 prop_atoms.net_wm_state_add;
1932 else if (state == prop_atoms.net_wm_state_skip_taskbar)
1933 action = self->skip_taskbar ?
1934 prop_atoms.net_wm_state_remove :
1935 prop_atoms.net_wm_state_add;
1936 else if (state == prop_atoms.net_wm_state_skip_pager)
1937 action = self->skip_pager ?
1938 prop_atoms.net_wm_state_remove :
1939 prop_atoms.net_wm_state_add;
1940 else if (state == prop_atoms.net_wm_state_fullscreen)
1941 action = self->fullscreen ?
1942 prop_atoms.net_wm_state_remove :
1943 prop_atoms.net_wm_state_add;
1944 else if (state == prop_atoms.net_wm_state_above)
1945 action = self->above ? prop_atoms.net_wm_state_remove :
1946 prop_atoms.net_wm_state_add;
1947 else if (state == prop_atoms.net_wm_state_below)
1948 action = self->below ? prop_atoms.net_wm_state_remove :
1949 prop_atoms.net_wm_state_add;
1950 }
1951
1952 if (action == prop_atoms.net_wm_state_add) {
1953 if (state == prop_atoms.net_wm_state_modal) {
1954 /* XXX raise here or something? */
1955 self->modal = TRUE;
1956 } else if (state == prop_atoms.net_wm_state_maximized_vert) {
1957 max_vert = TRUE;
1958 } else if (state == prop_atoms.net_wm_state_maximized_horz) {
1959 max_horz = TRUE;
1960 } else if (state == prop_atoms.net_wm_state_shaded) {
1961 shaded = TRUE;
1962 } else if (state == prop_atoms.net_wm_state_skip_taskbar) {
1963 self->skip_taskbar = TRUE;
1964 } else if (state == prop_atoms.net_wm_state_skip_pager) {
1965 self->skip_pager = TRUE;
1966 } else if (state == prop_atoms.net_wm_state_fullscreen) {
1967 fullscreen = TRUE;
1968 } else if (state == prop_atoms.net_wm_state_above) {
1969 self->above = TRUE;
1970 } else if (state == prop_atoms.net_wm_state_below) {
1971 self->below = TRUE;
1972 }
1973
1974 } else { /* action == prop_atoms.net_wm_state_remove */
1975 if (state == prop_atoms.net_wm_state_modal) {
1976 self->modal = FALSE;
1977 } else if (state == prop_atoms.net_wm_state_maximized_vert) {
1978 max_vert = FALSE;
1979 } else if (state == prop_atoms.net_wm_state_maximized_horz) {
1980 max_horz = FALSE;
1981 } else if (state == prop_atoms.net_wm_state_shaded) {
1982 shaded = FALSE;
1983 } else if (state == prop_atoms.net_wm_state_skip_taskbar) {
1984 self->skip_taskbar = FALSE;
1985 } else if (state == prop_atoms.net_wm_state_skip_pager) {
1986 self->skip_pager = FALSE;
1987 } else if (state == prop_atoms.net_wm_state_fullscreen) {
1988 fullscreen = FALSE;
1989 } else if (state == prop_atoms.net_wm_state_above) {
1990 self->above = FALSE;
1991 } else if (state == prop_atoms.net_wm_state_below) {
1992 self->below = FALSE;
1993 }
1994 }
1995 }
1996 if (max_horz != self->max_horz || max_vert != self->max_vert) {
1997 if (max_horz != self->max_horz && max_vert != self->max_vert) {
1998 /* toggling both */
1999 if (max_horz == max_vert) { /* both going the same way */
2000 client_maximize(self, max_horz, 0, TRUE);
2001 } else {
2002 client_maximize(self, max_horz, 1, TRUE);
2003 client_maximize(self, max_vert, 2, TRUE);
2004 }
2005 } else {
2006 /* toggling one */
2007 if (max_horz != self->max_horz)
2008 client_maximize(self, max_horz, 1, TRUE);
2009 else
2010 client_maximize(self, max_vert, 2, TRUE);
2011 }
2012 }
2013 /* change fullscreen state before shading, as it will affect if the window
2014 can shade or not */
2015 if (fullscreen != self->fullscreen)
2016 client_fullscreen(self, fullscreen, TRUE);
2017 if (shaded != self->shaded)
2018 client_shade(self, shaded);
2019 client_calc_layer(self);
2020 client_change_state(self); /* change the hint to relect these changes */
2021 }
2022
2023 Client *client_focus_target(Client *self)
2024 {
2025 Client *child;
2026
2027 /* if we have a modal child, then focus it, not us */
2028 child = client_find_modal_child(self);
2029 if (child) return child;
2030 return self;
2031 }
2032
2033 gboolean client_focusable(Client *self)
2034 {
2035 /* won't try focus if the client doesn't want it, or if the window isn't
2036 visible on the screen */
2037 return self->frame->visible &&
2038 (self->can_focus || self->focus_notify);
2039 }
2040
2041 gboolean client_focus(Client *self)
2042 {
2043 XEvent ev;
2044
2045 /* choose the correct target */
2046 self = client_focus_target(self);
2047
2048 if (!client_focusable(self))
2049 return FALSE;
2050
2051 /* do a check to see if the window has already been unmapped or destroyed
2052 do this intelligently while watching out for unmaps we've generated
2053 (ignore_unmaps > 0) */
2054 if (XCheckTypedWindowEvent(ob_display, self->window,
2055 DestroyNotify, &ev)) {
2056 XPutBackEvent(ob_display, &ev);
2057 return FALSE;
2058 }
2059 while (XCheckTypedWindowEvent(ob_display, self->window,
2060 UnmapNotify, &ev)) {
2061 if (self->ignore_unmaps) {
2062 self->ignore_unmaps--;
2063 } else {
2064 XPutBackEvent(ob_display, &ev);
2065 return FALSE;
2066 }
2067 }
2068
2069 if (self->can_focus)
2070 /* RevertToPointerRoot causes much more headache than TevertToNone, so
2071 I choose to use it always, hopefully to find errors quicker, if any
2072 are left. (I hate X. I hate focus events.) */
2073 XSetInputFocus(ob_display, self->window, RevertToPointerRoot,
2074 event_lasttime);
2075
2076 if (self->focus_notify) {
2077 XEvent ce;
2078 ce.xclient.type = ClientMessage;
2079 ce.xclient.message_type = prop_atoms.wm_protocols;
2080 ce.xclient.display = ob_display;
2081 ce.xclient.window = self->window;
2082 ce.xclient.format = 32;
2083 ce.xclient.data.l[0] = prop_atoms.wm_take_focus;
2084 ce.xclient.data.l[1] = event_lasttime;
2085 ce.xclient.data.l[2] = 0l;
2086 ce.xclient.data.l[3] = 0l;
2087 ce.xclient.data.l[4] = 0l;
2088 XSendEvent(ob_display, self->window, FALSE, NoEventMask, &ce);
2089 }
2090
2091 #ifdef DEBUG_FOCUS
2092 g_message("focusing %lx", self->window);
2093 #endif
2094
2095 /* Cause the FocusIn to come back to us. Important for desktop switches,
2096 since otherwise we'll have no FocusIn on the queue and send it off to
2097 the focus_backup. */
2098 XSync(ob_display, FALSE);
2099 return TRUE;
2100 }
2101
2102 void client_unfocus(Client *self)
2103 {
2104 g_assert(focus_client == self);
2105 #ifndef DEBUG_FOCUS
2106 g_message("client_unfocus");
2107 #endif
2108 focus_fallback(Fallback_Unfocusing);
2109 }
2110
2111 gboolean client_focused(Client *self)
2112 {
2113 return self == focus_client;
2114 }
2115
2116 Icon *client_icon(Client *self, int w, int h)
2117 {
2118 int i;
2119 /* si is the smallest image >= req */
2120 /* li is the largest image < req */
2121 unsigned long size, smallest = 0xffffffff, largest = 0, si = 0, li = 0;
2122
2123 if (!self->nicons) return NULL;
2124
2125 for (i = 0; i < self->nicons; ++i) {
2126 size = self->icons[i].width * self->icons[i].height;
2127 if (size < smallest && size >= (unsigned)(w * h)) {
2128 smallest = size;
2129 si = i;
2130 }
2131 if (size > largest && size <= (unsigned)(w * h)) {
2132 largest = size;
2133 li = i;
2134 }
2135 }
2136 if (largest == 0) /* didnt find one smaller than the requested size */
2137 return &self->icons[si];
2138 return &self->icons[li];
2139 }
This page took 0.126645 seconds and 5 git commands to generate.