Click here to Skip to main content
15,881,204 members
Articles / Desktop Programming / ATL
Article

How to Use Submenus in a Context Menu Shell Extension

Rate me:
Please Sign up or sign in to vote.
4.94/5 (37 votes)
14 Feb 20032 min read 274.1K   3K   78   59
How to manage submenus in a context menu extension

Submenus in a context menu extension

In this article, I'll cover a tricky aspect of context menu extensions - submenus. The approach most people take at first to creating submenus leads to odd behavior in Explorer, but once you know the trick to make Explorer manage the menu correctly, it's easy! This article assumes you have a good grasp of context menu extensions. If you need a refresher, see part 1 and part 2 of my shell extension series.

Adding a submenu

This article's extension is a simple Open With... submenu, which has two items, Notepad and Internet Explorer. It behaves like the enhanced Open With menu in XP, and opens the selected file in the program that you pick. This Open With menu will demonstrate how to properly create a submenu in an extension.

What you might try first

The first thing that comes to mind is to create a new menu with CreatePopupMenu() and insert it into the menu provided by Explorer.

HRESULT COpenWithCtxMenuExt::QueryContextMenu ( 
  HMENU hmenu, UINT uMenuIndex, UINT uidFirstCmd, UINT uidLastCmd, UINT uFlags )
{
    // If the flags include CMF_DEFAULTONLY then we shouldn't do anything.
    if ( uFlags & CMF_DEFAULTONLY )
        return MAKE_HRESULT ( SEVERITY_SUCCESS, FACILITY_NULL, 0 );

    // First, create and populate a submenu.
    HMENU hSubmenu = CreatePopupMenu();
    UINT uID = uidFirstCmd;

    InsertMenu ( hSubmenu, 0, MF_BYPOSITION, uID++, _T("&Notepad") );
    InsertMenu ( hSubmenu, 1, MF_BYPOSITION, uID++, _T("&Internet Explorer") );

    // Insert the submenu into the ctx menu provided by Explorer.
    <FONT color=red>InsertMenu ( hmenu, uMenuIndex, MF_BYPOSITION | MF_POPUP, 
                 (UINT_PTR) hSubmenu, _T("C&P Open With") );</FONT>

    return MAKE_HRESULT ( SEVERITY_SUCCESS, FACILITY_NULL, uID - uidFirstCmd );
}

This actually works fine for the context menu, however the context menu items you add are duplicated on Explorer's File menu. If you invoke the context menu repeatedly, you'll see leftover popups on the File menu:

 [Leftover submenus - 12K]

The cause is related to how Explorer cleans up its menus after extensions are invoked. The return value of QueryContextMenu() tells Explorer how many items we add, and Explorer cleans up by calculating the IDs of our items and deleting them. Explorer knows the ID of the first item (since it passes us the value as uidCmdFirst) and can calculate the IDs of the others since the IDs are assumed to be consecutive. However, the popup menu has no ID, so Explorer doesn't delete it.

The correct way

The secret is to insert the submenu using the InsertMenuItem() API. What's different about using InsertMenuItem() is that you can give the submenu an ID, which isn't possible when you use InsertMenu(). Here's the corrected QueryContextMenu() code.

HRESULT COpenWithCtxMenuExt::QueryContextMenu ( 
  HMENU hmenu, UINT uMenuIndex, UINT uidFirstCmd, UINT uidLastCmd, UINT uFlags )
{
    // If the flags include CMF_DEFAULTONLY then we shouldn't do anything.
    if ( uFlags & CMF_DEFAULTONLY )
        return MAKE_HRESULT ( SEVERITY_SUCCESS, FACILITY_NULL, 0 );

    // First, create and populate a submenu.
    HMENU hSubmenu = CreatePopupMenu();
    UINT uID = uidFirstCmd;

    InsertMenu ( hSubmenu, 0, MF_BYPOSITION, uID++, _T("&Notepad") );
    InsertMenu ( hSubmenu, 1, MF_BYPOSITION, uID++, _T("&Internet Explorer") );

    // Insert the submenu into the ctx menu provided by Explorer.
<FONT color=red>    MENUITEMINFO mii = { sizeof(MENUITEMINFO) };

    mii.fMask = MIIM_SUBMENU | MIIM_STRING | MIIM_ID;
    mii.wID = uID++;
    mii.hSubMenu = hSubmenu;
    mii.dwTypeData = _T("C&P Open With");</FONT>

    <FONT color=red>InsertMenuItem ( hmenu, uMenuIndex, TRUE, &mii );</FONT>

    return MAKE_HRESULT ( SEVERITY_SUCCESS, FACILITY_NULL, uID - uidFirstCmd );
}

The return value this time is 3, which tells Explorer that we inserted 3 items (the two Open With items, and the submenu itself). Since all 3 items have IDs, Explorer can delete them all and completely remove our items from its menu.

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) VMware
United States United States
Michael lives in sunny Mountain View, California. He started programming with an Apple //e in 4th grade, graduated from UCLA with a math degree in 1994, and immediately landed a job as a QA engineer at Symantec, working on the Norton AntiVirus team. He pretty much taught himself Windows and MFC programming, and in 1999 he designed and coded a new interface for Norton AntiVirus 2000.
Mike has been a a developer at Napster and at his own lil' startup, Zabersoft, a development company he co-founded with offices in Los Angeles and Odense, Denmark. Mike is now a senior engineer at VMware.

He also enjoys his hobbies of playing pinball, bike riding, photography, and Domion on Friday nights (current favorite combo: Village + double Pirate Ship). He would get his own snooker table too if they weren't so darn big! He is also sad that he's forgotten the languages he's studied: French, Mandarin Chinese, and Japanese.

Mike was a VC MVP from 2005 to 2009.

Comments and Discussions

 
GeneralNice, but... Pin
Jeff J17-Feb-03 10:27
Jeff J17-Feb-03 10:27 
GeneralRe: Nice, but... Pin
Michael Dunn17-Feb-03 10:35
sitebuilderMichael Dunn17-Feb-03 10:35 
GeneralRe: Nice, but... Pin
Jeff J17-Feb-03 16:01
Jeff J17-Feb-03 16:01 
GeneralRe: Nice, but... Pin
Roger Allen18-Feb-03 3:36
Roger Allen18-Feb-03 3:36 
GeneralRe: Nice, but... Pin
Jeff J18-Feb-03 11:55
Jeff J18-Feb-03 11:55 
GeneralNice article Pin
Marc Clifton16-Feb-03 2:34
mvaMarc Clifton16-Feb-03 2:34 
General'and one time, at band camp..." Pin
Kant15-Feb-03 15:42
Kant15-Feb-03 15:42 
GeneralRe: 'and one time, at band camp..." Pin
(Steven Hicks)n+115-Feb-03 16:01
(Steven Hicks)n+115-Feb-03 16:01 
Please don't tell me you play a flute OMG | :OMG: :P

-Steven

CPA

CodeProject Addict

By reading this message you are held fully responsible for any of the mispelln's or grammer, issues, found on, codeproject.com.

For those who were wondering, actual (Linux) Penguins were harmed in creating this message.

Visit Ltpb.8m.com

404Browser (Efficient, Fast, Secure Web Browser): 404Browser.com


GeneralRe: 'and one time, at band camp..." Pin
Michael Dunn15-Feb-03 16:06
sitebuilderMichael Dunn15-Feb-03 16:06 
GeneralRe: 'and one time, at band camp..." Pin
Nish Nishant17-Feb-03 10:33
sitebuilderNish Nishant17-Feb-03 10:33 
GeneralRe: 'and one time, at band camp..." Pin
Michael Dunn17-Feb-03 10:36
sitebuilderMichael Dunn17-Feb-03 10:36 
GeneralRe: 'and one time, at band camp..." Pin
Nish Nishant17-Feb-03 10:41
sitebuilderNish Nishant17-Feb-03 10:41 
GeneralRe: 'and one time, at band camp...&quot; Pin
nothingnew28-Jun-04 20:25
nothingnew28-Jun-04 20:25 

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.