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

金融证券系统

开发平台:

Visual C++

  1. // PSYDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "PSYDlg.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CPSYDlg dialog
  12. CPSYDlg::CPSYDlg(CWnd* pParent, CPSY * pPSY )
  13. {
  14. CParamDlg::CParamDlg(CPSYDlg::IDD, pParent);
  15. //{{AFX_DATA_INIT(CPSYDlg)
  16. m_nDays = 0;
  17. //}}AFX_DATA_INIT
  18. m_pPSY = pPSY;
  19. }
  20. void CPSYDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CParamDlg::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CPSYDlg)
  24. DDX_Control(pDX, IDC_BOUGHT, m_cmbBought);
  25. DDX_Control(pDX, IDC_SOLD, m_cmbSold);
  26. DDX_Control(pDX, IDC_STATIC_NAME, m_staticName);
  27. DDX_Text(pDX, IDC_DAYS, m_nDays);
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CPSYDlg, CParamDlg)
  31. //{{AFX_MSG_MAP(CPSYDlg)
  32. ON_BN_CLICKED(IDC_DEFAULT, OnDefault)
  33. ON_BN_CLICKED(IDC_PARAMHELP, OnHelp)
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CPSYDlg message handlers
  38. BOOL CPSYDlg::OnInitDialog() 
  39. {
  40. CParamDlg::OnInitDialog();
  41. ASSERT( m_pPSY );
  42. // TODO: Add extra initialization here
  43. RefreshData( FALSE );
  44. return TRUE;  // return TRUE unless you set the focus to a control
  45.               // EXCEPTION: OCX Property Pages should return FALSE
  46. }
  47. void CPSYDlg::OnCancel() 
  48. {
  49. }
  50. void CPSYDlg::OnOK() 
  51. {
  52. // TODO: Add extra validation here
  53. if( !RefreshData( TRUE ) )
  54. m_pPSY->SetDefaultParameters( );
  55. CParamDlg::OnOK();
  56. }
  57. void CPSYDlg::OnDefault() 
  58. {
  59. // TODO: Add your control notification handler code here
  60. m_pPSY->SetDefaultParameters( );
  61. RefreshData( FALSE );
  62. }
  63. void CPSYDlg::OnHelp() 
  64. {
  65. ParamHelp( STT_PSY );
  66. }
  67. BOOL CPSYDlg::RefreshData( BOOL bSaveAndValidate )
  68. {
  69. if( !m_pPSY->IsValidParameters() )
  70. m_pPSY->SetDefaultParameters();
  71. if( bSaveAndValidate )
  72. {
  73. UpdateData( TRUE );
  74. m_pPSY->m_nDays = m_nDays;
  75. m_pPSY->m_itsSold = m_cmbSold.GetSelect();
  76. m_pPSY->m_itsBought = m_cmbBought.GetSelect();
  77. return m_pPSY->IsValidParameters();
  78. }
  79. else
  80. {
  81. m_staticName.SetWindowText( AfxGetSTTFullName(STT_PSY) );
  82. m_nDays = m_pPSY->m_nDays;
  83. m_cmbSold.ResetAndSelect( m_pPSY->m_itsSold );
  84. m_cmbBought.ResetAndSelect( m_pPSY->m_itsBought );
  85. UpdateData( FALSE );
  86. }
  87. return TRUE;
  88. }