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-2007 Dana 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"
35 #include "render/render.h"
41 #define FOCUS_INDICATOR_WIDTH 6
43 ObClient
*focus_client
= NULL
;
44 GList
*focus_order
= NULL
;
45 ObClient
*focus_cycle_target
= NULL
;
51 InternalWindow bottom
;
54 RrAppearance
*a_focus_indicator
;
57 static ObIconPopup
*focus_cycle_popup
;
59 static gboolean
valid_focus_target(ObClient
*ft
,
60 gboolean all_desktops
,
61 gboolean dock_windows
,
62 gboolean desktop_windows
);
63 static void focus_cycle_destroy_notify(ObClient
*client
, gpointer data
);
65 static Window
createWindow(Window parent
, gulong mask
,
66 XSetWindowAttributes
*attrib
)
68 return XCreateWindow(ob_display
, parent
, 0, 0, 1, 1, 0,
69 RrDepth(ob_rr_inst
), InputOutput
,
70 RrVisual(ob_rr_inst
), mask
, attrib
);
74 void focus_startup(gboolean reconfig
)
76 focus_cycle_popup
= icon_popup_new(TRUE
);
79 XSetWindowAttributes attr
;
81 client_add_destroy_notify(focus_cycle_destroy_notify
, NULL
);
83 /* start with nothing focused */
86 focus_indicator
.top
.obwin
.type
= Window_Internal
;
87 focus_indicator
.left
.obwin
.type
= Window_Internal
;
88 focus_indicator
.right
.obwin
.type
= Window_Internal
;
89 focus_indicator
.bottom
.obwin
.type
= Window_Internal
;
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
, &attr
);
96 focus_indicator
.left
.win
=
97 createWindow(RootWindow(ob_display
, ob_screen
),
98 CWOverrideRedirect
| CWBackPixel
, &attr
);
99 focus_indicator
.right
.win
=
100 createWindow(RootWindow(ob_display
, ob_screen
),
101 CWOverrideRedirect
| CWBackPixel
, &attr
);
102 focus_indicator
.bottom
.win
=
103 createWindow(RootWindow(ob_display
, ob_screen
),
104 CWOverrideRedirect
| CWBackPixel
, &attr
);
106 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.top
));
107 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.left
));
108 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.right
));
109 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.bottom
));
111 color_white
= RrColorNew(ob_rr_inst
, 0xff, 0xff, 0xff);
113 a_focus_indicator
= RrAppearanceNew(ob_rr_inst
, 4);
114 a_focus_indicator
->surface
.grad
= RR_SURFACE_SOLID
;
115 a_focus_indicator
->surface
.relief
= RR_RELIEF_FLAT
;
116 a_focus_indicator
->surface
.primary
= RrColorNew(ob_rr_inst
,
118 a_focus_indicator
->texture
[0].type
= RR_TEXTURE_LINE_ART
;
119 a_focus_indicator
->texture
[0].data
.lineart
.color
= color_white
;
120 a_focus_indicator
->texture
[1].type
= RR_TEXTURE_LINE_ART
;
121 a_focus_indicator
->texture
[1].data
.lineart
.color
= color_white
;
122 a_focus_indicator
->texture
[2].type
= RR_TEXTURE_LINE_ART
;
123 a_focus_indicator
->texture
[2].data
.lineart
.color
= color_white
;
124 a_focus_indicator
->texture
[3].type
= RR_TEXTURE_LINE_ART
;
125 a_focus_indicator
->texture
[3].data
.lineart
.color
= color_white
;
129 void focus_shutdown(gboolean reconfig
)
131 icon_popup_free(focus_cycle_popup
);
134 client_remove_destroy_notify(focus_cycle_destroy_notify
);
136 /* reset focus to root */
137 XSetInputFocus(ob_display
, PointerRoot
, RevertToNone
, CurrentTime
);
139 RrColorFree(color_white
);
141 RrAppearanceFree(a_focus_indicator
);
143 XDestroyWindow(ob_display
, focus_indicator
.top
.win
);
144 XDestroyWindow(ob_display
, focus_indicator
.left
.win
);
145 XDestroyWindow(ob_display
, focus_indicator
.right
.win
);
146 XDestroyWindow(ob_display
, focus_indicator
.bottom
.win
);
150 static void push_to_top(ObClient
*client
)
152 focus_order
= g_list_remove(focus_order
, client
);
153 focus_order
= g_list_prepend(focus_order
, client
);
156 void focus_set_client(ObClient
*client
)
160 ob_debug_type(OB_DEBUG_FOCUS
,
161 "focus_set_client 0x%lx\n", client
? client
->window
: 0);
163 if (focus_client
== client
)
166 /* uninstall the old colormap, and install the new one */
167 screen_install_colormap(focus_client
, FALSE
);
168 screen_install_colormap(client
, TRUE
);
170 /* in the middle of cycling..? kill it. CurrentTime is fine, time won't
173 if (focus_cycle_target
)
174 focus_cycle(TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
);
176 focus_client
= client
;
178 if (client
!= NULL
) {
179 /* move to the top of the list */
181 /* remove hiliting from the window when it gets focused */
182 client_hilite(client
, FALSE
);
185 /* set the NET_ACTIVE_WINDOW hint, but preserve it on shutdown */
186 if (ob_state() != OB_STATE_EXITING
) {
187 active
= client
? client
->window
: None
;
188 PROP_SET32(RootWindow(ob_display
, ob_screen
),
189 net_active_window
, window
, active
);
193 static ObClient
* focus_fallback_target(gboolean allow_refocus
)
197 ObClient
*old
= focus_client
;
199 ob_debug_type(OB_DEBUG_FOCUS
, "trying pointer stuff\n");
200 if (config_focus_follow
&& !config_focus_last
)
201 if ((c
= client_under_pointer()) &&
202 (allow_refocus
|| c
!= old
) &&
206 ob_debug_type(OB_DEBUG_FOCUS
, "found in pointer stuff\n");
210 ob_debug_type(OB_DEBUG_FOCUS
, "trying omnipresentness\n");
211 if (allow_refocus
&& old
&&
212 old
->desktop
== DESKTOP_ALL
&&
213 client_normal(old
) &&
216 ob_debug_type(OB_DEBUG_FOCUS
, "found in omnipresentness\n");
221 ob_debug_type(OB_DEBUG_FOCUS
, "trying the focus order\n");
222 for (it
= focus_order
; it
; it
= g_list_next(it
)) {
224 /* fallback focus to a window if:
225 1. it is on the current desktop. this ignores omnipresent
226 windows, which are problematic in their own rite.
227 2. it is a normal type window, don't fall back onto a dock or
228 a splashscreen or a desktop window (save the desktop as a
229 backup fallback though)
231 if (c
->desktop
== screen_desktop
&&
233 (allow_refocus
|| c
!= old
) &&
236 ob_debug_type(OB_DEBUG_FOCUS
, "found in focus order\n");
241 ob_debug_type(OB_DEBUG_FOCUS
, "trying a desktop window\n");
242 for (it
= focus_order
; it
; it
= g_list_next(it
)) {
244 /* fallback focus to a window if:
245 1. it is on the current desktop. this ignores omnipresent
246 windows, which are problematic in their own rite.
247 2. it is a normal type window, don't fall back onto a dock or
248 a splashscreen or a desktop window (save the desktop as a
249 backup fallback though)
251 if (c
->type
== OB_CLIENT_TYPE_DESKTOP
&&
252 (allow_refocus
|| c
!= old
) &&
255 ob_debug_type(OB_DEBUG_FOCUS
, "found a desktop window\n");
263 ObClient
* focus_fallback(gboolean allow_refocus
)
267 /* unfocus any focused clients.. they can be focused by Pointer events
268 and such, and then when we try focus them, we won't get a FocusIn
269 event at all for them. */
272 new = focus_fallback_target(allow_refocus
);
279 /* Install our own colormap */
280 if (focus_client
!= NULL
) {
281 screen_install_colormap(focus_client
, FALSE
);
282 screen_install_colormap(NULL
, TRUE
);
285 /* Don't set focus_client to NULL here. It will be set to NULL when the
286 FocusOut event comes. Otherwise, if we focus nothing and then focus the
287 same window again, The focus code says nothing changed, but focus_client
288 ends up being NULL anyways.
292 /* if there is a grab going on, then we need to cancel it. if we move
293 focus during the grab, applications will get NotifyWhileGrabbed events
296 actions should not rely on being able to move focus during an
299 if (keyboard_interactively_grabbed())
300 keyboard_interactive_cancel();
302 /* when nothing will be focused, send focus to the backup target */
303 XSetInputFocus(ob_display
, screen_support_win
, RevertToPointerRoot
,
307 static gchar
*popup_get_name(ObClient
*c
, ObClient
**nametarget
)
311 const gchar
*desk
= NULL
;
314 /* find our highest direct parent, including non-normal windows */
315 for (p
= c
; p
->transient_for
&& p
->transient_for
!= OB_TRAN_GROUP
;
316 p
= p
->transient_for
);
318 if (c
->desktop
!= DESKTOP_ALL
&& c
->desktop
!= screen_desktop
)
319 desk
= screen_desktop_names
[c
->desktop
];
321 /* use the transient's parent's title/icon if we don't have one */
322 if (p
!= c
&& !strcmp("", (c
->iconic
? c
->icon_title
: c
->title
)))
323 title
= g_strdup(p
->iconic
? p
->icon_title
: p
->title
);
326 title
= g_strdup(c
->iconic
? c
->icon_title
: c
->title
);
329 ret
= g_strdup_printf("%s [%s]", title
, desk
);
336 /* set this only if we're returning true and they asked for it */
337 if (ret
&& nametarget
) *nametarget
= p
;
341 static void popup_cycle(ObClient
*c
, gboolean show
,
342 gboolean all_desktops
, gboolean dock_windows
,
343 gboolean desktop_windows
)
345 gchar
*showtext
= NULL
;
346 ObClient
*showtarget
;
349 icon_popup_hide(focus_cycle_popup
);
353 /* do this stuff only when the dialog is first showing */
354 if (!focus_cycle_popup
->popup
->mapped
&&
355 !focus_cycle_popup
->popup
->delay_mapped
)
359 GList
*targets
= NULL
, *it
;
362 /* position the popup */
363 a
= screen_physical_area_monitor(0);
364 icon_popup_position(focus_cycle_popup
, CenterGravity
,
365 a
->x
+ a
->width
/ 2, a
->y
+ a
->height
/ 2);
366 icon_popup_height(focus_cycle_popup
, POPUP_HEIGHT
);
367 icon_popup_min_width(focus_cycle_popup
, POPUP_WIDTH
);
368 icon_popup_max_width(focus_cycle_popup
,
369 MAX(a
->width
/3, POPUP_WIDTH
));
372 /* make its width to be the width of all the possible titles */
374 /* build a list of all the valid focus targets */
375 for (it
= focus_order
; it
; it
= g_list_next(it
)) {
376 ObClient
*ft
= it
->data
;
377 if (valid_focus_target(ft
, all_desktops
, dock_windows
380 targets
= g_list_prepend(targets
, ft
);
384 /* make it null terminated so we can use g_strfreev */
385 names
= g_new(char*, n
+1);
386 for (it
= targets
, i
= 0; it
; it
= g_list_next(it
), ++i
) {
387 ObClient
*ft
= it
->data
, *t
;
388 names
[i
] = popup_get_name(ft
, &t
);
390 /* little optimization.. save this text and client, so we dont
391 have to get it again */
393 showtext
= g_strdup(names
[i
]);
399 icon_popup_text_width_to_strings(focus_cycle_popup
, names
, n
);
404 if (!showtext
) showtext
= popup_get_name(c
, &showtarget
);
405 icon_popup_show(focus_cycle_popup
, showtext
,
406 client_icon(showtarget
, 48, 48));
410 static void focus_cycle_destroy_notify(ObClient
*client
, gpointer data
)
412 /* end cycling if the target disappears. CurrentTime is fine, time won't
415 if (focus_cycle_target
== client
)
416 focus_cycle(TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
);
419 void focus_cycle_draw_indicator()
421 if (!focus_cycle_target
) {
422 XUnmapWindow(ob_display
, focus_indicator
.top
.win
);
423 XUnmapWindow(ob_display
, focus_indicator
.left
.win
);
424 XUnmapWindow(ob_display
, focus_indicator
.right
.win
);
425 XUnmapWindow(ob_display
, focus_indicator
.bottom
.win
);
427 /* kill enter events cause by this unmapping */
428 event_ignore_queued_enters();
431 if (focus_cycle_target)
432 frame_adjust_focus(focus_cycle_target->frame, FALSE);
433 frame_adjust_focus(focus_cycle_target->frame, TRUE);
438 wt
= wl
= wr
= wb
= FOCUS_INDICATOR_WIDTH
;
440 x
= focus_cycle_target
->frame
->area
.x
;
441 y
= focus_cycle_target
->frame
->area
.y
;
442 w
= focus_cycle_target
->frame
->area
.width
;
445 XMoveResizeWindow(ob_display
, focus_indicator
.top
.win
,
447 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
448 a_focus_indicator
->texture
[0].data
.lineart
.y1
= h
-1;
449 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
450 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
451 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
452 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
453 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
454 a_focus_indicator
->texture
[1].data
.lineart
.y2
= 0;
455 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
456 a_focus_indicator
->texture
[2].data
.lineart
.y1
= 0;
457 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
458 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
459 a_focus_indicator
->texture
[3].data
.lineart
.x1
= (wl
-1);
460 a_focus_indicator
->texture
[3].data
.lineart
.y1
= h
-1;
461 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
- wr
;
462 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
-1;
463 RrPaint(a_focus_indicator
, focus_indicator
.top
.win
,
466 x
= focus_cycle_target
->frame
->area
.x
;
467 y
= focus_cycle_target
->frame
->area
.y
;
469 h
= focus_cycle_target
->frame
->area
.height
;
471 XMoveResizeWindow(ob_display
, focus_indicator
.left
.win
,
473 a_focus_indicator
->texture
[0].data
.lineart
.x1
= w
-1;
474 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
475 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
476 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
477 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
478 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
479 a_focus_indicator
->texture
[1].data
.lineart
.x2
= 0;
480 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
481 a_focus_indicator
->texture
[2].data
.lineart
.x1
= 0;
482 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
483 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
484 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
485 a_focus_indicator
->texture
[3].data
.lineart
.x1
= w
-1;
486 a_focus_indicator
->texture
[3].data
.lineart
.y1
= wt
-1;
487 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
-1;
488 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
- wb
;
489 RrPaint(a_focus_indicator
, focus_indicator
.left
.win
,
492 x
= focus_cycle_target
->frame
->area
.x
+
493 focus_cycle_target
->frame
->area
.width
- wr
;
494 y
= focus_cycle_target
->frame
->area
.y
;
496 h
= focus_cycle_target
->frame
->area
.height
;
498 XMoveResizeWindow(ob_display
, focus_indicator
.right
.win
,
500 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
501 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
502 a_focus_indicator
->texture
[0].data
.lineart
.x2
= w
-1;
503 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
504 a_focus_indicator
->texture
[1].data
.lineart
.x1
= w
-1;
505 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
506 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
507 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
508 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
509 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
510 a_focus_indicator
->texture
[2].data
.lineart
.x2
= 0;
511 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
512 a_focus_indicator
->texture
[3].data
.lineart
.x1
= 0;
513 a_focus_indicator
->texture
[3].data
.lineart
.y1
= wt
-1;
514 a_focus_indicator
->texture
[3].data
.lineart
.x2
= 0;
515 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
- wb
;
516 RrPaint(a_focus_indicator
, focus_indicator
.right
.win
,
519 x
= focus_cycle_target
->frame
->area
.x
;
520 y
= focus_cycle_target
->frame
->area
.y
+
521 focus_cycle_target
->frame
->area
.height
- wb
;
522 w
= focus_cycle_target
->frame
->area
.width
;
525 XMoveResizeWindow(ob_display
, focus_indicator
.bottom
.win
,
527 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
528 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
529 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
530 a_focus_indicator
->texture
[0].data
.lineart
.y2
= h
-1;
531 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
532 a_focus_indicator
->texture
[1].data
.lineart
.y1
= h
-1;
533 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
534 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
535 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
536 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
537 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
538 a_focus_indicator
->texture
[2].data
.lineart
.y2
= 0;
539 a_focus_indicator
->texture
[3].data
.lineart
.x1
= wl
-1;
540 a_focus_indicator
->texture
[3].data
.lineart
.y1
= 0;
541 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
- wr
;
542 a_focus_indicator
->texture
[3].data
.lineart
.y2
= 0;
543 RrPaint(a_focus_indicator
, focus_indicator
.bottom
.win
,
546 XMapWindow(ob_display
, focus_indicator
.top
.win
);
547 XMapWindow(ob_display
, focus_indicator
.left
.win
);
548 XMapWindow(ob_display
, focus_indicator
.right
.win
);
549 XMapWindow(ob_display
, focus_indicator
.bottom
.win
);
553 static gboolean
has_valid_group_siblings_on_desktop(ObClient
*ft
,
554 gboolean all_desktops
)
559 if (!ft
->group
) return FALSE
;
561 for (it
= ft
->group
->members
; it
; it
= g_slist_next(it
)) {
562 ObClient
*c
= it
->data
;
563 /* check that it's not a helper window to avoid infinite recursion */
564 if (c
!= ft
&& !client_helper(c
) &&
565 valid_focus_target(c
, all_desktops
, FALSE
, FALSE
))
573 /*! @param allow_helpers This is used for calling itself recursively while
574 checking helper windows. */
575 static gboolean
valid_focus_target(ObClient
*ft
,
576 gboolean all_desktops
,
577 gboolean dock_windows
,
578 gboolean desktop_windows
)
582 /* it's on this desktop unless you want all desktops.
584 do this check first because it will usually filter out the most
586 ok
= (all_desktops
|| ft
->desktop
== screen_desktop
||
587 ft
->desktop
== DESKTOP_ALL
);
589 /* the window can receive focus somehow */
590 ok
= ok
&& (ft
->can_focus
|| ft
->focus_notify
);
592 /* it's the right type of window */
593 if (dock_windows
|| desktop_windows
)
594 ok
= ok
&& ((dock_windows
&& ft
->type
== OB_CLIENT_TYPE_DOCK
) ||
595 (desktop_windows
&& ft
->type
== OB_CLIENT_TYPE_DESKTOP
));
597 /* normal non-helper windows are valid targets */
599 ((client_normal(ft
) && !client_helper(ft
))
601 /* helper windows are valid targets it... */
602 (client_helper(ft
) &&
603 /* ...a window in its group already has focus ... */
604 ((focus_client
&& ft
->group
== focus_client
->group
) ||
605 /* ... or if there are no other windows in its group
606 that can be cycled to instead */
607 !has_valid_group_siblings_on_desktop(ft
, all_desktops
))));
609 /* it's not set to skip the taskbar (unless it is a type that would be
610 expected to set this hint */
611 ok
= ok
&& ((ft
->type
== OB_CLIENT_TYPE_DOCK
||
612 ft
->type
== OB_CLIENT_TYPE_DESKTOP
||
613 ft
->type
== OB_CLIENT_TYPE_TOOLBAR
||
614 ft
->type
== OB_CLIENT_TYPE_MENU
||
615 ft
->type
== OB_CLIENT_TYPE_UTILITY
) ||
618 /* it's not going to just send fous off somewhere else (modal window) */
619 ok
= ok
&& ft
== client_focus_target(ft
);
624 void focus_cycle(gboolean forward
, gboolean all_desktops
,
625 gboolean dock_windows
, gboolean desktop_windows
,
626 gboolean linear
, gboolean interactive
,
627 gboolean dialog
, gboolean done
, gboolean cancel
)
629 static ObClient
*first
= NULL
;
630 static ObClient
*t
= NULL
;
631 static GList
*order
= NULL
;
632 GList
*it
, *start
, *list
;
637 focus_cycle_target
= NULL
;
645 if (!first
) first
= focus_client
;
647 if (linear
) list
= client_list
;
648 else list
= focus_order
;
654 if (!focus_cycle_target
) focus_cycle_target
= focus_client
;
656 start
= it
= g_list_find(list
, focus_cycle_target
);
657 if (!start
) /* switched desktops or something? */
658 start
= it
= forward
? g_list_last(list
) : g_list_first(list
);
659 if (!start
) goto done_cycle
;
664 if (it
== NULL
) it
= g_list_first(list
);
667 if (it
== NULL
) it
= g_list_last(list
);
670 if (valid_focus_target(ft
, all_desktops
, dock_windows
,
674 if (ft
!= focus_cycle_target
) { /* prevents flicker */
675 focus_cycle_target
= ft
;
676 focus_cycle_draw_indicator();
678 /* same arguments as valid_focus_target */
679 popup_cycle(ft
, dialog
, all_desktops
, dock_windows
,
682 } else if (ft
!= focus_cycle_target
) {
683 focus_cycle_target
= ft
;
688 } while (it
!= start
);
691 if (done
&& focus_cycle_target
)
692 client_activate(focus_cycle_target
, FALSE
, TRUE
);
696 focus_cycle_target
= NULL
;
701 focus_cycle_draw_indicator();
702 popup_cycle(ft
, FALSE
, FALSE
, FALSE
, FALSE
);
708 /* this be mostly ripped from fvwm */
709 static ObClient
*focus_find_directional(ObClient
*c
, ObDirection dir
,
710 gboolean dock_windows
,
711 gboolean desktop_windows
)
713 gint my_cx
, my_cy
, his_cx
, his_cy
;
716 gint score
, best_score
;
717 ObClient
*best_client
, *cur
;
723 /* first, find the centre coords of the currently focused window */
724 my_cx
= c
->frame
->area
.x
+ c
->frame
->area
.width
/ 2;
725 my_cy
= c
->frame
->area
.y
+ c
->frame
->area
.height
/ 2;
730 for(it
= g_list_first(client_list
); it
; it
= g_list_next(it
)) {
733 /* the currently selected window isn't interesting */
736 if (cur
->type
== OB_CLIENT_TYPE_DOCK
&& !dock_windows
)
738 if (cur
->type
== OB_CLIENT_TYPE_DESKTOP
&& !desktop_windows
)
740 if (!client_normal(cur
) &&
741 cur
->type
!= OB_CLIENT_TYPE_DOCK
&&
742 cur
->type
!= OB_CLIENT_TYPE_DESKTOP
)
744 /* using c->desktop instead of screen_desktop doesn't work if the
745 * current window was omnipresent, hope this doesn't have any other
747 if(screen_desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
751 if(!(client_focus_target(cur
) == cur
&&
752 client_can_focus(cur
)))
755 /* find the centre coords of this window, from the
756 * currently focused window's point of view */
757 his_cx
= (cur
->frame
->area
.x
- my_cx
)
758 + cur
->frame
->area
.width
/ 2;
759 his_cy
= (cur
->frame
->area
.y
- my_cy
)
760 + cur
->frame
->area
.height
/ 2;
762 if(dir
== OB_DIRECTION_NORTHEAST
|| dir
== OB_DIRECTION_SOUTHEAST
||
763 dir
== OB_DIRECTION_SOUTHWEST
|| dir
== OB_DIRECTION_NORTHWEST
) {
765 /* Rotate the diagonals 45 degrees counterclockwise.
766 * To do this, multiply the matrix /+h +h\ with the
767 * vector (x y). \-h +h/
768 * h = sqrt(0.5). We can set h := 1 since absolute
769 * distance doesn't matter here. */
770 tx
= his_cx
+ his_cy
;
771 his_cy
= -his_cx
+ his_cy
;
776 case OB_DIRECTION_NORTH
:
777 case OB_DIRECTION_SOUTH
:
778 case OB_DIRECTION_NORTHEAST
:
779 case OB_DIRECTION_SOUTHWEST
:
780 offset
= (his_cx
< 0) ? -his_cx
: his_cx
;
781 distance
= ((dir
== OB_DIRECTION_NORTH
||
782 dir
== OB_DIRECTION_NORTHEAST
) ?
785 case OB_DIRECTION_EAST
:
786 case OB_DIRECTION_WEST
:
787 case OB_DIRECTION_SOUTHEAST
:
788 case OB_DIRECTION_NORTHWEST
:
789 offset
= (his_cy
< 0) ? -his_cy
: his_cy
;
790 distance
= ((dir
== OB_DIRECTION_WEST
||
791 dir
== OB_DIRECTION_NORTHWEST
) ?
796 /* the target must be in the requested direction */
800 /* Calculate score for this window. The smaller the better. */
801 score
= distance
+ offset
;
803 /* windows more than 45 degrees off the direction are
804 * heavily penalized and will only be chosen if nothing
805 * else within a million pixels */
806 if(offset
> distance
)
809 if(best_score
== -1 || score
< best_score
)
817 void focus_directional_cycle(ObDirection dir
, gboolean dock_windows
,
818 gboolean desktop_windows
, gboolean interactive
,
819 gboolean dialog
, gboolean done
, gboolean cancel
)
821 static ObClient
*first
= NULL
;
828 focus_cycle_target
= NULL
;
836 if (!first
) first
= focus_client
;
837 if (!focus_cycle_target
) focus_cycle_target
= focus_client
;
839 if (focus_cycle_target
)
840 ft
= focus_find_directional(focus_cycle_target
, dir
, dock_windows
,
845 for (it
= focus_order
; it
; it
= g_list_next(it
))
846 if (valid_focus_target(it
->data
, FALSE
, dock_windows
,
852 if (ft
!= focus_cycle_target
) {/* prevents flicker */
853 focus_cycle_target
= ft
;
854 focus_cycle_draw_indicator();
857 if (focus_cycle_target
) {
858 /* same arguments as valid_focus_target */
859 popup_cycle(focus_cycle_target
, dialog
, FALSE
, dock_windows
,
867 if (done
&& focus_cycle_target
)
868 client_activate(focus_cycle_target
, FALSE
, TRUE
);
871 focus_cycle_target
= NULL
;
873 focus_cycle_draw_indicator();
874 popup_cycle(ft
, FALSE
, FALSE
, FALSE
, FALSE
);
879 void focus_order_add_new(ObClient
*c
)
882 focus_order_to_top(c
);
884 g_assert(!g_list_find(focus_order
, c
));
885 /* if there are any iconic windows, put this above them in the order,
886 but if there are not, then put it under the currently focused one */
887 if (focus_order
&& ((ObClient
*)focus_order
->data
)->iconic
)
888 focus_order
= g_list_insert(focus_order
, c
, 0);
890 focus_order
= g_list_insert(focus_order
, c
, 1);
894 void focus_order_remove(ObClient
*c
)
896 focus_order
= g_list_remove(focus_order
, c
);
899 void focus_order_to_top(ObClient
*c
)
901 focus_order
= g_list_remove(focus_order
, c
);
903 focus_order
= g_list_prepend(focus_order
, c
);
907 /* insert before first iconic window */
908 for (it
= focus_order
;
909 it
&& !((ObClient
*)it
->data
)->iconic
; it
= g_list_next(it
));
910 focus_order
= g_list_insert_before(focus_order
, it
, c
);
914 void focus_order_to_bottom(ObClient
*c
)
916 focus_order
= g_list_remove(focus_order
, c
);
918 focus_order
= g_list_append(focus_order
, c
);
922 /* insert before first iconic window */
923 for (it
= focus_order
;
924 it
&& !((ObClient
*)it
->data
)->iconic
; it
= g_list_next(it
));
925 focus_order
= g_list_insert_before(focus_order
, it
, c
);
929 ObClient
*focus_order_find_first(guint desktop
)
932 for (it
= focus_order
; it
; it
= g_list_next(it
)) {
933 ObClient
*c
= it
->data
;
934 if (c
->desktop
== desktop
|| c
->desktop
== DESKTOP_ALL
)