X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fclient.h;h=ca9927467074905901868e868ec9c4c8884ed782;hb=a92c209fc1845cf3f3acdfa3f9e8f0930fd53eb3;hp=09c93e63770096592bca90b0b47b2ea843c5120d;hpb=73adc6480d59fc5dccf9fe19ed5234c9582b328c;p=chaz%2Fopenbox diff --git a/openbox/client.h b/openbox/client.h index 09c93e63..ca992746 100644 --- a/openbox/client.h +++ b/openbox/client.h @@ -246,6 +246,8 @@ struct _ObClient /*! The window uses shape extension to be non-rectangular? */ gboolean shaped; + /*! The window uses shape extension to have non-rectangular input? */ + gboolean shaped_input; /*! The window is modal, so it must be processed before any windows it is related to can be focused */ @@ -396,13 +398,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. @@ -633,6 +632,8 @@ void client_setup_decor_and_functions(ObClient *self, gboolean reconfig); /*! Sets the window's type and transient flag */ void client_get_type_and_transientness(ObClient *self); +/*! Gets the motif wm hints */ +void client_get_mwm_hints(ObClient *self); /*! Returns a client's icon set, or its parents (recursively) if it doesn't have one