~ctwm/ctwm/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Animation routines
 */

#ifndef _CTWM_ANIMATE_H
#define _CTWM_ANIMATE_H

/* Current code requires these to be leaked */
extern int Animating;
extern bool AnimationActive;
extern bool MaybeAnimate;
extern int AnimationSpeed;
extern struct timeval AnimateTimeout;


void StartAnimation(void);
void StopAnimation(void);
void SetAnimationSpeed(int speed);
void ModifyAnimationSpeed(int incr);
void TryToAnimate(void);

#endif /* _CTWM_ANIMATE_H */