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"
34 #include "render/render.h"
40 #define FOCUS_INDICATOR_WIDTH 6
42 ObClient
*focus_client
= NULL
;
43 GList
*focus_order
= NULL
;
44 ObClient
*focus_cycle_target
= NULL
;
46 /*! This variable is used for focus fallback. If we fallback to a window, we
47 set this to the window. And when focus goes somewhere after that, it will
48 be set to NULL. If between falling back to that window and something
49 getting focused, the window gets unmanaged, then if there are no incoming
50 FocusIn events, we fallback again because focus has just gotten itself lost.
52 static ObClient
*focus_tried
= NULL
;
58 InternalWindow bottom
;
61 RrAppearance
*a_focus_indicator
;
64 static ObIconPopup
*focus_cycle_popup
;
66 static gboolean
valid_focus_target(ObClient
*ft
,
67 gboolean all_desktops
,
68 gboolean dock_windows
,
69 gboolean desktop_windows
);
70 static void focus_cycle_destroy_notify(ObClient
*client
, gpointer data
);
71 static void focus_tried_hide_notify(ObClient
*client
, gpointer data
);
73 static Window
createWindow(Window parent
, gulong mask
,
74 XSetWindowAttributes
*attrib
)
76 return XCreateWindow(ob_display
, parent
, 0, 0, 1, 1, 0,
77 RrDepth(ob_rr_inst
), InputOutput
,
78 RrVisual(ob_rr_inst
), mask
, attrib
);
82 void focus_startup(gboolean reconfig
)
84 focus_cycle_popup
= icon_popup_new(TRUE
);
87 XSetWindowAttributes attr
;
89 client_add_destroy_notify(focus_cycle_destroy_notify
, NULL
);
90 client_add_destroy_notify(focus_tried_hide_notify
, NULL
);
91 client_add_hide_notify(focus_tried_hide_notify
, NULL
);
93 /* start with nothing focused */
96 focus_indicator
.top
.obwin
.type
= Window_Internal
;
97 focus_indicator
.left
.obwin
.type
= Window_Internal
;
98 focus_indicator
.right
.obwin
.type
= Window_Internal
;
99 focus_indicator
.bottom
.obwin
.type
= Window_Internal
;
101 attr
.override_redirect
= True
;
102 attr
.background_pixel
= BlackPixel(ob_display
, ob_screen
);
103 focus_indicator
.top
.win
=
104 createWindow(RootWindow(ob_display
, ob_screen
),
105 CWOverrideRedirect
| CWBackPixel
, &attr
);
106 focus_indicator
.left
.win
=
107 createWindow(RootWindow(ob_display
, ob_screen
),
108 CWOverrideRedirect
| CWBackPixel
, &attr
);
109 focus_indicator
.right
.win
=
110 createWindow(RootWindow(ob_display
, ob_screen
),
111 CWOverrideRedirect
| CWBackPixel
, &attr
);
112 focus_indicator
.bottom
.win
=
113 createWindow(RootWindow(ob_display
, ob_screen
),
114 CWOverrideRedirect
| CWBackPixel
, &attr
);
116 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.top
));
117 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.left
));
118 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.right
));
119 stacking_add(INTERNAL_AS_WINDOW(&focus_indicator
.bottom
));
121 color_white
= RrColorNew(ob_rr_inst
, 0xff, 0xff, 0xff);
123 a_focus_indicator
= RrAppearanceNew(ob_rr_inst
, 4);
124 a_focus_indicator
->surface
.grad
= RR_SURFACE_SOLID
;
125 a_focus_indicator
->surface
.relief
= RR_RELIEF_FLAT
;
126 a_focus_indicator
->surface
.primary
= RrColorNew(ob_rr_inst
,
128 a_focus_indicator
->texture
[0].type
= RR_TEXTURE_LINE_ART
;
129 a_focus_indicator
->texture
[0].data
.lineart
.color
= color_white
;
130 a_focus_indicator
->texture
[1].type
= RR_TEXTURE_LINE_ART
;
131 a_focus_indicator
->texture
[1].data
.lineart
.color
= color_white
;
132 a_focus_indicator
->texture
[2].type
= RR_TEXTURE_LINE_ART
;
133 a_focus_indicator
->texture
[2].data
.lineart
.color
= color_white
;
134 a_focus_indicator
->texture
[3].type
= RR_TEXTURE_LINE_ART
;
135 a_focus_indicator
->texture
[3].data
.lineart
.color
= color_white
;
139 void focus_shutdown(gboolean reconfig
)
141 icon_popup_free(focus_cycle_popup
);
144 client_remove_destroy_notify(focus_cycle_destroy_notify
);
145 client_remove_destroy_notify(focus_tried_hide_notify
);
146 client_remove_hide_notify(focus_tried_hide_notify
);
148 /* reset focus to root */
149 XSetInputFocus(ob_display
, PointerRoot
, RevertToNone
, CurrentTime
);
151 RrColorFree(color_white
);
153 RrAppearanceFree(a_focus_indicator
);
155 XDestroyWindow(ob_display
, focus_indicator
.top
.win
);
156 XDestroyWindow(ob_display
, focus_indicator
.left
.win
);
157 XDestroyWindow(ob_display
, focus_indicator
.right
.win
);
158 XDestroyWindow(ob_display
, focus_indicator
.bottom
.win
);
162 static void push_to_top(ObClient
*client
)
164 focus_order
= g_list_remove(focus_order
, client
);
165 focus_order
= g_list_prepend(focus_order
, client
);
168 void focus_set_client(ObClient
*client
)
172 ob_debug_type(OB_DEBUG_FOCUS
,
173 "focus_set_client 0x%lx\n", client
? client
->window
: 0);
175 /* uninstall the old colormap, and install the new one */
176 screen_install_colormap(focus_client
, FALSE
);
177 screen_install_colormap(client
, TRUE
);
179 /* in the middle of cycling..? kill it. CurrentTime is fine, time won't
182 if (focus_cycle_target
)
183 focus_cycle(TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
);
185 focus_client
= client
;
187 if (client
!= NULL
) {
188 /* move to the top of the list */
190 /* remove hiliting from the window when it gets focused */
191 client_hilite(client
, FALSE
);
194 /* set the NET_ACTIVE_WINDOW hint, but preserve it on shutdown */
195 if (ob_state() != OB_STATE_EXITING
) {
196 active
= client
? client
->window
: None
;
197 PROP_SET32(RootWindow(ob_display
, ob_screen
),
198 net_active_window
, window
, active
);
202 focus_tried
= NULL
; /* focus isn't "trying" to go anywhere now */
205 static ObClient
* focus_fallback_target(gboolean allow_refocus
, ObClient
*old
)
208 ObClient
*target
= NULL
;
209 ObClient
*desktop
= NULL
;
211 ob_debug_type(OB_DEBUG_FOCUS
, "trying pointer stuff\n");
212 if (config_focus_follow
&& !config_focus_last
)
214 if ((target
= client_under_pointer()))
215 if (allow_refocus
|| target
!= old
)
216 if (client_normal(target
) && client_can_focus(target
)) {
217 ob_debug_type(OB_DEBUG_FOCUS
, "found in pointer stuff\n");
223 /* try for group relations */
227 for (it
= focus_order
[screen_desktop
]; it
; it
= g_list_next(it
))
228 for (sit
= old
->group
->members
; sit
; sit
= g_slist_next(sit
))
229 if (sit
->data
== it
->data
)
230 if (sit
->data
!= old
&& client_normal(sit
->data
))
231 if (client_can_focus(sit
->data
))
236 ob_debug_type(OB_DEBUG_FOCUS
, "trying omnipresentness\n");
237 if (allow_refocus
&& old
&& old
->desktop
== DESKTOP_ALL
&&
244 ob_debug_type(OB_DEBUG_FOCUS
, "trying the focus order\n");
245 for (it
= focus_order
; it
; it
= g_list_next(it
))
246 if (allow_refocus
|| it
->data
!= old
) {
247 ObClient
*c
= it
->data
;
248 /* fallback focus to a window if:
249 1. it is actually focusable, cuz if it's not then we're sending
250 focus off to nothing. this includes if it is visible right now
251 2. it is on the current desktop. this ignores omnipresent
252 windows, which are problematic in their own rite.
253 3. it is a normal type window, don't fall back onto a dock or
254 a splashscreen or a desktop window (save the desktop as a
255 backup fallback though)
257 if (client_can_focus(c
))
259 if (c
->desktop
== screen_desktop
&& client_normal(c
)) {
260 ob_debug_type(OB_DEBUG_FOCUS
, "found in focus order\n");
262 } else if (c
->type
== OB_CLIENT_TYPE_DESKTOP
&&
268 /* as a last resort fallback to the desktop window if there is one.
269 (if there's more than one, then the one most recently focused.)
271 ob_debug_type(OB_DEBUG_FOCUS
, "found desktop: \n", !!desktop
);
275 ObClient
* focus_fallback(gboolean allow_refocus
)
281 new = focus_fallback_target(allow_refocus
, focus_client
);
283 /* send focus somewhere if it is moving or if it was NULL before,
284 in which case it may not even be on the screen */
285 if (!old
|| new != old
) {
286 /* unfocus any focused clients.. they can be focused by Pointer events
287 and such, and then when we try focus them, we won't get a FocusIn
288 event at all for them. */
293 /* remember that we tried to send focus here */
303 /* Install our own colormap */
304 if (focus_client
!= NULL
) {
305 screen_install_colormap(focus_client
, FALSE
);
306 screen_install_colormap(NULL
, TRUE
);
310 focus_tried
= NULL
; /* focus isn't "trying" to go anywhere now */
312 /* when nothing will be focused, send focus to the backup target */
313 XSetInputFocus(ob_display
, screen_support_win
, RevertToPointerRoot
,
317 static gchar
*popup_get_name(ObClient
*c
, ObClient
**nametarget
)
321 const gchar
*desk
= NULL
;
324 /* find our highest direct parent, including non-normal windows */
325 for (p
= c
; p
->transient_for
&& p
->transient_for
!= OB_TRAN_GROUP
;
326 p
= p
->transient_for
);
328 if (c
->desktop
!= DESKTOP_ALL
&& c
->desktop
!= screen_desktop
)
329 desk
= screen_desktop_names
[c
->desktop
];
331 /* use the transient's parent's title/icon if we don't have one */
332 if (p
!= c
&& !strcmp("", (c
->iconic
? c
->icon_title
: c
->title
)))
333 title
= g_strdup(p
->iconic
? p
->icon_title
: p
->title
);
336 title
= g_strdup(c
->iconic
? c
->icon_title
: c
->title
);
339 ret
= g_strdup_printf("%s [%s]", title
, desk
);
346 /* set this only if we're returning true and they asked for it */
347 if (ret
&& nametarget
) *nametarget
= p
;
351 static void popup_cycle(ObClient
*c
, gboolean show
,
352 gboolean all_desktops
, gboolean dock_windows
,
353 gboolean desktop_windows
)
355 gchar
*showtext
= NULL
;
356 ObClient
*showtarget
;
359 icon_popup_hide(focus_cycle_popup
);
363 /* do this stuff only when the dialog is first showing */
364 if (!focus_cycle_popup
->popup
->mapped
&&
365 !focus_cycle_popup
->popup
->delay_mapped
)
369 GList
*targets
= NULL
, *it
;
372 /* position the popup */
373 a
= screen_physical_area_monitor(0);
374 icon_popup_position(focus_cycle_popup
, CenterGravity
,
375 a
->x
+ a
->width
/ 2, a
->y
+ a
->height
/ 2);
376 icon_popup_height(focus_cycle_popup
, POPUP_HEIGHT
);
377 icon_popup_min_width(focus_cycle_popup
, POPUP_WIDTH
);
378 icon_popup_max_width(focus_cycle_popup
,
379 MAX(a
->width
/3, POPUP_WIDTH
));
382 /* make its width to be the width of all the possible titles */
384 /* build a list of all the valid focus targets */
385 for (it
= focus_order
; it
; it
= g_list_next(it
)) {
386 ObClient
*ft
= it
->data
;
387 if (valid_focus_target(ft
, all_desktops
, dock_windows
390 targets
= g_list_prepend(targets
, ft
);
394 /* make it null terminated so we can use g_strfreev */
395 names
= g_new(char*, n
+1);
396 for (it
= targets
, i
= 0; it
; it
= g_list_next(it
), ++i
) {
397 ObClient
*ft
= it
->data
, *t
;
398 names
[i
] = popup_get_name(ft
, &t
);
400 /* little optimization.. save this text and client, so we dont
401 have to get it again */
403 showtext
= g_strdup(names
[i
]);
409 icon_popup_text_width_to_strings(focus_cycle_popup
, names
, n
);
414 if (!showtext
) showtext
= popup_get_name(c
, &showtarget
);
415 icon_popup_show(focus_cycle_popup
, showtext
,
416 client_icon(showtarget
, 48, 48));
420 static void focus_cycle_destroy_notify(ObClient
*client
, gpointer data
)
422 /* end cycling if the target disappears. CurrentTime is fine, time won't
425 if (focus_cycle_target
== client
)
426 focus_cycle(TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
);
429 void focus_cycle_draw_indicator()
431 if (!focus_cycle_target
) {
432 XUnmapWindow(ob_display
, focus_indicator
.top
.win
);
433 XUnmapWindow(ob_display
, focus_indicator
.left
.win
);
434 XUnmapWindow(ob_display
, focus_indicator
.right
.win
);
435 XUnmapWindow(ob_display
, focus_indicator
.bottom
.win
);
437 /* kill enter events cause by this unmapping */
438 event_ignore_queued_enters();
441 if (focus_cycle_target)
442 frame_adjust_focus(focus_cycle_target->frame, FALSE);
443 frame_adjust_focus(focus_cycle_target->frame, TRUE);
448 wt
= wl
= wr
= wb
= FOCUS_INDICATOR_WIDTH
;
450 x
= focus_cycle_target
->frame
->area
.x
;
451 y
= focus_cycle_target
->frame
->area
.y
;
452 w
= focus_cycle_target
->frame
->area
.width
;
455 XMoveResizeWindow(ob_display
, focus_indicator
.top
.win
,
457 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
458 a_focus_indicator
->texture
[0].data
.lineart
.y1
= h
-1;
459 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
460 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
461 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
462 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
463 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
464 a_focus_indicator
->texture
[1].data
.lineart
.y2
= 0;
465 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
466 a_focus_indicator
->texture
[2].data
.lineart
.y1
= 0;
467 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
468 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
469 a_focus_indicator
->texture
[3].data
.lineart
.x1
= (wl
-1);
470 a_focus_indicator
->texture
[3].data
.lineart
.y1
= h
-1;
471 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
- wr
;
472 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
-1;
473 RrPaint(a_focus_indicator
, focus_indicator
.top
.win
,
476 x
= focus_cycle_target
->frame
->area
.x
;
477 y
= focus_cycle_target
->frame
->area
.y
;
479 h
= focus_cycle_target
->frame
->area
.height
;
481 XMoveResizeWindow(ob_display
, focus_indicator
.left
.win
,
483 a_focus_indicator
->texture
[0].data
.lineart
.x1
= w
-1;
484 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
485 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
486 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
487 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
488 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
489 a_focus_indicator
->texture
[1].data
.lineart
.x2
= 0;
490 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
491 a_focus_indicator
->texture
[2].data
.lineart
.x1
= 0;
492 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
493 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
494 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
495 a_focus_indicator
->texture
[3].data
.lineart
.x1
= w
-1;
496 a_focus_indicator
->texture
[3].data
.lineart
.y1
= wt
-1;
497 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
-1;
498 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
- wb
;
499 RrPaint(a_focus_indicator
, focus_indicator
.left
.win
,
502 x
= focus_cycle_target
->frame
->area
.x
+
503 focus_cycle_target
->frame
->area
.width
- wr
;
504 y
= focus_cycle_target
->frame
->area
.y
;
506 h
= focus_cycle_target
->frame
->area
.height
;
508 XMoveResizeWindow(ob_display
, focus_indicator
.right
.win
,
510 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
511 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
512 a_focus_indicator
->texture
[0].data
.lineart
.x2
= w
-1;
513 a_focus_indicator
->texture
[0].data
.lineart
.y2
= 0;
514 a_focus_indicator
->texture
[1].data
.lineart
.x1
= w
-1;
515 a_focus_indicator
->texture
[1].data
.lineart
.y1
= 0;
516 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
517 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
518 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
519 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
520 a_focus_indicator
->texture
[2].data
.lineart
.x2
= 0;
521 a_focus_indicator
->texture
[2].data
.lineart
.y2
= h
-1;
522 a_focus_indicator
->texture
[3].data
.lineart
.x1
= 0;
523 a_focus_indicator
->texture
[3].data
.lineart
.y1
= wt
-1;
524 a_focus_indicator
->texture
[3].data
.lineart
.x2
= 0;
525 a_focus_indicator
->texture
[3].data
.lineart
.y2
= h
- wb
;
526 RrPaint(a_focus_indicator
, focus_indicator
.right
.win
,
529 x
= focus_cycle_target
->frame
->area
.x
;
530 y
= focus_cycle_target
->frame
->area
.y
+
531 focus_cycle_target
->frame
->area
.height
- wb
;
532 w
= focus_cycle_target
->frame
->area
.width
;
535 XMoveResizeWindow(ob_display
, focus_indicator
.bottom
.win
,
537 a_focus_indicator
->texture
[0].data
.lineart
.x1
= 0;
538 a_focus_indicator
->texture
[0].data
.lineart
.y1
= 0;
539 a_focus_indicator
->texture
[0].data
.lineart
.x2
= 0;
540 a_focus_indicator
->texture
[0].data
.lineart
.y2
= h
-1;
541 a_focus_indicator
->texture
[1].data
.lineart
.x1
= 0;
542 a_focus_indicator
->texture
[1].data
.lineart
.y1
= h
-1;
543 a_focus_indicator
->texture
[1].data
.lineart
.x2
= w
-1;
544 a_focus_indicator
->texture
[1].data
.lineart
.y2
= h
-1;
545 a_focus_indicator
->texture
[2].data
.lineart
.x1
= w
-1;
546 a_focus_indicator
->texture
[2].data
.lineart
.y1
= h
-1;
547 a_focus_indicator
->texture
[2].data
.lineart
.x2
= w
-1;
548 a_focus_indicator
->texture
[2].data
.lineart
.y2
= 0;
549 a_focus_indicator
->texture
[3].data
.lineart
.x1
= wl
-1;
550 a_focus_indicator
->texture
[3].data
.lineart
.y1
= 0;
551 a_focus_indicator
->texture
[3].data
.lineart
.x2
= w
- wr
;
552 a_focus_indicator
->texture
[3].data
.lineart
.y2
= 0;
553 RrPaint(a_focus_indicator
, focus_indicator
.bottom
.win
,
556 XMapWindow(ob_display
, focus_indicator
.top
.win
);
557 XMapWindow(ob_display
, focus_indicator
.left
.win
);
558 XMapWindow(ob_display
, focus_indicator
.right
.win
);
559 XMapWindow(ob_display
, focus_indicator
.bottom
.win
);
563 static gboolean
has_valid_group_siblings_on_desktop(ObClient
*ft
,
564 gboolean all_desktops
)
569 if (!ft
->group
) return FALSE
;
571 for (it
= ft
->group
->members
; it
; it
= g_slist_next(it
)) {
572 ObClient
*c
= it
->data
;
573 /* check that it's not a helper window to avoid infinite recursion */
574 if (c
!= ft
&& !client_helper(c
) &&
575 valid_focus_target(c
, all_desktops
, FALSE
, FALSE
))
583 /*! @param allow_helpers This is used for calling itself recursively while
584 checking helper windows. */
585 static gboolean
valid_focus_target(ObClient
*ft
,
586 gboolean all_desktops
,
587 gboolean dock_windows
,
588 gboolean desktop_windows
)
592 /* it's on this desktop unless you want all desktops.
594 do this check first because it will usually filter out the most
596 ok
= (all_desktops
|| ft
->desktop
== screen_desktop
||
597 ft
->desktop
== DESKTOP_ALL
);
599 /* the window can receive focus somehow */
600 ok
= ok
&& (ft
->can_focus
|| ft
->focus_notify
);
602 /* it's the right type of window */
603 if (dock_windows
|| desktop_windows
)
604 ok
= ok
&& ((dock_windows
&& ft
->type
== OB_CLIENT_TYPE_DOCK
) ||
605 (desktop_windows
&& ft
->type
== OB_CLIENT_TYPE_DESKTOP
));
607 /* normal non-helper windows are valid targets */
609 ((client_normal(ft
) && !client_helper(ft
))
611 /* helper windows are valid targets it... */
612 (client_helper(ft
) &&
613 /* ...a window in its group already has focus ... */
614 ((focus_client
&& ft
->group
== focus_client
->group
) ||
615 /* ... or if there are no other windows in its group
616 that can be cycled to instead */
617 !has_valid_group_siblings_on_desktop(ft
, all_desktops
))));
619 /* it's not set to skip the taskbar (unless it is a type that would be
620 expected to set this hint */
621 ok
= ok
&& ((ft
->type
== OB_CLIENT_TYPE_DOCK
||
622 ft
->type
== OB_CLIENT_TYPE_DESKTOP
||
623 ft
->type
== OB_CLIENT_TYPE_TOOLBAR
||
624 ft
->type
== OB_CLIENT_TYPE_MENU
||
625 ft
->type
== OB_CLIENT_TYPE_UTILITY
) ||
628 /* it's not going to just send fous off somewhere else (modal window) */
629 ok
= ok
&& ft
== client_focus_target(ft
);
634 void focus_cycle(gboolean forward
, gboolean all_desktops
,
635 gboolean dock_windows
, gboolean desktop_windows
,
636 gboolean linear
, gboolean interactive
,
637 gboolean dialog
, gboolean done
, gboolean cancel
)
639 static ObClient
*first
= NULL
;
640 static ObClient
*t
= NULL
;
641 static GList
*order
= NULL
;
642 GList
*it
, *start
, *list
;
647 focus_cycle_target
= NULL
;
655 if (!first
) first
= focus_client
;
657 if (linear
) list
= client_list
;
658 else list
= focus_order
;
664 if (!focus_cycle_target
) focus_cycle_target
= focus_client
;
666 start
= it
= g_list_find(list
, focus_cycle_target
);
667 if (!start
) /* switched desktops or something? */
668 start
= it
= forward
? g_list_last(list
) : g_list_first(list
);
669 if (!start
) goto done_cycle
;
674 if (it
== NULL
) it
= g_list_first(list
);
677 if (it
== NULL
) it
= g_list_last(list
);
680 if (valid_focus_target(ft
, all_desktops
, dock_windows
,
684 if (ft
!= focus_cycle_target
) { /* prevents flicker */
685 focus_cycle_target
= ft
;
686 focus_cycle_draw_indicator();
688 /* same arguments as valid_focus_target */
689 popup_cycle(ft
, dialog
, all_desktops
, dock_windows
,
692 } else if (ft
!= focus_cycle_target
) {
693 focus_cycle_target
= ft
;
698 } while (it
!= start
);
701 if (done
&& focus_cycle_target
)
702 client_activate(focus_cycle_target
, FALSE
, TRUE
);
706 focus_cycle_target
= NULL
;
711 focus_cycle_draw_indicator();
712 popup_cycle(ft
, FALSE
, FALSE
, FALSE
, FALSE
);
718 /* this be mostly ripped from fvwm */
719 static ObClient
*focus_find_directional(ObClient
*c
, ObDirection dir
,
720 gboolean dock_windows
,
721 gboolean desktop_windows
)
723 gint my_cx
, my_cy
, his_cx
, his_cy
;
726 gint score
, best_score
;
727 ObClient
*best_client
, *cur
;
733 /* first, find the centre coords of the currently focused window */
734 my_cx
= c
->frame
->area
.x
+ c
->frame
->area
.width
/ 2;
735 my_cy
= c
->frame
->area
.y
+ c
->frame
->area
.height
/ 2;
740 for(it
= g_list_first(client_list
); it
; it
= g_list_next(it
)) {
743 /* the currently selected window isn't interesting */
746 if (cur
->type
== OB_CLIENT_TYPE_DOCK
&& !dock_windows
)
748 if (cur
->type
== OB_CLIENT_TYPE_DESKTOP
&& !desktop_windows
)
750 if (!client_normal(cur
) &&
751 cur
->type
!= OB_CLIENT_TYPE_DOCK
&&
752 cur
->type
!= OB_CLIENT_TYPE_DESKTOP
)
754 /* using c->desktop instead of screen_desktop doesn't work if the
755 * current window was omnipresent, hope this doesn't have any other
757 if(screen_desktop
!= cur
->desktop
&& cur
->desktop
!= DESKTOP_ALL
)
761 if(!(client_focus_target(cur
) == cur
&&
762 client_can_focus(cur
)))
765 /* find the centre coords of this window, from the
766 * currently focused window's point of view */
767 his_cx
= (cur
->frame
->area
.x
- my_cx
)
768 + cur
->frame
->area
.width
/ 2;
769 his_cy
= (cur
->frame
->area
.y
- my_cy
)
770 + cur
->frame
->area
.height
/ 2;
772 if(dir
== OB_DIRECTION_NORTHEAST
|| dir
== OB_DIRECTION_SOUTHEAST
||
773 dir
== OB_DIRECTION_SOUTHWEST
|| dir
== OB_DIRECTION_NORTHWEST
) {
775 /* Rotate the diagonals 45 degrees counterclockwise.
776 * To do this, multiply the matrix /+h +h\ with the
777 * vector (x y). \-h +h/
778 * h = sqrt(0.5). We can set h := 1 since absolute
779 * distance doesn't matter here. */
780 tx
= his_cx
+ his_cy
;
781 his_cy
= -his_cx
+ his_cy
;
786 case OB_DIRECTION_NORTH
:
787 case OB_DIRECTION_SOUTH
:
788 case OB_DIRECTION_NORTHEAST
:
789 case OB_DIRECTION_SOUTHWEST
:
790 offset
= (his_cx
< 0) ? -his_cx
: his_cx
;
791 distance
= ((dir
== OB_DIRECTION_NORTH
||
792 dir
== OB_DIRECTION_NORTHEAST
) ?
795 case OB_DIRECTION_EAST
:
796 case OB_DIRECTION_WEST
:
797 case OB_DIRECTION_SOUTHEAST
:
798 case OB_DIRECTION_NORTHWEST
:
799 offset
= (his_cy
< 0) ? -his_cy
: his_cy
;
800 distance
= ((dir
== OB_DIRECTION_WEST
||
801 dir
== OB_DIRECTION_NORTHWEST
) ?
806 /* the target must be in the requested direction */
810 /* Calculate score for this window. The smaller the better. */
811 score
= distance
+ offset
;
813 /* windows more than 45 degrees off the direction are
814 * heavily penalized and will only be chosen if nothing
815 * else within a million pixels */
816 if(offset
> distance
)
819 if(best_score
== -1 || score
< best_score
)
827 void focus_directional_cycle(ObDirection dir
, gboolean dock_windows
,
828 gboolean desktop_windows
, gboolean interactive
,
829 gboolean dialog
, gboolean done
, gboolean cancel
)
831 static ObClient
*first
= NULL
;
838 focus_cycle_target
= NULL
;
846 if (!first
) first
= focus_client
;
847 if (!focus_cycle_target
) focus_cycle_target
= focus_client
;
849 if (focus_cycle_target
)
850 ft
= focus_find_directional(focus_cycle_target
, dir
, dock_windows
,
855 for (it
= focus_order
; it
; it
= g_list_next(it
))
856 if (valid_focus_target(it
->data
, FALSE
, dock_windows
,
862 if (ft
!= focus_cycle_target
) {/* prevents flicker */
863 focus_cycle_target
= ft
;
864 focus_cycle_draw_indicator();
867 if (focus_cycle_target
) {
868 /* same arguments as valid_focus_target */
869 popup_cycle(focus_cycle_target
, dialog
, FALSE
, dock_windows
,
877 if (done
&& focus_cycle_target
)
878 client_activate(focus_cycle_target
, FALSE
, TRUE
);
881 focus_cycle_target
= NULL
;
883 focus_cycle_draw_indicator();
884 popup_cycle(ft
, FALSE
, FALSE
, FALSE
, FALSE
);
889 void focus_order_add_new(ObClient
*c
)
892 focus_order_to_top(c
);
894 g_assert(!g_list_find(focus_order
, c
));
895 /* if there are any iconic windows, put this above them in the order,
896 but if there are not, then put it under the currently focused one */
897 if (focus_order
&& ((ObClient
*)focus_order
->data
)->iconic
)
898 focus_order
= g_list_insert(focus_order
, c
, 0);
900 focus_order
= g_list_insert(focus_order
, c
, 1);
904 void focus_order_remove(ObClient
*c
)
906 focus_order
= g_list_remove(focus_order
, c
);
909 void focus_order_to_top(ObClient
*c
)
911 focus_order
= g_list_remove(focus_order
, c
);
913 focus_order
= g_list_prepend(focus_order
, c
);
917 /* insert before first iconic window */
918 for (it
= focus_order
;
919 it
&& !((ObClient
*)it
->data
)->iconic
; it
= g_list_next(it
));
920 focus_order
= g_list_insert_before(focus_order
, it
, c
);
924 void focus_order_to_bottom(ObClient
*c
)
926 focus_order
= g_list_remove(focus_order
, c
);
928 focus_order
= g_list_append(focus_order
, c
);
932 /* insert before first iconic window */
933 for (it
= focus_order
;
934 it
&& !((ObClient
*)it
->data
)->iconic
; it
= g_list_next(it
));
935 focus_order
= g_list_insert_before(focus_order
, it
, c
);
939 ObClient
*focus_order_find_first(guint desktop
)
942 for (it
= focus_order
; it
; it
= g_list_next(it
)) {
943 ObClient
*c
= it
->data
;
944 if (c
->desktop
== desktop
|| c
->desktop
== DESKTOP_ALL
)
950 static void focus_tried_hide_notify(ObClient
*client
, gpointer data
)
954 if (client
== focus_tried
) {
955 /* we were trying to focus this window but it's gone */
959 ob_debug_type(OB_DEBUG_FOCUS
, "Tried to focus window 0x%x and it "
960 "is being unmanaged:\n");
961 if (XCheckIfEvent(ob_display
, &ce
, event_look_for_focusin_client
,NULL
))
963 XPutBackEvent(ob_display
, &ce
);
964 ob_debug_type(OB_DEBUG_FOCUS
, " but another FocusIn is coming\n");
966 ob_debug_type(OB_DEBUG_FOCUS
, " so falling back focus again.\n");
967 focus_fallback(TRUE
);