author | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
commit | 5305ddd8332ebd905ebef3b8365fc0d736858a7a (patch) (side-by-side diff) | |
tree | ba6dc874bdcb00bd2e116b377a92f347ab81a733 /HostProperties.h | |
download | dipstick-5305ddd8332ebd905ebef3b8365fc0d736858a7a.zip dipstick-5305ddd8332ebd905ebef3b8365fc0d736858a7a.tar.gz dipstick-5305ddd8332ebd905ebef3b8365fc0d736858a7a.tar.bz2 |
initial commit into svn repository
git-svn-id: http://svn.klever.net/kin/dipstick/trunk@1 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | HostProperties.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/HostProperties.h b/HostProperties.h new file mode 100644 index 0000000..c59336b --- a/dev/null +++ b/HostProperties.h @@ -0,0 +1,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()
+};
|