MainFrm.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__F45FF51D_1F5D_4B88_8C75_DF81C6313D12__INCLUDED_)
  5. #define AFX_MAINFRM_H__F45FF51D_1F5D_4B88_8C75_DF81C6313D12__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "GuiMDIFrame.h"
  10. #include "GuiBarOffice.h"
  11. #include "guitabbedpp.h"
  12. class CMainFrame : public CGuiMDIFrame
  13. {
  14. DECLARE_DYNAMIC(CMainFrame)
  15. public:
  16. CMainFrame();
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CMainFrame)
  24. public:
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CMainFrame();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. void OnComboMenu();
  35. protected:  // control bar embedded members
  36. CGuiBarOffice m_OfficeBar;
  37. CGuiComboBoxExt m_combMenu;
  38. CGuiTabbedPP m_tb;
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CMainFrame)
  42. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43. afx_msg void OnViewOfficebar();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. public:
  47. afx_msg void OnOfficebar();
  48. afx_msg void OnViewToolbar();
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_MAINFRM_H__F45FF51D_1F5D_4B88_8C75_DF81C6313D12__INCLUDED_)