Click here to Skip to main content
Licence CPOL
First Posted 2 Jul 2004
Views 393,182
Bookmarked 215 times

FooButton

By | 7 Oct 2006 | Article
A lightweight general-purpose owner drawn bitmap button.
Prize winner in Competition "MFC/C++ Jun 2004"

Introduction

This article describes FooButton, a lightweight owner-drawn button class that's served me well for several years.  Although there are plenty of other excellent button classes at CodeProject, I thought I'd add this trusty friend to the pile in the hope that someone may find it equally useful.

Features

FooButton lets you use a vanilla CButton as a:
  • standard pushbutton
  • pushbutton button with a drop-down indicator
  • multi pushbutton (like IE's "Back" and "Next" buttons)
  • checkbutton
  • hyperlink
  • static text control that's responsive to mouse clicks
  • check box
  • radio button
Support is also provided for:
  • bitmaps (currently only 16-color)
  • left-justified, centered and multi-line captions
  • colored captions
  • gradient shaded button backgrounds
  • popup menus
  • hot tracking
  • optional focus rectangle and "default button" indicator
  • grouped checkbuttons

How to use FooButton

  1. First, associate a standard button control (eg: IDC_FOO_BUTTON) in your dialog with an instance of the object.

      /////////////
      // MyDialog.h
      #include "FooButton.h"
      ...
      FooButton m_fooButton;
      ///////////////
      // MyDialog.cpp
      void CMyDialog::DoDataExchange(CDataExchange* pDX)
      {
        CDialog::DoDataExchange(pDX);
        //{{AFX_DATA_MAP(CMyDialog)
        DDX_Control(pDX, IDC_FOO_BUTTON, m_fooButton);
        //}}AFX_DATA_MAP
      }

  2. Then, initialize the instance in your dialog's OnInitDialog() method to suit your needs.  In this example, the button is set to display a bitmap and a drop-down indicator.

      // Initialize FooButton
      m_fooButton.setBitmapId (IDB_FOO_BUTTON);
      m_fooButton.setType (FooButton::Type::pushButtonDropDown);
    
         Drop-down pushbutton

API

 Method Purpose
 getType(), setType() Gets and sets the button's type 
 getTextStyle(), setTextStyle() Gets and sets the button's text style 
 getTextColor(), setTextColor() Gets and sets the button's text color 
 getFocusStyle(), setFocusStyle() Gets and sets the button's focus style 
 getGradient(), setGradient() Gets and sets the button's gradient property 
 getBitmapId(), setBitmapId() Gets and sets the button's (optional) bitmap id 
 displayPopupMenu() Displays a popup menu below the button 
 isChecked(), check() Gets and sets a checkButton's checked state 
 isMultiClicked(), clearMultiClick() Gets and resets a multiPushButton's multi-clicked state 
 addToGroup(), removeFromGroup() Adds/removes a checkButton to/from a button group 
 reset() Frees storage used by all button groups 
 

Using FooButton as a check button

You can freely change any property of the button at run time.  This code snippet turns the button into a checkbutton and checks it.  Use check() and isChecked() to set and retrieve the button's checked state.

  // Make it a checkbutton and check it
  m_fooButton.setType (FooButton::Type::checkButton);
  m_fooButton.check (true);
  ASSERT (m_fooButton.isChecked());    // testing
     Unchecked   Checked

Gradient shading

Pushbuttons and checkbuttons can be set to display a gradient shaded background by calling setGradient().  This method has no effect if the button isn't a pushbutton or checkbutton.

  // Use a gradient shaded background
  m_fooButton.setGradient (true);
     Using a gradient shaded background

Button groups

You can make a bunch of checkButtons behave as mutually exclusive radio buttons by adding them to a button group.  A button group is just a named collection of buttons.  FooButton automatically handles group creation, membership and cleanup.

  // Make "size" checkbuttons mutually exclusive
  m_btnSmall.addToGroup (_T("foo"));
  m_btnMedium.addToGroup (_T("foo"));
  m_btnLarge.addToGroup (_T("foo"));
  m_btnXLarge.addToGroup (_T("foo"));
     A button group

Displaying a popup menu

To display a popup menu in response to a button click, call displayPopupMenu().  You can call this method for any type of FooButton.

  void CMyDialog::OnFooButton()
  {
    CMenu menu;
    menu.LoadMenu (IDR_POPUP_MENU);
    CMenu* pPopupMenu = menu.GetSubMenu (0);
    int nResult = m_fooButton.displayPopupMenu (pPopupMenu);
    if (0 != nResult)
       PostMessage (WM_COMMAND, nResult);
  }
     Normal   Pressed

Multi-pushbuttons

A multi-pushbutton behaves as two buttons in one, similar to IE's "Back" and "Next" buttons.  When the user clicks the button's drop-down region, FooButton sets its "multi-clicked" property to true.  You can query this property by calling isMultiClicked().  Regardless of whether the user clicked in the button's main or drop-down region, a standard notification is sent to the parent.  To clear the button's multi-click property, call clearMultiClick().

  void CMyDialog::OnFooButton() 
  {
    if (m_fooButton.isMultiClicked()) {
 
        // Display menu if drop-down region was clicked
        CMenu menu;
        menu.LoadMenu (IDR_POPUP_MENU);
        CMenu* pPopupMenu = menu.GetSubMenu (0);
        int nResult = m_fooButton.displayPopupMenu (pPopupMenu);
        if (0 != nResult)
           PostMessage (WM_COMMAND, nResult);
 
        // Remember to clear the button's multi-click property!
        m_fooButton.clearMultiClick();
 
    } else {
 
        // Otherwise do default action
        PostMessage (WM_COMMAND, IDC_DEFAULT_ACTION);
    }
  }
     Multi-pushbutton   Multi-pushbutton with drop-down pressed

Check boxes and radio buttons

You can make a FooButton appear as a standard check box or radio button by using the FooButton:Type::checkBox and FooButton:Type::radio types.  Of course, this is really only useful when you want to also display a bitmap or add menu support to the button.

  // Appear as check box and radio button
  m_fooButton1.setType (FooButton::Type::checkBox);
  m_fooButton2.setType (FooButton::Type::radio);
     Check box   Radio button with a popup menu

Hyperlink button

A hyperlink button is just a regular button that renders itself as a hyperlink.  You can navigate to a URL or perform any other action in the button's handler.

  // Appear as hyperlink
  m_fooButton.setType (FooButton::Type::hyperink);
     A button that looks like a hyperlink

Text color

You can change the color of the button's text at any time by calling setTextColor().  The text of hyperlink buttons is always rendered in C_HyperlinkColor and that of disabled buttons is always rendered in the standard etched format.

  // Draw caption in red
  m_fooButton.setTextColor (RGB (192, 0, 0));
     Custom caption text color

Focus rectangle

By default, a FooButton doesn't display a focus rectangle.  Call setFocusStyle() with FooButton::Focus::normalFocus to enable the button to display a focus rectangle.

  // Allow focus rectangle to be displayed
  m_fooButton.setFocusStyle (FooButton::Focus::normalFocus);
     Focus rectangle disabled   Focus rectangle enabled

Default button indicator

To enable a default FooButton to display its standard dark border, call setFocusStyle() with FooButton::Focus::defaultFocus.

  // Allow focus rectangle and default indicator to be displayed
  m_fooButton.setFocusStyle (FooButton::Focus::defaultFocus);
    Default button (unpressed)   Default button (pressed)

Rendering disabled bitmaps

Use the standard MFC EnableWindow() API to enable and disable the button.  FooButton uses its original bitmap to render a disabled version.

  m_fooButton.EnableWindow (TRUE);   // enable button
  m_fooButton.EnableWindow (FALSE);  // disable button
     Normal   Disabled

Acknowledgement

Revision history

  • 7 Oct 2006
    • Bug Fixm_hMsimg32 should be set to NULL in destructor. (Thanks, C. Young!)
    • Bug Fix:  Memory leak in DisabledBlt(). (Thanks, Corrado Valli!)

  • 6 Mar 2005
    • Bug Fix:  Added definition of COLOR_HOTLIGHT to enable compilation on older systems.

  • 5 Mar 2005
    • Enhancement:  Added support for gradient shaded buttons.
    • Bug Fix:  Reusing a group name across dialog invocations would cause a crash in FooButton::removeFromGroup().

  • 19 Feb 2005
    • Enhancement:  Added support for colored captions.
    • Enhancement:  Removed requirement to call FooButton::reset() when your app terminates.
    • Enhancement:  Now uses standard Win2000/XP hyperlink cursor.
    • Enhancement:  Code now ASSERTs if you're not subclassing from a button control.
    • Bug Fix:  All calls to Invalidate() now validate window handle, allowing a FooButton to be safely destroyed when clicked.

  • Fixed typo in default state rendering logic
  • 17 Jul 2004
    • Added support for check boxes and radio buttons
    • Fixed typo in default state rendering logic

  • 11 Jul 2004
    • Optimized fix for "unreferenced identifier" compiler warning
    • Exposed focus rectangle and default state modes
    • Added support for button groups

  • 4 Jul 2004
    Added multi-pushbutton and hyperlink styles.

  • 3 Jul 2004
    Submitted to CodeProject.

  • 12 Sep 1998
    Initial version.
  • License

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

    About the Author

    Ravi Bhavnani



    Canada Canada

    Member

    Ravi Bhavnani is an ardent fan of Microsoft technologies who loves building Windows apps, especially PIMs, system utilities, and things that go bump on the Internet. During his career, Ravi has developed expert systems, desktop imaging apps, marketing automation software, EDA tools, a platform to help people find, analyze and understand information, trading software for institutional investors and advanced data visualization solutions. He currently works for a company that provides enterprise workforce management solutions to large clients.
     
    His interests include the .NET framework, reasoning systems, financial analysis and algorithmic trading, NLP, CHI and UI design. Ravi holds a BS in Physics and Math and an MS in Computer Science and was a Microsoft MVP (C++ and C# in 2006 and 2007). He is also the co-inventor of 2 patents on software security and generating data visualization dashboards. His claim to fame is that he crafted CodeProject's "joke" forum post icon.
     
    Ravi's biggest fear is that one day he might actually get a life, although the chances of that happening seem extremely remote.

    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
    GeneralDouble click - not giving a second click. PinmemberPhil Outram6:16 12 Jan '10  
    GeneralRe: Double click - not giving a second click. PinmemberRavi Bhavnani6:18 12 Jan '10  
    GeneralRe: Double click - not giving a second click. PinmemberPhil Outram6:21 12 Jan '10  
    QuestionUse with Common Dialogs Pinmemberdaxack1:35 25 Apr '09  
    QuestionWhy GROUPBOX Appears to be round? Pinmemberlibrorum15:25 19 Feb '09  
    AnswerRe: Why GROUPBOX Appears to be round? PinmemberRavi Bhavnani15:31 19 Feb '09  
    QuestionCan't get CFont object from the button's GetFont() [modified] Pinmemberguocang7:26 2 Dec '08  
    AnswerRe: Can't get CFont object from the button's GetFont() PinmemberRavi Bhavnani1:30 18 Dec '08  
    GeneralGradient suggest when disable button Pinmemberchogeha23:52 26 Jun '08  
    GeneralRe: Gradient suggest when disable button PinmemberRavi Bhavnani3:56 27 Jun '08  
    GeneralMissing update when changing text PinmemberK.Stein21:47 17 Oct '07  
    Hi,
    Thanks for this great class!
    I enjoy to use it in my app.
     
    I have found a little problem:
    The text is not updated correctly when it is changed.
    This happens when using the button with the style hyperlink or as hottrack and in combination with a menu. I change the text of the button according to the choice in the menu (comparable to a dropdown list).
    It works fine as long as I use the mouse to select the menu item. If I use the keyboard to open the menu and to select the item the button shows the old and the new text on top of each other.
    I could solve the problem by calling Invalidate() before setting the new text:
     
             if( !cstrText.IsEmpty() )
             {
                // necessary to delete old text when selecting menu entry by keyboard
                pBtn->Invalidate();
                pBtn->SetWindowText( cstrText );
             }
     
    I think it would be better to modifiy the button text by a member function which cares for the necessary update.

    GeneralRe: Missing update when changing text PinmemberRavi Bhavnani2:42 18 Oct '07  
    GeneralXP Themes PinmemberTim Cook3:15 14 Jun '07  
    GeneralRe: XP Themes PinmemberRavi Bhavnani7:27 14 Jun '07  
    GeneralRe: XP Themes PinmemberDavid Pritchard4:21 26 Mar '10  
    GeneralRe: XP Themes PinmemberJacob Skjoet22:48 9 Jun '11  
    GeneralRe: XP Themes PinmemberRavi Bhavnani1:51 10 Jun '11  
    GeneralRe: XP Themes PinmemberJacob Skjoet2:12 10 Jun '11  
    GeneralRe: XP Themes PinmemberRavi Bhavnani2:22 10 Jun '11  
    GeneralRe: XP Themes PinmemberRavi Bhavnani2:25 10 Jun '11  
    GeneralRe: XP Themes PinmemberDavid Pritchard4:53 25 Jul '11  
    GeneralRe: XP Themes PinmemberRavi Bhavnani5:05 25 Jul '11  
    GeneralRe: XP Themes PinmemberDavid Pritchard5:56 2 Aug '11  
    GeneralRe: XP Themes [modified] PinmemberDavid Pritchard6:01 2 Aug '11  
    GeneralRe: XP Themes PinmemberDavid Pritchard6:03 2 Aug '11  

    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 7 Oct 2006
    Article Copyright 2004 by Ravi Bhavnani
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid