Develop and Download Open Source Software

Browse Subversion Repository

Contents of /WinCS/SetupConfigDlg.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11 - (show annotations) (download) (as text)
Wed Feb 10 18:21:00 2010 UTC (14 years ago) by sho1get
File MIME type: text/x-chdr
File size: 919 byte(s)


1 #pragma once
2
3 #include "afxcmn.h"
4 #include "afxwin.h"
5
6 //////////////////////////////////////////////////////////////////////////
7
8 class CSetupConfigDlg : public CDialog
9 {
10 DECLARE_DYNAMIC(CSetupConfigDlg)
11 public:
12 CSetupConfigDlg(CWnd* pParent = NULL);
13 virtual ~CSetupConfigDlg();
14 enum { IDD = IDD_SETUP_CONFIG_DIALOG };
15
16 void SetWcsStatus(WCS_STATUS wcsStatus) { m_wcsStatus = wcsStatus; }
17 void GetWcsStatus(WCS_STATUS &wcsStatus) { wcsStatus = m_wcsStatus; };
18
19 protected:
20 DECLARE_MESSAGE_MAP()
21 virtual void DoDataExchange(CDataExchange* pDX);
22 virtual BOOL OnInitDialog();
23
24 afx_msg void OnCbnSelchangeCmbSetupconfigMode();
25 afx_msg void OnBnClickedOk();
26
27 public:
28 CIPAddressCtrl m_xIPAddressMaster;
29 CComboBox m_xCmbDiscovery;
30
31 protected:
32 WCS_STATUS m_wcsStatus;
33 HICON m_hIcon;
34 };
35
36 //////////////////////////////////////////////////////////////////////////
37

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26