Click here to Skip to main content
15,867,453 members
Articles / Desktop Programming / MFC

Animated Dialog Windows

Rate me:
Please Sign up or sign in to vote.
4.93/5 (38 votes)
17 Apr 2000 234.2K   7.3K   128   30
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.

C++
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:

C++
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.


Written By
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralAmazing! Pin
Member 450121-Apr-03 18:04
Member 450121-Apr-03 18:04 
When I thought everything in GUI development is over, this article came as a bolt from blue. Hence I give highest possible rating.

T.S. Prasad

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.