X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fopenbox;a=blobdiff_plain;f=openbox%2Factions%2Fmoveresizeto.c;h=f35126b07d9a6c858cd5001601abc3857b38deb1;hp=c23661cd401c2fd37645455456de69ba5f60e467;hb=f55caaf6a003c8e9dece297e0e1aca89a1ee99ef;hpb=3374fb2a88aa7105d8fab3bda81561096f2e9c6b diff --git a/openbox/actions/moveresizeto.c b/openbox/actions/moveresizeto.c index c23661cd..f35126b0 100644 --- a/openbox/actions/moveresizeto.c +++ b/openbox/actions/moveresizeto.c @@ -19,6 +19,8 @@ typedef struct { gint h; gint h_denom; gint monitor; + gboolean w_sets_client_size; + gboolean h_sets_client_size; } Options; static gpointer setup_func(xmlNodePtr node); @@ -57,12 +59,16 @@ static gpointer setup_func(xmlNodePtr node) if (g_ascii_strcasecmp(s, "current") != 0) config_parse_relative_number(s, &o->w, &o->w_denom); g_free(s); + + obt_xml_attr_bool(n, "client", &o->w_sets_client_size); } if ((n = obt_xml_find_node(node, "height"))) { gchar *s = obt_xml_node_string(n); if (g_ascii_strcasecmp(s, "current") != 0) config_parse_relative_number(s, &o->h, &o->h_denom); g_free(s); + + obt_xml_attr_bool(n, "client", &o->h_sets_client_size); } if ((n = obt_xml_find_node(node, "monitor"))) { @@ -118,13 +124,32 @@ static gboolean run_func(ObActionsData *data, gpointer options) area = screen_area(c->desktop, mon, NULL); carea = screen_area(c->desktop, cmon, NULL); + /* find a target size for the client/frame. */ w = o->w; - if (w == G_MININT) w = c->area.width; - else if (o->w_denom) w = (w * area->width) / o->w_denom; + if (w == G_MININT) { /* not given, so no-op with current value */ + if (o->w_sets_client_size) + w = c->area.width; + else + w = c->frame->area.width; + } + else if (o->w_denom) /* used for eg. "1/3" or "55%" */ + w = (w * area->width) / o->w_denom; h = o->h; - if (h == G_MININT) h = c->area.height; - else if (o->h_denom) h = (h * area->height) / o->h_denom; + if (h == G_MININT) { + if (o->h_sets_client_size) + h = c->area.height; + else + h = c->frame->area.height; + } + else if (o->h_denom) + h = (h * area->height) / o->h_denom; + + /* get back to the client's size. */ + if (!o->w_sets_client_size) + w -= c->frame->size.left + c->frame->size.right; + if (!o->h_sets_client_size) + h -= c->frame->size.top + c->frame->size.bottom; /* it might not be able to resize how they requested, so find out what it will actually be resized to */ @@ -136,20 +161,25 @@ static gboolean run_func(ObActionsData *data, gpointer options) w += c->frame->size.left + c->frame->size.right; h += c->frame->size.top + c->frame->size.bottom; + /* get the position */ x = o->x.pos; - if (o->x.denom) + if (o->x.denom) /* relative positions */ x = (x * area->width) / o->x.denom; if (o->x.center) x = (area->width - w) / 2; - else if (x == G_MININT) x = c->frame->area.x - carea->x; - else if (o->x.opposite) x = area->width - w - x; + else if (x == G_MININT) /* not specified */ + x = c->frame->area.x - carea->x; + else if (o->x.opposite) /* value relative to right edge instead of left */ + x = area->width - w - x; x += area->x; y = o->y.pos; if (o->y.denom) y = (y * area->height) / o->y.denom; if (o->y.center) y = (area->height - h) / 2; - else if (y == G_MININT) y = c->frame->area.y - carea->y; - else if (o->y.opposite) y = area->height - h - y; + else if (y == G_MININT) + y = c->frame->area.y - carea->y; + else if (o->y.opposite) + y = area->height - h - y; y += area->y; /* get the client's size back */