Click here to Skip to main content
Click here to Skip to main content

WTL Button Menu Class

By , 5 Nov 2002
 

Sample Image - WTLButtonMenu.jpg

Introduction

A small CButton-derived class that will display a popup menu when clicked. Easy to use and very handy for dialog based application.

Using CButtonMenu

To use this class with a WTL dialog, first include the header file in the MainDlg.h file:

#include "buttonmenu.h"

Next, add a CButtonMenu object to the class:

CButtonMenu m_wndButtonMenu;

Next (and this is important), add a REFLECT_NOTIFICATIONS() call to your dialogs message map (else the button won't get the BN_CLICKED notification message):

BEGIN_MSG_MAP(CMainDlg)
    ...
    REFLECT_NOTIFICATIONS()
END_MSG_MAP()

Now subclass an existing button control and set the popup menu that you want displayed in your dialogs OnInitDialog function:

// Create button menu
m_wndButtonMenu.SubclassWindow(GetDlgItem(IDC_BUTTON1));
// Set the menu ID that the button displays
m_wndButtonMenu.SetMenu(IDR_POPUP);

Finally, add the necessary COMMAND_ID_HANDLERs for your popup menu commands.

That's it! The button will be displayed with an arrow (using the Marlett font if available), and will display a popup menu when clicked.

Notes

When designing a dialog-box that uses this class, instead of using a normal button control, use a checkbox control that has the "Push like" style-bit set. The advantage of using a checkbox is that the button will stay pushed whilst the popup menu is displayed (see the example project for more details)

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

Rob Caldecott
Architect
United Kingdom United Kingdom
Member
No Biography provided

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMarlett ArrowmemberArmen Hakobyan24 Mar '04 - 8:58 
GeneralRe: Marlett ArrowmemberRobert Edward Caldecott25 Mar '04 - 4:09 
GeneralRe: Very nice, what about the dialog look?memberRobert Edward Caldecott17 Feb '03 - 22:05 
GeneralVC6.0 AtlInitCommonControls missingmemberMartin Holzherr6 Nov '02 - 6:18 
GeneralRe: VC6.0 AtlInitCommonControls missingmemberRobert Edward Caldecott6 Nov '02 - 6:38 
GeneralRe: VC6.0 AtlInitCommonControls missingmemberRobert Edward Caldecott6 Nov '02 - 6:39 
GeneralNicememberAnatoly Ivasyuk6 Nov '02 - 4:32 
GeneralRe: NicememberRobert Edward Caldecott6 Nov '02 - 4:37 
GeneralRe: NicememberPaul Selormey6 Nov '02 - 13:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 6 Nov 2002
Article Copyright 2002 by Rob Caldecott
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid