1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- #if !defined(AFX_REMOTEPARAMSCFG_H__2AA82C89_ACAF_4C38_A5B4_4F819428F608__INCLUDED_)
- #define AFX_REMOTEPARAMSCFG_H__2AA82C89_ACAF_4C38_A5B4_4F819428F608__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // RemoteParamsCfg.h : header file
- //
- #include "RemoteServerConfig.h"
- #include "RemoteChannelConfig.h"
- #include "RemoteSerialConfig.h"
- #include "RemoteAlarmConfig.h"
- #include "RemoteUserCFG.h"
- #include "RemoteATMInfo.h"
- #include "ExceptionCFG.h"
- #include "DecCfg.h"
- #include "MatDecCFG.h"
- #include "RemoteParamReport.h"
- /////////////////////////////////////////////////////////////////////////////
- // CRemoteParamsCfg dialog
- class CRemoteParamsCfg : public CDialog
- {
- // Construction
- public:
- CRemoteParamsCfg(CWnd* pParent = NULL); // standard constructor
- CRemoteServerConfig m_RemoteServerCfgDlg;
- CRemoteChannelConfig m_RemoteChannelCfgDlg;
- CRemoteSerialConfig m_RemoteSerialCfgDlg;
- CRemoteAlarmConfig m_RemoteAlarmCfgDlg;
- CRemoteUserCFG m_RemoteUserCfgDlg;
- CRemoteATMInfo m_RemoteATMInfoDlg;
- CExceptionCFG m_ExceptionCfgDlg;
- CDecCfg m_DecCfgDlg;
- CMatDecCFG m_MatDecCFG;
- CString m_ip;
- CString m_Username;
- CString m_Password;
- int m_iServerport;
- int m_iServertype;
- int m_iChannelnumber;
- LONG m_lServerID;
- LONG m_lStartChannel;
- DWORD m_dwAlarmInNum;
- DWORD m_dwAlarmOutNum;
- DWORD m_dwDiskNum;
- BOOL m_bPassed;
- BOOL m_bSuperUser;
- BOOL m_bConnectServer;
- int m_iServer;
- CString m_dvrName;
- int m_dvrSelect;
- // Dialog Data
- //{{AFX_DATA(CRemoteParamsCfg)
- enum { IDD = IDD_DLGREMOTECFG };
- CComboBox m_DVRCombo;
- CTabCtrl m_Tab;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CRemoteParamsCfg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CRemoteParamsCfg)
- afx_msg void OnSavepara();
- virtual BOOL OnInitDialog();
- afx_msg void OnSelchangeTabremotecfg(NMHDR* pNMHDR, LRESULT* pResult);
- afx_msg void OnExit();
- afx_msg void OnCancel();
- afx_msg void OnRestore();
- afx_msg void OnSelchangeDvrcombo();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- private:
- int m_HaveChosed;
- CString m_NotifyMess;
- CRemoteParamReport report;
-
- protected:
- void NotifyToolTip();
-
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_REMOTEPARAMSCFG_H__2AA82C89_ACAF_4C38_A5B4_4F819428F608__INCLUDED_)
|