Temp.cpp
上传用户:pureled
上传日期:2013-05-27
资源大小:1078k
文件大小:1k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // Temp.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "图像拼接技术.h"
  5. #include "Temp.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Temp dialog
  13. Temp::Temp(CWnd* pParent /*=NULL*/)
  14. : CDialog(Temp::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(Temp)
  17. int mx=0;
  18. int my=0;
  19. int h=0;
  20. int w=0;
  21. // NOTE: the ClassWizard will add member initialization here
  22. //}}AFX_DATA_INIT
  23. }
  24. void Temp::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(Temp)
  28.     DDX_Text(pDX, IDC_EDIT5, mx);
  29. DDX_Text(pDX, IDC_EDIT6, my);
  30.     DDX_Text(pDX, IDC_EDIT7, w);
  31. DDX_Text(pDX, IDC_EDIT8, h);
  32.     DDV_MinMaxInt(pDX, my, 0, 2000);
  33. //DDV_MinMaxInt(pDX, Height, 0, 2000);
  34. // NOTE: the ClassWizard will add DDX and DDV calls here
  35. //}}AFX_DATA_MAP
  36. }
  37. BEGIN_MESSAGE_MAP(Temp, CDialog)
  38. //{{AFX_MSG_MAP(Temp)
  39. //}}AFX_MSG_MAP
  40. END_MESSAGE_MAP()
  41. /////////////////////////////////////////////////////////////////////////////
  42. // Temp message handlers