home *** CD-ROM | disk | FTP | other *** search
/ ActiveX Programming Unleashed CD / AXU.iso / source / chap18 / doserver / bindipfw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-02  |  1.7 KB  |  67 lines

  1. // bindipfw.h : interface of the DocObject in-place frame window class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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. #ifndef __BINDIPFW_H__
  14. #define __BINDIPFW_H__
  15.  
  16. class CDocObjectIPFrameWnd : public COleIPFrameWnd
  17. {
  18.     DECLARE_DYNCREATE(CDocObjectIPFrameWnd)
  19.  
  20. // Constructors
  21. public:
  22.     CDocObjectIPFrameWnd();
  23.  
  24. // Attributes
  25. public:
  26.  
  27. // Operations
  28. public:
  29.  
  30. // Overridables
  31. protected:
  32.  
  33. // Implementation
  34. public:
  35.     virtual ~CDocObjectIPFrameWnd();
  36. #ifdef _DEBUG
  37.    virtual void AssertValid() const;
  38.    virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40.  
  41.    // Overrides
  42.     // ClassWizard generated virtual function overrides
  43.     //{{AFX_VIRTUAL(CDocObjectIPFrameWnd)
  44.     //}}AFX_VIRTUAL
  45. protected:
  46.     virtual void OnRequestPositionChange(LPCRECT lpRect);
  47.    virtual void RecalcLayout(BOOL bNotify = TRUE);
  48.  
  49.    // Menu Merging support
  50.    HMENU m_hMenuHelpPopup;
  51.    virtual BOOL BuildSharedMenu();
  52.    virtual void DestroySharedMenu();
  53.  
  54.     // Generated message map functions
  55.     //{{AFX_MSG(CDocObjectIPFrameWnd)
  56.         // NOTE - the ClassWizard will add and remove member functions here.
  57.     //}}AFX_MSG
  58.     DECLARE_MESSAGE_MAP()
  59.  
  60.    friend class CDocObjectServerDoc;
  61. };
  62.  
  63. /////////////////////////////////////////////////////////////////////////////
  64.  
  65. #endif   // #ifndef __BINDIPFW_H__
  66.  
  67.