ConfigDlg.cpp
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. // ConfigDlg.cpp : implementation file
  12. //
  13. #include "stdafx.h"
  14. #include "alarm.h"
  15. #include "ConfigDlg.h"
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CConfigDlg dialog
  23. CConfigDlg::CConfigDlg(CWnd* pParent /*=NULL*/)
  24. : CDialog(CConfigDlg::IDD, pParent)
  25. {
  26. //{{AFX_DATA_INIT(CConfigDlg)
  27. m_enable = FALSE;
  28. m_text = _T("");
  29. m_time = 0;
  30. m_date = 0;
  31. //}}AFX_DATA_INIT
  32. }
  33. void CConfigDlg::DoDataExchange(CDataExchange* pDX)
  34. {
  35. CDialog::DoDataExchange(pDX);
  36. //{{AFX_DATA_MAP(CConfigDlg)
  37. DDX_Check(pDX, IDC_ENABLE, m_enable);
  38. DDX_Text(pDX, IDC_TEXT, m_text);
  39. DDX_DateTimeCtrl(pDX, IDC_TIME, m_time);
  40. DDX_DateTimeCtrl(pDX, IDC_DATE, m_date);
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CConfigDlg, CDialog)
  44. //{{AFX_MSG_MAP(CConfigDlg)
  45. // NOTE: the ClassWizard will add message map macros here
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CConfigDlg message handlers