| Language: | C++ |
| Category: | Desktop |
| Subcategory: | Decoration |
| Date: | 2008-07-09 |
| Downloads: | 0 |
| Size: | 115 kb |
| Author: | Jean-Michel LE FOL` |
| Requirements: | |
| Limitations: |
This source code presents an implementation of an owner drawn menu with the Office XP and Visual Studio .NET visual style. To use the CMenuXP class in your projects, you have to add 3 macros in your code only.
To use the CMenuXP class in your projects, you have to add 3 macros in your code.
1. 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
2. In the source file of the same class:
IMPLEMENT_MENUXP(className, baseClass);
3. 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:
1. In the InitInstance method of your CWinApp derived class:
CMenuXP::InitializeHook();
2. 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:
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.
Download XP Style Menu with CMenuXP 1.1