CommSetDlg.h
上传用户:seaboy_04
上传日期:2013-02-24
资源大小:284k
文件大小:1k
源码类别:

其他行业

开发平台:

Visual C++

  1. #if !defined(AFX_COMMSETDLG_H__6BA42D30_18C7_4992_93C1_2E1DB58CD346__INCLUDED_)
  2. #define AFX_COMMSETDLG_H__6BA42D30_18C7_4992_93C1_2E1DB58CD346__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CommSetDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CCommSetDlg dialog
  10. class CCommSetDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CCommSetDlg(CWnd* pParent = NULL);   // standard constructor
  15. BOOL m_bConnected;
  16. int m_nParity;//校验位
  17. int m_nStopBits;//停止位
  18. // Dialog Data
  19. //{{AFX_DATA(CCommSetDlg)
  20. enum { IDD = IDD_COMMDLG };
  21. CComboBox m_ctrlStopBits;
  22. CComboBox m_ctrlParity;
  23. CComboBox m_ctrlPort;
  24. CComboBox m_ctrlDataBits;
  25. CComboBox m_ctrlBaud;
  26. CString m_sBaud;
  27. CString m_sDataBits;
  28. BOOL m_bEcho;
  29. BOOL m_bNewLine;
  30. CString m_sPort;
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CCommSetDlg)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CCommSetDlg)
  42. virtual BOOL OnInitDialog();
  43. virtual void OnOK();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif 
  50. // !defined(AFX_COMMSETDLG_H__6BA42D30_18C7_4992_93C1_2E1DB58CD346__INCLUDED_)