X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Factions%2Fmoverelative.c;h=b67b5cf1094d3c4fcf03c53726388014bb598a16;hb=HEAD;hp=ccdff545d5702d02c4a470e98df31b3249c7e823;hpb=22a88cfe99d897dc7d3be7b53b954f6cdfa250c6;p=chaz%2Fopenbox diff --git a/openbox/actions/moverelative.c b/openbox/actions/moverelative.c index ccdff545..b67b5cf1 100644 --- a/openbox/actions/moverelative.c +++ b/openbox/actions/moverelative.c @@ -2,36 +2,51 @@ #include "openbox/client.h" #include "openbox/screen.h" #include "openbox/frame.h" -#include /* for atoi */ +#include "openbox/config.h" typedef struct { gint x; + gint x_denom; gint y; + gint y_denom; } Options; static gpointer setup_func(xmlNodePtr node); +static void free_func(gpointer o); static gboolean run_func(ObActionsData *data, gpointer options); void action_moverelative_startup(void) { - actions_register("MoveRelative", setup_func, g_free, run_func, NULL, NULL); + actions_register("MoveRelative", setup_func, free_func, run_func); } static gpointer setup_func(xmlNodePtr node) { xmlNodePtr n; Options *o; + gchar *s; - o = g_new0(Options, 1); + o = g_slice_new0(Options); - if ((n = obt_parse_find_node(node, "x"))) - o->x = obt_parse_node_int(n); - if ((n = obt_parse_find_node(node, "y"))) - o->y = obt_parse_node_int(n); + if ((n = obt_xml_find_node(node, "x"))) { + s = obt_xml_node_string(n); + config_parse_relative_number(s, &o->x, &o->x_denom); + g_free(s); + } + if ((n = obt_xml_find_node(node, "y"))) { + s = obt_xml_node_string(n); + config_parse_relative_number(s, &o->y, &o->y_denom); + g_free(s); + } return o; } +static void free_func(gpointer o) +{ + g_slice_free(Options, o); +} + /* Always return FALSE because its not interactive */ static gboolean run_func(ObActionsData *data, gpointer options) { @@ -42,15 +57,26 @@ static gboolean run_func(ObActionsData *data, gpointer options) gint x, y, lw, lh, w, h; c = data->client; - x = data->client->area.x + o->x; - y = data->client->area.y + o->y; - w = data->client->area.width; - h = data->client->area.height; - client_try_configure(data->client, &x, &y, &w, &h, &lw, &lh, TRUE); - client_find_onscreen(data->client, &x, &y, w, h, FALSE); + x = o->x; + y = o->y; + if (o->x_denom || o->y_denom) { + const Rect *carea; + + carea = screen_area(c->desktop, client_monitor(c), NULL); + if (o->x_denom) + x = (x * carea->width) / o->x_denom; + if (o->y_denom) + y = (y * carea->height) / o->y_denom; + } + x = c->area.x + x; + y = c->area.y + y; + w = c->area.width; + h = c->area.height; + client_try_configure(c, &x, &y, &w, &h, &lw, &lh, TRUE); + client_find_onscreen(c, &x, &y, w, h, FALSE); actions_client_move(data, TRUE); - client_configure(data->client, x, y, w, h, TRUE, TRUE, FALSE); + client_configure(c, x, y, w, h, TRUE, TRUE, FALSE); actions_client_move(data, FALSE); }