NMDIGenericMenu.cpp
上传用户:whjcdz88
上传日期:2007-01-02
资源大小:350k
文件大小:1k
源码类别:

工具条

开发平台:

Visual C++

  1. // NMDIGenericMenu.cpp: implementation of the CNGenericMenu class.
  2. //
  3. /*
  4. Copyright (C) 1998 George H. Stahl (GStahl@VipMail.Com)
  5. This program is free software; you can redistribute it and/or modify it under the terms
  6. of the GNU General Public License as published by the Free Software Foundation; either
  7. version 2 of the License, or (at your option) any later version.
  8. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
  9. without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. See the GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License along with this program;
  12. if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  13. */
  14. //////////////////////////////////////////////////////////////////////
  15. #include "stdafx.h"
  16. #include "afxpriv.h"
  17. #include "NGenericMenu.h"
  18. #include "NGenericPopup.h"
  19. #include "NMDIClient.h"
  20. #include "resource.h"
  21. #ifdef _DEBUG
  22. #undef THIS_FILE
  23. static char THIS_FILE[]=__FILE__;
  24. #define new DEBUG_NEW
  25. #endif
  26. IMPLEMENT_DYNAMIC(CNMDIGenericMenu,CNGenericMenu)
  27. void CNMDIGenericMenu::SubclassMDIClient(HWND hWndClient)
  28. {
  29. CNMDIClient* pClient=new CNMDIClient(this);
  30. pClient->SubclassWindow(hWndClient);
  31. }