]> Dogcows Code - chaz/openbox/blob - openbox/place.c
more clear code?
[chaz/openbox] / openbox / place.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 place.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
6
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.
11
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.
16
17 See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "client.h"
21 #include "group.h"
22 #include "screen.h"
23 #include "frame.h"
24 #include "focus.h"
25 #include "config.h"
26 #include "dock.h"
27 #include "debug.h"
28
29 extern ObDock *dock;
30
31 static void add_choice(guint *choice, guint mychoice)
32 {
33 guint i;
34 for (i = 0; i < screen_num_monitors; ++i) {
35 if (choice[i] == mychoice)
36 return;
37 else if (choice[i] == screen_num_monitors) {
38 choice[i] = mychoice;
39 return;
40 }
41 }
42 }
43
44 static Rect *pick_pointer_head(ObClient *c)
45 {
46 guint i;
47 gint px, py;
48
49 if (screen_pointer_pos(&px, &py)) {
50 for (i = 0; i < screen_num_monitors; ++i) {
51 Rect *monitor = screen_physical_area_monitor(i);
52 gboolean contain = RECT_CONTAINS(*monitor, px, py);
53 g_free(monitor);
54 if (contain)
55 return screen_area(c->desktop, i, NULL);
56 }
57 g_assert_not_reached();
58 } else
59 return NULL;
60 }
61
62 /*! Pick a monitor to place a window on. */
63 static Rect **pick_head(ObClient *c)
64 {
65 Rect **area;
66 guint *choice;
67 guint i;
68 gint px, py;
69 ObClient *p;
70
71 area = g_new(Rect*, screen_num_monitors);
72 choice = g_new(guint, screen_num_monitors);
73 for (i = 0; i < screen_num_monitors; ++i)
74 choice[i] = screen_num_monitors; /* make them all invalid to start */
75
76 /* try direct parent first */
77 if ((p = client_direct_parent(c))) {
78 add_choice(choice, client_monitor(p));
79 ob_debug("placement adding choice %d for parent\n",
80 client_monitor(p));
81 }
82
83 /* more than one window in its group (more than just this window) */
84 if (client_has_group_siblings(c)) {
85 GSList *it;
86
87 /* try on the client's desktop */
88 for (it = c->group->members; it; it = g_slist_next(it)) {
89 ObClient *itc = it->data;
90 if (itc != c &&
91 (itc->desktop == c->desktop ||
92 itc->desktop == DESKTOP_ALL || c->desktop == DESKTOP_ALL))
93 {
94 add_choice(choice, client_monitor(it->data));
95 ob_debug("placement adding choice %d for group sibling\n",
96 client_monitor(it->data));
97 }
98 }
99
100 /* try on all desktops */
101 for (it = c->group->members; it; it = g_slist_next(it)) {
102 ObClient *itc = it->data;
103 if (itc != c) {
104 add_choice(choice, client_monitor(it->data));
105 ob_debug("placement adding choice %d for group sibling on "
106 "another desktop\n", client_monitor(it->data));
107 }
108 }
109 }
110
111 if (focus_client) {
112 add_choice(choice, client_monitor(focus_client));
113 ob_debug("placement adding choice %d for focused window\n",
114 client_monitor(focus_client));
115 }
116
117 screen_pointer_pos(&px, &py);
118
119 for (i = 0; i < screen_num_monitors; i++) {
120 Rect *monitor = screen_physical_area_monitor(i);
121 gboolean contain = RECT_CONTAINS(*monitor, px, py);
122 g_free(monitor);
123 if (contain) {
124 add_choice(choice, i);
125 ob_debug("placement adding choice %d for mouse pointer\n", i);
126 break;
127 }
128 }
129
130 /* add any leftover choices */
131 for (i = 0; i < screen_num_monitors; ++i)
132 add_choice(choice, i);
133
134 for (i = 0; i < screen_num_monitors; ++i)
135 area[i] = screen_area(c->desktop, choice[i], NULL);
136
137 g_free(choice);
138
139 return area;
140 }
141
142 static gboolean place_random(ObClient *client, gint *x, gint *y)
143 {
144 gint l, r, t, b;
145 Rect **areas;
146 guint i;
147
148 areas = pick_head(client);
149 i = g_random_int_range(0, screen_num_monitors);
150
151 l = areas[i]->x;
152 t = areas[i]->y;
153 r = areas[i]->x + areas[i]->width - client->frame->area.width;
154 b = areas[i]->y + areas[i]->height - client->frame->area.height;
155
156 if (r > l) *x = g_random_int_range(l, r + 1);
157 else *x = areas[i]->x;
158 if (b > t) *y = g_random_int_range(t, b + 1);
159 else *y = areas[i]->y;
160
161 for (i = 0; i < screen_num_monitors; ++i)
162 g_free(areas[i]);
163 g_free(areas);
164
165 return TRUE;
166 }
167
168 static GSList* area_add(GSList *list, Rect *a)
169 {
170 Rect *r = g_new(Rect, 1);
171 *r = *a;
172 return g_slist_prepend(list, r);
173 }
174
175 static GSList* area_remove(GSList *list, Rect *a)
176 {
177 GSList *sit;
178 GSList *result = NULL;
179
180 for (sit = list; sit; sit = g_slist_next(sit)) {
181 Rect *r = sit->data;
182
183 if (!RECT_INTERSECTS_RECT(*r, *a)) {
184 result = g_slist_prepend(result, r);
185 /* dont free r, it's moved to the result list */
186 } else {
187 Rect isect, extra;
188
189 /* Use an intersection of a and r to determine the space
190 around r that we can use.
191
192 NOTE: the spaces calculated can overlap.
193 */
194
195 RECT_SET_INTERSECTION(isect, *r, *a);
196
197 if (RECT_LEFT(isect) > RECT_LEFT(*r)) {
198 RECT_SET(extra, r->x, r->y,
199 RECT_LEFT(isect) - r->x, r->height);
200 result = area_add(result, &extra);
201 }
202
203 if (RECT_TOP(isect) > RECT_TOP(*r)) {
204 RECT_SET(extra, r->x, r->y,
205 r->width, RECT_TOP(isect) - r->y + 1);
206 result = area_add(result, &extra);
207 }
208
209 if (RECT_RIGHT(isect) < RECT_RIGHT(*r)) {
210 RECT_SET(extra, RECT_RIGHT(isect) + 1, r->y,
211 RECT_RIGHT(*r) - RECT_RIGHT(isect), r->height);
212 result = area_add(result, &extra);
213 }
214
215 if (RECT_BOTTOM(isect) < RECT_BOTTOM(*r)) {
216 RECT_SET(extra, r->x, RECT_BOTTOM(isect) + 1,
217 r->width, RECT_BOTTOM(*r) - RECT_BOTTOM(isect));
218 result = area_add(result, &extra);
219 }
220
221 /* 'r' is not being added to the result list, so free it */
222 g_free(r);
223 }
224 }
225 g_slist_free(list);
226 return result;
227 }
228
229 enum {
230 IGNORE_FULLSCREEN = 1,
231 IGNORE_MAXIMIZED = 2,
232 IGNORE_MENUTOOL = 3,
233 /*IGNORE_SHADED = 3,*/
234 IGNORE_NONGROUP = 4,
235 IGNORE_BELOW = 5,
236 /*IGNORE_NONFOCUS = 1 << 5,*/
237 IGNORE_DOCK = 6,
238 IGNORE_END = 7
239 };
240
241 static gboolean place_nooverlap(ObClient *c, gint *x, gint *y)
242 {
243 Rect **areas;
244 gint ignore;
245 gboolean ret;
246 gint maxsize;
247 GSList *spaces = NULL, *sit, *maxit;
248 guint i;
249
250 areas = pick_head(c);
251 ret = FALSE;
252 maxsize = 0;
253 maxit = NULL;
254
255 /* try ignoring different things to find empty space */
256 for (ignore = 0; ignore < IGNORE_END && !ret; ignore++) {
257 guint i;
258
259 /* try all monitors in order of preference */
260 for (i = 0; i < screen_num_monitors && !ret; ++i) {
261 GList *it;
262
263 /* add the whole monitor */
264 spaces = area_add(spaces, areas[i]);
265
266 /* go thru all the windows */
267 for (it = client_list; it; it = g_list_next(it)) {
268 ObClient *test = it->data;
269
270 /* should we ignore this client? */
271 if (screen_showing_desktop) continue;
272 if (c == test) continue;
273 if (test->iconic) continue;
274 if (c->desktop != DESKTOP_ALL) {
275 if (test->desktop != c->desktop &&
276 test->desktop != DESKTOP_ALL) continue;
277 } else {
278 if (test->desktop != screen_desktop &&
279 test->desktop != DESKTOP_ALL) continue;
280 }
281 if (test->type == OB_CLIENT_TYPE_SPLASH ||
282 test->type == OB_CLIENT_TYPE_DESKTOP) continue;
283
284
285 if ((ignore >= IGNORE_FULLSCREEN) &&
286 test->fullscreen) continue;
287 if ((ignore >= IGNORE_MAXIMIZED) &&
288 test->max_horz && test->max_vert) continue;
289 if ((ignore >= IGNORE_MENUTOOL) &&
290 (test->type == OB_CLIENT_TYPE_MENU ||
291 test->type == OB_CLIENT_TYPE_TOOLBAR) &&
292 client_has_parent(c)) continue;
293 /*
294 if ((ignore >= IGNORE_SHADED) &&
295 test->shaded) continue;
296 */
297 if ((ignore >= IGNORE_NONGROUP) &&
298 client_has_group_siblings(c) &&
299 test->group != c->group) continue;
300 if ((ignore >= IGNORE_BELOW) &&
301 test->layer < c->layer) continue;
302 /*
303 if ((ignore >= IGNORE_NONFOCUS) &&
304 focus_client != test) continue;
305 */
306 /* don't ignore this window, so remove it from the available
307 area */
308 spaces = area_remove(spaces, &test->frame->area);
309 }
310
311 if (ignore < IGNORE_DOCK) {
312 Rect a;
313 dock_get_area(&a);
314 spaces = area_remove(spaces, &a);
315 }
316
317 for (sit = spaces; sit; sit = g_slist_next(sit)) {
318 Rect *r = sit->data;
319
320 if (r->width >= c->frame->area.width &&
321 r->height >= c->frame->area.height &&
322 r->width * r->height > maxsize)
323 {
324 maxsize = r->width * r->height;
325 maxit = sit;
326 }
327 }
328
329 if (maxit) {
330 Rect *r = maxit->data;
331
332 /* center it in the area */
333 *x = r->x;
334 *y = r->y;
335 if (config_place_center) {
336 *x += (r->width - c->frame->area.width) / 2;
337 *y += (r->height - c->frame->area.height) / 2;
338 }
339 ret = TRUE;
340 }
341
342 while (spaces) {
343 g_free(spaces->data);
344 spaces = g_slist_delete_link(spaces, spaces);
345 }
346 }
347 }
348
349 for (i = 0; i < screen_num_monitors; ++i)
350 g_free(areas[i]);
351 g_free(areas);
352 return ret;
353 }
354
355 static gboolean place_under_mouse(ObClient *client, gint *x, gint *y)
356 {
357 gint l, r, t, b;
358 gint px, py;
359 Rect *area;
360
361 if (!screen_pointer_pos(&px, &py))
362 return FALSE;
363 area = pick_pointer_head(client);
364
365 l = area->x;
366 t = area->y;
367 r = area->x + area->width - client->frame->area.width;
368 b = area->y + area->height - client->frame->area.height;
369
370 *x = px - client->area.width / 2 - client->frame->size.left;
371 *x = MIN(MAX(*x, l), r);
372 *y = py - client->area.height / 2 - client->frame->size.top;
373 *y = MIN(MAX(*y, t), b);
374
375 return TRUE;
376 }
377
378 static gboolean place_per_app_setting(ObClient *client, gint *x, gint *y,
379 ObAppSettings *settings)
380 {
381 Rect *screen = NULL;
382
383 if (!settings || (settings && !settings->pos_given))
384 return FALSE;
385
386 /* Find which head the pointer is on */
387 if (settings->monitor == 0)
388 /* this can return NULL */
389 screen = pick_pointer_head(client);
390 else if (settings->monitor > 0 &&
391 (guint)settings->monitor <= screen_num_monitors)
392 screen = screen_area(client->desktop, (guint)settings->monitor - 1,
393 NULL);
394
395 /* if we have't found a screen yet.. */
396 if (!screen) {
397 Rect **areas;
398 guint i;
399
400 areas = pick_head(client);
401 screen = areas[0];
402
403 /* don't free the first one, it's being set as "screen" */
404 for (i = 1; i < screen_num_monitors; ++i)
405 g_free(areas[i]);
406 g_free(areas);
407 }
408
409 if (settings->center_x)
410 *x = screen->x + screen->width / 2 - client->area.width / 2;
411 else if (settings->opposite_x)
412 *x = screen->x + screen->width - client->frame->area.width -
413 settings->position.x;
414 else
415 *x = screen->x + settings->position.x;
416
417 if (settings->center_y)
418 *y = screen->y + screen->height / 2 - client->area.height / 2;
419 else if (settings->opposite_y)
420 *y = screen->y + screen->height - client->frame->area.height -
421 settings->position.y;
422 else
423 *y = screen->y + settings->position.y;
424
425 g_free(screen);
426 return TRUE;
427 }
428
429 static gboolean place_transient_splash(ObClient *client, gint *x, gint *y)
430 {
431 if (client->type == OB_CLIENT_TYPE_DIALOG) {
432 GSList *it;
433 gboolean first = TRUE;
434 gint l, r, t, b;
435 for (it = client->parents; it; it = g_slist_next(it)) {
436 ObClient *m = it->data;
437 if (!m->iconic) {
438 if (first) {
439 l = RECT_LEFT(m->frame->area);
440 t = RECT_TOP(m->frame->area);
441 r = RECT_RIGHT(m->frame->area);
442 b = RECT_BOTTOM(m->frame->area);
443 first = FALSE;
444 } else {
445 l = MIN(l, RECT_LEFT(m->frame->area));
446 t = MIN(t, RECT_TOP(m->frame->area));
447 r = MAX(r, RECT_RIGHT(m->frame->area));
448 b = MAX(b, RECT_BOTTOM(m->frame->area));
449 }
450 }
451 if (!first) {
452 *x = ((r + 1 - l) - client->frame->area.width) / 2 + l;
453 *y = ((b + 1 - t) - client->frame->area.height) / 2 + t;
454 return TRUE;
455 }
456 }
457 }
458
459 if (client->type == OB_CLIENT_TYPE_DIALOG ||
460 client->type == OB_CLIENT_TYPE_SPLASH)
461 {
462 Rect **areas;
463 guint i;
464
465 areas = pick_head(client);
466
467 *x = (areas[0]->width - client->frame->area.width) / 2 + areas[0]->x;
468 *y = (areas[0]->height - client->frame->area.height) / 2 + areas[0]->y;
469
470 for (i = 0; i < screen_num_monitors; ++i)
471 g_free(areas[i]);
472 g_free(areas);
473 return TRUE;
474 }
475
476 return FALSE;
477 }
478
479 /* Return TRUE if we want client.c to enforce on-screen-keeping */
480 gboolean place_client(ObClient *client, gint *x, gint *y,
481 ObAppSettings *settings)
482 {
483 gboolean ret;
484 gboolean userplaced = FALSE;
485
486 /* per-app settings override program specified position
487 * but not user specified */
488 if ((client->positioned & USPosition) ||
489 ((client->positioned & PPosition) &&
490 !(settings && settings->pos_given)))
491 return FALSE;
492
493 /* try a number of methods */
494 ret = place_transient_splash(client, x, y) ||
495 (userplaced = place_per_app_setting(client, x, y, settings)) ||
496 (config_place_policy == OB_PLACE_POLICY_MOUSE &&
497 place_under_mouse(client, x, y)) ||
498 place_nooverlap(client, x, y) ||
499 place_random(client, x, y);
500 g_assert(ret);
501
502 /* get where the client should be */
503 frame_frame_gravity(client->frame, x, y);
504 return !userplaced;
505 }
This page took 0.060085 seconds and 5 git commands to generate.