1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 focus_cycle.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.
20 #include "focus_cycle.h"
21 #include "focus_cycle_indicator.h"
38 ObClient
*focus_cycle_target
= NULL
;
39 static ObCycleType focus_cycle_type
= OB_CYCLE_NONE
;
40 static gboolean focus_cycle_linear
;
41 static gboolean focus_cycle_iconic_windows
;
42 static gboolean focus_cycle_all_desktops
;
43 static gboolean focus_cycle_nonhilite_windows
;
44 static gboolean focus_cycle_dock_windows
;
45 static gboolean focus_cycle_desktop_windows
;
47 static ObClient
*focus_find_directional(ObClient
*c
,
49 gboolean dock_windows
,
50 gboolean desktop_windows
);
52 void focus_cycle_startup(gboolean reconfig
)
57 void focus_cycle_shutdown(gboolean reconfig
)
62 void focus_cycle_addremove(ObClient
*c
, gboolean redraw
)
64 if (!focus_cycle_type
)
67 if (focus_cycle_type
== OB_CYCLE_DIRECTIONAL
) {
68 if (c
&& focus_cycle_target
== c
) {
69 focus_directional_cycle(0, TRUE
, TRUE
, TRUE
, TRUE
,
73 else if (c
&& redraw
) {
76 v
= focus_cycle_valid(c
);
77 s
= focus_cycle_popup_is_showing(c
);
80 focus_cycle_reorder();
83 focus_cycle_reorder();
87 void focus_cycle_reorder()
89 if (focus_cycle_type
== OB_CYCLE_NORMAL
) {
90 focus_cycle_target
= focus_cycle_popup_refresh(focus_cycle_target
,
93 focus_cycle_update_indicator(focus_cycle_target
);
94 if (!focus_cycle_target
)
95 focus_cycle(TRUE
, TRUE
, TRUE
, TRUE
, TRUE
, TRUE
,
96 TRUE
, TRUE
, OB_FOCUS_CYCLE_POPUP_MODE_NONE
,
101 ObClient
* focus_cycle(gboolean forward
, gboolean all_desktops
,
102 gboolean nonhilite_windows
,
103 gboolean dock_windows
, gboolean desktop_windows
,
104 gboolean linear
, gboolean interactive
,
105 gboolean showbar
, ObFocusCyclePopupMode mode
,
106 gboolean done
, gboolean cancel
)
108 static GList
*order
= NULL
;
109 GList
*it
, *start
, *list
;
111 ObClient
*ret
= NULL
;
115 focus_cycle_target
= NULL
;
123 if (linear
) list
= client_list
;
124 else list
= focus_order
;
131 if (focus_cycle_target
== NULL
) {
132 focus_cycle_linear
= linear
;
133 focus_cycle_iconic_windows
= TRUE
;
134 focus_cycle_all_desktops
= all_desktops
;
135 focus_cycle_nonhilite_windows
= nonhilite_windows
;
136 focus_cycle_dock_windows
= dock_windows
;
137 focus_cycle_desktop_windows
= desktop_windows
;
138 start
= it
= g_list_find(list
, focus_client
);
140 start
= it
= g_list_find(list
, focus_cycle_target
);
142 if (!start
) /* switched desktops or something? */
143 start
= it
= forward
? g_list_last(list
) : g_list_first(list
);
144 if (!start
) goto done_cycle
;
149 if (it
== NULL
) it
= g_list_first(list
);
152 if (it
== NULL
) it
= g_list_last(list
);
155 if (focus_cycle_valid(ft
)) {
157 if (ft
!= focus_cycle_target
) { /* prevents flicker */
158 focus_cycle_target
= ft
;
159 focus_cycle_type
= OB_CYCLE_NORMAL
;
160 focus_cycle_draw_indicator(showbar
? ft
: NULL
);
162 /* same arguments as focus_target_valid */
163 focus_cycle_popup_show(ft
, mode
, focus_cycle_linear
);
164 return focus_cycle_target
;
165 } else if (ft
!= focus_cycle_target
) {
166 focus_cycle_target
= ft
;
167 focus_cycle_type
= OB_CYCLE_NORMAL
;
172 } while (it
!= start
);
175 if (done
&& !cancel
) ret
= focus_cycle_target
;
177 focus_cycle_target
= NULL
;
178 focus_cycle_type
= OB_CYCLE_NONE
;
183 focus_cycle_draw_indicator(NULL
);
184 focus_cycle_popup_hide();
190 /* this be mostly ripped from fvwm */
191 static ObClient
*focus_find_directional(ObClient
*c
, ObDirection dir
,
192 gboolean dock_windows
,
193 gboolean desktop_windows
)
195 gint my_cx
, my_cy
, his_cx
, his_cy
;
198 gint score
, best_score
;
199 ObClient
*best_client
, *cur
;
205 /* first, find the centre coords of the currently focused window */
206 my_cx
= c
->frame
->area
.x
+ c
->frame
->area
.width
/ 2;
207 my_cy
= c
->frame
->area
.y
+ c
->frame
->area
.height
/ 2;
212 for (it
= g_list_first(client_list
); it
; it
= g_list_next(it
)) {
215 /* the currently selected window isn't interesting */
218 if (!focus_cycle_valid(it
->data
))
221 /* find the centre coords of this window, from the
222 * currently focused window's point of view */
223 his_cx
= (cur
->frame
->area
.x
- my_cx
)
224 + cur
->frame
->area
.width
/ 2;
225 his_cy
= (cur
->frame
->area
.y
- my_cy
)
226 + cur
->frame
->area
.height
/ 2;
228 if (dir
== OB_DIRECTION_NORTHEAST
|| dir
== OB_DIRECTION_SOUTHEAST
||
229 dir
== OB_DIRECTION_SOUTHWEST
|| dir
== OB_DIRECTION_NORTHWEST
)
232 /* Rotate the diagonals 45 degrees counterclockwise.
233 * To do this, multiply the matrix /+h +h\ with the
234 * vector (x y). \-h +h/
235 * h = sqrt(0.5). We can set h := 1 since absolute
236 * distance doesn't matter here. */
237 tx
= his_cx
+ his_cy
;
238 his_cy
= -his_cx
+ his_cy
;
243 case OB_DIRECTION_NORTH
:
244 case OB_DIRECTION_SOUTH
:
245 case OB_DIRECTION_NORTHEAST
:
246 case OB_DIRECTION_SOUTHWEST
:
247 offset
= (his_cx
< 0) ? -his_cx
: his_cx
;
248 distance
= ((dir
== OB_DIRECTION_NORTH
||
249 dir
== OB_DIRECTION_NORTHEAST
) ?
252 case OB_DIRECTION_EAST
:
253 case OB_DIRECTION_WEST
:
254 case OB_DIRECTION_SOUTHEAST
:
255 case OB_DIRECTION_NORTHWEST
:
256 offset
= (his_cy
< 0) ? -his_cy
: his_cy
;
257 distance
= ((dir
== OB_DIRECTION_WEST
||
258 dir
== OB_DIRECTION_NORTHWEST
) ?
263 /* the target must be in the requested direction */
267 /* Calculate score for this window. The smaller the better. */
268 score
= distance
+ offset
;
270 /* windows more than 45 degrees off the direction are
271 * heavily penalized and will only be chosen if nothing
272 * else within a million pixels */
273 if (offset
> distance
)
276 if (best_score
== -1 || score
< best_score
) {
285 ObClient
* focus_directional_cycle(ObDirection dir
, gboolean dock_windows
,
286 gboolean desktop_windows
,
287 gboolean interactive
,
288 gboolean showbar
, gboolean dialog
,
289 gboolean done
, gboolean cancel
)
291 static ObClient
*first
= NULL
;
293 ObClient
*ret
= NULL
;
296 focus_cycle_target
= NULL
;
298 } else if (done
&& interactive
)
304 if (focus_cycle_target
== NULL
) {
305 focus_cycle_linear
= FALSE
;
306 focus_cycle_iconic_windows
= FALSE
;
307 focus_cycle_all_desktops
= FALSE
;
308 focus_cycle_nonhilite_windows
= TRUE
;
309 focus_cycle_dock_windows
= dock_windows
;
310 focus_cycle_desktop_windows
= desktop_windows
;
313 if (!first
) first
= focus_client
;
315 if (focus_cycle_target
)
316 ft
= focus_find_directional(focus_cycle_target
, dir
, dock_windows
,
319 ft
= focus_find_directional(first
, dir
, dock_windows
, desktop_windows
);
323 for (it
= focus_order
; it
; it
= g_list_next(it
))
324 if (focus_cycle_valid(it
->data
)) {
330 if (ft
&& ft
!= focus_cycle_target
) {/* prevents flicker */
331 focus_cycle_target
= ft
;
332 focus_cycle_type
= OB_CYCLE_DIRECTIONAL
;
335 focus_cycle_draw_indicator(showbar
? ft
: NULL
);
337 if (focus_cycle_target
&& dialog
)
338 /* same arguments as focus_target_valid */
339 focus_cycle_popup_single_show(focus_cycle_target
);
340 return focus_cycle_target
;
343 if (done
&& !cancel
) ret
= focus_cycle_target
;
346 focus_cycle_target
= NULL
;
347 focus_cycle_type
= OB_CYCLE_NONE
;
349 focus_cycle_draw_indicator(NULL
);
350 focus_cycle_popup_single_hide();
355 gboolean
focus_cycle_valid(struct _ObClient
*client
)
357 return focus_valid_target(client
, screen_desktop
, TRUE
,
358 focus_cycle_iconic_windows
,
359 focus_cycle_all_desktops
,
360 focus_cycle_nonhilite_windows
,
361 focus_cycle_dock_windows
,
362 focus_cycle_desktop_windows
,