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