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

界面编程

开发平台:

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 "ChildView.h"
  10. #if !defined(__EXT_TEMPL_H)
  11. #include <ExtTempl.h>
  12. #endif
  13. class CMainFrame : public CExtNCW < CFrameWnd >
  14. {
  15. public:
  16. CMainFrame();
  17. protected: 
  18. DECLARE_DYNAMIC(CMainFrame)
  19. // Attributes
  20. public:
  21. private:
  22. // window placement persistence
  23. WINDOWPLACEMENT m_dataFrameWP;
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CMainFrame)
  29. public:
  30. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  31. virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  32. virtual BOOL PreTranslateMessage(MSG* pMsg);
  33. virtual BOOL DestroyWindow();
  34. virtual void ActivateFrame(int nCmdShow = -1);
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. virtual ~CMainFrame();
  39. virtual void RecalcLayout(BOOL bNotify = TRUE);
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. public:  // control bar embedded members
  45. class CMyStatusBar : public CExtStatusControlBar
  46. {
  47. protected:
  48. virtual LRESULT WindowProc( UINT message, WPARAM wParam, LPARAM lParam )
  49. {
  50. if( message == WM_HSCROLL || message == WM_VSCROLL )
  51. return GetParent()->GetDlgItem(AFX_IDW_PANE_FIRST)->SendMessage( message, wParam, lParam );
  52. return CExtStatusControlBar::WindowProc( message, wParam, lParam );
  53. }
  54. }; // class CMyStatusBar
  55. CMyStatusBar                      m_wndStatusBar;
  56. CExtMenuControlBar                m_wndMenuBar;
  57. CExtThemeSwitcherToolControlBar   m_wndToolBarUiLook;
  58. CChildView                        m_wndView;
  59. // Generated message map functions
  60. protected:
  61. //{{AFX_MSG(CMainFrame)
  62. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  63. afx_msg void OnSetFocus(CWnd *pOldWnd);
  64. afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  65. //}}AFX_MSG
  66. afx_msg void OnUpdateControlBarMenu(CCmdUI* pCmdUI);
  67. afx_msg BOOL OnBarCheck(UINT nID);
  68. DECLARE_MESSAGE_MAP()
  69. };
  70. /////////////////////////////////////////////////////////////////////////////
  71. //{{AFX_INSERT_LOCATION}}
  72. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  73. #endif // !defined(AFX_MAINFRM_H__8AD8EDA0_FE43_4657_B159_597A63DD8A98__INCLUDED_)