XiuGai.cpp
上传用户:sdsuchuang
上传日期:2013-01-12
资源大小:2228k
文件大小:2k
源码类别:

图形图像处理

开发平台:

Visual C++

  1. // XiuGai.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "FaceDetect.h"
  5. #include "XiuGai.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // XiuGai dialog
  13. XiuGai::XiuGai(CWnd* pParent /*=NULL*/)
  14. : CDialog(XiuGai::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(XiuGai)
  17. m_Name = _T("");
  18. m_Age = 0;
  19. m_Birthday = _T("");
  20. m_Tel = _T("");
  21. m_Add = _T("");
  22. m_Xname = _T("");
  23. //}}AFX_DATA_INIT
  24.  flagN=0;
  25.  flagB=0;
  26.  flagA=0;
  27.  flagT=0;
  28.      flagAD=0;
  29. }
  30. void XiuGai::DoDataExchange(CDataExchange* pDX)
  31. {
  32. CDialog::DoDataExchange(pDX);
  33. //{{AFX_DATA_MAP(XiuGai)
  34. DDX_Text(pDX, IDC_EDIT1, m_Name);
  35. DDV_MaxChars(pDX, m_Name, 15);
  36. DDX_Text(pDX, IDC_EDIT2, m_Age);
  37. DDV_MinMaxInt(pDX, m_Age, 0, 200);
  38. DDX_Text(pDX, IDC_EDIT3, m_Birthday);
  39. DDX_Text(pDX, IDC_EDIT4, m_Tel);
  40. DDX_Text(pDX, IDC_EDIT5, m_Add);
  41. DDV_MaxChars(pDX, m_Add, 200);
  42. DDX_Text(pDX, IDC_EDIT6, m_Xname);
  43. DDV_MaxChars(pDX, m_Xname, 15);
  44. //}}AFX_DATA_MAP
  45. }
  46. BEGIN_MESSAGE_MAP(XiuGai, CDialog)
  47. //{{AFX_MSG_MAP(XiuGai)
  48. ON_BN_CLICKED(IDC_CHECK1, OnCheck1)
  49. ON_BN_CLICKED(IDC_CHECK2, OnCheck2)
  50. ON_BN_CLICKED(IDC_CHECK4, OnCheck4)
  51. ON_BN_CLICKED(IDC_CHECK3, OnCheck3)
  52. ON_BN_CLICKED(IDC_CHECK5, OnCheck5)
  53. ON_COMMAND(ID_DATABASE_Modification, OnDATABASEModification)
  54. ON_COMMAND(ID_MENUITEM32799, OnMenuitem32799)
  55. //}}AFX_MSG_MAP
  56. END_MESSAGE_MAP()
  57. /////////////////////////////////////////////////////////////////////////////
  58. // XiuGai message handlers
  59. void XiuGai::OnCheck1() 
  60. {
  61. // TODO: Add your control notification handler code here
  62. flagN=1;
  63. }
  64. void XiuGai::OnCheck2() 
  65. {
  66. // TODO: Add your control notification handler code here
  67. flagA=1;
  68. }
  69. void XiuGai::OnCheck4() 
  70. {
  71. // TODO: Add your control notification handler code here
  72. flagT=1;
  73. }
  74. void XiuGai::OnCheck3() 
  75. {
  76. // TODO: Add your control notification handler code here
  77. flagB=1;
  78. }
  79. void XiuGai::OnCheck5() 
  80. {
  81. // TODO: Add your control notification handler code here
  82. flagAD=1;
  83. }
  84. void XiuGai::OnDATABASEModification() 
  85. {
  86. // TODO: Add your command handler code here
  87. }
  88. void XiuGai::OnMenuitem32799() 
  89. {
  90. // TODO: Add your command handler code here
  91. }