home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap17 / Ch17Dialog.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-24  |  1.0 KB  |  47 lines

  1. // Ch17Dialog.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Ch17.h"
  6. #include "Ch17Dialog.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CCh17Dialog dialog
  16.  
  17.  
  18. CCh17Dialog::CCh17Dialog(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CCh17Dialog::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CCh17Dialog)
  22.     m_int = 0;
  23.     m_checkbox = FALSE;
  24.     //}}AFX_DATA_INIT
  25. }
  26.  
  27.  
  28. void CCh17Dialog::DoDataExchange(CDataExchange* pDX)
  29. {
  30.     CDialog::DoDataExchange(pDX);
  31.     //{{AFX_DATA_MAP(CCh17Dialog)
  32.     DDX_Text(pDX, IDC_EDIT1, m_int);
  33.     DDV_MinMaxInt(pDX, m_int, 1, 20);
  34.     DDX_Check(pDX, IDC_CHECK1, m_checkbox);
  35.     //}}AFX_DATA_MAP
  36. }
  37.  
  38.  
  39. BEGIN_MESSAGE_MAP(CCh17Dialog, CDialog)
  40.     //{{AFX_MSG_MAP(CCh17Dialog)
  41.         // NOTE: the ClassWizard will add message map macros here
  42.     //}}AFX_MSG_MAP
  43. END_MESSAGE_MAP()
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CCh17Dialog message handlers
  47.