home *** CD-ROM | disk | FTP | other *** search
/ ActiveX Programming Unleashed CD / AXU.iso / source / chap18 / doserver / ipframe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-14  |  1.3 KB  |  51 lines

  1. // IpFrame.h : interface of the CInPlaceFrame class
  2. //
  3.  
  4. #include "BINDIPFW.H"                                    // DocObject addition
  5.  
  6. //class CInPlaceFrame : public COleIPFrameWnd            // DocObject modification
  7. class CInPlaceFrame : public CDocObjectIPFrameWnd        // DocObject addition
  8. {
  9.     DECLARE_DYNCREATE(CInPlaceFrame)
  10. public:
  11.     CInPlaceFrame();
  12.  
  13. // Attributes
  14. public:
  15.  
  16. // Operations
  17. public:
  18.  
  19. // Overrides
  20.     // ClassWizard generated virtual function overrides
  21.     //{{AFX_VIRTUAL(CInPlaceFrame)
  22.     public:
  23.     virtual BOOL OnCreateControlBars(CFrameWnd* pWndFrame, CFrameWnd* pWndDoc);
  24.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. public:
  29.     virtual ~CInPlaceFrame();
  30. #ifdef _DEBUG
  31.     virtual void AssertValid() const;
  32.     virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34.  
  35. protected:
  36.     CToolBar    m_wndToolBar;
  37.     COleResizeBar   m_wndResizeBar;
  38.     COleDropTarget m_dropTarget;
  39.  
  40. // Generated message map functions
  41. protected:
  42.     //{{AFX_MSG(CInPlaceFrame)
  43.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  44.         // NOTE - the ClassWizard will add and remove member functions here.
  45.         //    DO NOT EDIT what you see in these blocks of generated code!
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.