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

CDialogSK - A Skinnable Dialog Class

Rate me:
Please Sign up or sign in to vote.
4.86/5 (39 votes)
7 Jul 20033 min read 220.8K   8.8K   116   46
This article discusses the CDialogSK class that extends the CDialog MFC class and can be used to create dialogs that can be skinned.

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


Written By
Web Developer
United States United States
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.

Comments and Discussions

 
QuestionLicense of usage Pin
Hugo González Castro27-Jun-17 1:27
professionalHugo González Castro27-Jun-17 1:27 
GeneralGreat stuff, but i have a strange problem Pin
Ole Magnus Brastein5-Feb-10 0:23
Ole Magnus Brastein5-Feb-10 0:23 
GeneralThanks Pin
futurejo13-Dec-08 20:23
futurejo13-Dec-08 20:23 
JokeIt's great! Many thanks! Pin
Member 317484326-Sep-08 16:59
Member 317484326-Sep-08 16:59 
GeneralLittle problem in Windows XP Pin
vincennes6-May-08 10:03
professionalvincennes6-May-08 10:03 
GeneralThanks a Lot! Pin
susilrani1-May-08 22:07
susilrani1-May-08 22:07 
GeneralGreat! Thanks a lot! Pin
fasulia26-Dec-07 20:23
fasulia26-Dec-07 20:23 
QuestionMedia Center Look Pin
thready8-Jun-07 16:19
thready8-Jun-07 16:19 
AnswerRe: Media Center Look Pin
Mubeen_D29-Sep-07 11:48
Mubeen_D29-Sep-07 11:48 
GeneralVC6 - Received alot C4273 warnings + C2491 errors Pin
mightyCoCo28-Oct-06 6:34
mightyCoCo28-Oct-06 6:34 
GeneralRe: VC6 - Received alot C4273 warnings + C2491 errors Pin
Hou Tianze20-Jul-11 2:50
Hou Tianze20-Jul-11 2:50 
GeneralI need to use jpeg from resource Pin
kcselvaraj2-Aug-06 4:11
kcselvaraj2-Aug-06 4:11 
GeneralJust what I needed Pin
Stan Alex26-Mar-06 8:38
Stan Alex26-Mar-06 8:38 
GeneralRe: Just what I needed Pin
abhinaba26-Mar-06 18:54
abhinaba26-Mar-06 18:54 
GeneralThank you! Pin
Late24-Jan-06 21:29
Late24-Jan-06 21:29 
QuestionProblem I am facing while trying with Windows Media Player Control Pin
programvinod17-Oct-05 14:27
programvinod17-Oct-05 14:27 
GeneralPb with SMS Remote tools Pin
adk1-Aug-05 2:14
adk1-Aug-05 2:14 
GeneralImpossible to chage dialog image Pin
ProbeVision20-Jun-05 23:08
ProbeVision20-Jun-05 23:08 
QuestionDoes not work with directShow ? Pin
Yossef22-May-05 0:06
Yossef22-May-05 0:06 
QuestionCan I use JPEG instead? Pin
tcitci18-Apr-05 10:31
tcitci18-Apr-05 10:31 
AnswerRe: Can I use JPEG instead? Pin
ThatsAlok19-Apr-05 18:56
ThatsAlok19-Apr-05 18:56 
GeneralFundu Code Pin
ThatsAlok18-Feb-05 20:24
ThatsAlok18-Feb-05 20:24 
GeneralDotted-rectangle border!! Pin
nangluc10-Nov-04 17:08
nangluc10-Nov-04 17:08 
GeneralLittle Bug ;) Pin
.: LegoLas :.6-Oct-04 6:51
.: LegoLas :.6-Oct-04 6:51 
GeneralRe: Little Bug ;) Pin
abhinaba6-Oct-04 19:25
abhinaba6-Oct-04 19:25 

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.