Click here to Skip to main content
Licence CPOL
First Posted 19 Mar 2001
Views 429,186
Downloads 9,182
Bookmarked 146 times

CxSkinButton

By | 9 Jul 2008 | Article
A skinned button class with clipping region, tooltip and mouse tracking

Sample Image - sample.gif

With this class you can easily give a skin to your buttons in few steps:

  1. Add xSkinButton.cpp and xSkinButton.h to the project.
  2. Include xSkinButton.h in the header file where the controls are defined
  3. Create (or edit) a member variable for each button you want to customize as CxSkinButton. If the Class Wizard doesn't show the CxSkinButton type, select CButton and then edit the code manually.
  4. Add the bitmap resource for the buttons:
    • NORMAL bitmap: default button image.
    • DOWN bitmap: pushed button image.
    • OVER bitmap:(optional) image to shown when the mouse is over the button. If NULL, NORMAL bitmap will be used.
    • DISABLED bitmap: (optional) image for the disabled state. If NULL, NORMAL bitmap will be used.
    • FOCUS bitmap: (optional) image for the focused state. If NULL, NORMAL bitmap will be used.
    • MASK bitmap: (optional) clipping region. If you don't use the MASK, the button will be a rectangular owner-draw control. The default transparent color is RGB(255,255,255).
  5. In the window initialization add the CxSkinButton methods:
    BOOL CxSkinButtonDemoDlg::OnInitDialog()
    {
    //    ...
        m_btn1.SetTextColor(RGB(255,0,0));
        m_btn1.SetToolTipText("Button1");
        m_btn1.SetSkin(IDB_B1NORM,IDB_B1DOWN,IDB_B1OVER,IDB_B1GRAY,
                           0,IDB_B1MASK,0,0,0);
    //    ...

    The SetTextColor and SetToolTipText are self explaining; SetSkin is:

    void CxSkinButton::SetSkin(UINT normal,UINT down,UINT over, 
                               UINT disabled, UINT focus,UINT mask, 
                               short drawmode, short border, 
                               short margin)
    • normal, down, over, disabled, focus, mask = bitmap resource IDs
    • drawmode = if mask is not NULL, this should be 0 (normal); else you can try 1 (stretch) or 2 (tiled).
    • border = if mask is not NULL or is not rectangular, this should be 0; else you can try 1 to draw the standard 3D border around the button.
    • margin = if mask is not NULL or is not rectangular, this should be 0; else you can try to change this value to draw a dotted rectangle over the button when the control has the focus.

Remarks

  • The BS_OWNERDRAW style is added automatically, you don't need to set the "Owner draw" property in the resource editor.
  • only NORMAL and DOWN bitmaps are essential; OVER bitmap is a plus.
  • DISABLED bitmap is not necessary if the button is always enabled. You can also use the button text (automatically etched) to show the disabled state.
  • MASK bitmap is not necessary if the button is rectangular.
  • for rectangular buttons you should set the margin parameter greater than 0 (4 is a good choice), or use the FOCUS bitmap.
  • for rectangular buttons you can use 'flat' bitmaps and set the border parameter to 1. In this situation, NORMAL and DOWN bitmaps can also share the same resource.

Release History

v1.00 - 15/03/2001
- basic implementation and interface.
v1.10 - 28/03/2001
enhanced mouse tracking implementation (by Milan Gardian).
- SetCapture removed: accelerators now are dispatched.
- Double-click handling.
- Better behavior during "button-pressed" (mouse button down & holding) phase
v1.20 - 02/04/2001
- New CreateRgnFromBitmap() implementation. Mask bitmap now works in any display color mode, any mask color depth and any mask size.
v1.21 - 14/04/2001
- OnMouseLeave cast error fixed.
- Fixed FocusRect defect when OVER bitmap was NULL.
v1.30 - 25/04/2001
- Fixed CreateRgnFromBitmap failure under WinNT4.0
v1.40 - 29/06/2001
- check & radio button add on.
- added "focus" bitmap.
- fixed CreateRgnFromBitmap bug.
- fixed shortcut bug.
- fixed text drawing code.
v1.41 - 27/10/2001
- Fixed memory leakage in CreateRgnFromBitmap
v1.50 - 07/07/2008
- fixed memory leaks using SelectObject and GetDC (thanks to sachelis and Bernd Giesen)
- added SetToolTipColor (thanks to Mykel)

Compatibility

Win95,WinNT = Yes, requires IE3.0 or higher
Win98, WinME, W2k, WinXP = Yes

Thanks to all the Code Project developers!
Special thanks to:
Milan Gardian for mouse and keyboard tracking code.
Fable(at)aramszu(dot)net for ExtCreateRegion replacement code.
Rainer Mangold for radio-button and check-box code.
Andy Green and Cameron Epp for suggestions & debugging.

License

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

About the Author

Davide Pizzolato



Italy Italy

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
QuestionBackground is not transparent Pinmemberbillqu_developer17:49 6 Jul '11  
GeneralButtons dont work properly in stretch drawing mode Pinmemberquyps20:39 27 Apr '11  
GeneralMemory leak in CxSkinButton::CreateRgnFromBitmap PinmembertHeWiZaRdOfDoS22:22 3 Dec '10  
QuestionCreating a CxSkinButton on the fly? Pinmemberanuj.saluja21:48 3 Sep '10  
AnswerRe: Creating a CxSkinButton on the fly? Pinmemberanuj.saluja9:47 10 Sep '10  
GeneralThe dialog does not display PinmemberJRCooper18:08 25 Jun '10  
QuestionCan only add one button. PLS HELP PinmemberAlexGvG7:32 8 May '10  
GeneralSetSkin BUG Pinmembershaino19:58 20 Mar '09  
General[Message Removed] PinmemberKatekortez9:12 25 Oct '08  
Generalwelcome back PinmemberTeashirt217:33 9 Jul '08  
Questionwhen using xSkinButton in MFC regular dll can not auto change state ! Pinmemberarler21:20 1 Nov '07  
i recently building a mfc regular dll using xSkinButton
but if i use a radio button,
when check one radio button ,the other radio buttons can't automatically
uncheck itself,
who knows why this happen?
how to solve the problem?
 
thanks a lot!
 
arlerzhang
 

 
life is like a pack of chaocolite

Questionhow can add icon in bitmap? Pinmembershenhua8815:07 29 May '07  
QuestionLicense to use? PinmemberSRKarthik0:20 21 May '07  
GeneralMask Not Working Pinmembersiddharthfunda21:26 29 Mar '07  
GeneralNeed nIDCtl Pinmemberblackbox7919:44 7 Jan '06  
GeneralCxSkinButton does not draw text PinsussStanislav Khatsko16:27 10 Nov '04  
GeneralCxSkinButton does not draw text Pinmemberpremiumclock16:27 10 Nov '04  
GeneralLeak in CreateRgnFromBitmap Pinmembersachelis4:24 4 May '04  
GeneralRe: Leak in CreateRgnFromBitmap Pinmembersachelis4:46 4 May '04  
GeneralRe: Leak in CreateRgnFromBitmap [modified] PinmemberBernd Giesen1:12 2 Jul '04  
GeneralFlaw in DrawItem() method PinmemberBernd Giesen0:50 7 Apr '04  
GeneralLoading image from disk PinmemberWolfSupernova6:02 12 Nov '03  
GeneralRe: Loading image from disk PinmemberDavide Pizzolato9:08 12 Nov '03  
GeneralI want to know the event of when it swaps mouseon with mouseout images Pinsusssdfdsfa18:55 7 Oct '03  
GeneralRe: I want to know the event of when it swaps mouseon with mouseout images PinmemberDavide Pizzolato8:56 8 Oct '03  

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
Web01 | 2.5.120529.1 | Last Updated 9 Jul 2008
Article Copyright 2001 by Davide Pizzolato
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid