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

传真(Fax)编程

开发平台:

Visual C++

  1. // FlightDLG.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "tiffsample.h"
  5. #include "FlightDLG.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. namespace F3DSettings {
  12. bool firstPerson = false;
  13. int duration = 30;
  14. };
  15. /////////////////////////////////////////////////////////////////////////////
  16. // FlightDLG dialog
  17. FlightDLG::FlightDLG(CWnd* pParent /*=NULL*/)
  18. : CDialog(FlightDLG::IDD, pParent)
  19. {
  20. //{{AFX_DATA_INIT(FlightDLG)
  21. // NOTE: the ClassWizard will add member initialization here
  22. //}}AFX_DATA_INIT
  23. m_firstPerson = false;
  24. m_secs = 10;
  25. }
  26. void FlightDLG::DoDataExchange(CDataExchange* pDX)
  27. {
  28. CDialog::DoDataExchange(pDX);
  29. //{{AFX_DATA_MAP(FlightDLG)
  30. DDX_Control(pDX, IDC_DURATION_EDIT, m_durationEdit);
  31. DDX_Control(pDX, IDC_FIRSTPERSON_CHECK, m_fpCheck);
  32. //}}AFX_DATA_MAP
  33. }
  34. BEGIN_MESSAGE_MAP(FlightDLG, CDialog)
  35. //{{AFX_MSG_MAP(FlightDLG)
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // FlightDLG message handlers
  40. BOOL FlightDLG::OnInitDialog() 
  41. {
  42. CDialog::OnInitDialog();
  43. char txt[24];
  44. sprintf(txt,"%d",F3DSettings::duration);
  45. m_durationEdit.SetWindowText(txt);
  46. m_fpCheck.SetCheck(F3DSettings::firstPerson);
  47. return TRUE;  // return TRUE unless you set the focus to a control
  48.               // EXCEPTION: OCX Property Pages should return FALSE
  49. }
  50. void FlightDLG::OnOK() 
  51. {
  52. CString txt;
  53. m_durationEdit.GetWindowText(txt);
  54. m_secs = atoi((LPCTSTR)txt);
  55. m_firstPerson = (bool)m_fpCheck.GetCheck();
  56. if (m_secs < 2)
  57. {
  58. AfxMessageBox("Duration must be greater than 2 seconds",MB_ICONERROR);
  59. return;
  60. }
  61. F3DSettings::duration = m_secs;
  62. F3DSettings::firstPerson = m_firstPerson;
  63. CDialog::OnOK();
  64. }