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) (unidiff) | |
tree | ba6dc874bdcb00bd2e116b377a92f347ab81a733 /OptionsDlg.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-- | OptionsDlg.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/OptionsDlg.h b/OptionsDlg.h new file mode 100644 index 0000000..790a58a --- a/dev/null +++ b/OptionsDlg.h | |||
@@ -0,0 +1,51 @@ | |||
1 | // OptionsDlg.h : header file | ||
2 | // | ||
3 | |||
4 | ///////////////////////////////////////////////////////////////////////////// | ||
5 | // COptionsDlg dialog | ||
6 | |||
7 | class COptionsDlg : public CDialog | ||
8 | { | ||
9 | // Construction | ||
10 | public: | ||
11 | COptionsDlg(CWnd* pParent = NULL); // standard constructor | ||
12 | |||
13 | // Dialog Data | ||
14 | //{{AFX_DATA(COptionsDlg) | ||
15 | enum { IDD = IDD_OPTIONS }; | ||
16 | CSpinButtonCtrlm_SpinTimeOutCtl; | ||
17 | CSpinButtonCtrlm_SpinIntervalCtl; | ||
18 | CSpinButtonCtrlm_SpinPingSizeCtl; | ||
19 | CSpinButtonCtrlm_SpinPingsCtl; | ||
20 | CSpinButtonCtrlm_SpinMaxThreadsCtl; | ||
21 | UINTm_Pings; | ||
22 | UINTm_PingSize; | ||
23 | DWORDm_TimeOut; | ||
24 | DWORDm_Interval; | ||
25 | UINTm_MaxThreads; | ||
26 | BOOLm_bMSWorkAround; | ||
27 | BOOLm_bAutoBest; | ||
28 | BOOLm_bAdjustInn; | ||
29 | BOOLm_bIgnorelative; | ||
30 | BOOLm_bAdjust; | ||
31 | //}}AFX_DATA | ||
32 | |||
33 | |||
34 | // Overrides | ||
35 | // ClassWizard generated virtual function overrides | ||
36 | //{{AFX_VIRTUAL(COptionsDlg) | ||
37 | protected: | ||
38 | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support | ||
39 | //}}AFX_VIRTUAL | ||
40 | |||
41 | // Implementation | ||
42 | protected: | ||
43 | CToolTipCtrl m_tooltip; | ||
44 | virtual BOOL OnInitDialog(); | ||
45 | |||
46 | // Generated message map functions | ||
47 | //{{AFX_MSG(COptionsDlg) | ||
48 | afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo); | ||
49 | //}}AFX_MSG | ||
50 | DECLARE_MESSAGE_MAP() | ||
51 | }; | ||