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