home *** CD-ROM | disk | FTP | other *** search
/ Chip Special: HTML & Java / Chip-Special_1997-01_HTML-a-Java.bin / actvx31.sdk / coresdk / inetsdk / samples / urlpad / ipframe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-29  |  1.3 KB  |  49 lines

  1. //=------------------------------------------------------------------------=
  2. // IPFrame.h
  3. //=------------------------------------------------------------------------=
  4. // Copyright 1992-1996 Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  9. // PARTICULAR PURPOSE.
  10. //=--------------------------------------------------------------------------=
  11. //
  12. // Definition of the CInPlaceFrame class
  13. //
  14.  
  15. class CInPlaceFrame : public COleIPFrameWnd
  16. {
  17.     DECLARE_DYNCREATE(CInPlaceFrame)
  18. public:
  19.     CInPlaceFrame();
  20.  
  21. // Attributes
  22. public:
  23.  
  24. // Operations
  25. public:
  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.     BOOL OnCreateControlBars(CWnd* pWndFrame, CWnd* pWndDoc);
  35.  
  36. protected:  // control bar embedded members
  37.     CToolBar    m_wndToolBar;
  38.     COleResizeBar   m_wndResizeBar;
  39.  
  40. // Generated message map functions
  41. protected:
  42.     //{{AFX_MSG(CInPlaceFrame)
  43.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.