home *** CD-ROM | disk | FTP | other *** search
/ Media Share 13 / mediashare_13.zip / mediashare_13 / ZIPPED / PROGRAM / WTJ9403.ZIP / OTEXT / OTEXT.ARJ / IPFRAME.H < prev    next >
C/C++ Source or Header  |  1994-01-02  |  818b  |  40 lines

  1. // ipframe.h : interface of the CInPlaceFrame class
  2. //
  3.  
  4. class CInPlaceFrame : public COleIPFrameWnd
  5. {
  6.     DECLARE_DYNCREATE(CInPlaceFrame)
  7. public:
  8.     CInPlaceFrame();
  9.  
  10. // Attributes
  11. public:
  12.  
  13. // Operations
  14. public:
  15.  
  16. // Implementation
  17. public:
  18.     virtual ~CInPlaceFrame();
  19. #ifdef _DEBUG
  20.     virtual void AssertValid() const;
  21.     virtual void Dump(CDumpContext& dc) const;
  22. #endif
  23.  
  24.     virtual BOOL OnCreateControlBars(CWnd* pWndFrame, CWnd* pWndDoc);
  25.  
  26. protected:
  27.     CToolBar    m_wndToolBar;
  28.     COleResizeBar   m_wndResizeBar;
  29.     COleDropTarget m_dropTarget;
  30.  
  31. // Generated message map functions
  32. protected:
  33.     //{{AFX_MSG(CInPlaceFrame)
  34.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40.