MotionDetectDiag.cpp
上传用户:smdfuse
上传日期:2015-11-06
资源大小:98k
文件大小:1k
源码类别:

图形图象

开发平台:

Visual C++

  1. // MotionDetectDiag.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Video Demo.h"
  5. #include "MotionDetectDiag.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // MotionDetectDiag dialog
  13. MotionDetectDiag::MotionDetectDiag(CWnd* pParent /*=NULL*/)
  14. : CDialog(MotionDetectDiag::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(MotionDetectDiag)
  17. m_index = 200;
  18. //}}AFX_DATA_INIT
  19. }
  20. void MotionDetectDiag::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(MotionDetectDiag)
  24. DDX_Text(pDX, IDC_EDIT1, m_index);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(MotionDetectDiag, CDialog)
  28. //{{AFX_MSG_MAP(MotionDetectDiag)
  29. ON_EN_CHANGE(IDC_EDIT1, OnChangeEdit1)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // MotionDetectDiag message handlers
  34. void MotionDetectDiag::OnChangeEdit1() 
  35. {
  36. // TODO: If this is a RICHEDIT control, the control will not
  37. // send this notification unless you override the CDialog::OnInitDialog()
  38. // function and call CRichEditCtrl().SetEventMask()
  39. // with the ENM_CHANGE flag ORed into the mask.
  40. // TODO: Add your control notification handler code here
  41. }