Click here to Skip to main content
15,879,535 members
Articles / Desktop Programming / MFC
Article

FaderWnd - a Window Fader for Windows 2000

Rate me:
Please Sign up or sign in to vote.
4.65/5 (7 votes)
28 Jun 2000 163.8K   3K   56   28
An MFC class to fade any window with only one line of code.
  • Download source files - 4 Kb
  • Download demo project - 28 Kb
  • Sample Image - FaderWnd.jpg

    Introduction

    One of the attractive new features of Windows 2000 is the menu and other selections that fade away instead of just disappearing. To see this in operation you need to select "Use transition effects for menus and tooltips" on the "Effects" tab of the Display Properties dialog and then select "Fade effect" in the combo box.

    In this article I present a simple MFC class that allows you to apply a similar fading effect to any window you choose - with only one line of code! Don't just close a window - have it fade away! The effect is most appropriate to small windows; I use it most often for splash windows, about boxes and other small dialogs.

    To use the code you just add the FaderWnd source and header files to your MFC project, include the header in the relevant source file and construct a CFaderWnd when you want your window to fade. The CFaderWnd object itself takes care of fading your window and then destroying and deleting itself.

    The only code you need to write is new CFaderWnd(this). Once the CFaderWnd is constructed you can destroy or hide your window, or call EndDialog if the window is a modal dialog.

    For example, a modeless dialog (or it could be any child window):
    void CFadeTestDlg::OnClose() 
    {
    	new CFaderWnd(this);
    	DestroyWindow();
    }
    or a modal dialog:
    void CFadeTestDlg::OnOK() 
    {
    	if (UpdateData)
    	{
    		new CFaderWnd(this);
    		EndDialog(IDOK);
    	}
    }
    
    void CFadeTestDlg::OnCancel() 
    {
    	new CFaderWnd(this);
    	EndDialog(IDCANCEL);
    }

    How it works

    The CFaderWnd uses the new layered windows feature and the UpdateLayeredWindow API function. The constructor creates a new topmost window with the WS_EX_LAYERED style (among others) and with the same size and position as the source window (the window to be faded). It then uses UpdateLayeredWindow to fill the new window with a bitmap that is an exact copy of the source window. It also sets up a timer. When the constructor returns the source window can be destroyed (or hidden) and the new window remains visible.

    On each timer message CFaderWnd calls UpdateLayeredWindow again with a smaller value of alpha. Reducing the alpha value makes the window increasingly translucent. When alpha is at or very near zero CFaderWnd destroys the window and PostNcDestroy deletes the CFaderWnd object.

    The CFaderWnd constructor takes three parameters; it looks like this:

    CFaderWnd(CWnd *pWndToFade, UINT nFadeTime = 2000, BYTE byAlpha = 255);

    The second and third parameters are optional; the examples above all use the default values for these parameters. For obvious reasons (and if they're not obvious you shouldn't be reading this) the first parameter, which specifies the window to fade, must be supplied.

    CWnd *pWndToFade This is a pointer to the source window (the window to be faded).
    UINT nFadeTime This is a number of milliseconds for the whole duration of the fade. The default value gives a 2 second fade.
    BYTE byAlpha This is the alpha value at which to start the fade. The default value of 255 represents starting with a fully opaque window. You might choose to start at 127, for example, so that the window immediately becomes semi-transparent and then fades from there.

    UpdateLayeredWindow is only available on Windows 2000, so if the code were to call that function directly any program using the CFaderWnd class would fail to run on any other platform. I usually want my programs to run on any Win32 platform but to use the new features when they're available. Therefore the code does not call UpdateLayeredWindow directly. Instead it uses GetProcAddress to find out whether the function is available and calls it through the returned pointer when it is. If the function is not available CFaderWnd quietly deletes itself so it behaves as a no-op on older platforms. Thus you can use CFaderWnd in all your programs without compromising their ability to run on all Win32 platforms.

    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
    United Kingdom United Kingdom
    This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

    Comments and Discussions

     
    GeneralFader on Vista... Pin
    Paul Runner22-Dec-08 13:02
    Paul Runner22-Dec-08 13:02 
    GeneralRe: Fader on Vista... Pin
    Andrew Kulikov9-Feb-09 10:26
    Andrew Kulikov9-Feb-09 10:26 
    GeneralFading out a Splash Screen. Pin
    Nick Thomas21-Jul-06 1:45
    Nick Thomas21-Jul-06 1:45 
    GeneralRe: Fading out a Splash Screen. Pin
    Phil J Pearson21-Jul-06 9:01
    Phil J Pearson21-Jul-06 9:01 
    QuestionUpdateLayeredWindow on extended desktops? Pin
    currentsource8-Mar-06 6:35
    currentsource8-Mar-06 6:35 
    AnswerRe: UpdateLayeredWindow on extended desktops? Pin
    b@andreasen8.org25-Sep-06 8:32
    b@andreasen8.org25-Sep-06 8:32 
    GeneralRe: UpdateLayeredWindow on extended desktops? Pin
    currentsource26-Sep-06 16:11
    currentsource26-Sep-06 16:11 
    GeneralInvalid access to memory location. Pin
    Will Abriza1-Nov-05 19:12
    Will Abriza1-Nov-05 19:12 
    AnswerRe: Invalid access to memory location. Pin
    Phil J Pearson2-Nov-05 8:59
    Phil J Pearson2-Nov-05 8:59 
    GeneralLayered Windows API Pin
    Zero DeHero14-May-03 0:08
    Zero DeHero14-May-03 0:08 
    QuestionDivide by zero? Pin
    msvcpp17-Mar-03 1:21
    msvcpp17-Mar-03 1:21 
    GeneralSmall memory leak Pin
    16-Jan-03 4:36
    suss16-Jan-03 4:36 
    Generallayerd window on 9x Pin
    kuzi6-Mar-02 5:46
    kuzi6-Mar-02 5:46 
    GeneralRe: layerd window on 9x Pin
    Phil J Pearson6-Mar-02 10:04
    Phil J Pearson6-Mar-02 10:04 
    QuestionHelp with Alpha Blending? Pin
    Swinefeaster30-Jan-02 10:41
    Swinefeaster30-Jan-02 10:41 
    GeneralA question of "FaderWnd"Class from China. Pin
    11-Oct-01 3:43
    suss11-Oct-01 3:43 
    GeneralDoes'nt work with maximized windows Pin
    6-Sep-01 2:33
    suss6-Sep-01 2:33 
    GeneralGreat + Small Suggestion Pin
    .dan.g.20-Aug-01 23:13
    professional.dan.g.20-Aug-01 23:13 
    Questionhow can i use on winnt?? are you know it? Pin
    Member 204926-Jul-00 21:07
    Member 204926-Jul-00 21:07 
    AnswerRe: how can i use on winnt?? are you know it? Pin
    jucy16-Sep-00 18:28
    jucy16-Sep-00 18:28 
    GeneralExplain of code in lame Pin
    Adun13-Jul-00 10:35
    Adun13-Jul-00 10:35 
    GeneralRe: Explain of code in lame Pin
    8-Sep-01 2:10
    suss8-Sep-01 2:10 
    GeneralRe: Explain of code in lame Pin
    8-Sep-01 2:10
    suss8-Sep-01 2:10 
    GeneralRe: Explain of code in lame Pin
    Phil J Pearson10-Sep-01 10:52
    Phil J Pearson10-Sep-01 10:52 
    GeneralComments Pin
    Rui Lopes24-Jun-00 0:51
    Rui Lopes24-Jun-00 0:51 

    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.