1999-01-21 16:40:02 +00:00
|
|
|
#ifndef __CONNDLG_H
|
|
|
|
#define __CONNDLG_H
|
|
|
|
|
|
|
|
#if _MSC_VER >= 1000
|
|
|
|
#pragma once
|
|
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
// ConnDlg.h : header file
|
1998-01-07 10:17:26 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1999-01-21 16:40:02 +00:00
|
|
|
// TConnectionsDlg dialog
|
1998-01-07 10:17:26 +00:00
|
|
|
|
1999-01-21 16:40:02 +00:00
|
|
|
class TConnectionsDlg : public CDialog
|
1998-01-07 10:17:26 +00:00
|
|
|
{
|
|
|
|
// Construction
|
|
|
|
public:
|
1999-01-21 16:40:02 +00:00
|
|
|
TConnectionsDlg(CWnd* pParent = NULL); // standard constructor
|
|
|
|
void UpdateStatus();
|
1998-01-07 10:17:26 +00:00
|
|
|
|
|
|
|
// Dialog Data
|
1999-01-21 16:40:02 +00:00
|
|
|
//{{AFX_DATA(TConnectionsDlg)
|
1998-01-07 10:17:26 +00:00
|
|
|
enum { IDD = IDD_STATUS };
|
1999-01-21 16:40:02 +00:00
|
|
|
CTreeCtrl m_tree;
|
1998-01-07 10:17:26 +00:00
|
|
|
//}}AFX_DATA
|
|
|
|
|
|
|
|
|
|
|
|
// Overrides
|
|
|
|
// ClassWizard generated virtual function overrides
|
1999-01-21 16:40:02 +00:00
|
|
|
//{{AFX_VIRTUAL(TConnectionsDlg)
|
1998-01-07 10:17:26 +00:00
|
|
|
protected:
|
|
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
//}}AFX_VIRTUAL
|
|
|
|
|
|
|
|
// Implementation
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// Generated message map functions
|
1999-01-21 16:40:02 +00:00
|
|
|
//{{AFX_MSG(TConnectionsDlg)
|
1998-05-04 10:09:51 +00:00
|
|
|
virtual BOOL OnInitDialog();
|
1999-01-21 16:40:02 +00:00
|
|
|
afx_msg void OnClose();
|
|
|
|
afx_msg void OnTimer(UINT nIDEvent);
|
|
|
|
afx_msg void OnUpdateNow();
|
|
|
|
afx_msg void OnKeydownUsers(NMHDR* pNMHDR, LRESULT* pResult);
|
1998-01-07 10:17:26 +00:00
|
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
1999-01-21 16:40:02 +00:00
|
|
|
|
|
|
|
private:
|
1999-01-22 15:25:14 +00:00
|
|
|
CImageList m_Images;
|
1999-01-21 16:40:02 +00:00
|
|
|
UINT m_nTimerId;
|
1998-01-07 10:17:26 +00:00
|
|
|
};
|
1999-01-21 16:40:02 +00:00
|
|
|
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|
|
|
|
|
|
#endif // !defined(AFX_CONNDLG_H__F6F3B1E2_90D7_11D2_B123_00A0C91DD6F1__INCLUDED_)
|