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

CDialogSK - A Skinnable Dialog Class

By , 7 Jul 2003
 

Introduction

This class is derived from the MFC CDialog. It supports the following features :-

  1. If running on Windows 2000 or Windows XP, make any one color transparent so that you can see through regions of the dialog
  2. If running on Windows 2000 or Windows XP, make the whole dialog translucent
  3. Adding a bitmap to the back ground. The bitmap can be a resource, a BMP file, or a HBITMAP
  4. Set style for background : Tile, Center, Stretch, resize dialog to the size of the bitmap
  5. Can enable/disable moving the dialog by clicking anywhere in it

Previous to Windows 2000 creating skinned dialogs were a bit difficult. You needed to write functions that could parse through the back ground image and create a CRgn that defined the shape of the skin. This could be done using repetitive calls to CRgn::CombineRgn for part of the image you wanted to see on the dialog. After creating the whole region you need to call CWnd::SetWindowRgn with a handle to the combined CRgn object.

From Windows 2000 a new API SetLayeredWindowAttributes  has been added to User32.dll. This class uses that to create skinned dialogs. However the background bitmap feature is not dependent on OS version and can be used on any version of Windows.

Using The Code

The class can be used using the following steps

  1. Add the files CDialogSK.h and CDialogSK.cpp to your project.

  2. Include CDialogSK.h in the .h file for your dialog class

  3. Replace all occurrences of "CDialog" with "CDialogSK" in the .h and .cpp files for your dialog class

  4. If you plan to use a background image (bitmap) go to dialog properties, styles tab and make Style=Popup, Border=None, and uncheck the "Title Bar" check box.

  5. At the end of OnInitDialog of your dialog class add calls to the appropriate methods in CDialogSK

    BOOL CSkinDialog_DemoDlg::OnInitDialog()
    {
        ...
        EnableEasyMove();  // enable moving of the dialog 
                           // by clicking anywhere in the dialog
        SetBitmap (IDB_BACKGROUND); // set background bitmap
        SetStyle (LO_RESIZE); // resize dialog to the size of the bitmap
        SetTransparentColor(RGB(0, 255, 0)); // set green as the 
                                             // transparent color
    
        return TRUE;
    }
    
  6. If you want to change the window style later you can call any of these method anywhere in your code at run time.
  7. If for example you want to make a circular dialog. Create a image which has a blue circle on a green background. Then call SetBitmap with the path to the image and call SetTransparentColor passing the color of background (green). This will remove the background from view and you will get a circular window.

Methods

The following methods are present in CDialogSK class

  1. DWORD SetBitmap (HBITMAP hBitmap); Sets a background bitmap based on a HBITMAP.
  2. DWORD SetBitmap (int nBitmap); Sets a background bitmap based on a resource ID.
  3. DWORD SetBitmap (LPCTSTR lpszFileName); Sets a background bitmap based on a Windows bitmap (.bmp) file.
  4. void SetStyle (LayOutStyle style); Sets the bitmap layout style. Can be any of LO_DEFAULT, LO_TILE (tile image), LO_CENTER (center image), LO_STRETCH (stretch image to fit dialog), LO_RESIZE (resize dialog to fit the image).
  5. void EnableEasyMove (BOOL pEnable = TRUE); If called with TRUE then you can move the dialog by clicking anywhere in the client area of the dialog.
  6. BOOL SetTransparent (BYTE bAlpha); Make the dialog as a whole transparent. Range is 0(transparent) - 255 (opaque). This works only on Windows2000 and above (WinXP).
  7. BOOL SetTransparentColor (COLORREF col, BOOL bTrans = TRUE); Make a particular color transparent. This works only on Windows2000 and above (WinXP). This can be used to create dialog in which you can see through parts of the dialog. 

History

  • This is the initial version. Date Posted: July 01, 2003

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

abhinaba
Web Developer
United States United States
Member
I just love coding. I started programming in 1995 with BASIC and then moved through Cobol, Pascal, Prolog, C, C++, VB, VC++ and now C#/.NET.
 
I received a Bachelor of Technology degree in Computer Science from University of Calcutta in 2001.
 
I worked for some time in Texas Instruments, Adobe Systems and now in Microsoft India Development Center in the Visual Studio Team Systems.
 
I am from the City of Joy, Kolkata in India, but now live and code Hyderabad.

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   
GeneralGreat stuff, but i have a strange problemmemberOle Magnus Brastein5 Feb '10 - 0:23 
Hi
 
Firstly, thank you for a very usefull and well done class. It has come in usefull more times then i can count Smile | :)
 
However, i just had a strange problem, that may or may not be related to CDialogSK but i'm hoping somone here can help.
 
I am running an application, that uses CDialogSK for making skinned dialog pannels(non-modal dialogs),
on a panasonic toughbook computer for some field research. The application works fine on both laptops and desktops,
but on this particular computer the dialogs sort of disapear. Its hard to explain exactly what happens. I have a data entry point with some text on it, and this is shown properly, but the background is gone. It's like the windows redraw/invaliate region functions are not working properly...
 

Anyone have any idea where to at least start searching for a solutions?
 

Thanks,
Ole
GeneralThanksmemberfuturejo13 Dec '08 - 20:23 
JokeIt's great! Many thanks!memberMember 317484326 Sep '08 - 16:59 
GeneralLittle problem in Windows XPmembervincennes6 May '08 - 10:03 
GeneralThanks a Lot!membersusilrani1 May '08 - 22:07 
GeneralGreat! Thanks a lot!memberfasulia26 Dec '07 - 20:23 
QuestionMedia Center Lookmemberthready8 Jun '07 - 16:19 
AnswerRe: Media Center LookmemberMubeen_D29 Sep '07 - 11:48 
GeneralVC6 - Received alot C4273 warnings + C2491 errorsmembervertex_x28 Oct '06 - 6:34 
GeneralRe: VC6 - Received alot C4273 warnings + C2491 errorsmemberHou Tianze20 Jul '11 - 2:50 
GeneralI need to use jpeg from resourcememberkcselvaraj2 Aug '06 - 4:11 
GeneralJust what I neededmemberStan Alex26 Mar '06 - 8:38 
GeneralRe: Just what I neededmemberabhinaba26 Mar '06 - 18:54 
GeneralThank you!memberLate24 Jan '06 - 21:29 
QuestionProblem I am facing while trying with Windows Media Player ControlmemberProgramVinod17 Oct '05 - 14:27 
GeneralPb with SMS Remote toolsmemberadk1 Aug '05 - 2:14 
GeneralImpossible to chage dialog imagememberAnneVis3420 Jun '05 - 23:08 
QuestionDoes not work with directShow ?memberYossef22 May '05 - 0:06 
QuestionCan I use JPEG instead?membertcitci18 Apr '05 - 10:31 
AnswerRe: Can I use JPEG instead?memberThatsAlok19 Apr '05 - 18:56 
GeneralFundu CodememberThatsAlok18 Feb '05 - 20:24 
GeneralDotted-rectangle border!!membernangluc10 Nov '04 - 17:08 
GeneralLittle Bug ;)member.: LegoLas :.6 Oct '04 - 6:51 
GeneralRe: Little Bug ;)memberabhinaba6 Oct '04 - 19:25 
GeneralRe: Little Bug ;)member.: LegoLas :.6 Oct '04 - 20:31 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 8 Jul 2003
Article Copyright 2003 by abhinaba
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid