summaryrefslogtreecommitdiffabout
path: root/HostProperties.h
blob: c59336b1704ca8c4142a49a282c64408c56e99d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// HostProperties.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CHostProperties dialog

struct CPingyHost;
class CHostProperties : public CDialog
{
// Construction
public:
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	void SetHost(CPingyHost *host);
	CPingyHost * host;
	CHostProperties(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CHostProperties)
	enum { IDD = IDD_PROPS };
	CStatic	m_StateCtl;
	CStatic	m_URLCaptionCtl;
	CStatic	m_URLCtl;
	CStatic	m_TimesCaptionCtl;
	CStatic	m_TimesCtl;
	CStatic	m_StatusCaptionCtl;
	CStatic	m_StatusCtl;
	CButton	m_OpenURLCtl;
	CStatic	m_LossCaptionCtl;
	CStatic	m_LossCtl;
	CStatic	m_IPCaptionCtl;
	CStatic	m_IPCtl;
	CStatic	m_HostCaptionCtl;
	CStatic	m_HostCtl;
	CString	m_Host;
	CString	m_IP;
	CString	m_Loss;
	CString	m_Status;
	CString	m_Times;
	CString	m_URL;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CHostProperties)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	CToolTipCtrl m_tooltip;

	// Generated message map functions
	//{{AFX_MSG(CHostProperties)
	virtual BOOL OnInitDialog();
	afx_msg void OnOpenurl();
	afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};