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 / mainfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-24  |  1.2 KB  |  39 lines

  1. //=------------------------------------------------------------------------=
  2. // MainFrm.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 CMainFrm class
  13. //
  14.  
  15. #ifndef __AFXEXT_H__
  16. #include <afxext.h>         // for access to CToolBar and CStatusBar
  17. #endif
  18.  
  19. class CMainFrame : public CMDIFrameWnd
  20. {
  21.     DECLARE_DYNCREATE(CMainFrame)
  22. public:
  23.     void InitialShowWindow(UINT nCmdShow);
  24.     void MyShowPane( LPCSTR text ) ;
  25.  
  26. protected:
  27.     CStatusBar  m_wndStatusBar;
  28.     CToolBar    m_wndToolBar;
  29.  
  30. protected:
  31.     //{{AFX_MSG(CMainFrame)
  32.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  33.     afx_msg void OnClose();
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39.