commtestDlg.h
上传用户:skyblue117
上传日期:2013-02-13
资源大小:53k
文件大小:2k
源码类别:

串口编程

开发平台:

Visual C++

  1. /*
  2. ** FILENAME CommTestDlg.h
  3. **
  4. ** PURPOSE This is the dialog that shows the comm activity.
  5. **
  6. ** CREATION DATE 15-09-1997
  7. ** LAST MODIFICATION 12-11-1997
  8. **
  9. ** AUTHOR Remon Spekreijse
  10. **
  11. */
  12. #if !defined(AFX_COMMTESTDLG_H__4FDAC186_34B5_11D1_9481_00805A147202__INCLUDED_)
  13. #define AFX_COMMTESTDLG_H__4FDAC186_34B5_11D1_9481_00805A147202__INCLUDED_
  14. #if _MSC_VER >= 1000
  15. #pragma once
  16. #endif // _MSC_VER >= 1000
  17. #include "ColorStatic.h"
  18. #include "SerialPort.h"
  19. class CCommtestDlg : public CDialog
  20. {
  21. public:
  22. CCommtestDlg(CWnd* pParent = NULL); // standard constructor
  23. //{{AFX_DATA(CCommtestDlg)
  24. enum { IDD = IDD_COMMTEST_DIALOG };
  25. // NOTE: the ClassWizard will add data members here
  26. //}}AFX_DATA
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CCommtestDlg)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. HICON m_hIcon;
  35. CListBox m_ListBox[4];
  36. CEdit m_Edit[4];
  37. CSerialPort m_Ports[4];
  38. CString m_strReceived[4];
  39. // Generated message map functions
  40. //{{AFX_MSG(CCommtestDlg)
  41. virtual BOOL OnInitDialog();
  42. afx_msg void OnPaint();
  43. afx_msg HCURSOR OnQueryDragIcon();
  44. afx_msg void OnSendButton1();
  45. afx_msg void OnSendButton2();
  46. afx_msg void OnSendButton3();
  47. afx_msg void OnSendButton4();
  48. afx_msg LONG OnCommunication(UINT, LONG);
  49. afx_msg LONG OnCTSDetected(UINT, LONG);
  50. afx_msg void OnClearButton1();
  51. afx_msg void OnClearButton2();
  52. afx_msg void OnClearButton3();
  53. afx_msg void OnClearButton4();
  54. afx_msg void OnConfigbutton1();
  55. afx_msg void OnConfigbutton2();
  56. afx_msg void OnConfigbutton3();
  57. afx_msg void OnConfigbutton4();
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. };
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  63. #endif // !defined(AFX_COMMTESTDLG_H__4FDAC186_34B5_11D1_9481_00805A147202__INCLUDED_)