MainFrm.h
上传用户:aphuaqiang
上传日期:2007-01-02
资源大小:62k
文件大小:2k
源码类别:

菜单

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #include "BCMenu.h"
  5. #include "ToolbarEx.h"
  6. #if !defined(AFX_MAINFRM_H__3BAD4108_4BBC_11D1_AB73_89774BBAD26D__INCLUDED_)
  7. #define AFX_MAINFRM_H__3BAD4108_4BBC_11D1_AB73_89774BBAD26D__INCLUDED_
  8. #if _MSC_VER >= 1000
  9. #pragma once
  10. #endif // _MSC_VER >= 1000
  11. class CMainFrame : public CMDIFrameWnd
  12. {
  13. DECLARE_DYNAMIC(CMainFrame)
  14. public:
  15. CMainFrame();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CMainFrame)
  23. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CMainFrame();
  28. #ifdef _DEBUG
  29. virtual void AssertValid() const;
  30. virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32. public:
  33.   BOOL disable_flag;
  34. HMENU NewMenu();
  35. HMENU NewDefaultMenu();
  36.   BCMenu m_menu,m_default;
  37.   BOOL zoomcheck;
  38. protected:  // control bar embedded members
  39. CStatusBar  m_wndStatusBar;
  40. CToolBarEx    m_wndToolBar;
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CMainFrame)
  44. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  45. afx_msg void OnZoom();
  46. afx_msg void OnEditUndo();
  47. afx_msg void OnUpdateEditUndo(CCmdUI* pCmdUI);
  48. afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
  49. afx_msg LRESULT OnMenuChar(UINT nChar, UINT nFlags, CMenu* pMenu);
  50. afx_msg void OnEditCopy();
  51. afx_msg void OnEditCut();
  52. afx_msg void OnEditPaste();
  53. afx_msg void OnUpdateZoom(CCmdUI* pCmdUI);
  54. afx_msg void OnDefault();
  55. afx_msg void OnUpdateDefault(CCmdUI* pCmdUI);
  56. afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
  57. afx_msg void OnHomepage();
  58. afx_msg void OnWindowTile();
  59. afx_msg void OnEnable();
  60. afx_msg void OnUpdateEnable(CCmdUI* pCmdUI);
  61. afx_msg void OnDisable();
  62. afx_msg void OnUpdateDisable(CCmdUI* pCmdUI);
  63. //}}AFX_MSG
  64. DECLARE_MESSAGE_MAP()
  65. };
  66. /////////////////////////////////////////////////////////////////////////////
  67. //{{AFX_INSERT_LOCATION}}
  68. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  69. #endif // !defined(AFX_MAINFRM_H__3BAD4108_4BBC_11D1_AB73_89774BBAD26D__INCLUDED_)