Visual Studio .NET 2002Visual Studio 6Visual C++ 7.0Windows 2000Visual C++ 6.0Windows XPMFCIntermediateDevVisual StudioWindowsC++
CMenuXP - The Office XP Style Menu






4.94/5 (108 votes)
Owner drawn menu with the Office XP visual style
- Download source files - 112 Kb (Including VC6 and VC7 project files)
- Download executables - 118 Kb
- Download source files updated by Kris Wojtas - 18 Kb
Menus in dialog windows :
Introduction
This article presents an implementation of an owner drawn menu with the Office XP and Visual Studio .NET visual style.
Using the code
To use the CMenuXP
class in your projects, you have to add 3 macros in your code:
- In the header file of the class that handles the menu (probably the
MainFrame
):#include "Tools/MenuXP.h" // Before the declaration of the class // ... DECLARE_MENUXP() // Into the definition of the class
- In the source file of the same class:
IMPLEMENT_MENUXP(className, baseClass);
- In the message map of the class:
BEGIN_MESSAGE_MAP(className, baseClass) // ... ON_MENUXP_MESSAGES() // <-- Added line END_MESSAGE_MAP()
To make borders flat, I subclass the popup menu window managed by the system. To make it possible, you have to add those 2 calls in your code:
- In the
InitInstance
method of your CWinApp derived class:CMenuXP::InitializeHook();
- In the
ExitInstance
method of your CWinApp derived class:CMenuXP::UninitializeHook();
To make the menubar flat, you must do this call:
CMenuXP::UpdateMenuBar (pFrameWnd); // pFrameWnd refers to the frame that // contains the MenuBar
The best place for this call depends of the frame type:
- For MDI application, into the
OnUpdateFrameMenu
method of the child windows. - For SDI application, into the
LoadFrame
method of the main frame.
Finally, don't forget the last call:
CMenuXP::SetXPLookNFeel (pFrameWnd); // refers to the frame that contains // the MenuBar
Without this call, menus will appear in a standard mode.
To draw the menu items, I reused some classes already presented in my article: Office XP look & feel.
History
- 02/08/2002 - First release.
- 01/06/2003 - Adding flat borders and flat menubar.
- 05/31/2003 - Kris Wojtas has updated the source code to allow MenuXP to draw "radio", "check" state and gradient under bitmaps.
- 06/02/2003 - Corrections, radio items support (thanks to Kris Wojtas) and new demos (flat controls and dialog based sample). You can get the latest update to this article at www.azsoft.free.fr.
- 14 Jul 03 - further update by Kris: