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

Gradient Menus in MFC

By , 14 May 2000
 
  • Download source files - 15 Kb
  • Download demo project - 75 Kb
  • 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, it 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 a 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!)

    #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

    About the Author

    Jim Koornneef
    Web Developer Golden Crater Corp
    Canada Canada
    Member
    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.

    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   
    Generalsystray menumemberTapdonce12 Jul '09 - 15:40 
    QuestionHere is a problem Sir...memberrootdial27 Jul '06 - 23:26 
    GeneralmenusussAnonymous14 Mar '04 - 12:30 
    QuestionHow to set check on menusmemberSnillet2k30 Dec '02 - 7:01 
    AnswerRe: How to set check on menusmemberas_sound_as10 Jan '07 - 5:37 
    Generalnice..memberyary19 Dec '02 - 2:21 
    Generalfast right click bugsussMartin Madreya24 Oct '02 - 5:39 
    Generalbug reportmemberXiaolei Zhuansun3 Dec '01 - 11:54 
    GeneralWish ListmemberDavid Berman16 Oct '01 - 19:31 
    QuestionBitmaps Menus?memberJonny Newman11 Oct '01 - 6:18 
    GeneralProblem with Windows XP....memberParas1 Oct '01 - 1:32 
    GeneralRe: Problem with Windows XP....memberJim Koornneef3 Oct '01 - 4:03 
    GeneralRe: Problem with Windows XP....memberJase Jennings16 Feb '02 - 11:54 
    GeneralMenu is shown during MOVING DialogmemberHamed19 Sep '01 - 19:26 
    GeneraloMenu.GetSubMenu(0)->TrackPopupMenu(...) does not workmemberBrad Epperson3 Apr '01 - 19:37 
    QuestionNo Colors in SubMenu ?memberElco Grobler1 Mar '01 - 1:21 
    AnswerRe: No Colors in SubMenu ?memberJim Koornneef1 Mar '01 - 15:26 
    GeneralMy wislist item for this cool class...memberJason Hattingh20 Nov '00 - 3:20 
    GeneralRetrieving the command ID(s)sussDan Scott8 Sep '00 - 6:00 
    GeneralRe: Retrieving the command ID(s)memberMazhekin7 Sep '04 - 2:34 
    Generalvery very nice !!!, but ...sussguy24 Aug '00 - 5:13 
    GeneralRe: very very nice !!!, but ...memberZulfiqar Inayat Malik25 Jun '01 - 0:26 
    GeneralGood worksussKen Koornneef9 Aug '00 - 7:51 
    GeneralNot working in VC5susssten struikenkamp19 Jul '00 - 5:52 
    GeneralRe: Not working in VC5sussJim Koornneef9 Aug '00 - 2:57 

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

    Permalink | Advertise | Privacy | Mobile
    Web03 | 2.6.130516.1 | Last Updated 15 May 2000
    Article Copyright 2000 by Jim Koornneef
    Everything else Copyright © CodeProject, 1999-2013
    Terms of Use
    Layout: fixed | fluid