home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / activex / inetsdk / samples / urlpad / padframe.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-29  |  1.2 KB  |  46 lines

  1. //=------------------------------------------------------------------------=
  2. // PadFrame.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 CPadFrame class
  13. //
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CPadFrame frame
  17.  
  18. class CPadFrame : public CMDIChildWnd
  19. {
  20.     DECLARE_DYNCREATE(CPadFrame)
  21. protected:
  22.  
  23. // Attributes
  24. public:
  25.  
  26. // Operations
  27. public:
  28.     static void Initialize();
  29.     static void Terminate();
  30.  
  31. // Implementation
  32. protected:
  33.     void ActivateFrame(int nCmdShow);
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CPadFrame)
  37.     afx_msg void OnSize(UINT nType, int cx, int cy);
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40.  
  41.     static int m_nDefCmdShow;
  42.     static int m_nDefCmdShowOld;
  43. };
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46.