5 #include "framerender.h"
20 ObClient
*focus_client
;
21 GList
**focus_order
; /* these lists are created when screen_startup
22 sets the number of desktops */
23 ObClient
*focus_cycle_target
;
25 static Popup
*focus_cycle_popup
;
27 void focus_startup(gboolean reconfig
)
29 focus_cycle_popup
= popup_new(TRUE
);
32 /* start with nothing focused */
33 focus_set_client(NULL
);
36 void focus_shutdown(gboolean reconfig
)
40 popup_free(focus_cycle_popup
);
43 for (i
= 0; i
< screen_num_desktops
; ++i
)
44 g_list_free(focus_order
[i
]);
47 /* reset focus to root */
48 XSetInputFocus(ob_display
, PointerRoot
, RevertToPointerRoot
,
53 static void push_to_top(ObClient
*client
)
57 desktop
= client
->desktop
;
58 if (desktop
== DESKTOP_ALL
) desktop
= screen_desktop
;
59 focus_order
[desktop
] = g_list_remove(focus_order
[desktop
], client
);
60 focus_order
[desktop
] = g_list_prepend(focus_order
[desktop
], client
);
63 void focus_set_client(ObClient
*client
)
69 ob_debug("focus_set_client 0x%lx\n", client
? client
->window
: 0);
72 /* uninstall the old colormap, and install the new one */
73 screen_install_colormap(focus_client
, FALSE
);
74 screen_install_colormap(client
, TRUE
);
77 /* when nothing will be focused, send focus to the backup target */
78 XSetInputFocus(ob_display
, screen_support_win
, RevertToPointerRoot
,
80 XSync(ob_display
, FALSE
);
83 /* in the middle of cycling..? kill it. */
84 if (focus_cycle_target
)
85 focus_cycle(TRUE
, TRUE
, TRUE
, TRUE
, TRUE
);
88 focus_client
= client
;
90 /* move to the top of the list */
94 /* set the NET_ACTIVE_WINDOW hint, but preserve it on shutdown */
95 if (ob_state() != OB_STATE_EXITING
) {
96 active
= client
? client
->window
: None
;
97 PROP_SET32(RootWindow(ob_display
, ob_screen
),
98 net_active_window
, window
, active
);
102 static gboolean
focus_under_pointer()
107 if (screen_pointer_pos(&x
, &y
)) {
108 for (it
= stacking_list
; it
!= NULL
; it
= it
->next
) {
109 if (WINDOW_IS_CLIENT(it
->data
)) {
110 ObClient
*c
= WINDOW_AS_CLIENT(it
->data
);
111 if (c
->desktop
== screen_desktop
&&
112 RECT_CONTAINS(c
->frame
->area
, x
, y
))
117 g_assert(WINDOW_IS_CLIENT(it
->data
));
118 return client_normal(it
->data
) && client_focus(it
->data
);
124 /* finds the first transient that isn't 'skip' and ensure's that client_normal
126 static ObClient
*find_transient_recursive(ObClient
*c
, ObClient
*top
, ObClient
*skip
)
131 for (it
= c
->transients
; it
; it
= it
->next
) {
132 if (it
->data
== top
) return NULL
;
133 ret
= find_transient_recursive(it
->data
, top
, skip
);
134 if (ret
&& ret
!= skip
&& client_normal(ret
)) return ret
;
135 if (it
->data
!= skip
&& client_normal(it
->data
)) return it
->data
;
140 static gboolean
focus_fallback_transient(ObClient
*top
, ObClient
*old
)
142 ObClient
*target
= find_transient_recursive(top
, top
, old
);
144 /* make sure client_normal is true always */
145 if (!client_normal(top
))
147 target
= top
; /* no transient, keep the top */
149 return client_focus(target
);
152 void focus_fallback(ObFocusFallbackType type
)
155 ObClient
*old
= NULL
;
159 /* unfocus any focused clients.. they can be focused by Pointer events
160 and such, and then when I try focus them, I won't get a FocusIn event
163 focus_set_client(NULL
);
165 if (!(type
== OB_FOCUS_FALLBACK_DESKTOP
?
166 config_focus_last_on_desktop
: config_focus_last
)) {
167 if (config_focus_follow
) focus_under_pointer();
171 if (type
== OB_FOCUS_FALLBACK_UNFOCUSING
&& old
) {
172 /* try for transient relations */
173 if (old
->transient_for
) {
174 if (old
->transient_for
== OB_TRAN_GROUP
) {
175 for (it
= focus_order
[screen_desktop
]; it
; it
= it
->next
) {
178 for (sit
= old
->group
->members
; sit
; sit
= sit
->next
)
179 if (sit
->data
== it
->data
)
180 if (focus_fallback_transient(sit
->data
, old
))
184 if (focus_fallback_transient(old
->transient_for
, old
))
190 /* try for group relations */
194 for (it
= focus_order
[screen_desktop
]; it
!= NULL
; it
= it
->next
)
195 for (sit
= old
->group
->members
; sit
; sit
= sit
->next
)
196 if (sit
->data
== it
->data
)
197 if (sit
->data
!= old
&& client_normal(sit
->data
))
198 if (client_can_focus(sit
->data
)) {
199 gboolean r
= client_focus(sit
->data
);
207 for (it
= focus_order
[screen_desktop
]; it
!= NULL
; it
= it
->next
)
208 if (type
!= OB_FOCUS_FALLBACK_UNFOCUSING
|| it
->data
!= old
)
209 if (client_normal(it
->data
) &&
210 /* dont fall back to 'anonymous' fullscreen windows. theres no
211 checks for this is in transient/group fallbacks, so they can
212 be fallback targets there. */
213 !((ObClient
*)it
->data
)->fullscreen
&&
214 client_can_focus(it
->data
)) {
215 gboolean r
= client_focus(it
->data
);
220 /* nothing to focus, and already set it to none above */
223 static void popup_cycle(ObClient
*c
, gboolean show
)
226 popup_hide(focus_cycle_popup
);
232 a
= screen_physical_area_monitor(0);
233 popup_position(focus_cycle_popup
, CenterGravity
,
234 a
->x
+ a
->width
/ 2, a
->y
+ a
->height
/ 2);
235 /* popup_size(focus_cycle_popup, a->height/2, a->height/16);
236 popup_show(focus_cycle_popup, c->title,
237 client_icon(c, a->height/16, a->height/16));
239 /* XXX the size and the font extents need to be related on some level
241 popup_size(focus_cycle_popup
, POPUP_WIDTH
, POPUP_HEIGHT
);
243 /* use the transient's parent's title/icon */
244 while (p
->transient_for
&& p
->transient_for
!= OB_TRAN_GROUP
)
245 p
= p
->transient_for
;
250 title
= g_strconcat((c
->iconic
? c
->icon_title
: c
->title
),
252 (p
->iconic
? p
->icon_title
: p
->title
),
255 popup_show(focus_cycle_popup
,
256 (title
? title
: (c
->iconic
? c
->icon_title
: c
->title
)),
257 client_icon(p
, 48, 48));
262 void focus_cycle(gboolean forward
, gboolean linear
,
263 gboolean dialog
, gboolean done
, gboolean cancel
)
265 static ObClient
*first
= NULL
;
266 static ObClient
*t
= NULL
;
267 static GList
*order
= NULL
;
268 GList
*it
, *start
, *list
;
272 if (focus_cycle_target
)
273 frame_adjust_focus(focus_cycle_target
->frame
, FALSE
);
275 frame_adjust_focus(focus_client
->frame
, TRUE
);
276 focus_cycle_target
= NULL
;
278 } else if (done
&& dialog
) {
282 if (!first
) first
= focus_client
;
283 if (!focus_cycle_target
) focus_cycle_target
= focus_client
;
285 if (linear
) list
= client_list
;
286 else list
= focus_order
[screen_desktop
];
288 start
= it
= g_list_find(list
, focus_cycle_target
);
289 if (!start
) /* switched desktops or something? */
290 start
= it
= forward
? g_list_last(list
) : g_list_first(list
);
291 if (!start
) goto done_cycle
;
296 if (it
== NULL
) it
= g_list_first(list
);
299 if (it
== NULL
) it
= g_list_last(list
);
301 /*ft = client_focus_target(it->data);*/
303 /* we don't use client_can_focus here, because that doesn't let you
304 focus an iconic window, but we want to be able to, so we just check
305 if the focus flags on the window allow it, and its on the current
307 if (ft
->transients
== NULL
&& client_normal(ft
) &&
308 ((ft
->can_focus
|| ft
->focus_notify
) &&
310 (ft
->desktop
== screen_desktop
|| ft
->desktop
== DESKTOP_ALL
))) {
311 if (ft
!= focus_cycle_target
) { /* prevents flicker */
312 if (focus_cycle_target
)
313 frame_adjust_focus(focus_cycle_target
->frame
, FALSE
);
314 focus_cycle_target
= ft
;
315 frame_adjust_focus(focus_cycle_target
->frame
, TRUE
);
317 popup_cycle(ft
, dialog
);
320 } while (it
!= start
);
323 if (done
&& focus_cycle_target
)
324 client_activate(focus_cycle_target
, FALSE
);
328 focus_cycle_target
= NULL
;
332 popup_cycle(ft
, FALSE
);
337 void focus_directional_cycle(ObDirection dir
,
338 gboolean dialog
, gboolean done
, gboolean cancel
)
340 static ObClient
*first
= NULL
;
344 if (focus_cycle_target
)
345 frame_adjust_focus(focus_cycle_target
->frame
, FALSE
);
347 frame_adjust_focus(focus_client
->frame
, TRUE
);
348 focus_cycle_target
= NULL
;
350 } else if (done
&& dialog
) {
354 if (!first
) first
= focus_client
;
355 if (!focus_cycle_target
) focus_cycle_target
= focus_client
;
357 if ((ft
= client_find_directional(focus_cycle_target
, dir
))) {
358 if (ft
!= focus_cycle_target
) {/* prevents flicker */
359 if (focus_cycle_target
)
360 frame_adjust_focus(focus_cycle_target
->frame
, FALSE
);
361 focus_cycle_target
= ft
;
362 frame_adjust_focus(focus_cycle_target
->frame
, TRUE
);
364 popup_cycle(ft
, dialog
);
370 if (done
&& focus_cycle_target
)
371 client_activate(focus_cycle_target
, FALSE
);
374 focus_cycle_target
= NULL
;
376 popup_cycle(ft
, FALSE
);
381 void focus_order_add_new(ObClient
*c
)
386 focus_order_to_top(c
);
389 if (d
== DESKTOP_ALL
) {
390 for (i
= 0; i
< screen_num_desktops
; ++i
) {
391 if (focus_order
[i
] && ((ObClient
*)focus_order
[i
]->data
)->iconic
)
392 focus_order
[i
] = g_list_insert(focus_order
[i
], c
, 0);
394 focus_order
[i
] = g_list_insert(focus_order
[i
], c
, 1);
397 if (focus_order
[d
] && ((ObClient
*)focus_order
[d
]->data
)->iconic
)
398 focus_order
[d
] = g_list_insert(focus_order
[d
], c
, 0);
400 focus_order
[d
] = g_list_insert(focus_order
[d
], c
, 1);
404 void focus_order_remove(ObClient
*c
)
409 if (d
== DESKTOP_ALL
) {
410 for (i
= 0; i
< screen_num_desktops
; ++i
)
411 focus_order
[i
] = g_list_remove(focus_order
[i
], c
);
413 focus_order
[d
] = g_list_remove(focus_order
[d
], c
);
416 static void to_top(ObClient
*c
, guint d
)
418 focus_order
[d
] = g_list_remove(focus_order
[d
], c
);
420 focus_order
[d
] = g_list_prepend(focus_order
[d
], c
);
424 /* insert before first iconic window */
425 for (it
= focus_order
[d
];
426 it
&& !((ObClient
*)it
->data
)->iconic
; it
= it
->next
);
427 g_list_insert_before(focus_order
[d
], it
, c
);
431 void focus_order_to_top(ObClient
*c
)
436 if (d
== DESKTOP_ALL
) {
437 for (i
= 0; i
< screen_num_desktops
; ++i
)
443 static void to_bottom(ObClient
*c
, guint d
)
445 focus_order
[d
] = g_list_remove(focus_order
[d
], c
);
447 focus_order
[d
] = g_list_append(focus_order
[d
], c
);
451 /* insert before first iconic window */
452 for (it
= focus_order
[d
];
453 it
&& !((ObClient
*)it
->data
)->iconic
; it
= it
->next
);
454 g_list_insert_before(focus_order
[d
], it
, c
);
458 void focus_order_to_bottom(ObClient
*c
)
463 if (d
== DESKTOP_ALL
) {
464 for (i
= 0; i
< screen_num_desktops
; ++i
)