]> Dogcows Code - chaz/openbox/blob - openbox/client.c
lock the size/position of maximized and fullscreen clients
[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 "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 static int saved_func, saved_decor;
1425 int x, y, w, h;
1426
1427 if (!(self->functions & Func_Fullscreen) || /* can't */
1428 self->fullscreen == fs) return; /* already done */
1429
1430 self->fullscreen = fs;
1431 client_change_state(self); /* change the state hints on the client */
1432
1433 if (fs) {
1434 /* save the functions and remove them */
1435 saved_func = self->functions;
1436 self->functions &= (Func_Close | Func_Fullscreen |
1437 Func_Iconify);
1438 /* save the decorations and remove them */
1439 saved_decor = self->decorations;
1440 self->decorations = 0;
1441 if (savearea) {
1442 long dimensions[4];
1443 dimensions[0] = self->area.x;
1444 dimensions[1] = self->area.y;
1445 dimensions[2] = self->area.width;
1446 dimensions[3] = self->area.height;
1447
1448 PROP_SET32A(self->window, openbox_premax, cardinal,
1449 dimensions, 4);
1450 }
1451
1452 /* these are not actually used cuz client_configure will set them
1453 as appropriate when the window is fullscreened */
1454 x = y = w = h = 0;
1455 } else {
1456 long *dimensions;
1457
1458 self->functions = saved_func;
1459 self->decorations = saved_decor;
1460
1461 if (PROP_GET32A(self->window, openbox_premax, cardinal,
1462 dimensions, 4)) {
1463 x = dimensions[0];
1464 y = dimensions[1];
1465 w = dimensions[2];
1466 h = dimensions[3];
1467 g_free(dimensions);
1468 } else {
1469 /* pick some fallbacks... */
1470 x = screen_area(self->desktop)->x +
1471 screen_area(self->desktop)->width / 4;
1472 y = screen_area(self->desktop)->y +
1473 screen_area(self->desktop)->height / 4;
1474 w = screen_area(self->desktop)->width / 2;
1475 h = screen_area(self->desktop)->height / 2;
1476 }
1477 }
1478
1479 client_change_allowed_actions(self); /* based on the new _functions */
1480
1481 /* when fullscreening, don't obey things like increments, fill the
1482 screen */
1483 client_configure(self, Corner_TopLeft, x, y, w, h, !fs, TRUE);
1484
1485 /* raise (back) into our stacking layer */
1486 stacking_raise(self);
1487
1488 /* try focus us when we go into fullscreen mode */
1489 client_focus(self);
1490 }
1491
1492 void client_iconify(Client *self, gboolean iconic, gboolean curdesk)
1493 {
1494 if (self->iconic == iconic) return; /* nothing to do */
1495
1496 g_message("%sconifying window: 0x%lx", (iconic ? "I" : "Uni"),
1497 self->window);
1498
1499 self->iconic = iconic;
1500
1501 if (iconic) {
1502 self->wmstate = IconicState;
1503 self->ignore_unmaps++;
1504 /* we unmap the client itself so that we can get MapRequest events,
1505 and because the ICCCM tells us to! */
1506 XUnmapWindow(ob_display, self->window);
1507 } else {
1508 if (curdesk)
1509 client_set_desktop(self, screen_desktop);
1510 self->wmstate = self->shaded ? IconicState : NormalState;
1511 XMapWindow(ob_display, self->window);
1512 }
1513 client_change_state(self);
1514 client_showhide(self);
1515 screen_update_struts();
1516 }
1517
1518 void client_maximize(Client *self, gboolean max, int dir, gboolean savearea)
1519 {
1520 int x, y, w, h;
1521
1522 g_assert(dir == 0 || dir == 1 || dir == 2);
1523 if (!(self->functions & Func_Maximize)) return; /* can't */
1524
1525 /* check if already done */
1526 if (max) {
1527 if (dir == 0 && self->max_horz && self->max_vert) return;
1528 if (dir == 1 && self->max_horz) return;
1529 if (dir == 2 && self->max_vert) return;
1530 } else {
1531 if (dir == 0 && !self->max_horz && !self->max_vert) return;
1532 if (dir == 1 && !self->max_horz) return;
1533 if (dir == 2 && !self->max_vert) return;
1534 }
1535
1536 /* work with the frame's coords */
1537 x = self->frame->area.x;
1538 y = self->frame->area.y;
1539 w = self->area.width;
1540 h = self->area.height;
1541
1542 if (max) {
1543 if (savearea) {
1544 long dimensions[4];
1545 long *readdim;
1546
1547 dimensions[0] = x;
1548 dimensions[1] = y;
1549 dimensions[2] = w;
1550 dimensions[3] = h;
1551
1552 /* get the property off the window and use it for the dimensions
1553 we are already maxed on */
1554 if (PROP_GET32A(self->window, openbox_premax, cardinal,
1555 readdim, 4)) {
1556 if (self->max_horz) {
1557 dimensions[0] = readdim[0];
1558 dimensions[2] = readdim[2];
1559 }
1560 if (self->max_vert) {
1561 dimensions[1] = readdim[1];
1562 dimensions[3] = readdim[3];
1563 }
1564 g_free(readdim);
1565 }
1566
1567 PROP_SET32A(self->window, openbox_premax, cardinal,
1568 dimensions, 4);
1569 }
1570
1571 /* pass the client's current position info. the client_configure
1572 will move/size stuff as appropriate for a maximized window */
1573 x = self->area.x;
1574 y = self->area.y;
1575 w = self->area.width;
1576 h = self->area.height;
1577 } else {
1578 long *dimensions;
1579
1580 if (PROP_GET32A(self->window, openbox_premax, cardinal,
1581 dimensions, 4)) {
1582 if (dir == 0 || dir == 1) { /* horz */
1583 x = dimensions[0];
1584 w = dimensions[2];
1585 }
1586 if (dir == 0 || dir == 2) { /* vert */
1587 y = dimensions[1];
1588 h = dimensions[3];
1589 }
1590 g_free(dimensions);
1591 } else {
1592 /* pick some fallbacks... */
1593 if (dir == 0 || dir == 1) { /* horz */
1594 x = screen_area(self->desktop)->x +
1595 screen_area(self->desktop)->width / 4;
1596 w = screen_area(self->desktop)->width / 2;
1597 }
1598 if (dir == 0 || dir == 2) { /* vert */
1599 y = screen_area(self->desktop)->y +
1600 screen_area(self->desktop)->height / 4;
1601 h = screen_area(self->desktop)->height / 2;
1602 }
1603 }
1604 }
1605
1606 if (dir == 0 || dir == 1) /* horz */
1607 self->max_horz = max;
1608 if (dir == 0 || dir == 2) /* vert */
1609 self->max_vert = max;
1610
1611 if (!self->max_horz && !self->max_vert)
1612 PROP_ERASE(self->window, openbox_premax);
1613
1614 client_change_state(self); /* change the state hints on the client */
1615
1616 /* figure out where the client should be going */
1617 frame_frame_gravity(self->frame, &x, &y);
1618 client_configure(self, Corner_TopLeft, x, y, w, h, TRUE, TRUE);
1619 }
1620
1621 void client_shade(Client *self, gboolean shade)
1622 {
1623 if (!(self->functions & Func_Shade) || /* can't */
1624 self->shaded == shade) return; /* already done */
1625
1626 /* when we're iconic, don't change the wmstate */
1627 if (!self->iconic)
1628 self->wmstate = shade ? IconicState : NormalState;
1629 self->shaded = shade;
1630 client_change_state(self);
1631 engine_frame_adjust_size(self->frame);
1632 }
1633
1634 void client_close(Client *self)
1635 {
1636 XEvent ce;
1637
1638 if (!(self->functions & Func_Close)) return;
1639
1640 /*
1641 XXX: itd be cool to do timeouts and shit here for killing the client's
1642 process off
1643 like... if the window is around after 5 seconds, then the close button
1644 turns a nice red, and if this function is called again, the client is
1645 explicitly killed.
1646 */
1647
1648 ce.xclient.type = ClientMessage;
1649 ce.xclient.message_type = prop_atoms.wm_protocols;
1650 ce.xclient.display = ob_display;
1651 ce.xclient.window = self->window;
1652 ce.xclient.format = 32;
1653 ce.xclient.data.l[0] = prop_atoms.wm_delete_window;
1654 ce.xclient.data.l[1] = CurrentTime;
1655 ce.xclient.data.l[2] = 0l;
1656 ce.xclient.data.l[3] = 0l;
1657 ce.xclient.data.l[4] = 0l;
1658 XSendEvent(ob_display, self->window, FALSE, NoEventMask, &ce);
1659 }
1660
1661 void client_set_desktop(Client *self, guint target)
1662 {
1663 guint old, i;
1664
1665 if (target == self->desktop) return;
1666
1667 g_message("Setting desktop %u\n", target);
1668
1669 g_assert(target < screen_num_desktops || target == DESKTOP_ALL);
1670
1671 old = self->desktop;
1672 self->desktop = target;
1673 PROP_SET32(self->window, net_wm_desktop, cardinal, target);
1674 /* the frame can display the current desktop state */
1675 engine_frame_adjust_state(self->frame);
1676 /* 'move' the window to the new desktop */
1677 client_showhide(self);
1678 screen_update_struts();
1679
1680 /* update the focus lists */
1681 if (old == DESKTOP_ALL) {
1682 for (i = 0; i < screen_num_desktops; ++i)
1683 focus_order[i] = g_list_remove(focus_order[i], self);
1684 } else {
1685 focus_order[old] = g_list_remove(focus_order[old], self);
1686 }
1687 if (target == DESKTOP_ALL) {
1688 for (i = 0; i < screen_num_desktops; ++i)
1689 focus_order[i] = g_list_prepend(focus_order[i], self);
1690 } else {
1691 focus_order[target] = g_list_prepend(focus_order[target], self);
1692 }
1693
1694 dispatch_client(Event_Client_Desktop, self, target, old);
1695 }
1696
1697 static Client *search_modal_tree(Client *node, Client *skip)
1698 {
1699 GSList *it;
1700 Client *ret;
1701
1702 for (it = node->transients; it != NULL; it = it->next) {
1703 Client *c = it->data;
1704 if (c == skip) continue; /* circular? */
1705 if ((ret = search_modal_tree(c, skip))) return ret;
1706 if (c->modal) return c;
1707 }
1708 return NULL;
1709 }
1710
1711 Client *client_find_modal_child(Client *self)
1712 {
1713 return search_modal_tree(self, self);
1714 }
1715
1716 gboolean client_validate(Client *self)
1717 {
1718 XEvent e;
1719
1720 XSync(ob_display, FALSE); /* get all events on the server */
1721
1722 if (XCheckTypedWindowEvent(ob_display, self->window, DestroyNotify, &e) ||
1723 XCheckTypedWindowEvent(ob_display, self->window, UnmapNotify, &e)) {
1724 XPutBackEvent(ob_display, &e);
1725 return FALSE;
1726 }
1727
1728 return TRUE;
1729 }
1730
1731 void client_set_wm_state(Client *self, long state)
1732 {
1733 if (state == self->wmstate) return; /* no change */
1734
1735 switch (state) {
1736 case IconicState:
1737 client_iconify(self, TRUE, TRUE);
1738 break;
1739 case NormalState:
1740 client_iconify(self, FALSE, TRUE);
1741 break;
1742 }
1743 }
1744
1745 void client_set_state(Client *self, Atom action, long data1, long data2)
1746 {
1747 gboolean shaded = self->shaded;
1748 gboolean fullscreen = self->fullscreen;
1749 gboolean max_horz = self->max_horz;
1750 gboolean max_vert = self->max_vert;
1751 int i;
1752
1753 if (!(action == prop_atoms.net_wm_state_add ||
1754 action == prop_atoms.net_wm_state_remove ||
1755 action == prop_atoms.net_wm_state_toggle))
1756 /* an invalid action was passed to the client message, ignore it */
1757 return;
1758
1759 for (i = 0; i < 2; ++i) {
1760 Atom state = i == 0 ? data1 : data2;
1761
1762 if (!state) continue;
1763
1764 /* if toggling, then pick whether we're adding or removing */
1765 if (action == prop_atoms.net_wm_state_toggle) {
1766 if (state == prop_atoms.net_wm_state_modal)
1767 action = self->modal ? prop_atoms.net_wm_state_remove :
1768 prop_atoms.net_wm_state_add;
1769 else if (state == prop_atoms.net_wm_state_maximized_vert)
1770 action = self->max_vert ? prop_atoms.net_wm_state_remove :
1771 prop_atoms.net_wm_state_add;
1772 else if (state == prop_atoms.net_wm_state_maximized_horz)
1773 action = self->max_horz ? prop_atoms.net_wm_state_remove :
1774 prop_atoms.net_wm_state_add;
1775 else if (state == prop_atoms.net_wm_state_shaded)
1776 action = self->shaded ? prop_atoms.net_wm_state_remove :
1777 prop_atoms.net_wm_state_add;
1778 else if (state == prop_atoms.net_wm_state_skip_taskbar)
1779 action = self->skip_taskbar ?
1780 prop_atoms.net_wm_state_remove :
1781 prop_atoms.net_wm_state_add;
1782 else if (state == prop_atoms.net_wm_state_skip_pager)
1783 action = self->skip_pager ?
1784 prop_atoms.net_wm_state_remove :
1785 prop_atoms.net_wm_state_add;
1786 else if (state == prop_atoms.net_wm_state_fullscreen)
1787 action = self->fullscreen ?
1788 prop_atoms.net_wm_state_remove :
1789 prop_atoms.net_wm_state_add;
1790 else if (state == prop_atoms.net_wm_state_above)
1791 action = self->above ? prop_atoms.net_wm_state_remove :
1792 prop_atoms.net_wm_state_add;
1793 else if (state == prop_atoms.net_wm_state_below)
1794 action = self->below ? prop_atoms.net_wm_state_remove :
1795 prop_atoms.net_wm_state_add;
1796 }
1797
1798 if (action == prop_atoms.net_wm_state_add) {
1799 if (state == prop_atoms.net_wm_state_modal) {
1800 /* XXX raise here or something? */
1801 self->modal = TRUE;
1802 } else if (state == prop_atoms.net_wm_state_maximized_vert) {
1803 max_vert = TRUE;
1804 } else if (state == prop_atoms.net_wm_state_maximized_horz) {
1805 max_horz = TRUE;
1806 } else if (state == prop_atoms.net_wm_state_shaded) {
1807 shaded = TRUE;
1808 } else if (state == prop_atoms.net_wm_state_skip_taskbar) {
1809 self->skip_taskbar = TRUE;
1810 } else if (state == prop_atoms.net_wm_state_skip_pager) {
1811 self->skip_pager = TRUE;
1812 } else if (state == prop_atoms.net_wm_state_fullscreen) {
1813 fullscreen = TRUE;
1814 } else if (state == prop_atoms.net_wm_state_above) {
1815 self->above = TRUE;
1816 } else if (state == prop_atoms.net_wm_state_below) {
1817 self->below = TRUE;
1818 }
1819
1820 } else { /* action == prop_atoms.net_wm_state_remove */
1821 if (state == prop_atoms.net_wm_state_modal) {
1822 self->modal = FALSE;
1823 } else if (state == prop_atoms.net_wm_state_maximized_vert) {
1824 max_vert = FALSE;
1825 } else if (state == prop_atoms.net_wm_state_maximized_horz) {
1826 max_horz = FALSE;
1827 } else if (state == prop_atoms.net_wm_state_shaded) {
1828 shaded = FALSE;
1829 } else if (state == prop_atoms.net_wm_state_skip_taskbar) {
1830 self->skip_taskbar = FALSE;
1831 } else if (state == prop_atoms.net_wm_state_skip_pager) {
1832 self->skip_pager = FALSE;
1833 } else if (state == prop_atoms.net_wm_state_fullscreen) {
1834 fullscreen = FALSE;
1835 } else if (state == prop_atoms.net_wm_state_above) {
1836 self->above = FALSE;
1837 } else if (state == prop_atoms.net_wm_state_below) {
1838 self->below = FALSE;
1839 }
1840 }
1841 }
1842 if (max_horz != self->max_horz || max_vert != self->max_vert) {
1843 if (max_horz != self->max_horz && max_vert != self->max_vert) {
1844 /* toggling both */
1845 if (max_horz == max_vert) { /* both going the same way */
1846 client_maximize(self, max_horz, 0, TRUE);
1847 } else {
1848 client_maximize(self, max_horz, 1, TRUE);
1849 client_maximize(self, max_vert, 2, TRUE);
1850 }
1851 } else {
1852 /* toggling one */
1853 if (max_horz != self->max_horz)
1854 client_maximize(self, max_horz, 1, TRUE);
1855 else
1856 client_maximize(self, max_vert, 2, TRUE);
1857 }
1858 }
1859 /* change fullscreen state before shading, as it will affect if the window
1860 can shade or not */
1861 if (fullscreen != self->fullscreen)
1862 client_fullscreen(self, fullscreen, TRUE);
1863 if (shaded != self->shaded)
1864 client_shade(self, shaded);
1865 client_calc_layer(self);
1866 client_change_state(self); /* change the hint to relect these changes */
1867 }
1868
1869 gboolean client_focus(Client *self)
1870 {
1871 XEvent ev;
1872 Client *child;
1873
1874 /* if we have a modal child, then focus it, not us */
1875 child = client_find_modal_child(self);
1876 if (child)
1877 return client_focus(child);
1878
1879 /* won't try focus if the client doesn't want it, or if the window isn't
1880 visible on the screen */
1881 if (!(self->frame->visible &&
1882 (self->can_focus || self->focus_notify)))
1883 return FALSE;
1884
1885 /* do a check to see if the window has already been unmapped or destroyed
1886 do this intelligently while watching out for unmaps we've generated
1887 (ignore_unmaps > 0) */
1888 if (XCheckTypedWindowEvent(ob_display, self->window,
1889 DestroyNotify, &ev)) {
1890 XPutBackEvent(ob_display, &ev);
1891 return FALSE;
1892 }
1893 while (XCheckTypedWindowEvent(ob_display, self->window,
1894 UnmapNotify, &ev)) {
1895 if (self->ignore_unmaps) {
1896 self->ignore_unmaps--;
1897 } else {
1898 XPutBackEvent(ob_display, &ev);
1899 return FALSE;
1900 }
1901 }
1902
1903 if (self->can_focus)
1904 XSetInputFocus(ob_display, self->window, RevertToNone, CurrentTime);
1905
1906 if (self->focus_notify) {
1907 XEvent ce;
1908 ce.xclient.type = ClientMessage;
1909 ce.xclient.message_type = prop_atoms.wm_protocols;
1910 ce.xclient.display = ob_display;
1911 ce.xclient.window = self->window;
1912 ce.xclient.format = 32;
1913 ce.xclient.data.l[0] = prop_atoms.wm_take_focus;
1914 ce.xclient.data.l[1] = event_lasttime;
1915 ce.xclient.data.l[2] = 0l;
1916 ce.xclient.data.l[3] = 0l;
1917 ce.xclient.data.l[4] = 0l;
1918 XSendEvent(ob_display, self->window, FALSE, NoEventMask, &ce);
1919 }
1920
1921 /*XSync(ob_display, FALSE); XXX Why sync? */
1922 return TRUE;
1923 }
1924
1925 void client_unfocus(Client *self)
1926 {
1927 g_assert(focus_client == self);
1928 focus_set_client(NULL);
1929 }
This page took 0.126875 seconds and 5 git commands to generate.