1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 focus.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003 Ben Jansens
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 See the COPYING file for a copy of the GNU General Public License.
24 #include "framerender.h"
34 #include "render/render.h"
40 ObClient
*focus_client
, *focus_hilite
;
41 GList
**focus_order
; /* these lists are created when screen_startup
42 sets the number of desktops */
43 ObClient
*focus_cycle_target
;
49 InternalWindow bottom
;
52 RrAppearance
*a_focus_indicator
;
55 static ObIconPopup
*focus_cycle_popup
;
57 static void focus_cycle_destructor(ObClient
*client
, gpointer data
)
59 /* end cycling if the target disappears */
60 if (focus_cycle_target
== client
)
61 focus_cycle(TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
);
64 static Window
createWindow(Window parent
, gulong mask
,
65 XSetWindowAttributes
*attrib
)
67 return XCreateWindow(ob_display
, parent
, 0, 0, 1, 1, 0,
68 RrDepth(ob_rr_inst
), InputOutput
,
69 RrVisual(ob_rr_inst
), mask
, attrib
);
73 void focus_startup(gboolean reconfig
)
75 focus_cycle_popup
= icon_popup_new(TRUE
);
78 XSetWindowAttributes attr
;
80 client_add_destructor(focus_cycle_destructor
, NULL
);
82 /* start with nothing focused */
83 focus_set_client(NULL
);
85 focus_indicator
.top
.obwin
.type
= Window_Internal
;
86 focus_indicator
.left
.obwin
.type
= Window_Internal
;
87 focus_indicator
.right
.obwin
.type
= Window_Internal
;
88 focus_indicator
.bottom
.obwin
.type
= Window_Internal
;
90 attr
.save_under
= True
;
91 attr
.override_redirect
= True
;
92 attr
.background_pixel
= BlackPixel(ob_display
, ob_screen
);
93 focus_indicator
.top
.win
=
94 createWindow(RootWindow(ob_display
, ob_screen
),
95 CWOverrideRedirect
| CWBackPixel
| CWSaveUnder
,
97 focus_indicator
.left
.win
=
98 createWindow(RootWindow(ob_display
, ob_screen
),
99 CWOverrideRedirect
| CWBackPixel
| CWSaveUnder
,
101 focus_indicator
.right
.win
=
102 createWindow(RootWindow(ob_display
, ob_screen
),
103 CWOverrideRedirect
| CWBackPixel
| CWSaveUnder
,
105 focus_indicator
.bottom
.win
=
106 createWindow(RootWindow(ob_display
, ob_screen
),
107 CWOverrideRedirect
| CWBackPixel
| CWSaveUnder
,
110 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.top
));
111 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.left
));
112 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.right
));
113 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.bottom
));
115 color_white
= RrColorNew(ob_rr_inst
, 0xff, 0xff, 0xff);
117 a_focus_indicator
= RrAppearanceNew(ob_rr_inst
, 4);
118 a_focus_indicator
->surface
.grad
= RR_SURFACE_SOLID
;
119 a_focus_indicator
->surface
.relief
= RR_RELIEF_FLAT
;
120 a_focus_indicator
->surface
.primary
= RrColorNew(ob_rr_inst
,
122 a_focus_indicator
->texture
[0].type
= RR_TEXTURE_LINE_ART
;
123 a_focus_indicator
->texture
[0].data
.lineart
.color
= color_white
;
124 a_focus_indicator
->texture
[1].type
= RR_TEXTURE_LINE_ART
;
125 a_focus_indicator
->texture
[1].data
.lineart
.color
= color_white
;
126 a_focus_indicator
->texture
[2].type
= RR_TEXTURE_LINE_ART
;
127 a_focus_indicator
->texture
[2].data
.lineart
.color
= color_white
;
128 a_focus_indicator
->texture
[3].type
= RR_TEXTURE_LINE_ART
;
129 a_focus_indicator
->texture
[3].data
.lineart
.color
= color_white
;
133 void focus_shutdown(gboolean reconfig
)
137 icon_popup_free(focus_cycle_popup
);
140 client_remove_destructor(focus_cycle_destructor
);
142 for (i
= 0; i
< screen_num_desktops
; ++i
)
143 g_list_free(focus_order
[i
]);
146 /* reset focus to root */
147 XSetInputFocus(ob_display
, PointerRoot
, RevertToNone
, CurrentTime
);
149 RrColorFree(color_white
);
151 RrAppearanceFree(a_focus_indicator
);
153 XDestroyWindow(ob_display
, focus_indicator
.top
.win
);
154 XDestroyWindow(ob_display
, focus_indicator
.left
.win
);
155 XDestroyWindow(ob_display
, focus_indicator
.right
.win
);
156 XDestroyWindow(ob_display
, focus_indicator
.bottom
.win
);
160 static void push_to_top(ObClient
*client
)
164 desktop
= client
->desktop
;
165 if (desktop
== DESKTOP_ALL
) desktop
= screen_desktop
;
166 focus_order
[desktop
] = g_list_remove(focus_order
[desktop
], client
);
167 focus_order
[desktop
] = g_list_prepend(focus_order
[desktop
], client
);
170 void focus_set_client(ObClient
*client
)
176 ob_debug("focus_set_client 0x%lx\n", client
? client
->window
: 0);
179 /* uninstall the old colormap, and install the new one */
180 screen_install_colormap(focus_client
, FALSE
);
181 screen_install_colormap(client
, TRUE
);
183 if (client
== NULL
) {
185 ob_debug("actively focusing NONWINDOW\n");
187 /* when nothing will be focused, send focus to the backup target */
188 XSetInputFocus(ob_display
, screen_support_win
, RevertToNone
,
190 XSync(ob_display
, FALSE
);
193 /* in the middle of cycling..? kill it. */
194 if (focus_cycle_target
)
195 focus_cycle(TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
);
198 focus_client
= client
;
200 /* move to the top of the list */
204 /* set the NET_ACTIVE_WINDOW hint, but preserve it on shutdown */
205 if (ob_state() != OB_STATE_EXITING
) {
206 active
= client
? client
->window
: None
;
207 PROP_SET32(RootWindow(ob_display
, ob_screen
),
208 net_active_window
, window
, active
);
212 /* finds the first transient that isn't 'skip' and ensure's that client_normal
214 static ObClient
*find_transient_recursive(ObClient
*c
, ObClient
*top
,
220 for (it
= c
->transients
; it
; it
= g_slist_next(it
)) {
221 if (it
->data
== top
) return NULL
;
222 ret
= find_transient_recursive(it
->data
, top
, skip
);
223 if (ret
&& ret
!= skip
&& client_normal(ret
)) return ret
;
224 if (it
->data
!= skip
&& client_normal(it
->data
)) return it
->data
;
229 static ObClient
* focus_fallback_transient(ObClient
*top
, ObClient
*old
)
231 ObClient
*target
= find_transient_recursive(top
, top
, old
);
233 /* make sure client_normal is true always */
234 if (!client_normal(top
))
236 target
= top
; /* no transient, keep the top */
238 if (client_can_focus(target
))
244 ObClient
* focus_fallback_target(ObFocusFallbackType type
)
247 ObClient
*old
= NULL
;
248 ObClient
*target
= NULL
;
252 if ((type
== OB_FOCUS_FALLBACK_UNFOCUSING
253 || type
== OB_FOCUS_FALLBACK_CLOSED
) && old
) {
254 if (old
->transient_for
) {
255 gboolean trans
= FALSE
;
257 if (!config_focus_follow
|| config_focus_last
)
260 if ((target
= client_under_pointer()) &&
261 client_search_transient
262 (client_search_top_transient(target
), old
))
268 /* try for transient relations */
270 if (old
->transient_for
== OB_TRAN_GROUP
) {
271 for (it
= focus_order
[screen_desktop
]; it
;
272 it
= g_list_next(it
))
276 for (sit
= old
->group
->members
; sit
;
277 sit
= g_slist_next(sit
))
279 if (sit
->data
== it
->data
)
281 focus_fallback_transient(sit
->data
, old
)))
287 focus_fallback_transient(old
->transient_for
, old
)))
294 if (config_focus_follow
&&
295 (type
== OB_FOCUS_FALLBACK_UNFOCUSING
|| !config_focus_last
))
297 if ((target
= client_under_pointer()))
298 if (client_normal(target
) && client_can_focus(target
))
303 /* try for group relations */
307 for (it
= focus_order
[screen_desktop
]; it
; it
= g_list_next(it
))
308 for (sit
= old
->group
->members
; sit
; sit
= g_slist_next(sit
))
309 if (sit
->data
== it
->data
)
310 if (sit
->data
!= old
&& client_normal(sit
->data
))
311 if (client_can_focus(sit
->data
))
316 for (it
= focus_order
[screen_desktop
]; it
; it
= g_list_next(it
))
317 if (type
!= OB_FOCUS_FALLBACK_UNFOCUSING
|| it
->data
!= old
)
318 if (client_normal(it
->data
) && client_can_focus(it
->data
))
321 /* XXX fallback to the "desktop window" if one exists ?
322 could store it while going through all the windows in the loop right
329 void focus_fallback(ObFocusFallbackType type
)
333 /* unfocus any focused clients.. they can be focused by Pointer events
334 and such, and then when I try focus them, I won't get a FocusIn event
337 focus_set_client(NULL
);
339 if ((new = focus_fallback_target(type
)))
343 static void popup_cycle(ObClient
*c
, gboolean show
)
346 icon_popup_hide(focus_cycle_popup
);
352 a
= screen_physical_area_monitor(0);
353 icon_popup_position(focus_cycle_popup
, CenterGravity
,
354 a
->x
+ a
->width
/ 2, a
->y
+ a
->height
/ 2);
355 /* icon_popup_size(focus_cycle_popup, a->height/2, a->height/16);
356 icon_popup_show(focus_cycle_popup, c->title,
357 client_icon(c, a->height/16, a->height/16));
359 /* XXX the size and the font extents need to be related on some level
361 icon_popup_size(focus_cycle_popup
, POPUP_WIDTH
, POPUP_HEIGHT
);
363 /* use the transient's parent's title/icon */
364 while (p
->transient_for
&& p
->transient_for
!= OB_TRAN_GROUP
)
365 p
= p
->transient_for
;
367 if (p
!= c
&& !strcmp("", (c
->iconic
? c
->icon_title
: c
->title
)))
368 title
= g_strdup(p
->iconic
? p
->icon_title
: p
->title
);
369 /*title = g_strconcat((c->iconic ? c->icon_title : c->title),
371 (p->iconic ? p->icon_title : p->title),
374 icon_popup_show(focus_cycle_popup
,
376 (c
->iconic
? c
->icon_title
: c
->title
)),
377 client_icon(p
, 48, 48));
382 void focus_cycle_draw_indicator()
384 if (!focus_cycle_target
) {
385 XUnmapWindow(ob_display
, focus_indicator
.top
.win
);
386 XUnmapWindow(ob_display
, focus_indicator
.left
.win
);
387 XUnmapWindow(ob_display
, focus_indicator
.right
.win
);
388 XUnmapWindow(ob_display
, focus_indicator
.bottom
.win
);
391 if (focus_cycle_target)
392 frame_adjust_focus(focus_cycle_target->frame, FALSE);
393 frame_adjust_focus(focus_cycle_target->frame, TRUE);
398 wt
= wl
= wr
= wb
= MAX(3,
399 ob_rr_theme
->handle_height
+
400 ob_rr_theme
->bwidth
* 2);
402 x
= focus_cycle_target
->frame
->area
.x
;
403 y
= focus_cycle_target
->frame
->area
.y
;
404 w
= focus_cycle_target
->frame
->area
.width
;
407 XMoveResizeWindow(ob_display
, focus_indicator
.top
.win
,
409 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
410 a_focus_indicator
->texture
[0].data
.lineart
.y1
= h
-1;
411 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
412 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
413 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
414 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
415 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
416 a_focus_indicator
->texture
[1].data
.lineart
.y2
= 0;
417 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
418 a_focus_indicator
->texture
[2].data
.lineart
.y1
= 0;
419 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
420 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
421 a_focus_indicator
->texture
[3].data
.lineart
.x1
= (wl
-1);
422 a_focus_indicator
->texture
[3].data
.lineart
.y1
= h
-1;
423 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
- wr
;
424 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
-1;
425 RrPaint(a_focus_indicator
, focus_indicator
.top
.win
,
428 x
= focus_cycle_target
->frame
->area
.x
;
429 y
= focus_cycle_target
->frame
->area
.y
;
431 h
= focus_cycle_target
->frame
->area
.height
;
433 XMoveResizeWindow(ob_display
, focus_indicator
.left
.win
,
435 a_focus_indicator
->texture
[0].data
.lineart
.x1
= w
-1;
436 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
437 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
438 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
439 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
440 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
441 a_focus_indicator
->texture
[1].data
.lineart
.x2
= 0;
442 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
443 a_focus_indicator
->texture
[2].data
.lineart
.x1
= 0;
444 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
445 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
446 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
447 a_focus_indicator
->texture
[3].data
.lineart
.x1
= w
-1;
448 a_focus_indicator
->texture
[3].data
.lineart
.y1
= wt
-1;
449 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
-1;
450 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
- wb
;
451 RrPaint(a_focus_indicator
, focus_indicator
.left
.win
,
454 x
= focus_cycle_target
->frame
->area
.x
+
455 focus_cycle_target
->frame
->area
.width
- wr
;
456 y
= focus_cycle_target
->frame
->area
.y
;
458 h
= focus_cycle_target
->frame
->area
.height
;
460 XMoveResizeWindow(ob_display
, focus_indicator
.right
.win
,
462 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
463 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
464 a_focus_indicator
->texture
[0].data
.lineart
.x2
= w
-1;
465 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
466 a_focus_indicator
->texture
[1].data
.lineart
.x1
= w
-1;
467 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
468 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
469 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
470 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
471 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
472 a_focus_indicator
->texture
[2].data
.lineart
.x2
= 0;
473 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
474 a_focus_indicator
->texture
[3].data
.lineart
.x1
= 0;
475 a_focus_indicator
->texture
[3].data
.lineart
.y1
= wt
-1;
476 a_focus_indicator
->texture
[3].data
.lineart
.x2
= 0;
477 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
- wb
;
478 RrPaint(a_focus_indicator
, focus_indicator
.right
.win
,
481 x
= focus_cycle_target
->frame
->area
.x
;
482 y
= focus_cycle_target
->frame
->area
.y
+
483 focus_cycle_target
->frame
->area
.height
- wb
;
484 w
= focus_cycle_target
->frame
->area
.width
;
487 XMoveResizeWindow(ob_display
, focus_indicator
.bottom
.win
,
489 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
490 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
491 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
492 a_focus_indicator
->texture
[0].data
.lineart
.y2
= h
-1;
493 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
494 a_focus_indicator
->texture
[1].data
.lineart
.y1
= h
-1;
495 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
496 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
497 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
498 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
499 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
500 a_focus_indicator
->texture
[2].data
.lineart
.y2
= 0;
501 a_focus_indicator
->texture
[3].data
.lineart
.x1
= wl
-1;
502 a_focus_indicator
->texture
[3].data
.lineart
.y1
= 0;
503 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
- wr
;
504 a_focus_indicator
->texture
[3].data
.lineart
.y2
= 0;
505 RrPaint(a_focus_indicator
, focus_indicator
.bottom
.win
,
508 XMapWindow(ob_display
, focus_indicator
.top
.win
);
509 XMapWindow(ob_display
, focus_indicator
.left
.win
);
510 XMapWindow(ob_display
, focus_indicator
.right
.win
);
511 XMapWindow(ob_display
, focus_indicator
.bottom
.win
);
515 static gboolean
valid_focus_target(ObClient
*ft
)
517 /* we don't use client_can_focus here, because that doesn't let you
518 focus an iconic window, but we want to be able to, so we just check
519 if the focus flags on the window allow it, and its on the current
521 if ((ft
->type
== OB_CLIENT_TYPE_NORMAL
||
522 ft
->type
== OB_CLIENT_TYPE_DIALOG
||
523 (!client_has_group_siblings(ft
) &&
524 (ft
->type
== OB_CLIENT_TYPE_TOOLBAR
||
525 ft
->type
== OB_CLIENT_TYPE_MENU
||
526 ft
->type
== OB_CLIENT_TYPE_UTILITY
))) &&
527 ((ft
->can_focus
|| ft
->focus_notify
) &&
529 (ft
->desktop
== screen_desktop
|| ft
->desktop
== DESKTOP_ALL
)) &&
530 ft
== client_focus_target(ft
))
536 for (it = ft->transients; it; it = g_slist_next(it)) {
537 ObClient *c = it->data;
539 if (c->frame->visible)
549 void focus_cycle(gboolean forward
, gboolean linear
, gboolean interactive
,
550 gboolean dialog
, gboolean done
, gboolean cancel
)
552 static ObClient
*first
= NULL
;
553 static ObClient
*t
= NULL
;
554 static GList
*order
= NULL
;
555 GList
*it
, *start
, *list
;
560 focus_cycle_target
= NULL
;
565 if (!focus_order
[screen_desktop
])
568 if (!first
) first
= focus_client
;
570 if (linear
) list
= client_list
;
571 else list
= focus_order
[screen_desktop
];
573 if (!focus_order
[screen_desktop
])
577 if (!focus_cycle_target
) focus_cycle_target
= focus_client
;
579 start
= it
= g_list_find(list
, focus_cycle_target
);
580 if (!start
) /* switched desktops or something? */
581 start
= it
= forward
? g_list_last(list
) : g_list_first(list
);
582 if (!start
) goto done_cycle
;
587 if (it
== NULL
) it
= g_list_first(list
);
590 if (it
== NULL
) it
= g_list_last(list
);
593 if (valid_focus_target(ft
)) {
595 if (ft
!= focus_cycle_target
) { /* prevents flicker */
596 focus_cycle_target
= ft
;
597 focus_cycle_draw_indicator();
599 popup_cycle(ft
, dialog
);
601 } else if (ft
!= focus_cycle_target
) {
602 focus_cycle_target
= ft
;
607 } while (it
!= start
);
610 if (done
&& focus_cycle_target
)
611 client_activate(focus_cycle_target
, FALSE
, TRUE
);
615 focus_cycle_target
= NULL
;
620 focus_cycle_draw_indicator();
621 popup_cycle(ft
, FALSE
);
627 void focus_directional_cycle(ObDirection dir
, gboolean interactive
,
628 gboolean dialog
, gboolean done
, gboolean cancel
)
630 static ObClient
*first
= NULL
;
637 focus_cycle_target
= NULL
;
642 if (!focus_order
[screen_desktop
])
645 if (!first
) first
= focus_client
;
646 if (!focus_cycle_target
) focus_cycle_target
= focus_client
;
648 if (focus_cycle_target
)
649 ft
= client_find_directional(focus_cycle_target
, dir
);
653 for (it
= focus_order
[screen_desktop
]; it
; it
= g_list_next(it
))
654 if (valid_focus_target(it
->data
))
659 if (ft
!= focus_cycle_target
) {/* prevents flicker */
660 focus_cycle_target
= ft
;
661 focus_cycle_draw_indicator();
664 if (focus_cycle_target
) {
665 popup_cycle(focus_cycle_target
, dialog
);
672 if (done
&& focus_cycle_target
)
673 client_activate(focus_cycle_target
, FALSE
, TRUE
);
676 focus_cycle_target
= NULL
;
678 focus_cycle_draw_indicator();
679 popup_cycle(ft
, FALSE
);
684 void focus_order_add_new(ObClient
*c
)
689 focus_order_to_top(c
);
692 if (d
== DESKTOP_ALL
) {
693 for (i
= 0; i
< screen_num_desktops
; ++i
) {
694 g_assert(!g_list_find(focus_order
[i
], c
));
695 if (focus_order
[i
] && ((ObClient
*)focus_order
[i
]->data
)->iconic
)
696 focus_order
[i
] = g_list_insert(focus_order
[i
], c
, 0);
698 focus_order
[i
] = g_list_insert(focus_order
[i
], c
, 1);
701 g_assert(!g_list_find(focus_order
[d
], c
));
702 if (focus_order
[d
] && ((ObClient
*)focus_order
[d
]->data
)->iconic
)
703 focus_order
[d
] = g_list_insert(focus_order
[d
], c
, 0);
705 focus_order
[d
] = g_list_insert(focus_order
[d
], c
, 1);
710 void focus_order_remove(ObClient
*c
)
715 if (d
== DESKTOP_ALL
) {
716 for (i
= 0; i
< screen_num_desktops
; ++i
)
717 focus_order
[i
] = g_list_remove(focus_order
[i
], c
);
719 focus_order
[d
] = g_list_remove(focus_order
[d
], c
);
722 static void to_top(ObClient
*c
, guint d
)
724 focus_order
[d
] = g_list_remove(focus_order
[d
], c
);
726 focus_order
[d
] = g_list_prepend(focus_order
[d
], c
);
730 /* insert before first iconic window */
731 for (it
= focus_order
[d
];
732 it
&& !((ObClient
*)it
->data
)->iconic
; it
= g_list_next(it
));
733 focus_order
[d
] = g_list_insert_before(focus_order
[d
], it
, c
);
737 void focus_order_to_top(ObClient
*c
)
742 if (d
== DESKTOP_ALL
) {
743 for (i
= 0; i
< screen_num_desktops
; ++i
)
749 static void to_bottom(ObClient
*c
, guint d
)
751 focus_order
[d
] = g_list_remove(focus_order
[d
], c
);
753 focus_order
[d
] = g_list_append(focus_order
[d
], c
);
757 /* insert before first iconic window */
758 for (it
= focus_order
[d
];
759 it
&& !((ObClient
*)it
->data
)->iconic
; it
= g_list_next(it
));
760 focus_order
[d
] = g_list_insert_before(focus_order
[d
], it
, c
);
764 void focus_order_to_bottom(ObClient
*c
)
769 if (d
== DESKTOP_ALL
) {
770 for (i
= 0; i
< screen_num_desktops
; ++i
)