home *** CD-ROM | disk | FTP | other *** search
- //=------------------------------------------------------------------------=
- // PadFrame.h
- //=------------------------------------------------------------------------=
- // Copyright 1992-1996 Microsoft Corporation. All Rights Reserved.
- //
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
- // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
- // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- // PARTICULAR PURPOSE.
- //=--------------------------------------------------------------------------=
- //
- // Definition of the CPadFrame class
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CPadFrame frame
-
- class CPadFrame : public CMDIChildWnd
- {
- DECLARE_DYNCREATE(CPadFrame)
- protected:
-
- // Attributes
- public:
-
- // Operations
- public:
- static void Initialize();
- static void Terminate();
-
- // Implementation
- protected:
- void ActivateFrame(int nCmdShow);
-
- // Generated message map functions
- //{{AFX_MSG(CPadFrame)
- afx_msg void OnSize(UINT nType, int cx, int cy);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
- static int m_nDefCmdShow;
- static int m_nDefCmdShowOld;
- };
-
- /////////////////////////////////////////////////////////////////////////////
-