Click here to Skip to main content
Licence 
First Posted 11 Jun 2003
Views 82,351
Bookmarked 19 times

Simplest Checkable Groupbox Class

By | 4 Dec 2003 | Article
Lots of time we want to enable/disable a set of controls in our dialog. Checkable Groupbox can even assemble a radio-style group!

Introduction

Lots of time we want to disable a set of controls in our dialog. Group box is a good control to categorize a few controls together, but unfortunately it cannot enable/disable its controls. I extended CButton class and made it very simple to accomplish this and it is encapsulated into one class.

So you can change the title of a group box into a check box or radio button (then you need more group boxes of course).

I must confess I borrowed some idea of other talented programmers.

How to use it

  1. Draw a group box in resource editor as usual. In resource editor, change the style property of group box to icon or bitmap, this prevents Overlapped text when tab is pressed!

    Styles Page

    You can also enable tab key navigation by enabling Tab Stop in group box resource like following

    Gerenal Page

  2. Add a member variable for this added group box, but choose CCheckableGroupBox as control type.
  3. In OnInitDialog(), call m_yourVariable.SetTitleStyle(BS_AUTOCHECKBOX); to change normal title to a check box, or use BS_AUTORADIOBUTTON for radio box.
  4. you want a group of group box toggle by radio box title, just create more Checkable group box as you already did, and call SetGroupID to give them a group!
  5. In updated version of this control, I support DDX_Check, which means now you can use UpdateData() to update and save the state of check box in an standard MFC fashion.

Because the check/radio box is created when SetTitleStyle() is called, no variable update is applicable before that point. If you want to update the status from a member variable, please call UpdateData(FALSE) after that. I know it's not perfect but it's not that bad anyway.

History

  • Updated (21/11/03) - Supports windows WM_ENABLE message. Now you can call EnableWindow() to disable the whole group!
  • Updated (24/11/03) - Suppot DDX_Check for variable exchange. Please refer to demo project for details. Tab support by enable tab stop style in resource.
  • Updated (02/12/03) - Send BN_CLICKED Message to parent dialog while title box is clicked. This is crucial if you use this control along with my Data Driven UI Behaviour Pattern.
  • Updated (03/12/03) - Support embedded group boxes (Groupbox inside another), no level or number limitations!

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

Ziming

Software Developer (Senior)
www.wonga.com
Ireland Ireland

Member

I have over 13 Years IT industry experience as Principle/Senior Programmer. I am experienced in .NET/J2EE system design and detailed implementation. I master UML modelling and OO design methodology with a strong C#/C++/Java coding background. I have been in working/managing a distributed project using Agile/Waterfall approach. My business knowledge includes Telecommunication, Financial Investment/Trading, and Banking.

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
Generalchoose CCheckableGroupBox as control type. PinmemberMember 46314323:11 22 Apr '08  
GeneralXP Style & Radion Button Type PinmemberJimmyO2:45 28 Nov '07  
Question? SS_NOTIFY PinmemberSynetech15:54 14 Sep '06  
GeneralSetting text colour (XP style) Pinmemberhuw24:22 16 Aug '06  
GeneralRe: Setting text colour (XP style) PinmemberDieter Hammer4:58 16 Apr '09  
Questionhow to make gropbox control dynamically. PinmemberBankey Khandelwal19:28 9 Mar '06  
QuestionOverlapped text when tab is pressed Pinmembersguay7:44 17 Jan '06  
General! Toggle Visibility Instead of Enabled PinmemberSynetech14:25 5 Nov '04  
General! This class is more useful than you think PinmemberSynetech11:00 21 Oct '04  
General! 3 state checkbox PinmemberSynetech13:54 26 Jul '04  
GeneralUpdate List PinmemberZiming22:36 12 Jun '03  
GeneralSomething to look into. PinmemberWREY1:27 12 Jun '03  
GeneralRe: Something to look into. PinmemberZiming1:30 12 Jun '03  
GeneralRe: Something to look into. PinmemberWREY1:55 12 Jun '03  
GeneralRe: Something to look into. Pinmemberokigan2:38 12 Jun '03  
GeneralRe: Something to look into. PinmemberZiming2:41 12 Jun '03  
GeneralRe: Something to look into. PinmemberWREY3:15 12 Jun '03  
GeneralI believe I found the reason!! PinmemberWREY3:29 12 Jun '03  
GeneralRe: I believe I found the reason!! PinmemberTroy Russell9:47 26 May '09  
GeneralTimeStamp Utilities PinmemberWREY4:52 15 Jun '03  
GeneralRe: Something to look into. PinmemberSynetech10:46 21 Oct '04  
GeneralUpdated PinmemberZiming2:39 12 Jun '03  
GeneralRe: Updated PinmemberMartin C Cook2:42 12 Jun '03  
GeneralRe: Updated PinmemberMartin C Cook7:00 12 Jun '03  
GeneralRe: Updated PinmemberWREY10:48 12 Jun '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
Web03 | 2.5.120517.1 | Last Updated 5 Dec 2003
Article Copyright 2003 by Ziming
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid