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

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