Click here to Skip to main content
Licence 
First Posted 24 Nov 1999
Views 328,226
Bookmarked 92 times

CheckComboBox Control

A combo box with check boxes.

Sample Image

Introduction

What does a CheckComboBox control do? A combo box has always been a way of selecting one item from a list of several. If you need to select one or more items, you have to either use a multiple selection listbox or use the MFC's CCheckListBox. The only problem is that it takes up space in your dialog or form. What you need is a CCheckComboBox!

When I started to develop the control, I was planning to design a composite control consisting of a static control along with a small button. When clicking the button, a popup window would be displayed where the user could select or unselect the items. The problem was that it took too much code to implement. I wanted the look and feel just like a standard combo box and that was not possible with a reasonable amount of code.

So I decided to subclass the combo box. A problem when subclassing the combo box is that you have no window handle to the list portion of the combo box that you may subclass. You only have the combo box window handle and that doesn't help.

The trick is to listen to the WM_CTLCOLORLISTBOX message. When the WM_CTLCOLORLISTBOX message is sent, lParam contains the window handle of the list box. This is the time to do the subclassing.

The code below shows how this is done:

BEGIN_MESSAGE_MAP(CCheckComboBox, CComboBox)
    ...
    ON_MESSAGE(WM_CTLCOLORLISTBOX, OnCtlColorListBox)
    ...
END_MESSAGE_MAP()

...
LRESULT CCheckComboBox::OnCtlColorListBox(WPARAM wParam, LPARAM lParam) 
{
    // If the listbox hasn't been subclassed yet, do so...
    if (m_hListBox == 0) {
        HWND hWnd = (HWND)lParam;

        if (hWnd != 0 && hWnd != m_hWnd) {
           // Save the listbox handle
           m_hListBox = hWnd;

           // Do the subclassing
           m_pWndProc = (WNDPROC)GetWindowLong(m_hListBox, GWL_WNDPROC);
           SetWindowLong(m_hListBox, GWL_WNDPROC, (LONG)ComboBoxListBoxProc);
        }
    }


    return DefWindowProc(WM_CTLCOLORLISTBOX, wParam, lParam);
}

After this is done, the rest is fairly straight forward. The ComboBoxListBoxProc() routine takes care of selecting/unselecting items and key down events. The overridden DrawItem() routine draws both the list items and the static portion of the combo box. If it is an item, it draws a checkmark followed by the text. If it is the static portion, it draws the text from all selected items separated by the standard list separator.

Please note that the CCheckComboBox must be created with the CBS_DROPDOWNLIST and the CBS_OWNERDRAWVARIABLE styles set. Also the CBS_HASSTRINGS style must be specified since I let the combo box handle the item strings (sorting etc.).

Since the check mark information is stored in the combo box item data, this may not be used by the application. Setting it to zero unselects the item otherwise it selects the item. But use the GetCheck() and SetCheck() routines instead since they handle redrawing correctly. If you need your own item data, you must implement this yourself.

It is easy to use this control since it is derived from the MFC CComboBox. Add CheckComboBox.h and CheckComboBox.cpp to your project and use it as a standard CComboBox. When used inside a dialog, simply select the category "Control" and variable type "CCheckComboBox" under the "Member Variables" page of the Class Wizard. This will declare a member variable in your dialog of type CCheckComboBox ready for you to use.

Well, I hope someone finds this useful. At least I did.

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

Magnus Egelberg, Lundalogik



Sweden Sweden

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
QuestionRe: License PinmemberScott Bartine10:11 6 Dec '11  
Questionhow to disable check box selection ? Pinmembermrgoos4:40 19 Aug '07  
QuestionTool tip for Combo contol Pinmembersajithomas22:52 21 Jun '07  
GeneralUsing CheckComboBox Pinmemberjives2:52 30 Apr '07  
QuestionWhy not CB_GETCOMBOBOXINFO? Pinmembertworca8:38 13 Apr '07  
AnswerRe: Why not CB_GETCOMBOBOXINFO? PinmemberMagnus Egelberg20:29 15 Apr '07  
GeneralRe: Why not CB_GETCOMBOBOXINFO? PinmemberNotre9:46 5 Nov '07  
I used GetComboBoxInfo in my class' constructor, but found that when I placed my control in the VS design surface, this messed up the selection experience. (Clicking in one edit portion of a combobox would select another combobox control entirely.) I ended up going back to the WM_CTLCOLORLISTBOX approach, as this worked properly both at runtime and design time. (I was writing in C#, but I imagine the same problem would exist in C++). Smile | :)
 
Notre
Generalcombocheckbox Pinmemberdnldldrch13:21 6 Dec '06  
GeneralRe: combocheckbox PinmemberMagnus Egelberg22:53 6 Dec '06  
QuestionOn resizing the dropdown list does not show up Pinmemberhoc_ngo13:15 15 May '06  
GeneralBug PinmemberMarek Konopka3:37 14 Mar '06  
GeneralRe: Bug PinmemberMarek Konopka3:51 14 Mar '06  
Questionhow to change it to the dropdown style Pinmemberminibao2:52 6 Feb '06  
AnswerRe: how to change it to the dropdown style Pinmember.dan.g.14:51 9 Mar '06  
GeneralRe: how to change it to the dropdown style PinmemberMember 41175973:06 10 Nov '08  
GeneralMutiple selection in the drop-down list box Pinmemberlanreola11:05 31 Aug '05  
GeneralRe: Mutiple selection in the drop-down list box Pinmember.dan.g.14:58 9 Mar '06  
GeneralFlat Checkbox PinmemberRafal Glowinski8:03 19 Jul '04  
GeneralThis is just what I need Pinmemberedger19:29 5 Feb '04  
Generalondropdown event PinmemberGAOFENG00716:05 12 Nov '03  
QuestionWinCE? Pinmemberajh18:32 5 Sep '03  
AnswerRe: WinCE? PinmemberJoão Paulo Figueira0:13 2 Oct '03  
GeneralRe: WinCE? Pinmemberajh5:11 2 Oct '03  
GeneralRe: WinCE? PinmemberJoão Paulo Figueira10:21 7 Oct '03  
GeneralLicense Pinmemberstevev@fieldbusinc.com3:54 9 Apr '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 25 Nov 1999
Article Copyright 1999 by Magnus Egelberg, Lundalogik
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid