MFC: How to detect right-click on popup menu item?

146 Views Asked by At

In a CMenu menu, WM_MENURBUTTONUP is only fired when the right mouse button is released while the mouse pointer is over a normal menu item (MF_STRING), but not if it's over a popup menu item (MF_POPUP). How can right-clicks on a popup menu item be detected? I'd like to implement a context menu for any menu item.

1

There are 1 best solutions below

0
On

I finally found a solution (or maybe a workaround) to detect and handle right-clicks on submenu items:

I defined message handlers for WM_MENUSELECT and WM_RBUTTONUP.

In OnMenuSelect() I store the Item Rect and the Item ID in two member variables of the dialog class:

CRect m_rcItemMenuSelect;
UINT m_uItemIDMenuSelect;

void CTrayMenuDlg::OnMenuSelect(UINT nItemID, UINT nFlags, HMENU hSysMenu)
{
    if (nFlags & MF_POPUP)
    {
        MENUITEMINFO mii;
        mii.cbSize = sizeof(mii);
        mii.fMask = MIIM_ID;

        if (GetMenuItemInfo(hSysMenu, nItemID, TRUE, &mii))
        {
            GetMenuItemRect(m_hWnd, hSysMenu, nItemID, m_rcItemMenuSelect);
            m_uItemIDMenuSelect = mii.wID;
        }
    }
}

In OnRButtonUp() I test if the mouse pointer is inside the stored Item Rect. If yes, I use the stored Item ID to open the shell context menu for the folder.

void CTrayMenuDlg::OnRButtonUp(UINT nFlags, CPoint point)
{
    if (m_rcItemMenuSelect.PtInRect(point))
    {
        // Item ID of right-clicked submenu item is in m_uItemIDMenuSelect
    }
}

Working code can be found at https://github.com/fraktalfan/TrayMenu.