MainFrm.h
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__B6A8C1DC_B08A_4F30_9030_B374176D2549__INCLUDED_)
  5. #define AFX_MAINFRM_H__B6A8C1DC_B08A_4F30_9030_B374176D2549__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ChildView.h"
  10. class CMainFrame : public CExtNCW < CFrameWnd >
  11. {
  12. public:
  13. CMainFrame();
  14. protected: 
  15. DECLARE_DYNAMIC( CMainFrame );
  16. // Attributes
  17. public:
  18. private:
  19. // window placement persistence
  20. WINDOWPLACEMENT m_dataFrameWP;
  21. // Operations
  22. public:
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CMainFrame)
  26. public:
  27. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28. virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  29. virtual void ActivateFrame(int nCmdShow = -1);
  30. virtual BOOL DestroyWindow();
  31. virtual BOOL PreTranslateMessage(MSG* pMsg);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual ~CMainFrame();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:  // control bar embedded members
  41. CExtStatusControlBar  m_wndStatusBar;
  42. CExtMenuControlBar    m_wndMenuBar;
  43. CExtToolControlBar    m_wndToolBar;
  44. CExtThemeSwitcherToolControlBar  m_wndToolBarUiLook;
  45. CExtControlBar    m_wndResizableBar0;
  46. CExtControlBar    m_wndResizableBar1;
  47. CChildView    m_wndView;
  48. // Generated message map functions
  49. protected:
  50. //{{AFX_MSG(CMainFrame)
  51. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  52. afx_msg void OnSetFocus(CWnd *pOldWnd);
  53. afx_msg void OnFileOpen();
  54. afx_msg void OnFileSave();
  55. //}}AFX_MSG
  56. afx_msg void OnUpdateControlBarMenu(CCmdUI* pCmdUI);
  57. afx_msg BOOL OnBarCheck(UINT nID);
  58. DECLARE_MESSAGE_MAP()
  59. };
  60. /////////////////////////////////////////////////////////////////////////////
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  63. #endif // !defined(AFX_MAINFRM_H__B6A8C1DC_B08A_4F30_9030_B374176D2549__INCLUDED_)