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

GDI/图象编程

开发平台:

Visual C++

  1. // Other.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "图像拼接技术.h"
  5. #include "Other.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Other dialog
  13. Other::Other(CWnd* pParent /*=NULL*/)
  14. : CDialog(Other::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(Other)
  17. m_x=0;
  18. m_y=0;
  19. // NOTE: the ClassWizard will add member initialization here
  20. //}}AFX_DATA_INIT
  21. }
  22. void Other::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(Other)
  26. DDX_Text(pDX, IDC_EDIT3, m_x);
  27. DDX_Text(pDX, IDC_EDIT4, m_y);
  28. DDV_MinMaxInt(pDX, m_y, 0, 4000);
  29. // NOTE: the ClassWizard will add DDX and DDV calls here
  30. //}}AFX_DATA_MAP
  31. }
  32. BEGIN_MESSAGE_MAP(Other, CDialog)
  33. //{{AFX_MSG_MAP(Other)
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // Other message handlers
  38. BOOL Other::OnInitDialog() 
  39. {
  40. CDialog::OnInitDialog();
  41. // TODO: Add extra initialization here
  42. m_x=400;
  43. m_y=0;
  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 Other::OnOK() 
  49. {
  50. // TODO: Add extra validation here
  51. UpdateData(TRUE);
  52. CDialog::OnOK();
  53. }