From: Dana Jansens Date: Mon, 28 Jul 2003 19:59:37 +0000 (+0000) Subject: base rudeness on if they have a strut even smarter! X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=b799cfd9a394124456f7f765e0858981639f737a;hp=067776e783fc0cb4a731c8ea226c8b6b3c50f053;p=chaz%2Fopenbox base rudeness on if they have a strut even smarter! --- diff --git a/openbox/client.c b/openbox/client.c index e0dc3f87..d23eaf00 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -300,9 +300,7 @@ void client_manage(Window window) dispatch_client(Event_Client_New, self, 0, 0); /* make sure the window is visible */ - if (!(self->strut.left || self->strut.right || - self->strut.top || self->strut.bottom)) - client_move_onscreen(self, TRUE); + client_move_onscreen(self, TRUE); screen_update_areas(); @@ -480,13 +478,13 @@ gboolean client_find_onscreen(ObClient *self, int *x, int *y, int w, int h, /* XXX watch for xinerama dead areas */ a = screen_area(self->desktop); - if (*x >= a->x + a->width - 1) + if (!self->strut.right && *x >= a->x + a->width - 1) *x = a->x + a->width - self->frame->area.width; - if (*y >= a->y + a->height - 1) + if (!self->strut.bottom && *y >= a->y + a->height - 1) *y = a->y + a->height - self->frame->area.height; - if (*x + self->frame->area.width - 1 < a->x) + if (!self->strut.left && *x + self->frame->area.width - 1 < a->x) *x = a->x; - if (*y + self->frame->area.height - 1 < a->y) + if (!self->strut.top && *y + self->frame->area.height - 1 < a->y) *y = a->y; if (rude) { @@ -496,13 +494,13 @@ gboolean client_find_onscreen(ObClient *self, int *x, int *y, int w, int h, /* dont let windows map/move into the strut unless they are bigger than the available area */ if (w <= a->width) { - if (*x < a->x) *x = a->x; - if (*x + w > a->x + a->width) + if (!self->strut.left && *x < a->x) *x = a->x; + if (!self->strut.right && *x + w > a->x + a->width) *x = a->x + a->width - w; } if (h <= a->height) { - if (*y < a->y) *y = a->y; - if (*y + h > a->y + a->height) + if (!self->strut.top && *y < a->y) *y = a->y; + if (!self->strut.bottom && *y + h > a->y + a->height) *y = a->y + a->height - h; } } diff --git a/openbox/event.c b/openbox/event.c index 08240ff2..5116148c 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -776,8 +776,7 @@ static void event_handle_client(ObClient *client, XEvent *e) h = (e->xconfigurerequest.value_mask & CWHeight) ? e->xconfigurerequest.height : client->area.height; - if (!(client->strut.left || client->strut.right || - client->strut.top || client->strut.bottom)) { + { int newx = x; int newy = y; client_find_onscreen(client, &newx, &newy, w, h, TRUE); @@ -975,8 +974,7 @@ static void event_handle_client(ObClient *client, XEvent *e) h = client->area.y; client->gravity = tmpg; - if (!(client->strut.left || client->strut.right || - client->strut.top || client->strut.bottom)) { + { int newx = x; int newy = y; client_find_onscreen(client, &newx, &newy, w, h, TRUE);