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
, TRUE
, TRUE
, TRUE
);
100 ObClient
* focus_cycle(gboolean forward
, gboolean all_desktops
,
101 gboolean nonhilite_windows
,
102 gboolean dock_windows
, gboolean desktop_windows
,
103 gboolean linear
, gboolean interactive
,
104 gboolean showbar
, ObFocusCyclePopupMode mode
,
105 gboolean done
, gboolean cancel
)
107 static GList
*order
= NULL
;
108 GList
*it
, *start
, *list
;
110 ObClient
*ret
= NULL
;
114 focus_cycle_target
= NULL
;
122 if (linear
) list
= client_list
;
123 else list
= focus_order
;
130 if (focus_cycle_target
== NULL
) {
131 focus_cycle_linear
= linear
;
132 focus_cycle_iconic_windows
= TRUE
;
133 focus_cycle_all_desktops
= all_desktops
;
134 focus_cycle_nonhilite_windows
= nonhilite_windows
;
135 focus_cycle_dock_windows
= dock_windows
;
136 focus_cycle_desktop_windows
= desktop_windows
;
137 start
= it
= g_list_find(list
, focus_client
);
139 start
= it
= g_list_find(list
, focus_cycle_target
);
141 if (!start
) /* switched desktops or something? */
142 start
= it
= forward
? g_list_last(list
) : g_list_first(list
);
143 if (!start
) goto done_cycle
;
148 if (it
== NULL
) it
= g_list_first(list
);
151 if (it
== NULL
) it
= g_list_last(list
);
154 if (focus_cycle_valid(ft
)) {
156 if (ft
!= focus_cycle_target
) { /* prevents flicker */
157 focus_cycle_target
= ft
;
158 focus_cycle_type
= OB_CYCLE_NORMAL
;
159 focus_cycle_draw_indicator(showbar
? ft
: NULL
);
161 /* same arguments as focus_target_valid */
162 focus_cycle_popup_show(ft
, mode
, focus_cycle_linear
);
163 return focus_cycle_target
;
164 } else if (ft
!= focus_cycle_target
) {
165 focus_cycle_target
= ft
;
166 focus_cycle_type
= OB_CYCLE_NORMAL
;
171 } while (it
!= start
);
174 if (done
&& !cancel
) ret
= focus_cycle_target
;
176 focus_cycle_target
= NULL
;
177 focus_cycle_type
= OB_CYCLE_NONE
;
182 focus_cycle_draw_indicator(NULL
);
183 focus_cycle_popup_hide();
189 /* this be mostly ripped from fvwm */
190 static ObClient
*focus_find_directional(ObClient
*c
, ObDirection dir
,
191 gboolean dock_windows
,
192 gboolean desktop_windows
)
194 gint my_cx
, my_cy
, his_cx
, his_cy
;
197 gint score
, best_score
;
198 ObClient
*best_client
, *cur
;
204 /* first, find the centre coords of the currently focused window */
205 my_cx
= c
->frame
->area
.x
+ c
->frame
->area
.width
/ 2;
206 my_cy
= c
->frame
->area
.y
+ c
->frame
->area
.height
/ 2;
211 for (it
= g_list_first(client_list
); it
; it
= g_list_next(it
)) {
214 /* the currently selected window isn't interesting */
217 if (!focus_cycle_valid(it
->data
))
220 /* find the centre coords of this window, from the
221 * currently focused window's point of view */
222 his_cx
= (cur
->frame
->area
.x
- my_cx
)
223 + cur
->frame
->area
.width
/ 2;
224 his_cy
= (cur
->frame
->area
.y
- my_cy
)
225 + cur
->frame
->area
.height
/ 2;
227 if (dir
== OB_DIRECTION_NORTHEAST
|| dir
== OB_DIRECTION_SOUTHEAST
||
228 dir
== OB_DIRECTION_SOUTHWEST
|| dir
== OB_DIRECTION_NORTHWEST
)
231 /* Rotate the diagonals 45 degrees counterclockwise.
232 * To do this, multiply the matrix /+h +h\ with the
233 * vector (x y). \-h +h/
234 * h = sqrt(0.5). We can set h := 1 since absolute
235 * distance doesn't matter here. */
236 tx
= his_cx
+ his_cy
;
237 his_cy
= -his_cx
+ his_cy
;
242 case OB_DIRECTION_NORTH
:
243 case OB_DIRECTION_SOUTH
:
244 case OB_DIRECTION_NORTHEAST
:
245 case OB_DIRECTION_SOUTHWEST
:
246 offset
= (his_cx
< 0) ? -his_cx
: his_cx
;
247 distance
= ((dir
== OB_DIRECTION_NORTH
||
248 dir
== OB_DIRECTION_NORTHEAST
) ?
251 case OB_DIRECTION_EAST
:
252 case OB_DIRECTION_WEST
:
253 case OB_DIRECTION_SOUTHEAST
:
254 case OB_DIRECTION_NORTHWEST
:
255 offset
= (his_cy
< 0) ? -his_cy
: his_cy
;
256 distance
= ((dir
== OB_DIRECTION_WEST
||
257 dir
== OB_DIRECTION_NORTHWEST
) ?
262 /* the target must be in the requested direction */
266 /* Calculate score for this window. The smaller the better. */
267 score
= distance
+ offset
;
269 /* windows more than 45 degrees off the direction are
270 * heavily penalized and will only be chosen if nothing
271 * else within a million pixels */
272 if (offset
> distance
)
275 if (best_score
== -1 || score
< best_score
) {
284 ObClient
* focus_directional_cycle(ObDirection dir
, gboolean dock_windows
,
285 gboolean desktop_windows
,
286 gboolean interactive
,
287 gboolean showbar
, gboolean dialog
,
288 gboolean done
, gboolean cancel
)
290 static ObClient
*first
= NULL
;
292 ObClient
*ret
= NULL
;
295 focus_cycle_target
= NULL
;
297 } else if (done
&& interactive
)
303 if (focus_cycle_target
== NULL
) {
304 focus_cycle_linear
= FALSE
;
305 focus_cycle_iconic_windows
= FALSE
;
306 focus_cycle_all_desktops
= FALSE
;
307 focus_cycle_nonhilite_windows
= TRUE
;
308 focus_cycle_dock_windows
= dock_windows
;
309 focus_cycle_desktop_windows
= desktop_windows
;
312 if (!first
) first
= focus_client
;
314 if (focus_cycle_target
)
315 ft
= focus_find_directional(focus_cycle_target
, dir
, dock_windows
,
318 ft
= focus_find_directional(first
, dir
, dock_windows
, desktop_windows
);
322 for (it
= focus_order
; it
; it
= g_list_next(it
))
323 if (focus_cycle_valid(it
->data
)) {
329 if (ft
&& ft
!= focus_cycle_target
) {/* prevents flicker */
330 focus_cycle_target
= ft
;
331 focus_cycle_type
= OB_CYCLE_DIRECTIONAL
;
334 focus_cycle_draw_indicator(showbar
? ft
: NULL
);
336 if (focus_cycle_target
&& dialog
)
337 /* same arguments as focus_target_valid */
338 focus_cycle_popup_single_show(focus_cycle_target
);
339 return focus_cycle_target
;
342 if (done
&& !cancel
) ret
= focus_cycle_target
;
345 focus_cycle_target
= NULL
;
346 focus_cycle_type
= OB_CYCLE_NONE
;
348 focus_cycle_draw_indicator(NULL
);
349 focus_cycle_popup_single_hide();
354 gboolean
focus_cycle_valid(struct _ObClient
*client
)
356 return focus_valid_target(client
, screen_desktop
, TRUE
,
357 focus_cycle_iconic_windows
,
358 focus_cycle_all_desktops
,
359 focus_cycle_nonhilite_windows
,
360 focus_cycle_dock_windows
,
361 focus_cycle_desktop_windows
,