Click here to Skip to main content
15,881,516 members
Articles / Desktop Programming / MFC
Article

Implementing compound shadows with CExtWndShadow

Rate me:
Please Sign up or sign in to vote.
4.86/5 (15 votes)
15 Jul 20042 min read 61.8K   2.3K   37   14
A CExtWndShadow class, which should enable you to easily draw compound shadows anywhere you want.

Sample Image - ExtWndShadow.gif

Introduction

This article introduces a CExtWndShadow class, which should enable you to easily draw compound shadows anywhere you want.

The class is partially based on the CExtWndShadow class presented in the freeware version of the Prof-UIS library available here.

How to use it

The CExtWndShadow class is simple to use. To add it to your project, please follow the steps below:

  1. Put its source files (CExtWndShadow.cpp and CExtWndShadow.h) into the proper folder and add their file names to your Visual Studio project.
  2. Include its header to the appropriate header file. If you plan to use CExtWndShadow in more than one place, it's reasonable to add it to the stdafx.h file.
    #include "CExtWndShadow.h"

Method description

bool Paint(
    CDC & dc,
    const CRect & rcWndArea,
    UINT nShadowSize = DEF_SHADOW_SIZE,
    UINT nBr0 = DEF_BRIGHTNESS_MIN,
    UINT nBr1 = DEF_BRIGHTNESS_MAX,
    bool bEnablePhotos = true
);

Draws the shadow.

Parameters
  • CDC & dc

    Reference to the device context that is used for drawing the shadow.

  • const CRect & rcWndArea

    Reference to the rectangular area in which the shadow is drawn.

  • UINT nShadowSize

    Size of the shadow in pixels, which is the same for the width and height.

  • UINT nBr0

    Minimum brightness of the shadow, which must be in the range 0 to 10.

  • UINT nBr1

    Maximum brightness of the shadow, which must be in the range 0 to 10.

  • bool bEnablePhotos

    If bEnablePhotos is set to true, specifies that the shadow algorithm is used at first and then the image is just displayed; otherwise, the shadow algorithm is used every time.

Return Value
  • Nonzero if successful.

Usage

For instance, if you want to draw a shadow for an edit control, use the following code:

CRect rcEdit;
m_Edit.GetWindowRect(&rcEdit);
ScreenToClient(&rcEdit);
rcEdit.InflateRect( 2, 2, 0, 0 ); // shadow placement adjustment
        
CExtWndShadow _shadow;
_shadow.Paint(
    dcPaint, rcEdit,
    5, // shadow size
    CExtWndShadow::DEF_BRIGHTNESS_MIN, 
    CExtWndShadow::DEF_BRIGHTNESS_MAX,
    false
);

Sample

The ShadowsTest sample project shows how to apply the class to some controls.

Reporting bugs

Your questions, suggestions, and bug reports may be posted either to the forum below or to the forum at the Prof-UIS website.

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
Software Developer (Senior)
Ukraine Ukraine
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow can i create a shadow for a Irregular window ? Pin
qsw123qsw7-Aug-12 6:44
qsw123qsw7-Aug-12 6:44 
QuestionPretty good! Pin
My2Cents5-Nov-07 11:59
My2Cents5-Nov-07 11:59 
AnswerRe: Pretty good! Pin
Dmitriy Yakovlev6-Nov-07 2:50
Dmitriy Yakovlev6-Nov-07 2:50 
QuestionWhat if move the controls? Pin
werter113-Dec-04 21:51
werter113-Dec-04 21:51 
AnswerRe: What if move the controls? Pin
Dmitriy Yakovlev13-Dec-04 22:23
Dmitriy Yakovlev13-Dec-04 22:23 
GeneralShadow for application Window Pin
crappy_sites23-Jul-04 11:29
crappy_sites23-Jul-04 11:29 
GeneralRe: Shadow for application Window Pin
th3matr1x9-Jul-05 6:20
th3matr1x9-Jul-05 6:20 
GeneralRe: Shadow for application Window Pin
AlexSZhang2-Nov-05 19:23
AlexSZhang2-Nov-05 19:23 
GeneralRe: Shadow for application Window Pin
th3matr1x5-Nov-05 1:05
th3matr1x5-Nov-05 1:05 
GeneralAny chance... Pin
.dan.g.18-Jul-04 15:30
professional.dan.g.18-Jul-04 15:30 
GeneralGood work ! some comments... Pin
minox17-Jul-04 0:49
minox17-Jul-04 0:49 
GeneralRe: Good work ! some comments... Pin
MacGadger4-Aug-06 9:07
MacGadger4-Aug-06 9:07 
GeneralBug, using on a button Pin
JimmyO16-Jul-04 2:36
JimmyO16-Jul-04 2:36 
GeneralRe: Bug, using on a button Pin
Dmitriy Yakovlev16-Jul-04 3:36
Dmitriy Yakovlev16-Jul-04 3:36 

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.