X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fmoveresize.c;h=6a0e97776514c67d9badf16242413af2e864f217;hb=96f9db0d0c0ef9073be894162e5c6ea2db726b44;hp=95e595872476af8dea1e0ae208d2257aae7356cc;hpb=fbbbd4f9ab209068ee5b4007ddf50bee6ac5aa24;p=chaz%2Fopenbox diff --git a/openbox/moveresize.c b/openbox/moveresize.c index 95e59587..6a0e9777 100644 --- a/openbox/moveresize.c +++ b/openbox/moveresize.c @@ -26,24 +26,29 @@ static guint button; static guint32 corner; static ObCorner lockcorner; -static Popup *popup = NULL; +static ObPopup *popup = NULL; -static void client_dest(ObClient *c) +static void client_dest(gpointer client) { - if (moveresize_client == c) + if (moveresize_client == 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 (!reconfig) { + if (moveresize_in_progress) + moveresize_end(FALSE); + 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); } @@ -67,7 +72,8 @@ void moveresize_start(ObClient *c, int x, int y, guint b, guint32 cnr) { ObCursor cur; - g_assert(!moveresize_in_progress); + if (moveresize_in_progress || !c->frame->visible) + return; moveresize_client = c; start_cx = c->frame->area.x; @@ -77,8 +83,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 +143,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 +172,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)