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

GDI/图象编程

开发平台:

Visual C++

  1. // Wuizhi2.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "图像拼接技术.h"
  5. #include "Wuizhi2.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Wuizhi2 dialog
  13. Wuizhi2::Wuizhi2(CWnd* pParent /*=NULL*/)
  14. : CDialog(Wuizhi2::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(Wuizhi2)
  17. match2_x = 0;
  18. match2_y = 0;
  19. angle = 0.0f;
  20. //}}AFX_DATA_INIT
  21. }
  22. void Wuizhi2::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(Wuizhi2)
  26. DDX_Text(pDX, IDC_SUANFA2_X, match2_x);
  27. DDV_MinMaxInt(pDX, match2_x, 0, 600);
  28. DDX_Text(pDX, IDC_SUANFA2_Y, match2_y);
  29. DDV_MinMaxInt(pDX, match2_y, 0, 600);
  30. DDX_Text(pDX, IDC_SUANFA2_Z, angle);
  31. DDV_MinMaxFloat(pDX, angle, 0.f, 90.f);
  32. //}}AFX_DATA_MAP
  33. }
  34. BEGIN_MESSAGE_MAP(Wuizhi2, CDialog)
  35. //{{AFX_MSG_MAP(Wuizhi2)
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // Wuizhi2 message handlers
  40. BOOL Wuizhi2::OnInitDialog() 
  41. {
  42. CDialog::OnInitDialog();
  43. // TODO: Add extra initialization here
  44. UpdateData(FALSE);
  45. return TRUE;  // return TRUE unless you set the focus to a control
  46.               // EXCEPTION: OCX Property Pages should return FALSE
  47. }
  48. void Wuizhi2::OnOK() 
  49. {
  50. // TODO: Add extra validation here
  51. UpdateData(TRUE);
  52. CDialog::OnOK();
  53. }