X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fplace.c;h=3bfba7fbbdb9cb7083e8023e30d4598cdc9fa029;hb=ada2eb8fe506d1e55cf49953e570f7270c4dd930;hp=496357efaebe6c1ed010305cd25446db4efbb4b5;hpb=e8c1967aa21b69582f8679525543bed49007fc58;p=chaz%2Fopenbox diff --git a/openbox/place.c b/openbox/place.c index 496357ef..3bfba7fb 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -39,7 +39,6 @@ static Rect* pick_head(ObClient *c) return NULL; } -#if 0 static gboolean place_random(ObClient *client, gint *x, gint *y) { int l, r, t, b; @@ -60,12 +59,8 @@ static gboolean place_random(ObClient *client, gint *x, gint *y) if (b > t) *y = g_random_int_range(t, b + 1); else *y = 0; - /* get where the client should be */ - frame_frame_gravity(client->frame, x, y); - return TRUE; } -#endif static GSList* area_add(GSList *list, Rect *a) { @@ -74,7 +69,6 @@ static GSList* area_add(GSList *list, Rect *a) return g_slist_prepend(list, r); } - static GSList* area_remove(GSList *list, Rect *a) { GSList *sit; @@ -89,8 +83,8 @@ static GSList* area_remove(GSList *list, Rect *a) } else { Rect isect, extra; - /* Use an intersection of win and curr to determine the space - around curr that we can use. + /* Use an intersection of a and r to determine the space + around r that we can use. NOTE: the spaces calculated can overlap. */ @@ -128,22 +122,21 @@ static GSList* area_remove(GSList *list, Rect *a) return result; } -static gint area_cmp(gconstpointer p1, gconstpointer p2) +static gint area_cmp(gconstpointer p1, gconstpointer p2, gpointer data) { - gint ret; + Rect *carea = data; const Rect *a1 = p1, *a2 = p2; - ret = RECT_BOTTOM(*a1) - RECT_BOTTOM(*a2); - if (!ret) - ret = RECT_LEFT(*a1) - RECT_LEFT(*a2); - return ret; + return MIN((a1->width - carea->width), (a1->height - carea->height)) - + MIN((a2->width - carea->width), (a2->height - carea->height)); } -static gboolean place_smart(ObClient *client, gint *x, gint *y) +static gboolean place_smart(ObClient *client, gint *x, gint *y, + gboolean only_focused) { guint i; gboolean ret = FALSE; - GSList *spaces, *sit; + GSList *spaces = NULL, *sit; GList *it, *list; list = focus_order[client->desktop == DESKTOP_ALL ? @@ -155,12 +148,14 @@ static gboolean place_smart(ObClient *client, gint *x, gint *y) for (it = list; it; it = g_list_next(it)) { ObClient *c = it->data; - if (c == client || c->shaded || !client_normal(c)) - continue; - spaces = area_remove(spaces, &c->frame->area); + if (c != client && !c->shaded && client_normal(c)) { + spaces = area_remove(spaces, &c->frame->area); + if (only_focused) + break; + } } - spaces = g_slist_sort(spaces, area_cmp); + spaces = g_slist_sort_with_data(spaces, area_cmp, &client->frame->area); for (sit = spaces; sit; sit = g_slist_next(sit)) { Rect *r = sit->data; @@ -169,8 +164,13 @@ static gboolean place_smart(ObClient *client, gint *x, gint *y) if (r->width >= client->frame->area.width && r->height >= client->frame->area.height) { ret = TRUE; - *x = r->x; - *y = r->y; + if (only_focused) { + *x = r->x + (r->width - client->frame->area.width) / 2; + *y = r->y + (r->height - client->frame->area.height) / 2; + } else { + *x = r->x; + *y = r->y; + } } } @@ -183,12 +183,30 @@ static gboolean place_smart(ObClient *client, gint *x, gint *y) static gboolean place_under_mouse(ObClient *client, gint *x, gint *y) { - int px, py; + guint i; + gint l, r, t, b; + gint px, py; + Rect *area; screen_pointer_pos(&px, &py); + for (i = 0; i < screen_num_monitors; ++i) { + area = screen_area_monitor(client->desktop, i); + if (RECT_CONTAINS(*area, px, py)) + break; + } + if (i == screen_num_monitors) + area = screen_area_monitor(client->desktop, 0); + + l = area->x; + t = area->y; + r = area->x + area->width - client->frame->area.width; + b = area->y + area->height - client->frame->area.height; + *x = px - client->area.width / 2 - client->frame->size.left; + *x = MIN(MAX(*x, l), r); *y = py - client->area.height / 2 - client->frame->size.top; + *y = MIN(MAX(*y, t), b); return TRUE; } @@ -256,13 +274,16 @@ void place_client(ObClient *client, gint *x, gint *y) { if (client->positioned) return; - if (place_transient(client, x, y)) - return; - if (place_dialog(client, x, y)) - return; - if (place_smart(client, x, y)) - return; - if (place_under_mouse(client, x, y)) - return; - g_assert_not_reached(); /* the last one better succeed */ + if (place_transient(client, x, y) || + place_dialog(client, x, y) || + place_smart(client, x, y, FALSE) || + place_smart(client, x, y, TRUE) || + (config_focus_follow ? + place_under_mouse(client, x, y) : + place_random(client, x, y))) + { + /* get where the client should be */ + frame_frame_gravity(client->frame, x, y); + } else + g_assert_not_reached(); /* the last one better succeed */ }