QuakeGod
2023-10-23 4dfb88353b3671a71bc397d5f210d71f67f8fb04
提交 | 用户 | age
418cb3 1 #pragma once
Q 2
3
4 // CDialogCommSet1 对话框
5
6 class CDialogCommSet1 : public CDialogEx
7 {
8     DECLARE_DYNAMIC(CDialogCommSet1)
9
10 public:
11     CDialogCommSet1(CWnd* pParent = nullptr);   // 标准构造函数
12     virtual ~CDialogCommSet1();
13
14 // 对话框数据
15 #ifdef AFX_DESIGN_TIME
16     enum { IDD = IDD_DIALOG_COMMSET1 };
17 #endif
18
19 protected:
20     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
21     DECLARE_MESSAGE_MAP()
22     afx_msg BOOL OnDeviceChange(UINT nEventType, DWORD_PTR dwData);
23 public:
24     virtual BOOL OnInitDialog();
25     virtual void OnOK();
26     int DisplayParams();
27     int GetParams();
28     int ShowParams();
29     int UpdateComPortList();
30     CComboBox m_combo_comport;
31     CString sComSelStr;
df0321 32     bool m_bOpened = false;
Q 33     int nLastComPort = 0;
418cb3 34     int m_nComNum;
Q 35     int m_nBaudRate;
36     CStringA m_Settings;
37
38     afx_msg void OnBnClickedOk();
39     afx_msg void OnBnClickedButtonInit();
40 };