Click here to Skip to main content
Licence 
First Posted 15 Jul 2004
Views 40,209
Bookmarked 32 times

Implementing compound shadows with CExtWndShadow

By | 15 Jul 2004 | Article
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

About the Author

Dmitriy Yakovlev

Software Developer (Senior)

Ukraine Ukraine

Member



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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionPretty good! Pinmembera_savant11:59 5 Nov '07  
AnswerRe: Pretty good! PinmemberDmitriy Yakovlev2:50 6 Nov '07  
QuestionWhat if move the controls? Pinmemberwerter121:51 13 Dec '04  
AnswerRe: What if move the controls? PinmemberDmitriy Yakovlev22:23 13 Dec '04  
GeneralShadow for application Window Pinmembercrappy_sites11:29 23 Jul '04  
GeneralRe: Shadow for application Window Pinmemberth3matr1x6:20 9 Jul '05  
GeneralRe: Shadow for application Window PinmemberAlexSZhang19:23 2 Nov '05  
GeneralRe: Shadow for application Window Pinmemberth3matr1x1:05 5 Nov '05  
GeneralAny chance... Pinmember.dan.g.15:30 18 Jul '04  
GeneralGood work ! some comments... Pinmemberminox0:49 17 Jul '04  
GeneralRe: Good work ! some comments... PinmemberManni Singh9:07 4 Aug '06  
GeneralBug, using on a button PinmemberJimmyO2:36 16 Jul '04  
GeneralRe: Bug, using on a button PinmemberDmitriy Yakovlev3:36 16 Jul '04  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 16 Jul 2004
Article Copyright 2004 by Dmitriy Yakovlev
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid