home *** CD-ROM | disk | FTP | other *** search
/ C/C++ User's Journal & Wi…eveloper's Journal Tools / C-C__Users_Journal_and_Windows_Developers_Journal_Tools_1997.iso / stingray / gridfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-27  |  1.2 KB  |  50 lines

  1. // gridfrm.h : header file
  2. //
  3.  
  4. // This is a part of the Objective Grid C++ Library.
  5. // Copyright (C) 1995,1996 ClassWorks, Stefan Hoenig.
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to
  9. // the Objective Grid Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding
  12. // the Objective Grid product.
  13. //
  14.  
  15. #ifndef _GRIDFRM_H_
  16. #define _GRIDFRM_H_
  17.  
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CGridMDIFrameWnd frame
  20.  
  21. class CGridMDIFrameWnd : public CMDIFrameWnd
  22. {
  23.     DECLARE_DYNCREATE(CGridMDIFrameWnd)
  24. protected:
  25.     CGridMDIFrameWnd();           // protected constructor used by dynamic creation
  26.  
  27. // Attributes
  28. public:
  29.     CString m_sSection;     // Section name to store window pos
  30.  
  31. // Operations
  32. public:
  33.     BOOL ShowWindow(int nCmdShow);
  34.  
  35. // Implementation
  36. protected:
  37.     virtual ~CGridMDIFrameWnd();
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(CGridMDIFrameWnd)
  41.     afx_msg void OnClose();
  42.     afx_msg BOOL OnNcActivate(BOOL bActive);
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.  
  49. #endif // _gridfrm_H_
  50.