BargraphsDlg.cpp
上传用户:ywlong9188
上传日期:2022-05-31
资源大小:2656k
文件大小:2k
源码类别:

远程控制编程

开发平台:

C/C++

  1.  // BargraphsDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ColorStatic.h"
  5. #include "barpropdlg.h"
  6. #include "BargraphsDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CBargraphsDlg dialog
  14. CBargraphsDlg::CBargraphsDlg(CWnd* pParent /*=NULL*/)
  15. : CDialog(CBargraphsDlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CBargraphsDlg)
  18. m_sParam = _T("");
  19. m_name = _T("");
  20. m_sNumber = _T("");
  21. //}}AFX_DATA_INIT
  22. m_nDirection = 0;
  23. m_nOne = 100;
  24. m_nTwo = 100;
  25. m_cBar = RGB(255,0,0);
  26. m_cOne = RGB(0,255,0);
  27. m_cTwo = RGB(255,255,0);
  28. }
  29. void CBargraphsDlg::DoDataExchange(CDataExchange* pDX)
  30. {
  31. CDialog::DoDataExchange(pDX);
  32. //{{AFX_DATA_MAP(CBargraphsDlg)
  33. DDX_Text(pDX, IDC_EDIT1, m_sParam);
  34. DDX_Text(pDX, IDC_BAR_NAME, m_name);
  35. DDX_Text(pDX, IDC_BAR_NUMBER, m_sNumber);
  36. //}}AFX_DATA_MAP
  37. }
  38. BEGIN_MESSAGE_MAP(CBargraphsDlg, CDialog)
  39. //{{AFX_MSG_MAP(CBargraphsDlg)
  40. ON_BN_CLICKED(IDC_CONFIGRUE, OnConfigrue)
  41. //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CBargraphsDlg message handlers
  45. void CBargraphsDlg::OnConfigrue() 
  46. {
  47. CBarpropDlg barDlg;
  48. // Initialize the barDlg;
  49. barDlg.m_nDirection = m_nDirection;
  50. barDlg.m_nOne = m_nOne;
  51. barDlg.m_nTwo = m_nTwo;
  52. barDlg.m_cBar.SetColor( m_cBar );
  53. barDlg.m_cOne.SetColor( m_cOne );
  54. barDlg.m_cTwo.SetColor( m_cTwo );
  55. // End of the initialization
  56. //barDlg.UpdateData(FALSE);
  57. if( barDlg.DoModal() == IDOK)
  58. {
  59. // Get the value of the User setting
  60. m_nDirection = barDlg.m_nDirection;
  61. m_nOne = barDlg.m_nOne;
  62. m_nTwo = barDlg.m_nTwo;
  63. barDlg.m_cBar.GetColor( m_cBar) ;
  64. barDlg.m_cOne.GetColor( m_cOne );
  65. barDlg.m_cTwo.GetColor( m_cTwo );
  66. // Getting end;
  67. }
  68. UpdateData(FALSE);  // Refresh the controls' values
  69. }