RegDLG.cpp
上传用户:lbr_007
上传日期:2019-05-31
资源大小:282k
文件大小:2k
源码类别:

传真(Fax)编程

开发平台:

Visual C++

  1. // RegDLG.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "tiffsample.h"
  5. #include "RegDLG.h"
  6. #include <geo.h>
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // RegDLG dialog
  14. RegDLG::RegDLG(CWnd* pParent /*=NULL*/)
  15. : CDialog(RegDLG::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(RegDLG)
  18. //}}AFX_DATA_INIT
  19. }
  20. void RegDLG::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(RegDLG)
  24. DDX_Control(pDX, IDC_LASTPT_CHECK, m_lastCheck);
  25. DDX_Control(pDX, IDC_LONGITUDE_EDIT, m_long_edit);
  26. DDX_Control(pDX, IDC_LATITUDE_EDIT, m_lat_edit);
  27. DDX_Control(pDX, IDC_XPT_EDIT, m_xpt_edit);
  28. DDX_Control(pDX, IDC_YPT_EDIT, m_ypt_edit);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(RegDLG, CDialog)
  32. //{{AFX_MSG_MAP(RegDLG)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // RegDLG message handlers
  37. BOOL RegDLG::OnInitDialog() 
  38. {
  39. CDialog::OnInitDialog();
  40. char txt[24];
  41. memset(txt, 0, (size_t)24);
  42. sprintf(txt,"%f",m_x);
  43. m_xpt_edit.SetWindowText(txt);
  44. memset(txt, 0, (size_t)24);
  45. sprintf(txt,"%f",m_y);
  46. m_ypt_edit.SetWindowText(txt);
  47. m_last = false;
  48. return TRUE;  // return TRUE unless you set the focus to a control
  49.               // EXCEPTION: OCX Property Pages should return FALSE
  50. }
  51. void RegDLG::OnOK() 
  52. {
  53. char txt[24];
  54. memset(txt, 0, (size_t)24);
  55. m_lat_edit.GetWindowText(txt,23);
  56. m_lat = GeoCalc::DecodeLatitude(txt);
  57. memset(txt, 0, (size_t)24);
  58. m_long_edit.GetWindowText(txt,23);
  59. m_lon = GeoCalc::DecodeLongitude(txt);
  60. if (m_lastCheck.GetCheck())
  61. {
  62. m_last = true;
  63. }
  64. CDialog::OnOK();
  65. }