mdi.h
上传用户:liudazhe
上传日期:2007-01-02
资源大小:51k
文件大小:1k
源码类别:

菜单

开发平台:

Visual C++

  1. // MDI.h : main header file for the MDI application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 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 __AFXWIN_H__
  13. #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #include "resource.h"       // main symbols
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CMDIApp:
  18. // See MDI.cpp for the implementation of this class
  19. //
  20. class CMDIApp : public CWinApp
  21. {
  22. public:
  23. CMDIApp();
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CMDIApp)
  27. public:
  28. virtual BOOL InitInstance();
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. //{{AFX_MSG(CMDIApp)
  32. afx_msg void OnAppAbout();
  33. afx_msg void OnNewHello();
  34. afx_msg void OnNewBounce();
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. extern COLORREF  colorArray[]; //used to store the 5 basic colors
  39. /////////////////////////////////////////////////////////////////////////////