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

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__E5F900E2_DFE0_4CC8_82F9_69AF6ABE32BF__INCLUDED_)
  5. #define AFX_MAINFRM_H__E5F900E2_DFE0_4CC8_82F9_69AF6ABE32BF__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMainFrame : public CXTPFrameWnd
  10. {
  11. protected: // create from serialization only
  12. CMainFrame();
  13. DECLARE_DYNCREATE(CMainFrame)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CMainFrame)
  21. public:
  22. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  23. protected:
  24. void OnSetPreviewMode(BOOL bPreview, CPrintPreviewState* pState);
  25. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  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. protected:  // control bar embedded members
  35. CXTPStatusBar  m_wndStatusBar;
  36. CView* m_pEditView;
  37. CXTPDockingPaneManager m_paneManager;
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CMainFrame)
  41. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  42. // NOTE - the ClassWizard will add and remove member functions here.
  43. //    DO NOT EDIT what you see in these blocks of generated code!
  44. //}}AFX_MSG
  45. LRESULT OnDockingPaneNotify(WPARAM wParam, LPARAM lParam);
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_MAINFRM_H__E5F900E2_DFE0_4CC8_82F9_69AF6ABE32BF__INCLUDED_)