summaryrefslogtreecommitdiff
path: root/openbox/actions/moveresizeto.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2013-08-11 02:39:14 +0200
committerMikael Magnusson <mikachu@gmail.com>2013-08-11 12:04:11 +0200
commitf55caaf6a003c8e9dece297e0e1aca89a1ee99ef (patch)
tree9c45c81a0e8972f20e621fdea94bb681afbf3a71 /openbox/actions/moveresizeto.c
parent16c0fb84bc8c4b2547850148a60f3c82092ba104 (diff)
Add some comments in MoveResizeTo code
Diffstat (limited to 'openbox/actions/moveresizeto.c')
-rw-r--r--openbox/actions/moveresizeto.c23
1 files changed, 15 insertions, 8 deletions
diff --git a/openbox/actions/moveresizeto.c b/openbox/actions/moveresizeto.c
index 56f21e61..f35126b0 100644
--- a/openbox/actions/moveresizeto.c
+++ b/openbox/actions/moveresizeto.c
@@ -126,13 +126,14 @@ static gboolean run_func(ObActionsData *data, gpointer options)
/* find a target size for the client/frame. */
w = o->w;
- if (w == G_MININT) {
+ 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) w = (w * area->width) / o->w_denom;
+ 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) {
@@ -141,7 +142,8 @@ static gboolean run_func(ObActionsData *data, gpointer options)
else
h = c->frame->area.height;
}
- else if (o->h_denom) h = (h * area->height) / o->h_denom;
+ 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)
@@ -159,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 */