Customized Check Boxes | CodeGuru

Customized Check Boxes

     Environment: VC6 SP4, Win 2000 SP2 Owner-Drawn push buttons have been well covered until now, but what about check boxes? At first I was surprised that, although being one of the basic controls under Windows, I couldn’t find anything useful about customized check boxes. I soon realised why: Windows doesn’t support Owner-Drawn check boxes. […]

Written By
CodeGuru Staff
CodeGuru Staff
Jan 24, 2003
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

    

Environment: VC6 SP4, Win 2000 SP2

Owner-Drawn push buttons have been well covered until now, but what about check boxes?

At first I was surprised that, although being one of the basic controls under Windows, I couldn’t find anything useful about customized check boxes. I soon realised why: Windows doesn’t support Owner-Drawn check boxes. You can assign the BS_OWNERDRAW style to them, but this won’t be any help. Then you would receive WM_DRAWITEM messages for the default, pushed, and disabled states, just like for an ordinary Owner-Drawn push button.

A check box, however, has more states; first, it can be checked or unchecked; then, the left mouse button or space bar can be pressed in any of the basic states; and, it can also be disabled in any of them. That’s six different states. So, is it impossible to make customized check boxes? No, the fact that we can’t rely on WM_DRAWITEM only means that there will be more work for you. You have to determine yourself when to redraw the check box and in which state to do it. But that is where CCheckBox comes in: It does all this for you internally. You only have to provide a bitmap with all six possible check mark states to it.

About CCheckBox

CCheckBox is a class derived from the MFC CButton class. Besides CTor and Dtor, it only has one public member:

static bool drawFocus;  // true  => draw focus rectangle (default)
                        // false => don’t draw focus rectangle

How to Integrate CCheckBox into Your Application

  1. Prepare a bitmap with all six possible check mark states. RGB(255,0,255) is the transparency color.
  2. Declare a CCheckBox member variable in your CDialog derive class:
    CCheckBox   m_cb_1;
  3. Call the CCheckBox’s constructor from the constructor of your dialog:
    CYourDialog::CYourDialog () :
        m_cb_1 (IDB_STATES, 13)
    { }      // IDB_STATES: ID of bitmap resource,
             // prepared in step 1
             // 13: dimension (width=height) of check mark
    
  4. Now, attach the check box to CCheckBox, either in OnInitDialog:
    // Subclass IDC_CBOX (= ID of check box)
    m_cb_1.SubclassDlgItem(ID_CBOX, this);
    

    or in DoDataExchange:

    // Subclass IDC_CBOX
    DDX_Control(pDX, IDC_CBOX, m_cb_1);
    

Downloads


SDK Downloads *


* Under SDK Downloads you can find another example of CCheckBox, made with pure Windows APIs. For usage (either in SDK or in interaction with MFC), see the accompanying “howto.html” file or the SDK demo project. However, the interface (public methods) of this class is almost the same as in the one presented above.

Just take a look at how you could subclass controls in an object-oriented way—without any MFC!

Download demo project – 28 Kb

Download source – 8 Kb
SDK demo project – 16 Kb
SDK demo application – 16 Kb


CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.