Click here to Skip to main content
Licence 
First Posted 1 May 2002
Views 110,888
Bookmarked 62 times

An Enhanced CCheckComboBox

By | 10 Dec 2002 | Article
hybrid control simulating a combo box with checkboxes on a dropdown tree

Sample Image - CheckCmb.gif

Introduction

I wanted a control with both the functionality of a combo and of a tree with checkboxes. Such a control would act like a combo showing a dropdown and also allowing checking and fast checking items.

By the time I finished coding I saw Magnus Egelberg's "CCheckComboBox" class, but I realize that my control has several advantages which anyway would had required the class to be completely rewrote.

My implementation (of a check list dropdown) is different from other implementations I seen, using a child, and not a popup window. Also for a better generality I use a tree, letting user see the checked items, by showing them in an edit box with a tool tip. I simulated a combo box by using an owner draw button, thus not directly deriving it from CWnd or CComboBox. I think this approach has several advantages.

To integrate these classes in a new project you would have to:

  1. Add the files "Check*" to your project
  2. On your form add a button with owner draw style and map it to a control
  3. Change the name of the mapped control to "CCheckComboBox"

To add an item you have to specify a caption, an ID and a level. The root has the level 0 (ROOT_LEVEL). All other nodes must be added with levels greater than 0 (ROOT_LEVEL), in the order in which they appear in the full-expanded tree. At any time you can use the function "GetCheckedIDs" to get a string with all checked item's IDs on the highest level of the tree. It is also possible to get the checked IDs using the function "GetCheck".

// ADD tree items:
m_choCountries.AddString("North America");
    m_choCountries.AddString("USA",    5, ROOT_LEVEL + 2);
    m_choCountries.AddString("Canada", 6, ROOT_LEVEL + 2);
    m_choCountries.AddString("Europe");
    m_choCountries.AddString("UK",     7, ROOT_LEVEL + 2);

// CHECK all items
m_choCountries.CheckAll(TRUE);

// UNCHECK the item with ID = 6
m_choCountries.SetCheck(6, FALSE);

// GET all checked items
CString strCheckedItems = m_choCountries.GetCheckedIDs();

Any suggestions to improve this set of classes are welcome.

History

  • 6 June 2002 - I let CTreeView alone interpret user keys, and introduced the OnGetDlgCode function for the combo.
  • 11 Dec 2002 - In this update I fixed 2 bugs and I added a functionality.

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

Magerusan Grigore Cosmin

Web Developer

Romania Romania

Member

In June 2002 Magerusan Grigore Cosmin, took a Master's Degree in Computer Science at UBB University in Cluj.
 
He has ~2 years of experience using in VC++.


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
QuestionI added "afx_msg void OnNMCustomdraw(NMHDR *pNMHDR, LRESULT *pResult);" to CCheckTreeCtrl,but no any effect Pinmemberpaniclp15:45 10 Jan '12  
QuestionHow can i use your Control in a CToolBar? PinmemberBigJorgos9:40 30 May '08  
QuestionHow to update parent control PinmemberJohannes P. Hansen23:44 1 Nov '07  
GeneralCheckBoxes PinmemberPandele Florin5:26 23 Aug '05  
GeneralA tip to update text whenever we have to DeleteString(nIndex). PinmemberScott M.G. Su23:00 6 Jul '05  
GeneralAdd Mouse Wheel Scrolling Support Pinmemberxzackely4:14 10 Dec '03  
QuestionVC++ 2003? PinmemberStefan Dahlin7:47 15 Sep '03  
AnswerRe: VC++ 2003? PinmemberStefan Dahlin0:30 16 Sep '03  
GeneralMinor improvements PinsussGöran Lundberg20:59 30 Mar '03  
GeneralGood, but BIG PROBLEM!!! Pinmemberoleg_cherkasenko6:25 15 Mar '03  
GeneralToolTip PinmemberBrad Bruce9:29 22 Feb '03  
GeneralWell done ! PinsussAnonymous3:24 12 Dec '02  
GeneralNew update available PinmemberMagerusan Grigore Cosmin20:51 11 Dec '02  
GeneralLooks not bad! PinmemberPhilip Patrick11:00 12 Aug '02  
GeneralBUG: Could not check, if item level decreases. PinmemberIsmail PAZARBASI14:56 19 Jun '02  
GeneralBug PinmemberBoris Ilijic6:57 19 Jun '02  
GeneralVery Good!! PinmemberWREY10:40 10 Jun '02  

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
Web04 | 2.5.120517.1 | Last Updated 11 Dec 2002
Article Copyright 2002 by Magerusan Grigore Cosmin
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid