X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fplace.c;h=ea131bea3e1e73de60d99e05633436f144c77c4f;hb=8772b46b56172e35506f21d626aa89bd649615c6;hp=e4c8aed89598d6ed23a28d6af214bcec008ea77a;hpb=292cb8b42e763634728d7e25d6987fcb5cbeb1aa;p=chaz%2Fopenbox diff --git a/openbox/place.c b/openbox/place.c index e4c8aed8..ea131bea 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -268,13 +268,16 @@ typedef enum } ObSmartType; #define SMART_IGNORE(placer, c) \ - (placer == c || c->shaded || !client_normal(c) || !c->frame->visible || \ + (placer == c || c->shaded || !c->frame->visible || \ + c->type == OB_CLIENT_TYPE_SPLASH || c->type == OB_CLIENT_TYPE_DESKTOP || \ + ((c->type == OB_CLIENT_TYPE_MENU || c->type == OB_CLIENT_TYPE_TOOLBAR) &&\ + client_has_parent(c)) || \ (c->desktop != DESKTOP_ALL && \ c->desktop != (placer->desktop == DESKTOP_ALL ? \ screen_desktop : placer->desktop))) static gboolean place_smart(ObClient *client, gint *x, gint *y, - ObSmartType type) + ObSmartType type, gboolean ignore_max) { gboolean ret = FALSE; GSList *spaces = NULL, *sit; @@ -299,7 +302,8 @@ static gboolean place_smart(ObClient *client, gint *x, gint *y, if (WINDOW_IS_CLIENT(it->data)) { c = it->data; - if (c->fullscreen || (c->max_vert && c->max_horz)) + if (ignore_max && + (c->fullscreen || (c->max_vert && c->max_horz))) continue; } else continue; @@ -323,7 +327,8 @@ static gboolean place_smart(ObClient *client, gint *x, gint *y, if (WINDOW_IS_CLIENT(it->data)) { c = it->data; - if (c->fullscreen || (c->max_vert && c->max_horz)) + if (ignore_max && + (c->fullscreen || (c->max_vert && c->max_horz))) continue; } else continue; @@ -440,7 +445,7 @@ static gboolean place_per_app_setting(ObClient *client, gint *x, gint *y, static gboolean place_transient_splash(ObClient *client, gint *x, gint *y) { if (client->transient_for && client->type == OB_CLIENT_TYPE_DIALOG) { - if (client->transient_for != OB_TRAN_GROUP) { + if (client->transient_for != OB_TRAN_GROUP && !client->iconic) { ObClient *c = client; ObClient *p = client->transient_for; @@ -457,7 +462,9 @@ static gboolean place_transient_splash(ObClient *client, gint *x, gint *y) gint l, r, t, b; for (it = client->group->members; it; it = g_slist_next(it)) { ObClient *m = it->data; - if (!(m == client || m->transient_for) && client_normal(m)) { + if (!(m == client || m->transient_for) && client_normal(m) && + !m->iconic) + { if (first) { l = RECT_LEFT(m->frame->area); t = RECT_TOP(m->frame->area); @@ -480,7 +487,9 @@ static gboolean place_transient_splash(ObClient *client, gint *x, gint *y) } } - if (client->transient || client->type == OB_CLIENT_TYPE_SPLASH) { + if ((client->transient && client->type == OB_CLIENT_TYPE_DIALOG) + || client->type == OB_CLIENT_TYPE_SPLASH) + { Rect **areas; areas = pick_head(client); @@ -508,9 +517,11 @@ gboolean place_client(ObClient *client, gint *x, gint *y, place_per_app_setting(client, x, y, settings) || ((config_place_policy == OB_PLACE_POLICY_MOUSE) ? place_under_mouse(client, x, y) : - place_smart(client, x, y, SMART_FULL) || - place_smart(client, x, y, SMART_GROUP) || - place_smart(client, x, y, SMART_FOCUSED) || + place_smart(client, x, y, SMART_FULL, FALSE) || + place_smart(client, x, y, SMART_FULL, TRUE) || + place_smart(client, x, y, SMART_GROUP, FALSE) || + place_smart(client, x, y, SMART_GROUP, TRUE) || + place_smart(client, x, y, SMART_FOCUSED, TRUE) || place_random(client, x, y)))) g_assert_not_reached(); /* the last one better succeed */ /* get where the client should be */