]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/place.c
sort smallest to largest area
[mikachu/openbox.git] / openbox / place.c
1 #include "client.h"
2 #include "group.h"
3 #include "screen.h"
4 #include "frame.h"
5 #include "focus.h"
6 #include "config.h"
7
8 static Rect* pick_head(ObClient *c)
9 {
10     /* try direct parent first */
11     if (c->transient_for && c->transient_for != OB_TRAN_GROUP) {
12         return screen_area_monitor(c->desktop,
13                                    client_monitor(c->transient_for));
14     }
15
16     /* more than one guy in his group (more than just him) */
17     if (c->group && c->group->members->next) {
18         GSList *it;
19
20         /* try on the client's desktop */
21         for (it = c->group->members; it; it = g_slist_next(it)) {
22             ObClient *itc = it->data;            
23             if (itc != c &&
24                 (itc->desktop == c->desktop ||
25                  itc->desktop == DESKTOP_ALL || c->desktop == DESKTOP_ALL))
26                 return screen_area_monitor(c->desktop,
27                                            client_monitor(it->data));
28         }
29
30         /* try on all desktops */
31         for (it = c->group->members; it; it = g_slist_next(it)) {
32             ObClient *itc = it->data;            
33             if (itc != c)
34                 return screen_area_monitor(c->desktop,
35                                            client_monitor(it->data));
36         }
37     }
38
39     return NULL;
40 }
41
42 static gboolean place_random(ObClient *client, gint *x, gint *y)
43 {
44     int l, r, t, b;
45     Rect *area;
46
47     area = pick_head(client);
48     if (!area)
49         area = screen_area_monitor(client->desktop,
50                                    g_random_int_range(0, screen_num_monitors));
51
52     l = area->x;
53     t = area->y;
54     r = area->x + area->width - client->frame->area.width;
55     b = area->y + area->height - client->frame->area.height;
56
57     if (r > l) *x = g_random_int_range(l, r + 1);
58     else       *x = 0;
59     if (b > t) *y = g_random_int_range(t, b + 1);
60     else       *y = 0;
61
62     return TRUE;
63 }
64
65 static GSList* area_add(GSList *list, Rect *a)
66 {
67     Rect *r = g_new(Rect, 1);
68     *r = *a;
69     return g_slist_prepend(list, r);
70 }
71
72 static GSList* area_remove(GSList *list, Rect *a)
73 {
74     GSList *sit;
75     GSList *result = NULL;
76
77     for (sit = list; sit; sit = g_slist_next(sit)) {
78         Rect *r = sit->data;
79
80         if (!RECT_INTERSECTS_RECT(*r, *a)) {
81             result = g_slist_prepend(result, r);
82             r = NULL; /* dont free it */
83         } else {
84             Rect isect, extra;
85
86             /* Use an intersection of a and r to determine the space
87                around r that we can use.
88
89                NOTE: the spaces calculated can overlap.
90             */
91
92             RECT_SET_INTERSECTION(isect, *r, *a);
93
94             if (RECT_LEFT(isect) > RECT_LEFT(*r)) {
95                 RECT_SET(extra, r->x, r->y,
96                          RECT_LEFT(isect) - r->x, r->height);
97                 result = area_add(result, &extra);
98             }
99
100             if (RECT_TOP(isect) > RECT_TOP(*r)) {
101                 RECT_SET(extra, r->x, r->y,
102                          r->width, RECT_TOP(isect) - r->y + 1);
103                 result = area_add(result, &extra);
104             }
105
106             if (RECT_RIGHT(isect) < RECT_RIGHT(*r)) {
107                 RECT_SET(extra, RECT_RIGHT(isect) + 1, r->y,
108                          RECT_RIGHT(*r) - RECT_RIGHT(isect), r->height);
109                 result = area_add(result, &extra);
110             }
111
112             if (RECT_BOTTOM(isect) < RECT_BOTTOM(*r)) {
113                 RECT_SET(extra, r->x, RECT_BOTTOM(isect) + 1,
114                          r->width, RECT_BOTTOM(*r) - RECT_BOTTOM(isect));
115                 result = area_add(result, &extra);
116             }
117         }
118
119         g_free(r);
120     }
121     g_slist_free(list);
122     return result;
123 }
124
125 static gint area_cmp(gconstpointer p1, gconstpointer p2)
126 {
127     const Rect *a1 = p1, *a2 = p2;
128
129     return a1->width * a1->height - a2->width * a2->height;
130 }
131
132 static gboolean place_smart(ObClient *client, gint *x, gint *y,
133                             gboolean only_focused)
134 {
135     guint i;
136     gboolean ret = FALSE;
137     GSList *spaces = NULL, *sit;
138     GList *it, *list;
139
140     list = focus_order[client->desktop == DESKTOP_ALL ?
141                        screen_desktop : client->desktop];
142
143     for (i = 0; i < screen_num_monitors; ++i)
144         spaces = area_add(spaces, screen_area_monitor(client->desktop, i));
145
146     for (it = list; it; it = g_list_next(it)) {
147         ObClient *c = it->data;
148
149         if (c != client && !c->shaded && client_normal(c)) {
150             spaces = area_remove(spaces, &c->frame->area);
151             if (only_focused)
152                 break;
153         }
154     }
155
156     spaces = g_slist_sort(spaces, area_cmp);
157
158     for (sit = spaces; sit; sit = g_slist_next(sit)) {
159         Rect *r = sit->data;
160
161         if (!ret) {
162             if (r->width >= client->frame->area.width &&
163                 r->height >= client->frame->area.height) {
164                 ret = TRUE;
165                 *x = r->x + (r->width - client->frame->area.width) / 2;
166                 *y = r->y + (r->height - client->frame->area.height) / 2;
167             }
168         }
169
170         g_free(r);
171     }
172     g_slist_free(spaces);
173
174     return ret;
175 }
176
177 static gboolean place_under_mouse(ObClient *client, gint *x, gint *y)
178 {
179     guint i;
180     gint l, r, t, b;
181     gint px, py;
182     Rect *area;
183
184     screen_pointer_pos(&px, &py);
185
186     for (i = 0; i < screen_num_monitors; ++i) {
187         area = screen_area_monitor(client->desktop, i);
188         if (RECT_CONTAINS(*area, px, py))
189             break;
190     }
191     if (i == screen_num_monitors)
192         area = screen_area_monitor(client->desktop, 0);
193
194     l = area->x;
195     t = area->y;
196     r = area->x + area->width - client->frame->area.width;
197     b = area->y + area->height - client->frame->area.height;
198
199     *x = px - client->area.width / 2 - client->frame->size.left;
200     *x = MIN(MAX(*x, l), r);
201     *y = py - client->area.height / 2 - client->frame->size.top;
202     *y = MIN(MAX(*y, t), b);
203
204     return TRUE;
205 }
206
207 static gboolean place_transient(ObClient *client, gint *x, gint *y)
208 {
209     if (client->transient_for) {
210         if (client->transient_for != OB_TRAN_GROUP) {
211             ObClient *c = client;
212             ObClient *p = client->transient_for;
213             *x = (p->frame->area.width - c->frame->area.width) / 2 +
214                 p->frame->area.x;
215             *y = (p->frame->area.height - c->frame->area.height) / 2 +
216                 p->frame->area.y;
217             return TRUE;
218         } else {
219             GSList *it;
220             gboolean first = TRUE;
221             int l, r, t, b;
222             for (it = client->group->members; it; it = it->next) {
223                 ObClient *m = it->data;
224                 if (!(m == client || m->transient_for)) {
225                     if (first) {
226                         l = RECT_LEFT(m->frame->area);
227                         t = RECT_TOP(m->frame->area);
228                         r = RECT_RIGHT(m->frame->area);
229                         b = RECT_BOTTOM(m->frame->area);
230                         first = FALSE;
231                     } else {
232                         l = MIN(l, RECT_LEFT(m->frame->area));
233                         t = MIN(t, RECT_TOP(m->frame->area));
234                         r = MAX(r, RECT_RIGHT(m->frame->area));
235                         b = MAX(b, RECT_BOTTOM(m->frame->area));
236                     }
237                 }
238             }
239             if (!first) {
240                 *x = ((r + 1 - l) - client->frame->area.width) / 2 + l; 
241                 *y = ((b + 1 - t) - client->frame->area.height) / 2 + t;
242                 return TRUE;
243             }
244         }
245     }
246     return FALSE;
247 }
248
249 static gboolean place_dialog(ObClient *client, gint *x, gint *y)
250 {
251     /* center parentless dialogs on the screen */
252     if (client->type == OB_CLIENT_TYPE_DIALOG) {
253         Rect *area;
254
255         area = pick_head(client);
256         if (!area)
257             area = screen_area_monitor(client->desktop, 0);
258
259         *x = (area->width - client->frame->area.width) / 2 + area->x;
260         *y = (area->height - client->frame->area.height) / 2 + area->y;
261         return TRUE;
262     }
263     return FALSE;
264 }
265
266 void place_client(ObClient *client, gint *x, gint *y)
267 {
268     if (client->positioned)
269         return;
270     if (place_transient(client, x, y)    ||
271         place_dialog(client, x, y)       ||
272         place_smart(client, x, y, FALSE) ||
273         place_smart(client, x, y, TRUE)  ||
274         (config_focus_follow ?
275          place_under_mouse(client, x, y) :
276          place_random(client, x, y)))
277     {
278         /* get where the client should be */
279         frame_frame_gravity(client->frame, x, y);
280     } else
281         g_assert_not_reached(); /* the last one better succeed */
282 }