MAINFRM.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. // This class implements the Check and Book commands in the View menu.
  13. // These commands create a check or book view, if one does not already exist.
  14. class CCheckView;
  15. class CBookView;
  16. class CMainFrame : public CMDIFrameWnd
  17. {
  18. DECLARE_DYNAMIC(CMainFrame)
  19. public:
  20. CMainFrame();
  21. // Operations
  22. void CreateOrActivateFrame(CDocTemplate* pTemplate,
  23. CRuntimeClass* pViewClass);
  24. // Implementation
  25. public:
  26. virtual ~CMainFrame();
  27. protected:  // control bar embedded members
  28. CStatusBar  m_wndStatusBar;
  29. CToolBar    m_wndToolBar;
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(CMainFrame)
  33. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  34. afx_msg void OnViewBook();
  35. afx_msg void OnViewCheck();
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. /////////////////////////////////////////////////////////////////////////////