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

图形图象

开发平台:

Visual C++

  1. // POSDiag.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Video Demo.h"
  5. #include "POSDiag.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // POSDiag dialog
  13. POSDiag::POSDiag(CWnd* pParent /*=NULL*/)
  14. : CDialog(POSDiag::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(POSDiag)
  17. m_x = 170;
  18. m_y = 100;
  19. m_width = 20;
  20. m_height = 60;
  21. //}}AFX_DATA_INIT
  22. }
  23. void POSDiag::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(POSDiag)
  27. DDX_Text(pDX, IDC_EDIT1, m_x);
  28. DDX_Text(pDX, IDC_EDIT2, m_y);
  29. DDX_Text(pDX, IDC_EDIT3, m_width);
  30. DDX_Text(pDX, IDC_EDIT4, m_height);
  31. //}}AFX_DATA_MAP
  32. }
  33. BEGIN_MESSAGE_MAP(POSDiag, CDialog)
  34. //{{AFX_MSG_MAP(POSDiag)
  35. // NOTE: the ClassWizard will add message map macros here
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // POSDiag message handlers