Garmin Fleet Management Controller  2.19.0
CSelectCommPortDlg.h
Go to the documentation of this file.
1 /*********************************************************************
2 *
3 * HEADER NAME:
4 * CSelectCommPortDlg.h
5 *
6 * Copyright 2008-2009 by Garmin Ltd. or its subsidiaries.
7 *---------------------------------------------------------------------
8 * $NoKeywords$
9 *********************************************************************/
10 #ifndef CSelectCommPortDlg_H
11 #define CSelectCommPortDlg_H
12 
13 #include "CFmiPcAppDlg.h"
14 
15 //----------------------------------------------------------------------
18 //----------------------------------------------------------------------
19 class CSelectCommPortDlg : public CDialog
20 {
21  DECLARE_DYNAMIC( CSelectCommPortDlg )
22  DECLARE_MESSAGE_MAP()
23 
24 public:
26  (
27  CWnd * aParent = NULL
28  );
29 
30  virtual ~CSelectCommPortDlg();
31 
32 protected:
33  virtual void DoDataExchange
34  (
35  CDataExchange * aDataExchange
36  );
37 
38  BOOL OnInitDialog();
39 
40  afx_msg void OnBnClickedCancel();
41  afx_msg void OnBnClickedOk();
42 
43 protected:
46 };
47 
48 #endif
afx_msg void OnBnClickedCancel()
Click handler for the Cancel button.
virtual ~CSelectCommPortDlg()
Destructor.
Modal dialog allowing the user to select the port to use to communicate with the client.
afx_msg void OnBnClickedOk()
Click handler for the OK button.
BOOL OnInitDialog()
Initialize the dialog.
virtual void DoDataExchange(CDataExchange *aDataExchange)
Perform dialog data exchange and validation.
int mSelectedPortIndex
Index of the selected port in the drop down.
CSelectCommPortDlg(CWnd *aParent=NULL)
Constructor.