SARDlg.cpp
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:3k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. // SARDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "SARDlg.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CSARDlg dialog
  12. CSARDlg::CSARDlg(CWnd* pParent,CSAR * pSAR)
  13. {
  14. CParamDlg::CParamDlg(CSARDlg::IDD, pParent);
  15. //{{AFX_DATA_INIT(CSARDlg)
  16. m_nDays = 0;
  17. m_strAFStep = _T("");
  18. m_strAFMax = _T("");
  19. //}}AFX_DATA_INIT
  20. m_pSAR = pSAR;
  21. }
  22. void CSARDlg::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CParamDlg::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CSARDlg)
  26. DDX_Control(pDX, IDC_SELL, m_cmbSell);
  27. DDX_Control(pDX, IDC_BUY, m_cmbBuy);
  28. DDX_Control(pDX, IDC_STATIC_NAME, m_staticName);
  29. DDX_Text(pDX, IDC_DAYS, m_nDays);
  30. DDX_Text(pDX, IDC_AFSTEP, m_strAFStep);
  31. DDX_Text(pDX, IDC_AFMAX, m_strAFMax);
  32. //}}AFX_DATA_MAP
  33. }
  34. BEGIN_MESSAGE_MAP(CSARDlg, CParamDlg)
  35. //{{AFX_MSG_MAP(CSARDlg)
  36. ON_BN_CLICKED(IDC_DEFAULT, OnDefault)
  37. ON_BN_CLICKED(IDC_PARAMHELP, OnHelp)
  38. //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CSARDlg message handlers
  42. BOOL CSARDlg::OnInitDialog() 
  43. {
  44. CParamDlg::OnInitDialog();
  45. ASSERT( m_pSAR );
  46. // TODO: Add extra initialization here
  47. RefreshData( 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 CSARDlg::OnCancel() 
  52. {
  53. }
  54. void CSARDlg::OnOK() 
  55. {
  56. // TODO: Add extra validation here
  57. if( !RefreshData( TRUE ) )
  58. m_pSAR->SetDefaultParameters( );
  59. CParamDlg::OnOK();
  60. }
  61. void CSARDlg::OnDefault() 
  62. {
  63. // TODO: Add your control notification handler code here
  64. m_pSAR->SetDefaultParameters( );
  65. RefreshData( FALSE );
  66. }
  67. void CSARDlg::OnHelp() 
  68. {
  69. ParamHelp( STT_SAR );
  70. }
  71. BOOL CSARDlg::RefreshData( BOOL bSaveAndValidate )
  72. {
  73. if( !m_pSAR->IsValidParameters() )
  74. m_pSAR->SetDefaultParameters();
  75. if( bSaveAndValidate )
  76. {
  77. UpdateData( TRUE );
  78. if( !IsNumber( m_strAFStep,FALSE ) || !IsNumber(m_strAFMax,FALSE) )
  79. return FALSE;
  80. CButton * pbtn = (CButton *)GetDlgItem(IDC_RADIOMIN);
  81. m_pSAR->m_bFirstUp = ( pbtn && pbtn->GetCheck() );
  82. m_pSAR->m_nInitDays = m_nDays;
  83. m_pSAR->m_dAFStep = atof(m_strAFStep);
  84. m_pSAR->m_dAFMax = atof(m_strAFMax);
  85. m_pSAR->m_itsBuy = m_cmbBuy.GetSelect();
  86. m_pSAR->m_itsSell = m_cmbSell.GetSelect();
  87. return m_pSAR->IsValidParameters();
  88. }
  89. else
  90. {
  91. m_staticName.SetWindowText( AfxGetSTTFullName(STT_SAR) );
  92. CheckRadioButton( IDC_RADIOMIN, IDC_RADIOMAX, m_pSAR->m_bFirstUp ? IDC_RADIOMIN : IDC_RADIOMAX );
  93. m_nDays = m_pSAR->m_nInitDays;
  94. m_strAFStep.Format( "%.2f", m_pSAR->m_dAFStep );
  95. m_strAFMax.Format( "%.2f", m_pSAR->m_dAFMax );
  96. m_cmbBuy.ResetAndSelect( m_pSAR->m_itsBuy );
  97. m_cmbSell.ResetAndSelect( m_pSAR->m_itsSell );
  98. UpdateData( FALSE );
  99. }
  100. return TRUE;
  101. }