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 / scrltmdi.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-27  |  1.2 KB  |  51 lines

  1. // scrltmdi.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 _SCRLTMDI_H_
  16. #define _SCRLTMDI_H_
  17.  
  18. #ifndef _GXTWND_H_
  19. #include "gxtwnd.h"
  20. #endif
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CScrltabsMDIChildWnd frame
  24.  
  25. class CScrltabsMDIChildWnd : public CMDIChildWnd
  26. {
  27.     DECLARE_DYNCREATE(CScrltabsMDIChildWnd)
  28. protected:
  29.     CScrltabsMDIChildWnd();         // protected constructor used by dynamic creation
  30.  
  31. // Attributes
  32. public:
  33.     CGXTabWnd       m_wndTab;
  34.  
  35. // Operations
  36. public:
  37.     BOOL OnCreateClient(LPCREATESTRUCT /*lpcs*/, CCreateContext* pContext);
  38.  
  39. // Implementation
  40. protected:
  41.     virtual ~CScrltabsMDIChildWnd();
  42.  
  43.     // Generated message map functions
  44.     //{{AFX_MSG(CScrltabsMDIChildWnd)
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50. #endif // _SCRLTMDI_H_
  51.