Click here to Skip to main content
Click here to Skip to main content

Go to sleep! Fade to B/W

By , 9 Nov 2003
 

Introduction

Did you ever notice that when you shutdown Windows/XP there is a fading effect from color to B/W on the desktop? Ok that's the objective of this article, a simple way to capture a given window and fade it in an inactive status.

The main idea to perform this operation is quite simple: the code basically creates a fading-window over the target one. This fading-window has all the needing to make this simple animation and the complete implementation is not long and it's based on 3 parts:

  • a snap-shot routine to copy the given window in an in-memory bitmap,
  • a function to decolorize the given bitmap,
  • the main loop to step the decolorizing.

Notice: this code will work only on 16, 24 or 32 bit display color mode.

Using the code

There are basically 2 modalities to perform the fading process: automatic and controlled.

Automatic - this is the simplest way, and it can be used to put the given window in a "relaxed" mode - when the user will click on the given window, this will return to it's original status - here the simple steps to start with this operation:

  1. add the FadeWnd.h and FadeWnd.cpp, to your project,
  2. include the FadeWnd.h in the implementation code (.cpp) where you will call the fading effect,
  3. simply call the CFadeWnd::AutoFade(CWnd* pWnd) on the window you want to fade.

Controlled - don't worry, this is quite easy too, the difference is that we want to control the moment the fading effect must finish. For this, I have assumed that the fading operation must simply be done before a modal window call - here the steps:

  1. as before, add the FadeWnd.h and FadeWnd.cpp, to your project,
  2. include the FadeWnd.h in the implementation code (.cpp) where you will call the fading effect,
  3. define a CFadeWnd object before a dialog or a message-box modal call, for sample: wndFade,
  4. create the fade window, passing as parent the window to fade as shown: wndFade.Create(this).

Difficult?

Let's code!

Remember, first at all, add the FadeWnd.h and FadeWnd.cpp, to your project. To do this, copy these 2 files in the folder of your project, and from the [Project] menu item of the Visual Studio, choose [Add to Project] -> [Files] voice. Select the 2.

Next step, include the FadeWnd.h in the implementation code (.cpp) where you will call the fading effect. If you want to use the CFadeWnd class a bit every where, you can include it in the stdafx.h.

#include "FadeWnd.h"

To use it in a simple way, you can perform the call:

void CMakeInactiveDlg::OnButton1() 
{
    CFadeWnd::AutoFade(this);
}

Fade all the desktop:

void CMakeInactiveDlg::OnButton2() 
{
    CFadeWnd::AutoFade(GetDesktopWindow());
}

Fade the given window for the necessary modal sub-window call:

void CMakeInactiveDlg::OnButton3() 
{
    CFadeWnd wndFade(this);
 
    // modal window call as a DIALOG or a MESSAGEBOX
    AfxMessageBox(
        _T("Disabled until this message will be closed"),
        MB_OK | MB_ICONINFORMATION);
}

Fade using a different gradient color:

void CMakeInactiveDlg::OnButton4() 
{
    CFadeWnd::AutoFade(
        this,                // window to fade
        RGB(255,128, 64),    // light color ref
        RGB( 64, 16,  0));   // dark color ref
}
 
// - or -
 
void CMakeInactiveDlg::OnButton5() 
{
    CFadeWnd wndFade(
        this,                // window to fade
        RGB(255,128, 64),    // light color ref
        RGB( 64, 16,  0));   // dark color ref
 
    // modal window call as a DIALOG or a MESSAGEBOX
    AfxMessageBox(
        _T("Disabled until this message will be closed"),
        MB_OK | MB_ICONINFORMATION);
}

Notices

To permit other programmers to change the behavior of this control, I have added 3 virtual members that can be easily overridden:

  • void CreateGradient(...) - this allow to try other fading algorithms
  • bool OnLButtonCheck() - this is needed to make security checks directly inside the CFadeWnd during left button mouse clicks
  • bool OnRButtonCheck() - same as above, but for right button mouse clicks

Play with the CreateGradient call

I have made virtual the CreateGradien member of the CFadeWnd. This will allow some programmers to play with this call deriving a new class from the CFadeWnd. Let's see a sample of this process.

Create your derived class, for sample:

class CMyGradientFadeWnd : public CFadeWnd
{
public:
    virtual void CreateGradient(
        COLORREF /* clrLight = RGB(255,255,255) */,  // parameters are not 
                                                     // used in this sample
        COLORREF /* clrDark  = RGB(  0,  0,  0) */)
    {
        for(int i=0; i<256; i++)
        {
            m_clrGradient[i] = RGB(i, 255-i, i);
        }
    }
};

Now you have only to use your CMyGradiendFadeWnd in substitution of the CFadeWnd in your application.

Intercepting the left and right mouse button clicks inside the CFadeWnd class using OnLButtonCheck and OnRButtonCheck calls

Of course, this could be done deriving the whole class with CLASSWIZARD, and for more skilled developers, I'll suggest to do it that way - but to allow fast and easy way to inject our own made dialogs directly in the CFadeWnd, I have made the 2 overridden calls.

As for the CreateGradiend saw before, create your derived class, for sample:

class CMyPasswordFadeWnd : public CFadeWnd
{
public:
    virtual bool OnLButtonCheck()
    {
        // add the password check here
        CPasswordDlg dlg; // make your own dialog
        return (dlg.DoModal() == IDOK);
    }
    virtual bool OnRButtonCheck() { return false; } // no response
};

Credits - Special thanks to

Credits are reported inside the source code. The major help come from these articles/posts:

History

  • 10 November 2003 - bug fixes and some new things from the message posts:
    • virtual CreateGradient(...) call to perform a different graying effect
    • virtual OnLButtonChek() and OnRButtonChek() to perform a mouse click security check inside the CFadeWnd class
    • timing calculation to make the fading effect fit in less than 2 seconds
    • region heredity for shaped windows (example skinned windows)
    • disabled the parent window during the fade process, and eliminated the icon on the task-bar
  • 3 November 2003 - first public release

// Todo :

  • ... and the list is growing

Of course, all suggestions are welcome

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

John A. Johnson
Chief Technology Officer http://www.johnson.vi.it
Italy Italy
Member
Details count.
 
Has gained his experience working in the management with several private companies, both production and services kind of farms, especially in managerial, technical direction, as a trainer and marketing / sales, as well as considerable experience in project management.
 
Has completed his technical / scientific expertise with several companies and universities working on software engineering, industrial automation and production at various levels, producing CAD for textiles (in the press and yarn, both for design applications and treatment of color and digital printing), incorporation of the farm, factory automation (with significant experience on textiles, plastics, luxury mechanics and dyes) to complete the design of ERP systems (fiscal, analytical, warehouse, quality systems, quality control, production scheduling to finite and infinite capacity).
 
Facebook: http://www.facebook.com/john.andrew.johnson
Linkedin: http://www.linkedin.com/in/johnajohnson

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionUpdated for VB.Net or C#?memberTim8w19 Jun '08 - 12:47 
AnswerRe: Updated for VB.Net or C#?memberJohn A. Johnson23 Jun '08 - 21:22 
AnswerRe: Updated for VB.Net or C#?membershenjian7 Feb '10 - 4:44 
GeneralRe: Updated for VB.Net or C#?memberyjvujj30 Sep '11 - 8:05 
QuestionGreat code but how can I do this?sussAnonymous5 Oct '04 - 11:50 
QuestionIs there a Way to set XP generally to B/W ?membere-t-c26 Sep '04 - 23:01 
GeneralLeaving a windowsussAnonymous20 Jun '04 - 4:29 
GeneralC#memberHarsmaken18 May '04 - 8:20 
GeneralPreventing a WM_CLOSE message for CFadeWnd (e.g. Alt+F4) + fixmemberValentin Mocanu18 Mar '04 - 2:27 
GeneralCoolmemberHockey14 Feb '04 - 13:33 
QuestionFading non-rectangular dialogs?membert00lb0x_t00lb0x25 Jan '04 - 4:01 
AnswerRe: Fading non-rectangular dialogs?memberA sleepy one29 Jan '04 - 23:48 
GeneralSmall bug and fixmemberAndrew122 Dec '03 - 2:03 
QuestionFading like in WinXP?memberMirza Miletic18 Dec '03 - 11:04 
AnswerRe: Fading like in WinXP?memberA sleepy one29 Jan '04 - 23:43 
GeneralKeep updatingmemberMajor Major20 Nov '03 - 1:48 
GeneralRe: Keep updatingmemberJohn A. Johnson20 Nov '03 - 22:49 
GeneralRe: Keep updatingmemberMajor Major24 Nov '03 - 2:36 
GeneralThats GreatmemberBalkrishna Talele19 Nov '03 - 20:07 
GeneralWow!membermachocr13 Nov '03 - 6:29 
GeneralRe: Wow!memberJohn A. Johnson16 Nov '03 - 23:14 
GeneralGreat code! one minor thing..memberBoonchai M.12 Nov '03 - 20:20 
GeneralRe: Great code! one minor thing..memberJohn A. Johnson12 Nov '03 - 20:30 
QuestionHow about doing the fade in a thread?memberJeremy Davis12 Nov '03 - 0:32 
AnswerRe: How about doing the fade in a thread?memberJohn A. Johnson12 Nov '03 - 1:07 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 10 Nov 2003
Article Copyright 2003 by John A. Johnson
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid