1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 20:38:08 +01:00

Bouncing appicon effect

When starting application (or opening transient dialog) bounce
its appicon.

Original-patch-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Alexey I. Froloff <raorn@altlinux.org>
This commit is contained in:
Alexey I. Froloff
2010-09-10 20:51:03 +04:00
committed by Carlos R. Mafra
parent 17cc7c3c77
commit a257e16593
4 changed files with 167 additions and 0 deletions

View File

@@ -46,6 +46,9 @@ typedef struct WApplication {
unsigned int skip_next_animation:1;
unsigned int hidden:1;
unsigned int emulated:1;
#ifdef BOUNCE_APP
unsigned int bouncing:1;
#endif
} flags;
} WApplication;
@@ -57,5 +60,7 @@ WApplication *wApplicationOf(Window window);
void wApplicationExtractDirPackIcon(WScreen *scr,char *path, char *wm_instance,
char *wm_class);
void wAppBounce(WApplication *);
#endif