MAINFRM.H
上传用户:zbjinju
上传日期:2022-07-30
资源大小:11893k
文件大小:1k
源码类别:

图形图象

开发平台:

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. #ifndef __AFXEXT_H__
  13. #include <afxext.h>         // for access to CToolBar and CStatusBar
  14. #endif
  15. class CMainFrame : public CMDIFrameWnd
  16. {
  17. DECLARE_DYNAMIC(CMainFrame)
  18. public:
  19. CMainFrame();
  20. // Implementation
  21. public:
  22. virtual ~CMainFrame();
  23. protected:  // control bar embedded members
  24. CStatusBar  m_wndStatusBar;
  25. CToolBar    m_wndToolBar;
  26. // Generated message map functions
  27. protected:
  28. //{{AFX_MSG(CMainFrame)
  29. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  30. afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  31. afx_msg BOOL OnQueryNewPalette();
  32. //}}AFX_MSG
  33. DECLARE_MESSAGE_MAP()
  34. };
  35. /////////////////////////////////////////////////////////////////////////////