home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch08 / oserver / ipframe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-22  |  1.0 KB  |  45 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. // Overrides
  17.     // ClassWizard generated virtual function overrides
  18.     //{{AFX_VIRTUAL(CInPlaceFrame)
  19.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  20.     //}}AFX_VIRTUAL
  21.  
  22. // Implementation
  23. public:
  24.     virtual ~CInPlaceFrame();
  25. #ifdef _DEBUG
  26.     virtual void AssertValid() const;
  27.     virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29.  
  30. protected:
  31.     COleResizeBar   m_wndResizeBar;
  32.     COleDropTarget m_dropTarget;
  33.  
  34. // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CInPlaceFrame)
  37.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code!
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.