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

工具条

开发平台:

Visual C++

  1. #if !defined(AFX_MDIMENUFRAMEWND_H__2F686113_A464_11D1_B0D4_00A0C94457BF__INCLUDED_)
  2. #define AFX_MDIMENUFRAMEWND_H__2F686113_A464_11D1_B0D4_00A0C94457BF__INCLUDED_
  3. /*
  4. Copyright (C) 1998 Tony Hoyle (tmh@netfusion.co.uk)
  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. #if _MSC_VER >= 1000
  15. #pragma once
  16. #endif // _MSC_VER >= 1000
  17. // MDIMenuFrameWnd.h : header file
  18. //
  19. #include "NGenericMenu.h"
  20. #ifndef NGTB_PROJECT
  21. #define NGTB_EXPORT __declspec(dllimport)
  22. #else
  23. #define NGTB_EXPORT __declspec(dllexport)
  24. #endif
  25. #undef AFX_DATA
  26. #define AFX_DATA NGTB_EXPORT
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CNMDIMenuFrameWnd window
  29. class CNMDIMenuFrameWnd : public CMDIFrameWnd
  30. {
  31. DECLARE_DYNAMIC(CNMDIMenuFrameWnd)
  32. public:
  33. HMENU m_hDefaultMenu;
  34. CNMDIGenericMenu m_wndMenu;
  35. NGTB_EXPORT CNMDIMenuFrameWnd();
  36. NGTB_EXPORT virtual ~CNMDIMenuFrameWnd();
  37. NGTB_EXPORT void EnableDocking(DWORD dwDockStyle);
  38. NGTB_EXPORT virtual BOOL LoadFrame( UINT nIDResource, DWORD dwDefaultStyle = WS_OVERLAPPEDWINDOW | FWS_ADDTOTITLE, CWnd* pParentWnd = NULL, CCreateContext* pContext = NULL );
  39. NGTB_EXPORT BOOL SetIconMap(int nIconMapSize, IconMap* pIconMap) { return m_wndMenu.SetIconMap(nIconMapSize,pIconMap); }
  40. protected:
  41. //{{AFX_VIRTUAL(CNMDIMenuFrameWnd)
  42. NGTB_EXPORT virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  43. //}}AFX_VIRTUAL
  44. //{{AFX_MSG(CNMDIMenuFrameWnd)
  45. NGTB_EXPORT afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  46. NGTB_EXPORT afx_msg LRESULT OnMenuChar(UINT nChar, UINT nFlags, CMenu* pMenu);
  47. NGTB_EXPORT afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. /////////////////////////////////////////////////////////////////////////////
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  54. #undef AFX_DATA
  55. #define AFX_DATA
  56. #endif // !defined(AFX_MDIMENUFRAMEWND_H__2F686113_A464_11D1_B0D4_00A0C94457BF__INCLUDED_)