X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fframe.h;h=7be63d53307c403f5a5672396f01aa6b4d011cd1;hb=f0fdba8ad36010280fc84c2425010c195b76562a;hp=19bade78c73a22ded9c59398e181efc560d5dbd3;hpb=564b727966ef1a38309d45b2ab040c3deeb658a4;p=chaz%2Fopenbox diff --git a/openbox/frame.h b/openbox/frame.h index 19bade78..7be63d53 100644 --- a/openbox/frame.h +++ b/openbox/frame.h @@ -27,6 +27,8 @@ typedef struct _ObFrame ObFrame; struct _ObClient; +typedef void (*ObFrameIconifyAnimateFunc)(gpointer data); + typedef enum { OB_FRAME_CONTEXT_NONE, OB_FRAME_CONTEXT_DESKTOP, @@ -142,6 +144,13 @@ struct _ObFrame gboolean flashing; gboolean flash_on; GTimeVal flash_end; + + /*! Is the frame currently in an animation for iconify or restore. + 0 means that it is not animating. > 0 means it is animating an iconify. + < 0 means it is animating a restore. + */ + gint iconify_animation_going; + GTimeVal iconify_animation_end; }; ObFrame *frame_new(struct _ObClient *c); @@ -178,4 +187,12 @@ void frame_frame_gravity(ObFrame *self, gint *x, gint *y, gint w, gint h); void frame_flash_start(ObFrame *self); void frame_flash_stop(ObFrame *self); +/*! Start an animation for iconifying or restoring a frame. The callback + will be called when the animation finishes. But if another animation is + started in the meantime, the callback will never get called. */ +void frame_begin_iconify_animation(ObFrame *self, gboolean iconifying); +void frame_end_iconify_animation(ObFrame *self); + +#define frame_iconify_animating(f) (f->iconify_animation_going != 0) + #endif