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. class CMainFrame : public CMDIFrameWnd
  13. {
  14. DECLARE_DYNAMIC(CMainFrame)
  15. public:
  16. CMainFrame();
  17. // Attributes
  18. protected:  // control bar embedded members
  19. CStatusBar  m_wndStatusBar;
  20. CToolBar    m_wndToolBar;
  21. public:
  22. CShapePropSheetFrame*   m_pShapePropFrame;
  23. // Operations
  24. public:
  25. void HideModelessPropSheet();
  26. // Overrides
  27. // ClassWizard generate virtual function overrides
  28. //{{AFX_VIRTUAL(CMainFrame)
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CMainFrame();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. // Generated message map functions
  38. public:
  39. //{{AFX_MSG(CMainFrame)
  40. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  41. afx_msg void OnMiniFramePropertySheet();
  42. afx_msg void OnUpdateMiniFramePropertySheet(CCmdUI* pCmdUI);
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////