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

Windows编程

开发平台:

Visual C++

  1. // ipframe.h : interface of the CInPlaceFrame 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 CInPlaceFrame : public COleIPFrameWnd
  16. {
  17. DECLARE_DYNCREATE(CInPlaceFrame)
  18. public:
  19. CInPlaceFrame();
  20. // Implementation
  21. public:
  22. virtual ~CInPlaceFrame();
  23. #ifdef _DEBUG
  24. virtual void AssertValid() const;
  25. virtual void Dump(CDumpContext& dc) const;
  26. #endif
  27. virtual BOOL OnCreateControlBars(CFrameWnd* pWndFrame, CFrameWnd* pWndDoc);
  28. protected:
  29. // control bar embedded members
  30. CToolBar    m_wndToolBar;
  31. COleResizeBar   m_wndResizeBar;
  32. // for enabling drag/drop to our window
  33. COleDropTarget m_dropTarget;
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CInPlaceFrame)
  37. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38. afx_msg void OnUpdateContextHelp(CCmdUI* pCmdUI);
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. /////////////////////////////////////////////////////////////////////////////