all repos — openbox @ b799cfd9a394124456f7f765e0858981639f737a

openbox fork - make it a bit more like ryudo

base rudeness on if they have a strut even smarter!
Dana Jansens danakj@orodu.net
commit

b799cfd9a394124456f7f765e0858981639f737a

parent

067776e783fc0cb4a731c8ea226c8b6b3c50f053

2 files changed, 11 insertions(+), 15 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -300,9 +300,7 @@

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 @@

/* 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 @@

/* 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; } }
M openbox/event.copenbox/event.c

@@ -776,8 +776,7 @@ e->xconfigurerequest.width : client->area.width;

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 @@ else

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);