X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fmoveresize.c;h=abab8710aa278a93312561158b448f62edbacd00;hb=be15e8c01c49327ff328e44bced78b220e16f132;hp=82a9dec8d6174f2e66c9895a37b2ca83a3399f56;hpb=5e5fdb1666ac4877ca4d26f5ca565a299bc4cc42;p=chaz%2Fopenbox diff --git a/openbox/moveresize.c b/openbox/moveresize.c index 82a9dec8..abab8710 100644 --- a/openbox/moveresize.c +++ b/openbox/moveresize.c @@ -26,7 +26,7 @@ static guint button; static guint32 corner; static ObCorner lockcorner; -static Popup *popup = NULL; +static ObPopup *popup = NULL; static void client_dest(gpointer client) { @@ -34,16 +34,21 @@ static void client_dest(gpointer client) moveresize_end(TRUE); } -void moveresize_startup() +void moveresize_startup(gboolean reconfig) { popup = popup_new(FALSE); - client_add_destructor(client_dest); + if (!reconfig) + client_add_destructor(client_dest); } -void moveresize_shutdown() +void moveresize_shutdown(gboolean reconfig) { - client_remove_destructor(client_dest); + if (moveresize_in_progress) + moveresize_end(FALSE); + + if (!reconfig) + client_remove_destructor(client_dest); popup_free(popup); popup = NULL; @@ -59,7 +64,7 @@ static void popup_coords(ObClient *c, char *format, int a, int b) c->area.width / 2, c->frame->area.y + c->frame->size.top + c->area.height / 2); - popup_show(popup, text, NULL); + popup_show(popup, text); g_free(text); } @@ -69,6 +74,9 @@ void moveresize_start(ObClient *c, int x, int y, guint b, guint32 cnr) g_assert(!moveresize_in_progress); + if (!c->frame->visible) + return; + moveresize_client = c; start_cx = c->frame->area.x; start_cy = c->frame->area.y; @@ -77,8 +85,8 @@ void moveresize_start(ObClient *c, int x, int y, guint b, guint32 cnr) increment instead of at 0, so you have to move half an increment either way instead of a full increment one and 1 px the other. and this is one large mother fucking comment. */ - start_cw = c->area.width + (c->size_inc.width + 1) / 2; - start_ch = c->area.height + (c->size_inc.height + 1) / 2; + start_cw = c->area.width + c->size_inc.width / 2; + start_ch = c->area.height + c->size_inc.height / 2; start_x = x; start_y = y; corner = cnr; @@ -137,7 +145,7 @@ void moveresize_start(ObClient *c, int x, int y, guint b, guint32 cnr) void moveresize_end(gboolean cancel) { grab_keyboard(FALSE); - grab_pointer(FALSE, None); + grab_pointer(FALSE, OB_CURSOR_NONE); popup_hide(popup); @@ -166,7 +174,8 @@ static void do_move(gboolean resist) /* get where the client should be */ frame_frame_gravity(moveresize_client->frame, &cur_x, &cur_y); client_configure(moveresize_client, OB_CORNER_TOPLEFT, cur_x, cur_y, - start_cw, start_ch, TRUE, FALSE); + moveresize_client->area.width, + moveresize_client->area.height, TRUE, FALSE); } static void do_resize(gboolean resist)