X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=openbox%2Fclient.h;fp=openbox%2Fclient.h;h=5e26ef30ea9690ccfabd7bc97ee9774be164f1a2;hb=d81d54c7a977a034199f24fc8fa7433e634aaf91;hp=09c93e63770096592bca90b0b47b2ea843c5120d;hpb=6799c67c07e99c440f549802f60d9f16995ab711;p=chaz%2Fopenbox diff --git a/openbox/client.h b/openbox/client.h index 09c93e63..5e26ef30 100644 --- a/openbox/client.h +++ b/openbox/client.h @@ -396,13 +396,10 @@ void client_convert_gravity_resize(ObClient *self, gint gravity, client_configure(self, self->area.x, self->area.y, w, h, TRUE, TRUE, FALSE) #define client_move_resize(self, x, y, w, h) \ client_configure(self, x, y, w, h, TRUE, TRUE, FALSE) - -/*! Make a client reconfigure so that it will honour its current max/min sizes - and other bounds. - @param force If TRUE, then a ConfigureNotify event will be sent to the client - even if nothing has changed. -*/ -void client_reconfigure(ObClient *self, gboolean force); +#define client_reconfigure(self, force) \ + client_configure(self, ((ObClient*)self)->area.x, ((ObClient*)self)->area.y, \ + ((ObClient*)self)->area.width, \ + ((ObClient*)self)->area.height, FALSE, TRUE, force) /*! Figure out where a window will end up and what size it will be if you told it to move/resize to these coordinates.