?? cjmenu.h
字號:
//*************************************************************************
// CJMenu.h : header file
// Version : 2.4
// Date : Feb 11, 1999
// Author : Brent Corkum
//
// Portions of code supplied by:
// Ben Ashley,Girish Bharadwaj,Jean-Edouard Lachand-Robert,
// Robert Edward Caldecott,Kenny Goers,Leonardo Zide,
// Stefan Kuhr
//
// Bug Fixes:
// Stefan Kuhr,Martin Vladic,Kim Yoo Chul
//
// You are free to use/modify this code but leave this header intact.
//
#ifndef __CJMENU_H__
#define __CJMENU_H__
#include <afxtempl.h>
// CCJMenuData class. Fill this class structure to define a single menu item:
class _CJX_EXT_CLASS CCJMenuData
{
wchar_t *m_szMenuText;
public:
CCJMenuData () {menuIconNormal=-1;xoffset=-1;bitmap=NULL;
nFlags=0;nID=0;syncflag=0;m_szMenuText=NULL;};
void SetAnsiString(LPCSTR szAnsiString);
void SetWideString(const wchar_t *szWideString);
const wchar_t *GetWideString(void) {return m_szMenuText;};
~CCJMenuData ();
CString GetString(void);//returns the menu text in ANSI or UNICODE
int xoffset;
int menuIconNormal;
UINT nFlags,nID,syncflag;
CImageList *bitmap;
};
//:>28 Jul 99, fas -- Conditional logic for base class altered slightly to make
//:>it compatibile with Genitor Surveyor. Code is functionally identical to original.
//struct CMenuItemInfo : public MENUITEMINFO {
struct _CJX_EXT_CLASS CMenuItemInfo
//MENUITEMINFO
#ifndef UNICODE //SK: this fixes warning C4097: typedef-name 'MENUITEMINFO' used as synonym for class-name 'tagMENUITEMINFOA'
: public tagMENUITEMINFOA
#else
: public tagMENUITEMINFOW
#endif
{
CMenuItemInfo()
{ memset(this, 0, sizeof(MENUITEMINFO));
cbSize = sizeof(MENUITEMINFO);
}
};
typedef enum {Normal,TextOnly} HIGHLIGHTSTYLE;
#ifndef UNICODE
#define AppendODMenu AppendODMenuA
#define ModifyODMenu ModifyODMenuA
#else
#define AppendODMenu AppendODMenuW
#define ModifyODMenu ModifyODMenuW
#endif
class _CJX_EXT_CLASS CCJMenu : public CMenu // Derived from CMenu
{
// Construction
public:
CCJMenu();
// Attributes
protected:
CTypedPtrArray<CPtrArray, CCJMenuData*> m_MenuList; // Stores list of menu items
// When loading an owner-drawn menu using a Resource, CCJMenu must keep track of
// the popup menu's that it creates. Warning, this list *MUST* be destroyed
// last item first :)
CTypedPtrArray<CPtrArray, CCJMenu*> m_SubMenus; // Stores list of sub-menus
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CCustomMenu)
//}}AFX_VIRTUAL
// Implementation
public:
void SetParentWnd(CWnd* pParentWnd);
CWnd* GetParentWnd();
static BOOL IsNewShell(void);
void SetBitmapBackground(COLORREF color);
void SetDisableOldStyle(void);
void UnSetDisableOldStyle(void);
BOOL GetDisableOldStyle(void);
void UnSetBitmapBackground(void);
int AddBitmapToImageList(CImageList *list,UINT nResourceID);
BOOL LoadFromToolBar(UINT nID,UINT nToolBar,int& xoffset);
void InsertSpaces(void);
static LRESULT FindKeyboardShortcut(UINT nChar,UINT nFlags,CMenu *pMenu);
static void UpdateMenu(CMenu *pmenu);
BOOL IsMenu(CMenu *submenu);
void DrawCheckMark(CDC *pDC,int x,int y,COLORREF color);
void DrawRadioDot(CDC *pDC,int x,int y,COLORREF color);
CCJMenu *FindMenuOption(int nId,int& nLoc);
CCJMenuData *FindMenuOption(wchar_t *lpstrText);
BOOL GetMenuText(UINT id,CString &string);
CImageList *checkmaps;
BOOL checkmapsshare;
int m_selectcheck;
int m_unselectcheck;
void LoadCheckmarkBitmap(int unselect,int select);
void DitherBlt(HDC hdcDest, int nXDest, int nYDest, int nWidth,
int nHeight, HBITMAP hbm, int nXSrc, int nYSrc);
void DitherBlt2(CDC *drawdc, int nXDest, int nYDest, int nWidth,
int nHeight, CBitmap &bmp, int nXSrc, int nYSrc);
HBITMAP LoadSysColorBitmap(int nResourceId);
CCJMenu* GetSubMenu( int nPos ) const { return (CCJMenu*)CMenu::GetSubMenu(nPos); }
virtual ~CCJMenu(); // Virtual Destructor
// Drawing:
virtual void DrawItem( LPDRAWITEMSTRUCT); // Draw an item
virtual void MeasureItem( LPMEASUREITEMSTRUCT ); // Measure an item
// Customizing:
void SetIconSize (int, int); // Set icon size
BOOL AppendODMenuA(LPCSTR lpstrText,
UINT nFlags = MF_OWNERDRAW,
UINT nID = 0,
int nIconNormal = -1); // Owner-Drawn Append
BOOL AppendODMenuW(wchar_t *lpstrText,
UINT nFlags = MF_OWNERDRAW,
UINT nID = 0,
int nIconNormal = -1); // Owner-Drawn Append
BOOL ModifyODMenuA(const char *lpstrText,UINT nID=0,int nIconNormal=-1);
BOOL ModifyODMenuA(const char *lpstrText,const char *OptionText,int nIconNormal);
BOOL ModifyODMenuW(wchar_t *lpstrText,UINT nID=0,int nIconNormal=-1);
BOOL ModifyODMenuW(wchar_t *lpstrText,wchar_t *OptionText,int nIconNormal);
CCJMenuData *NewODMenu(UINT pos,UINT nFlags,UINT nID,CString string);
void SynchronizeMenu(void);
void CCJMenu::InitializeMenuList(int value);
void CCJMenu::DeleteMenuList(void);
CCJMenuData *CCJMenu::FindMenuList(UINT nID);
virtual BOOL LoadMenu(LPCTSTR lpszResourceName); // Load a menu
virtual BOOL LoadMenu(int nResource); // ...
void AddFromToolBar(CToolBar* pToolBar, int nResourceID);
BOOL Draw3DCheckmark(CDC *dc, const CRect& rc,BOOL bSelected,
HBITMAP hbmCheck);
BOOL LoadToolbar(UINT nToolBar);
BOOL LoadToolbars(const UINT *arID,int n);
// Destoying:
virtual BOOL DestroyMenu();
// Generated message map functions
protected:
int m_iconX,m_iconY;
COLORREF m_bitmapBackground;
BOOL m_bitmapBackgroundFlag;
BOOL disable_old_style;
CWnd* m_pParentWnd;
};
#endif // __CJMENU_H__
//*************************************************************************
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -