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