MainFrm.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. class CMainFrame : public CXTPMDIFrameWnd
  21. {
  22. DECLARE_DYNAMIC(CMainFrame)
  23. public:
  24. CMainFrame();
  25. // Attributes
  26. public:
  27. // Operations
  28. public:
  29. BOOL SetCommandBarMenu();
  30. void ResetCommandBars();
  31. void OnUpdatePopup(CCmdUI* pCmdUI);
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CMainFrame)
  35. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. public:
  39. virtual ~CMainFrame();
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. protected:  // control bar embedded members
  45. CStatusBar  m_wndStatusBar;
  46. CToolBar    m_wndToolBar;
  47. // Generated message map functions
  48. protected:
  49. //{{AFX_MSG(CMainFrame)
  50. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  51. afx_msg void OnClose();
  52. //}}AFX_MSG
  53. afx_msg void OnCustomize();
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. /////////////////////////////////////////////////////////////////////////////