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

  1. // dlgsamp3.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 _GXALL_H_
  16. #include "gxwnd.h"
  17. #endif
  18.  
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CSample3Dialog dialog
  21.  
  22. class CSample3Dialog : public CDialog
  23. {
  24. // Construction
  25. public:
  26.     CSample3Dialog(CWnd* pParent = NULL);    // standard constructor
  27.  
  28. // Dialog Data
  29.     //{{AFX_DATA(CSample3Dialog)
  30.     enum { IDD = IDD_DLGSAMP3 };
  31.     int     m_nEdit;
  32.     int     m_nVal2;
  33.     //}}AFX_DATA
  34.  
  35.     CGXGridWnd m_wndGrid;
  36.  
  37. // Implementation
  38. protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CSample3Dialog)
  43.     virtual BOOL OnInitDialog();
  44.     afx_msg BOOL OnNcActivate(BOOL bActive);
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.