65.9K
CodeProject is changing. Read more.
Home

Animated Dialog Windows

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.93/5 (36 votes)

Apr 18, 2000

viewsIcon

239637

downloadIcon

7272

A class that provides some simple, yet spectacular window animation effects. Try the demo!

animated screen shot

Introduction

Often in modern GUI, you can see a some sort of window or menu animation that can give a more user friendly "cool" look. Fading or sliding menus, popping dialog boxes look neat and provide visual feedback with user actions. Currently, however, there is no simple way to do this under MS Windows, other than XORed lines and polygons (besides the AnimateWindow() function).

The AnimEffect class provides quite an easy and extensible way to add animation to your code.

Usage

Using the class is rather simple. Just add the following code to the dialogs OnCreate and OnDestroy functions.

 AnimEffect ef;
 // exploding window effect
 ef.Open( rcWnd );
 // or imploding window effect
 ef.Close( rcWnd );

You can customize the effect by calling the Setup(int iSteps, int iAfterimages, int iDelay) member function, and change the animation type by Effect(EffectType effect), where EffectType is:

   enum EffectType {
     Random=-1,       // default
     Spin=0,          
     Vortex,
     ScatterGather,
     Spike,
     Fireworks
   };

Included is a simple demo project that shows a bunch of effects. Feel free to use this code.

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.