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

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. #if !defined(AFX_MAINFRM_H__925782CB_9815_11D0_944C_00A0C903487E__INCLUDED_)
  13. #define AFX_MAINFRM_H__925782CB_9815_11D0_944C_00A0C903487E__INCLUDED_
  14. #if _MSC_VER >= 1000
  15. #pragma once
  16. #endif // _MSC_VER >= 1000
  17. class CMainFrame : public CFrameWnd
  18. {
  19. protected: // create from serialization only
  20. CMainFrame();
  21. DECLARE_DYNCREATE(CMainFrame)
  22. // Attributes
  23. public:
  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 void Serialize(CArchive& ar);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual ~CMainFrame();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CMainFrame)
  43. afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
  44. //}}AFX_MSG
  45. void OnSysCommand(UINT nID, LPARAM lParam);
  46. void OnUpdateFrameTitle(BOOL bAddToTitle);
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. /////////////////////////////////////////////////////////////////////////////
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_MAINFRM_H__925782CB_9815_11D0_944C_00A0C903487E__INCLUDED_)