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

Windows编程

开发平台:

Visual C++

  1. // mdichild.h
  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. //
  13. // Purpose: interface of the CDynaMDIChildWnd class
  14. //
  15. // Functions:
  16. //   Most of this file was generated by AppWizard.  The functions
  17. //   which contain code specific to this sample are:
  18. //
  19. //      CDynaMDIChildWnd::OnMDIActivate()    -- handle activation/deactivation
  20. //      CDynaMDIChildWnd::RefreshColorMenu() -- update Color submenu contents
  21. //
  22. //   These functions are implemented in mdichild.cpp.
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CDynaMDIChildWnd frame
  25. class CDynaMDIChildWnd : public CMDIChildWnd
  26. {
  27. DECLARE_DYNCREATE(CDynaMDIChildWnd)
  28. protected:
  29. CDynaMDIChildWnd();         // protected constructor used by dynamic creation
  30. // Attributes
  31. public:
  32. // Operations
  33. public:
  34. void RefreshColorMenu();
  35. // Implementation
  36. protected:
  37. virtual ~CDynaMDIChildWnd();
  38. // Generated message map functions
  39. //{{AFX_MSG(CDynaMDIChildWnd)
  40. afx_msg void OnMDIActivate(BOOL bActivate, CWnd* pActivateWnd, CWnd* pDeactivateWnd);
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////