Click here to Skip to main content
15,886,026 members
Articles / Desktop Programming / MFC

Gradient Menus in MFC

Rate me:
Please Sign up or sign in to vote.
4.76/5 (10 votes)
14 May 2000 240K   5.7K   64   30
Create Popup menus in MFC with a gradient and text on the left side

Sample Image - Gradient Menus.jpg

Introduction

Here's a bit of eye-candy I whipped up to drop into our product: epAssist.

The program has a system tray icon and a context menu comes up when you click on the icon. One problem with tray icons, is that it can be easy for users to confuse what the menu for your program looks like.

My first solution was to place a disabled menu item with the application name at the top of the menu, but this didn't have the effect I needed. Upon searching my favorite developer site, I found a few menu classes that could act like the Windows Start Menu.

I based my menu off these articles and a few others, making as few changes as required to get the effect I needed. The class presented here is by no means original, but I believe that the way the components are put together produces an original and impressive UI component.

The first and easiest use of this class is to place a context menu on the screen. The sample code below shows how to setup and use the simple interface this menu exposes. There are a few shortcomings. First, the menu does not send Command UI messages for enabling/checking menu items. Secondly, messages are sent to the window that owns the menu. If you look at the sample application, you will notice that the view handles ID_APP_EXIT1 and posts ID_APP_EXIT to the MainFrame. If the view handled ID_APP_EXIT and posted it to the frame, standard MFC command routing would have the view intercepting the message first (again!)

C++
#include "GradientMenu.h"
void CGrMenuTestView::OnContextMenu(CWnd* pWnd, CPoint point) 
{
	// Set up the colours.. Might want these in program options
	COLORREF rgb1(RGB(0, 0, 0));
	COLORREF rgb2(RGB(128, 128, 255));
	COLORREF rgbText(RGB(255, 255, 255));

	// Create a menu, set the width of gradient
	CGradientMenu oMenu(24, TRUE);
	oMenu.LoadMenu(IDR_POPUP_MENU);

	// Select colours and set the title for the 1st menu
	// sub menus will take the name of the item selected in the parent.
	oMenu.SetGradientColors(rgb1, rgb2, rgbText);
	oMenu.SetTitle((CString)"Test");

	// Show the menu!
	oMenu.TrackPopupMenu(0, point.x, point.y, this);

	// Done!
}

That's it! You need to give the root menu a title, but the sub-menus will get their title from their parent.

For the main program menu, I simply faked it out. The main menu has no popups, but handles the WM_COMMAND and puts a popup under the menu item. See the sample for full 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.


Written By
Web Developer Golden Crater Corp
Canada Canada
Jim is the President of Golden Crater Corp. (formerly Golden Crater Software) which produces:

Tiny eBook Reader - Read eBooks anywhere, on any web enabled device or phone.

Doberman BMS - Home Automation and Building Management System bridging and enhancing several automation hardware platforms.

Comments and Discussions

 
QuestionHow 2 disable a menu item... Pin
Jim Koornneef12-Jul-00 17:37
Jim Koornneef12-Jul-00 17:37 
AnswerRe: How 2 disable a menu item... Pin
12-Jul-01 19:23
suss12-Jul-01 19:23 
GeneralRe: How 2 disable a menu item... Pin
Xue Xuhong21-May-04 23:06
Xue Xuhong21-May-04 23:06 
GeneralColor popup menu rules! Pin
JPPoulin4-May-00 6:25
JPPoulin4-May-00 6:25 
GeneralNice! Pin
George3-May-00 21:20
George3-May-00 21:20 

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.