Click here to Skip to main content
15,881,715 members
Articles / Desktop Programming / MFC

Cool Push Menu Button

Rate me:
Please Sign up or sign in to vote.
3.39/5 (24 votes)
3 Jul 2003 470K   6.8K   103   83
This article shows the use of a Push button with a drop down menu, similar to the one found in the Office 2000 suite.

Sample Image - coolbtn.jpg

Introduction

This article shows the use of a Push button with a drop down menu, similar to the one found in the Office 2000 suite. The code is encapsulated in a MFC class. The class itself is derived from a CButton class, by deriving from this class, most of the button behavior is supplied.

The main core of the code is the drawing routine draw the button and its behavior. Also, there is extensive use of mouse trapping code.

The public interface to access the class is shown here...

C++
BOOL Create( LPCTSTR lpszCaption, DWORD dwStyle, 
                  const RECT& rect, CWnd* pParentWnd, UINT nID );
BOOL SetButtonImage(UINT nResourceId, COLORREF crMask);
BOOL AddMenuItem(UINT nMenuId,const CString strMenu, UINT nFlags);

These functions create the class, set the bitmap for the button and add menu items for the drop menu menu.

The bitmap must be added as a bitmap resource in the class and it's probably best to use the standard toolbar button size (16x15 pixels).

The color reference for the mask is usually RGB(255,0,255) (Magenta).

Menu items are added to the menu button by the AddMenuItem function. You'll need to create a resource symbol and use the relevant menu flags found in the Windows API under menus (beyond the scope of this document). Command handlers are then added to the parent windows message map (see the code example).

In the sample shown there, the button is constructed in the OnInitDialog handler. The button is created as a Window, but could quite easy be changed to a subclassed dialog item.

There is room for improvement in the class; RemoveMenuItem, ModifyMenuItem could be added and the SetButtonImage could be modified to replace a current image, unfortunately project deadlines prevent me from adding this functionality.

History

  • 29th July, 2000 - Updated source and demo
  • 4th July, 2003 - Update source and demo

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.


Written By
Software Developer (Senior) Software Kinetics
United Kingdom United Kingdom




Software Kinetics
are experts in developing customised and bespoke applications and have expertise in the development of desktop, mobile and internet applications on Windows.


We specialise in:

  • User Interface Design
  • Desktop Development
  • Windows Phone Development
  • Windows Presentation Framework
  • Windows Forms
  • Windows Communication Framework
  • Windows Services
  • Network Applications
  • Database Applications
  • Web Development
  • Web Services
  • Silverlight
  • ASP.net


Visit Software Kinetics

Comments and Discussions

 
GeneralSmall Modification Pin
ChasCurry27-Jan-11 8:17
ChasCurry27-Jan-11 8:17 
GeneralMy vote of 4 Pin
Smaaart5-Oct-10 19:14
Smaaart5-Oct-10 19:14 
GeneralMy vote of 1 Pin
Sheetal_Joshi22-Oct-09 2:18
Sheetal_Joshi22-Oct-09 2:18 
GeneralRe: My vote of 1 PinPopular
NormDroid28-Oct-09 1:06
professionalNormDroid28-Oct-09 1:06 
GeneralRe: My vote of 1 Pin
Sheetal_Joshi8-Dec-09 5:48
Sheetal_Joshi8-Dec-09 5:48 
GeneralRe: My vote of 1 Pin
NormDroid8-Dec-09 20:44
professionalNormDroid8-Dec-09 20:44 
GeneralMy vote of 1 Pin
Ryleigh27-Mar-09 7:37
Ryleigh27-Mar-09 7:37 
GeneralRe: My vote of 1 Pin
Rajesh R Subramanian20-May-09 3:44
professionalRajesh R Subramanian20-May-09 3:44 
GeneralRe: My vote of 1 Pin
NormDroid20-May-09 4:44
professionalNormDroid20-May-09 4:44 
GeneralMy vote of 1 Pin
Elkay9-Jan-09 6:37
Elkay9-Jan-09 6:37 
GeneralMislocation of the button Pin
Carrie_Jia22-Jun-05 17:07
Carrie_Jia22-Jun-05 17:07 
GeneralMinor Modifications Pin
Dion Campbell27-Nov-03 12:44
Dion Campbell27-Nov-03 12:44 
GeneralA few additions... Pin
Anonymous7-Nov-03 6:21
Anonymous7-Nov-03 6:21 
Question.NET Version for WindowsForms? Pin
Uwe Keim25-Aug-03 0:10
sitebuilderUwe Keim25-Aug-03 0:10 
GeneralNew version Pin
Hans Dietrich7-Jul-03 2:19
mentorHans Dietrich7-Jul-03 2:19 
GeneralRe: New version Pin
Hans Dietrich7-Jul-03 4:38
mentorHans Dietrich7-Jul-03 4:38 
GeneralRe: New version Pin
NormDroid17-Jul-03 21:16
professionalNormDroid17-Jul-03 21:16 
GeneralRe: New version Pin
Hans Dietrich18-Jul-03 7:45
mentorHans Dietrich18-Jul-03 7:45 
Generalnot descriptive!! Pin
abc8765-Jul-03 7:28
abc8765-Jul-03 7:28 
GeneralRe: not descriptive!! Pin
NormDroid17-Jul-03 6:47
professionalNormDroid17-Jul-03 6:47 
GeneralA better solution Pin
Suha Aktan10-Jun-03 21:23
Suha Aktan10-Jun-03 21:23 
GeneralRe: A better solution Pin
NormDroid11-Jun-03 9:30
professionalNormDroid11-Jun-03 9:30 
GeneralRe: A better solution Pin
Suha Aktan12-Jun-03 3:25
Suha Aktan12-Jun-03 3:25 
GeneralRe: A better solution Pin
NormDroid16-Jun-03 8:34
professionalNormDroid16-Jun-03 8:34 
GeneralRe: A better solution Pin
veal14-Jun-03 2:58
veal14-Jun-03 2:58 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.