-rw-r--r-- | COPYING | 2 | ||||
-rw-r--r-- | DipstickDlg.cpp | 62 | ||||
-rw-r--r-- | DipstickDlg.h | 2 | ||||
-rw-r--r-- | dipstick.rc | 24 | ||||
-rw-r--r-- | help/dipstick.rtf | 4 | ||||
-rw-r--r-- | help/dipstick.xml | 5 | ||||
-rw-r--r-- | install/install.cpp | 2 | ||||
-rw-r--r-- | install/install.rc | 10 | ||||
-rw-r--r-- | resource.h | 1 | ||||
-rw-r--r-- | stdafx.h | 3 |
10 files changed, 83 insertions, 32 deletions
@@ -1,19 +1,19 @@ | |||
1 | Copyright (c) 1996-2004 Klever Group (http://www.klever.net/) | 1 | Copyright (c) 1996-2005 Klever Group (http://www.klever.net/) |
2 | 2 | ||
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of |
4 | this software and associated documentation files (the "Software"), to deal in | 4 | this software and associated documentation files (the "Software"), to deal in |
5 | the Software without restriction, including without limitation the rights to | 5 | the Software without restriction, including without limitation the rights to |
6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
7 | of the Software, and to permit persons to whom the Software is furnished to do | 7 | of the Software, and to permit persons to whom the Software is furnished to do |
8 | so, subject to the following conditions: | 8 | so, subject to the following conditions: |
9 | 9 | ||
10 | The above copyright notice and this permission notice shall be included in all | 10 | The above copyright notice and this permission notice shall be included in all |
11 | copies or substantial portions of the Software. | 11 | copies or substantial portions of the Software. |
12 | 12 | ||
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
19 | SOFTWARE. | 19 | SOFTWARE. |
diff --git a/DipstickDlg.cpp b/DipstickDlg.cpp index ace2aff..f27b219 100644 --- a/DipstickDlg.cpp +++ b/DipstickDlg.cpp | |||
@@ -44,158 +44,161 @@ protected: | |||
44 | virtual BOOL OnInitDialog(); | 44 | virtual BOOL OnInitDialog(); |
45 | //{{AFX_MSG(CAboutDlg) | 45 | //{{AFX_MSG(CAboutDlg) |
46 | afx_msg void OnKlevernet(); | 46 | afx_msg void OnKlevernet(); |
47 | //}}AFX_MSG | 47 | //}}AFX_MSG |
48 | DECLARE_MESSAGE_MAP() | 48 | DECLARE_MESSAGE_MAP() |
49 | }; | 49 | }; |
50 | 50 | ||
51 | CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD) | 51 | CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD) |
52 | { | 52 | { |
53 | //{{AFX_DATA_INIT(CAboutDlg) | 53 | //{{AFX_DATA_INIT(CAboutDlg) |
54 | //}}AFX_DATA_INIT | 54 | //}}AFX_DATA_INIT |
55 | } | 55 | } |
56 | 56 | ||
57 | void CAboutDlg::DoDataExchange(CDataExchange* pDX) | 57 | void CAboutDlg::DoDataExchange(CDataExchange* pDX) |
58 | { | 58 | { |
59 | CDialog::DoDataExchange(pDX); | 59 | CDialog::DoDataExchange(pDX); |
60 | //{{AFX_DATA_MAP(CAboutDlg) | 60 | //{{AFX_DATA_MAP(CAboutDlg) |
61 | //}}AFX_DATA_MAP | 61 | //}}AFX_DATA_MAP |
62 | } | 62 | } |
63 | 63 | ||
64 | BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) | 64 | BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) |
65 | //{{AFX_MSG_MAP(CAboutDlg) | 65 | //{{AFX_MSG_MAP(CAboutDlg) |
66 | ON_BN_CLICKED(IDC_KLEVERNET, OnKlevernet) | 66 | ON_BN_CLICKED(IDC_KLEVERNET, OnKlevernet) |
67 | //}}AFX_MSG_MAP | 67 | //}}AFX_MSG_MAP |
68 | END_MESSAGE_MAP() | 68 | END_MESSAGE_MAP() |
69 | 69 | ||
70 | ///////////////////////////////////////////////////////////////////////////// | 70 | ///////////////////////////////////////////////////////////////////////////// |
71 | // CDipstickDlg dialog | 71 | // CDipstickDlg dialog |
72 | 72 | ||
73 | CDipstickDlg::CDipstickDlg(CWnd* pParent /*=NULL*/) | 73 | CDipstickDlg::CDipstickDlg(CWnd* pParent /*=NULL*/) |
74 | : CDialog(CDipstickDlg::IDD, pParent), | 74 | : CDialog(CDipstickDlg::IDD, pParent), |
75 | m_DragPad(NULL), m_PingsPerHost(10), m_PingSize(32), m_TimeOut(5000), m_Interval(500), | 75 | m_DragPad(NULL), m_PingsPerHost(10), m_PingSize(32), m_TimeOut(5000), m_Interval(500), |
76 | m_SortCriteria(sortAvg), m_bShown(FALSE), m_MaxThreads(10), m_bExiting(FALSE), | 76 | m_SortCriteria(sortAvg), m_bShown(FALSE), m_MaxThreads(10), m_bExiting(FALSE), |
77 | m_bMSWorkAround(TRUE), m_MinSize(-1,-1), m_bAutoBest(TRUE), m_bSmartAdjust(TRUE), | 77 | m_bMSWorkAround(TRUE), m_MinSize(-1,-1), m_bAutoBest(TRUE), m_bSmartAdjust(TRUE), |
78 | m_bAdjustInnermost(TRUE), m_ActiveThreads(0), m_bIgnorelative(TRUE) | 78 | m_bAdjustInnermost(TRUE), m_ActiveThreads(0), m_bIgnorelative(TRUE) |
79 | { | 79 | { |
80 | CWinApp *app = AfxGetApp(); | 80 | CWinApp *app = AfxGetApp(); |
81 | ASSERT(app); | 81 | ASSERT(app); |
82 | WORD hi,lo; | 82 | WORD hi,lo; |
83 | hi=app->GetProfileInt("Options","IntervalHi",HIWORD(m_Interval)); | 83 | hi=app->GetProfileInt("Options","IntervalHi",HIWORD(m_Interval)); |
84 | lo=app->GetProfileInt("Options","IntervalLo",LOWORD(m_Interval)); | 84 | lo=app->GetProfileInt("Options","IntervalLo",LOWORD(m_Interval)); |
85 | m_Interval=MAKELONG(lo,hi); | 85 | m_Interval=MAKELONG(lo,hi); |
86 | m_MaxThreads=app->GetProfileInt("Options","MaxThreads",m_MaxThreads); | 86 | m_MaxThreads=app->GetProfileInt("Options","MaxThreads",m_MaxThreads); |
87 | m_PingSize=app->GetProfileInt("Options","PingSize",m_PingSize); | 87 | m_PingSize=app->GetProfileInt("Options","PingSize",m_PingSize); |
88 | m_PingsPerHost=app->GetProfileInt("Options","PingsPerHost",m_PingsPerHost); | 88 | m_PingsPerHost=app->GetProfileInt("Options","PingsPerHost",m_PingsPerHost); |
89 | m_SortCriteria=app->GetProfileInt("Options","SortBy",m_SortCriteria); | 89 | m_SortCriteria=app->GetProfileInt("Options","SortBy",m_SortCriteria); |
90 | hi=app->GetProfileInt("Options","TimeOutHi",HIWORD(m_TimeOut)); | 90 | hi=app->GetProfileInt("Options","TimeOutHi",HIWORD(m_TimeOut)); |
91 | lo=app->GetProfileInt("Options","TimeOutLo",LOWORD(m_TimeOut)); | 91 | lo=app->GetProfileInt("Options","TimeOutLo",LOWORD(m_TimeOut)); |
92 | m_TimeOut=MAKELONG(lo,hi); | 92 | m_TimeOut=MAKELONG(lo,hi); |
93 | m_bMSWorkAround = app->GetProfileInt("Options","InnermostURL",m_bMSWorkAround); | 93 | m_bMSWorkAround = app->GetProfileInt("Options","InnermostURL",m_bMSWorkAround); |
94 | m_bAutoBest = app->GetProfileInt("Options","AutoBest",m_bAutoBest); | 94 | m_bAutoBest = app->GetProfileInt("Options","AutoBest",m_bAutoBest); |
95 | m_bSmartAdjust = app->GetProfileInt("Options","SmartAdjust",m_bSmartAdjust); | 95 | m_bSmartAdjust = app->GetProfileInt("Options","SmartAdjust",m_bSmartAdjust); |
96 | m_bAdjustInnermost = app->GetProfileInt("Options","AdjustInnermost",m_bAdjustInnermost); | 96 | m_bAdjustInnermost = app->GetProfileInt("Options","AdjustInnermost",m_bAdjustInnermost); |
97 | m_bIgnorelative = app->GetProfileInt("Options","IgnoreRelative",m_bIgnorelative); | 97 | m_bIgnorelative = app->GetProfileInt("Options","IgnoreRelative",m_bIgnorelative); |
98 | m_impexPath = app->GetProfileString("Options","ImportExportPath",m_impexPath); | 98 | m_impexPath = app->GetProfileString("Options","ImportExportPath",m_impexPath); |
99 | //{{AFX_DATA_INIT(CDipstickDlg) | 99 | //{{AFX_DATA_INIT(CDipstickDlg) |
100 | //}}AFX_DATA_INIT | 100 | //}}AFX_DATA_INIT |
101 | // Note that LoadIcon does not require a subsequent DestroyIcon in Win32 | 101 | // Note that LoadIcon does not require a subsequent DestroyIcon in Win32 |
102 | m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); | 102 | m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); |
103 | m_bmpBack.LoadBitmap(IDB_DIABACK); | 103 | m_bmpBack.LoadBitmap(IDB_DIABACK); |
104 | m_bmpBack.GetBitmap(&m_bitmapBack); | 104 | m_bmpBack.GetBitmap(&m_bitmapBack); |
105 | CString tmp; | 105 | CString tmp; |
106 | VERIFY(tmp.LoadString(IDS_REGEX_HTMLURL)); | 106 | VERIFY(tmp.LoadString(IDS_REGEX_HTMLURL)); |
107 | VERIFY(m_reHTMLURL.Compile(tmp,CRegEx::regExtended|CRegEx::regIgnoreCase)); | 107 | VERIFY(m_reHTMLURL.Compile(tmp,CRegEx::regExtended|CRegEx::regIgnoreCase)); |
108 | VERIFY(tmp.LoadString(IDS_REGEX_URL)); | ||
109 | VERIFY(m_reURL.Compile(tmp,CRegEx::regExtended|CRegEx::regIgnoreCase)); | ||
108 | } | 110 | } |
109 | 111 | ||
110 | CDipstickDlg::~CDipstickDlg() | 112 | CDipstickDlg::~CDipstickDlg() |
111 | { | 113 | { |
112 | } | 114 | } |
113 | 115 | ||
114 | void CDipstickDlg::DoDataExchange(CDataExchange* pDX) | 116 | void CDipstickDlg::DoDataExchange(CDataExchange* pDX) |
115 | { | 117 | { |
116 | CDialog::DoDataExchange(pDX); | 118 | CDialog::DoDataExchange(pDX); |
117 | //{{AFX_DATA_MAP(CDipstickDlg) | 119 | //{{AFX_DATA_MAP(CDipstickDlg) |
118 | DDX_Control(pDX, IDC_ADVANCED, m_AdvancedCtl); | 120 | DDX_Control(pDX, IDC_ADVANCED, m_AdvancedCtl); |
119 | DDX_Control(pDX, ID_HELP, m_HelpCtl); | 121 | DDX_Control(pDX, ID_HELP, m_HelpCtl); |
120 | DDX_Control(pDX, IDC_EXIT, m_ExitCtl); | 122 | DDX_Control(pDX, IDC_EXIT, m_ExitCtl); |
121 | DDX_Control(pDX, IDC_OPTIONS, m_OptionsCtl); | 123 | DDX_Control(pDX, IDC_OPTIONS, m_OptionsCtl); |
122 | DDX_Control(pDX, IDC_MANUALPING, m_ManualPingCtl); | 124 | DDX_Control(pDX, IDC_MANUALPING, m_ManualPingCtl); |
123 | DDX_Control(pDX, IDC_REMOVE, m_RemoveCtl); | 125 | DDX_Control(pDX, IDC_REMOVE, m_RemoveCtl); |
124 | DDX_Control(pDX, IDC_REPINGALL, m_RepingAllCtl); | 126 | DDX_Control(pDX, IDC_REPINGALL, m_RepingAllCtl); |
125 | DDX_Control(pDX, IDC_REPING, m_RepingCtl); | 127 | DDX_Control(pDX, IDC_REPING, m_RepingCtl); |
126 | DDX_Control(pDX, IDC_CLEAR, m_ClearListCtl); | 128 | DDX_Control(pDX, IDC_CLEAR, m_ClearListCtl); |
127 | DDX_Control(pDX, IDC_HOSTLIST, m_HostList); | 129 | DDX_Control(pDX, IDC_HOSTLIST, m_HostList); |
128 | //}}AFX_DATA_MAP | 130 | //}}AFX_DATA_MAP |
129 | } | 131 | } |
130 | 132 | ||
131 | BEGIN_MESSAGE_MAP(CDipstickDlg, CDialog) | 133 | BEGIN_MESSAGE_MAP(CDipstickDlg, CDialog) |
132 | //{{AFX_MSG_MAP(CDipstickDlg) | 134 | //{{AFX_MSG_MAP(CDipstickDlg) |
133 | ON_WM_SYSCOMMAND() | 135 | ON_WM_SYSCOMMAND() |
134 | ON_WM_PAINT() | 136 | ON_WM_PAINT() |
135 | ON_WM_QUERYDRAGICON() | 137 | ON_WM_QUERYDRAGICON() |
136 | ON_WM_DESTROY() | 138 | ON_WM_DESTROY() |
137 | ON_BN_CLICKED(IDC_OPTIONS, OnOptions) | 139 | ON_BN_CLICKED(IDC_OPTIONS, OnOptions) |
140 | ON_MESSAGE(WM_DNP_URLSPING, OnURLSPing) | ||
138 | ON_MESSAGE(WM_DNP_URLPING, OnUrlPing) | 141 | ON_MESSAGE(WM_DNP_URLPING, OnUrlPing) |
139 | ON_MESSAGE(WM_DNP_ACTIVITYCOUNT, OnActivityCount) | 142 | ON_MESSAGE(WM_DNP_ACTIVITYCOUNT, OnActivityCount) |
140 | ON_MESSAGE(WM_DNP_UPDATEHOSTDATA, OnUpdateHostData) | 143 | ON_MESSAGE(WM_DNP_UPDATEHOSTDATA, OnUpdateHostData) |
141 | ON_MESSAGE(WM_DNP_HTML, OnHTMLTransfer) | 144 | ON_MESSAGE(WM_DNP_HTML, OnHTMLTransfer) |
142 | ON_NOTIFY(LVN_COLUMNCLICK, IDC_HOSTLIST, OnColumnclickHostlist) | 145 | ON_NOTIFY(LVN_COLUMNCLICK, IDC_HOSTLIST, OnColumnclickHostlist) |
143 | ON_WM_WINDOWPOSCHANGING() | 146 | ON_WM_WINDOWPOSCHANGING() |
144 | ON_COMMAND(ID_DRAGPAD_OPTIONS, OnDragpadOptions) | 147 | ON_COMMAND(ID_DRAGPAD_OPTIONS, OnDragpadOptions) |
145 | ON_COMMAND(ID_DRAGPAD_SHOWMAINWINDOW, OnDragpadShowmainwindow) | 148 | ON_COMMAND(ID_DRAGPAD_SHOWMAINWINDOW, OnDragpadShowmainwindow) |
146 | ON_COMMAND(ID_DRAGPAD_HELP, OnDragpadHelp) | 149 | ON_COMMAND(ID_DRAGPAD_HELP, OnDragpadHelp) |
147 | ON_COMMAND(ID_DRAGPAD_ABOUT, OnDragpadAbout) | 150 | ON_COMMAND(ID_DRAGPAD_ABOUT, OnDragpadAbout) |
148 | ON_COMMAND(ID_DRAGPAD_EXIT, OnDragpadExit) | 151 | ON_COMMAND(ID_DRAGPAD_EXIT, OnDragpadExit) |
149 | ON_BN_CLICKED(IDC_MANUALPING, OnManualping) | 152 | ON_BN_CLICKED(IDC_MANUALPING, OnManualping) |
150 | ON_COMMAND(ID_DRAGPAD_MANUALPING, OnDragpadManualping) | 153 | ON_COMMAND(ID_DRAGPAD_MANUALPING, OnDragpadManualping) |
151 | ON_COMMAND(ID_DRAGPAD_REPINGALL, OnDragpadRepingAll) | 154 | ON_COMMAND(ID_DRAGPAD_REPINGALL, OnDragpadRepingAll) |
152 | ON_COMMAND(ID_DRAGPAD_REMOVEALL, OnDragpadRemoveAll) | 155 | ON_COMMAND(ID_DRAGPAD_REMOVEALL, OnDragpadRemoveAll) |
153 | ON_BN_CLICKED(IDC_REPING, OnReping) | 156 | ON_BN_CLICKED(IDC_REPING, OnReping) |
154 | ON_BN_CLICKED(IDC_REPINGALL, OnRepingall) | 157 | ON_BN_CLICKED(IDC_REPINGALL, OnRepingall) |
155 | ON_BN_CLICKED(IDC_CLEAR, OnClear) | 158 | ON_BN_CLICKED(IDC_CLEAR, OnClear) |
156 | ON_NOTIFY(LVN_INSERTITEM, IDC_HOSTLIST, OnInsertitemHostlist) | 159 | ON_NOTIFY(LVN_INSERTITEM, IDC_HOSTLIST, OnInsertitemHostlist) |
157 | ON_NOTIFY(LVN_DELETEITEM, IDC_HOSTLIST, OnDeleteitemHostlist) | 160 | ON_NOTIFY(LVN_DELETEITEM, IDC_HOSTLIST, OnDeleteitemHostlist) |
158 | ON_NOTIFY(LVN_DELETEALLITEMS, IDC_HOSTLIST, OnDeleteallitemsHostlist) | 161 | ON_NOTIFY(LVN_DELETEALLITEMS, IDC_HOSTLIST, OnDeleteallitemsHostlist) |
159 | ON_BN_CLICKED(IDC_EXIT, OnExit) | 162 | ON_BN_CLICKED(IDC_EXIT, OnExit) |
160 | ON_NOTIFY(LVN_ITEMCHANGED, IDC_HOSTLIST, OnItemchangedHostlist) | 163 | ON_NOTIFY(LVN_ITEMCHANGED, IDC_HOSTLIST, OnItemchangedHostlist) |
161 | ON_BN_CLICKED(IDC_REMOVE, OnRemove) | 164 | ON_BN_CLICKED(IDC_REMOVE, OnRemove) |
162 | ON_NOTIFY(NM_RCLICK, IDC_HOSTLIST, OnRclickHostlist) | 165 | ON_NOTIFY(NM_RCLICK, IDC_HOSTLIST, OnRclickHostlist) |
163 | ON_COMMAND(ID_HOSTLIST_REPING, OnHostListReping) | 166 | ON_COMMAND(ID_HOSTLIST_REPING, OnHostListReping) |
164 | ON_COMMAND(ID_HOSTLIST_REMOVE, OnHostListRemove) | 167 | ON_COMMAND(ID_HOSTLIST_REMOVE, OnHostListRemove) |
165 | ON_COMMAND(ID_HOSTLIST_REPINGALL, OnHostListRepingAll) | 168 | ON_COMMAND(ID_HOSTLIST_REPINGALL, OnHostListRepingAll) |
166 | ON_COMMAND(ID_HOSTLIST_REMOVEALL, OnHostListRemoveAll) | 169 | ON_COMMAND(ID_HOSTLIST_REMOVEALL, OnHostListRemoveAll) |
167 | ON_COMMAND(ID_HOSTLIST_OPENURL, OnHostListOpenURL) | 170 | ON_COMMAND(ID_HOSTLIST_OPENURL, OnHostListOpenURL) |
168 | ON_COMMAND(ID_HOSTLIST_PROPERTIES, OnHostListProperties) | 171 | ON_COMMAND(ID_HOSTLIST_PROPERTIES, OnHostListProperties) |
169 | ON_NOTIFY(NM_DBLCLK, IDC_HOSTLIST, OnDblclkHostlist) | 172 | ON_NOTIFY(NM_DBLCLK, IDC_HOSTLIST, OnDblclkHostlist) |
170 | ON_WM_CLOSE() | 173 | ON_WM_CLOSE() |
171 | ON_WM_GETMINMAXINFO() | 174 | ON_WM_GETMINMAXINFO() |
172 | ON_WM_SIZE() | 175 | ON_WM_SIZE() |
173 | ON_BN_CLICKED(ID_HELP, OnHelp) | 176 | ON_BN_CLICKED(ID_HELP, OnHelp) |
174 | ON_NOTIFY(LVN_BEGINDRAG, IDC_HOSTLIST, OnBegindragHostlist) | 177 | ON_NOTIFY(LVN_BEGINDRAG, IDC_HOSTLIST, OnBegindragHostlist) |
175 | ON_COMMAND(ID_HOSTLIST_PASTEURL, OnPasteurl) | 178 | ON_COMMAND(ID_HOSTLIST_PASTEURL, OnPasteurl) |
176 | ON_COMMAND(ID_HOSTLIST_COPYURL, OnHostlistCopyurl) | 179 | ON_COMMAND(ID_HOSTLIST_COPYURL, OnHostlistCopyurl) |
177 | ON_WM_HELPINFO() | 180 | ON_WM_HELPINFO() |
178 | ON_WM_DROPFILES() | 181 | ON_WM_DROPFILES() |
179 | ON_BN_CLICKED(IDC_ADVANCED, OnAdvanced) | 182 | ON_BN_CLICKED(IDC_ADVANCED, OnAdvanced) |
180 | ON_COMMAND(ID_ADVANCED_EXPORTLIST, OnAdvancedExportlist) | 183 | ON_COMMAND(ID_ADVANCED_EXPORTLIST, OnAdvancedExportlist) |
181 | ON_COMMAND(ID_ADVANCED_IMPORTLIST, OnAdvancedImportlist) | 184 | ON_COMMAND(ID_ADVANCED_IMPORTLIST, OnAdvancedImportlist) |
182 | ON_COMMAND(ID_DRAGPAD_PASTEURL, OnPasteurl) | 185 | ON_COMMAND(ID_DRAGPAD_PASTEURL, OnPasteurl) |
183 | ON_COMMAND(ID_DRAGPAD_ADVANCED_EXPORTLIST, OnDragpadAdvancedExportlist) | 186 | ON_COMMAND(ID_DRAGPAD_ADVANCED_EXPORTLIST, OnDragpadAdvancedExportlist) |
184 | ON_COMMAND(ID_DRAGPAD_ADVANCED_IMPORTLIST, OnDragpadAdvancedImportlist) | 187 | ON_COMMAND(ID_DRAGPAD_ADVANCED_IMPORTLIST, OnDragpadAdvancedImportlist) |
185 | //}}AFX_MSG_MAP | 188 | //}}AFX_MSG_MAP |
186 | END_MESSAGE_MAP() | 189 | END_MESSAGE_MAP() |
187 | 190 | ||
188 | ///////////////////////////////////////////////////////////////////////////// | 191 | ///////////////////////////////////////////////////////////////////////////// |
189 | // CDipstickDlg message handlers | 192 | // CDipstickDlg message handlers |
190 | 193 | ||
191 | BOOL CDipstickDlg::OnInitDialog() | 194 | BOOL CDipstickDlg::OnInitDialog() |
192 | { | 195 | { |
193 | CDialog::OnInitDialog(); | 196 | CDialog::OnInitDialog(); |
194 | 197 | ||
195 | // Add "About..." menu item to system menu. | 198 | // Add "About..." menu item to system menu. |
196 | 199 | ||
197 | // IDM_ABOUTBOX must be in the system command range. | 200 | // IDM_ABOUTBOX must be in the system command range. |
198 | ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); | 201 | ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); |
199 | ASSERT(IDM_ABOUTBOX < 0xF000); | 202 | ASSERT(IDM_ABOUTBOX < 0xF000); |
200 | 203 | ||
201 | CMenu* pSysMenu = GetSystemMenu(FALSE); | 204 | CMenu* pSysMenu = GetSystemMenu(FALSE); |
@@ -1124,200 +1127,239 @@ COleDataObject odo; | |||
1124 | BOOL CDipstickDlg::CollectURLs(COleDataObject* pDO,BOOL bTestOnly) | 1127 | BOOL CDipstickDlg::CollectURLs(COleDataObject* pDO,BOOL bTestOnly) |
1125 | { | 1128 | { |
1126 | UINTcfURL = RegisterClipboardFormat("UniformResourceLocator"); | 1129 | UINTcfURL = RegisterClipboardFormat("UniformResourceLocator"); |
1127 | UINTcfHTML = RegisterClipboardFormat("HTML Format"); | 1130 | UINTcfHTML = RegisterClipboardFormat("HTML Format"); |
1128 | UINTcfNIF = RegisterClipboardFormat("Netscape Image Format"); | 1131 | UINTcfNIF = RegisterClipboardFormat("Netscape Image Format"); |
1129 | if(pDO->IsDataAvailable(cfURL)){ | 1132 | if(pDO->IsDataAvailable(cfURL)){ |
1130 | if(!bTestOnly){ | 1133 | if(!bTestOnly){ |
1131 | HGLOBAL hg = pDO->GetGlobalData(cfURL); | 1134 | HGLOBAL hg = pDO->GetGlobalData(cfURL); |
1132 | ASSERT(hg); | 1135 | ASSERT(hg); |
1133 | LPVOID lpv = GlobalLock(hg); | 1136 | LPVOID lpv = GlobalLock(hg); |
1134 | ASSERT(lpv); | 1137 | ASSERT(lpv); |
1135 | PostMessage(WM_DNP_URLPING,0,(LPARAM)new CString((LPCTSTR)lpv)); | 1138 | PostMessage(WM_DNP_URLPING,0,(LPARAM)new CString((LPCTSTR)lpv)); |
1136 | GlobalUnlock(hg); | 1139 | GlobalUnlock(hg); |
1137 | GlobalFree(hg); | 1140 | GlobalFree(hg); |
1138 | } | 1141 | } |
1139 | return TRUE; | 1142 | return TRUE; |
1140 | } | 1143 | } |
1141 | if(pDO->IsDataAvailable(cfHTML)){ | 1144 | if(pDO->IsDataAvailable(cfHTML)){ |
1142 | HGLOBAL hg = pDO->GetGlobalData(cfHTML); | 1145 | HGLOBAL hg = pDO->GetGlobalData(cfHTML); |
1143 | ASSERT(hg); | 1146 | ASSERT(hg); |
1144 | LPCTSTR lps = (LPCTSTR)GlobalLock(hg); | 1147 | LPCTSTR lps = (LPCTSTR)GlobalLock(hg); |
1145 | ASSERT(lps); | 1148 | ASSERT(lps); |
1146 | BOOL rv = FALSE; | 1149 | BOOL rv = FALSE; |
1147 | do{ | 1150 | do{ |
1148 | static LPCTSTR v10 = "Version:1.0\r\n"; | 1151 | static LPCTSTR v10 = "Version:1.0\r\n"; |
1149 | if(memcmp(v10,lps,strlen(v10))) | 1152 | if(memcmp(v10,lps,strlen(v10))) |
1150 | break; | 1153 | break; |
1151 | static LPCTSTR strStartSelection = "StartSelection:"; | 1154 | static LPCTSTR strStartSelection = "StartSelection:"; |
1152 | static LPCTSTR strEndSelection = "EndSelection:"; | 1155 | static LPCTSTR strEndSelection = "EndSelection:"; |
1153 | static LPCTSTR strSourceURL = "SourceURL:"; | 1156 | static LPCTSTR strSourceURL = "SourceURL:"; |
1154 | LPTSTR subs = strstr(lps,strStartSelection); | 1157 | LPTSTR subs = strstr(lps,strStartSelection); |
1155 | if(!subs) | 1158 | if(!subs) |
1156 | break; | 1159 | break; |
1157 | LONG startSelection = atol(&subs[strlen(strStartSelection)]); | 1160 | LONG startSelection = atol(&subs[strlen(strStartSelection)]); |
1158 | if(!startSelection) | 1161 | if(!startSelection) |
1159 | break; | 1162 | break; |
1160 | if(!(subs=strstr(lps,strEndSelection))) | 1163 | if(!(subs=strstr(lps,strEndSelection))) |
1161 | break; | 1164 | break; |
1162 | LONG endSelection = atol(&subs[strlen(strEndSelection)]); | 1165 | LONG endSelection = atol(&subs[strlen(strEndSelection)]); |
1163 | if(!endSelection) | 1166 | if(!endSelection) |
1164 | break; | 1167 | break; |
1165 | if(!(subs=strstr(lps,strSourceURL))) | 1168 | if(!(subs=strstr(lps,strSourceURL))) |
1166 | break; | 1169 | break; |
1167 | subs = &subs[strlen(strSourceURL)]; | 1170 | subs = &subs[strlen(strSourceURL)]; |
1168 | LPTSTR eol = strchr(subs,'\r'); | 1171 | LPTSTR eol = strchr(subs,'\r'); |
1169 | if(!eol) | 1172 | if(!eol) |
1170 | break; | 1173 | break; |
1171 | (*eol)=0; | 1174 | (*eol)=0; |
1172 | CString sourceURL = subs; | 1175 | CString sourceURL = subs; |
1173 | if(!sourceURL.GetLength()) | 1176 | if(!sourceURL.GetLength()) |
1174 | break; | 1177 | break; |
1175 | TRACE0("SourceURL = "+sourceURL+"\n"); | 1178 | TRACE0("SourceURL = "+sourceURL+"\n"); |
1176 | _xferHTML* xf = new _xferHTML; | 1179 | _xferHTML* xf = new _xferHTML; |
1177 | VERIFY(xf->src.Crack(sourceURL)); | 1180 | VERIFY(xf->src.Crack(sourceURL)); |
1178 | LPTSTR htmlBuff = xf->html.GetBuffer(endSelection-startSelection+2); | 1181 | LPTSTR htmlBuff = xf->html.GetBuffer(endSelection-startSelection+2); |
1179 | ASSERT(htmlBuff); | 1182 | ASSERT(htmlBuff); |
1180 | memmove(htmlBuff,&lps[startSelection],endSelection-startSelection+1); | 1183 | memmove(htmlBuff,&lps[startSelection],endSelection-startSelection+1); |
1181 | htmlBuff[endSelection-startSelection+1]=0; | 1184 | htmlBuff[endSelection-startSelection+1]=0; |
1182 | xf->html.ReleaseBuffer(); | 1185 | xf->html.ReleaseBuffer(); |
1183 | if(bTestOnly){ | 1186 | if(bTestOnly){ |
1184 | rv = m_reHTMLURL.Match(xf->html); | 1187 | rv = m_reHTMLURL.Match(xf->html); |
1185 | delete xf; | 1188 | delete xf; |
1186 | }else{ | 1189 | }else{ |
1187 | PostMessage(WM_DNP_HTML,0,(LPARAM)xf); | 1190 | PostMessage(WM_DNP_HTML,0,(LPARAM)xf); |
1191 | rv = TRUE; | ||
1188 | } | 1192 | } |
1189 | }while(FALSE); | 1193 | }while(FALSE); |
1190 | GlobalUnlock(hg); | 1194 | GlobalUnlock(hg); |
1191 | GlobalFree(hg); | 1195 | GlobalFree(hg); |
1192 | return rv; | 1196 | return rv; |
1193 | } | 1197 | } |
1194 | if(pDO->IsDataAvailable(cfNIF)){ | 1198 | if(pDO->IsDataAvailable(cfNIF)){ |
1195 | if(!bTestOnly){ | 1199 | if(!bTestOnly){ |
1196 | HGLOBAL hg = pDO->GetGlobalData(cfNIF); | 1200 | HGLOBAL hg = pDO->GetGlobalData(cfNIF); |
1197 | ASSERT(hg); | 1201 | ASSERT(hg); |
1198 | LPVOID lpv = GlobalLock(hg); | 1202 | LPVOID lpv = GlobalLock(hg); |
1199 | ASSERT(lpv); | 1203 | ASSERT(lpv); |
1200 | struct _nif{ | 1204 | struct _nif{ |
1201 | BYTE data[0x20]; | 1205 | BYTE data[0x20]; |
1202 | DWORD m_offDescr; | 1206 | DWORD m_offDescr; |
1203 | DWORD m_offURL; | 1207 | DWORD m_offURL; |
1204 | DWORD m_offToImage; | 1208 | DWORD m_offToImage; |
1205 | } *nif = (_nif*)lpv; | 1209 | } *nif = (_nif*)lpv; |
1206 | PostMessage(WM_DNP_URLPING,0,(LPARAM)new CString((LPCTSTR)&nif->data[nif->m_offURL])); | 1210 | PostMessage(WM_DNP_URLPING,0,(LPARAM)new CString((LPCTSTR)&nif->data[nif->m_offURL])); |
1207 | GlobalUnlock(hg); | 1211 | GlobalUnlock(hg); |
1208 | GlobalFree(hg); | 1212 | GlobalFree(hg); |
1209 | } | 1213 | } |
1210 | return TRUE; | 1214 | return TRUE; |
1211 | } | 1215 | } |
1212 | if(pDO->IsDataAvailable(CF_TEXT)){ | 1216 | if(pDO->IsDataAvailable(CF_TEXT)){ |
1213 | if(!bTestOnly){ | 1217 | BOOL rv = FALSE; |
1214 | HGLOBAL hg = pDO->GetGlobalData(CF_TEXT); | 1218 | HGLOBAL hg = pDO->GetGlobalData(CF_TEXT); |
1215 | ASSERT(hg); | 1219 | ASSERT(hg); |
1216 | LPVOID lpv = GlobalLock(hg); | 1220 | LPVOID lpv = GlobalLock(hg); |
1217 | ASSERT(lpv); | 1221 | ASSERT(lpv); |
1218 | PostMessage(WM_DNP_URLPING,0,(LPARAM)new CString((LPCTSTR)lpv)); | 1222 | if(bTestOnly){ |
1219 | GlobalUnlock(hg); | 1223 | rv = m_reURL.Match((LPCSTR)lpv); |
1220 | GlobalFree(hg); | 1224 | }else{ |
1225 | CString sel = (LPCSTR)lpv; | ||
1226 | if(m_reURL.Match(sel)) { | ||
1227 | rv = TRUE; | ||
1228 | CString tmp = m_reURL.GetMatch(CRegEx::matchPostMatch); | ||
1229 | if(m_reURL.Match(tmp)) { | ||
1230 | PostMessage(WM_DNP_URLSPING,0,(LPARAM)new CString((LPCSTR)lpv)); | ||
1231 | }else{ | ||
1232 | PostMessage(WM_DNP_URLPING,0,(LPARAM)new CString((LPCTSTR)lpv)); | ||
1233 | } | ||
1234 | } | ||
1221 | } | 1235 | } |
1222 | return TRUE; | 1236 | GlobalUnlock(hg); |
1237 | GlobalFree(hg); | ||
1238 | return rv; | ||
1223 | } | 1239 | } |
1224 | return FALSE; | 1240 | return FALSE; |
1225 | } | 1241 | } |
1226 | 1242 | ||
1227 | LRESULT CDipstickDlg::OnHTMLTransfer(WPARAM wP, LPARAM lP) | 1243 | LRESULT CDipstickDlg::OnHTMLTransfer(WPARAM wP, LPARAM lP) |
1228 | { | 1244 | { |
1229 | _xferHTML* xf = (_xferHTML*)lP; | 1245 | _xferHTML* xf = (_xferHTML*)lP; |
1230 | CSelectURLsDlg su; | 1246 | CSelectURLsDlg su; |
1231 | su.m_bAdjust = m_bSmartAdjust; | 1247 | su.m_bAdjust = m_bSmartAdjust; |
1232 | su.m_bAdjustInnermost = m_bAdjustInnermost; | 1248 | su.m_bAdjustInnermost = m_bAdjustInnermost; |
1233 | BeginWaitCursor(); | 1249 | BeginWaitCursor(); |
1234 | while(m_reHTMLURL.Match(xf->html)){ | 1250 | while(m_reHTMLURL.Match(xf->html)){ |
1235 | CString url = m_reHTMLURL.GetMatch(1); | 1251 | CString url = m_reHTMLURL.GetMatch(1); |
1236 | xf->html = m_reHTMLURL.GetMatch(CRegEx::matchPostMatch); | 1252 | xf->html = m_reHTMLURL.GetMatch(CRegEx::matchPostMatch); |
1237 | if(CCrackURL::GetHostName(url)==url){ | 1253 | if(CCrackURL::GetHostName(url)==url){ |
1238 | if(m_bIgnorelative) | 1254 | if(m_bIgnorelative) |
1239 | continue; | 1255 | continue; |
1240 | CCrackURL cracked; | 1256 | CCrackURL cracked; |
1241 | VERIFY(cracked.Crack(url)); | 1257 | VERIFY(cracked.Crack(url)); |
1242 | cracked.Adjust(xf->src); | 1258 | cracked.Adjust(xf->src); |
1243 | url = cracked.Build(); | 1259 | url = cracked.Build(); |
1244 | } | 1260 | } |
1245 | if(!su.m_URLs.Find(url)) | 1261 | if(!su.m_URLs.Find(url)) |
1246 | VERIFY(su.m_URLs.AddTail(url)); | 1262 | VERIFY(su.m_URLs.AddTail(url)); |
1247 | } | 1263 | } |
1248 | EndWaitCursor(); | 1264 | EndWaitCursor(); |
1249 | delete xf; | 1265 | delete xf; |
1250 | if(su.DoModal()==IDOK){ | 1266 | if(su.DoModal()==IDOK){ |
1251 | POSITION p = su.m_URLs.GetHeadPosition(); | 1267 | POSITION p = su.m_URLs.GetHeadPosition(); |
1252 | while(p){ | 1268 | while(p){ |
1253 | CString url = su.m_URLs.GetNext(p); | 1269 | CString url = su.m_URLs.GetNext(p); |
1254 | PostMessage(WM_DNP_URLPING,0,(LPARAM)new CString(url)); | 1270 | PostMessage(WM_DNP_URLPING,0,(LPARAM)new CString(url)); |
1255 | } | 1271 | } |
1256 | } | 1272 | } |
1257 | return 0; | 1273 | return 0; |
1258 | } | 1274 | } |
1259 | 1275 | ||
1276 | LRESULT CDipstickDlg::OnURLSPing(WPARAM wP,LPARAM lP) | ||
1277 | { | ||
1278 | CString *sel = (CString*)lP; | ||
1279 | TRACE1("URLS: %s\n",(LPCTSTR)*sel); | ||
1280 | CSelectURLsDlg su; | ||
1281 | su.m_bAdjust = m_bSmartAdjust; | ||
1282 | su.m_bAdjustInnermost = m_bAdjustInnermost; | ||
1283 | BeginWaitCursor(); | ||
1284 | while(m_reURL.Match(*sel)){ | ||
1285 | CString url = m_reURL.GetMatch(CRegEx::matchMatch); | ||
1286 | (*sel) = m_reURL.GetMatch(CRegEx::matchPostMatch); | ||
1287 | if(!su.m_URLs.Find(url)) | ||
1288 | VERIFY(su.m_URLs.AddTail(url)); | ||
1289 | } | ||
1290 | EndWaitCursor(); | ||
1291 | delete sel; | ||
1292 | if(su.DoModal()==IDOK){ | ||
1293 | POSITION p = su.m_URLs.GetHeadPosition(); | ||
1294 | while(p){ | ||
1295 | CString url = su.m_URLs.GetNext(p); | ||
1296 | PostMessage(WM_DNP_URLPING,0,(LPARAM)new CString(url)); | ||
1297 | } | ||
1298 | } | ||
1299 | return 0; | ||
1300 | } | ||
1301 | |||
1260 | UINT CPingyHost::PingProc(LPVOID pParam) | 1302 | UINT CPingyHost::PingProc(LPVOID pParam) |
1261 | { | 1303 | { |
1262 | CPingyHost* pThis = (CPingyHost*)pParam; | 1304 | CPingyHost* pThis = (CPingyHost*)pParam; |
1263 | ASSERT(pThis->m_Daddy); | 1305 | ASSERT(pThis->m_Daddy); |
1264 | return pThis->DoPing(); | 1306 | return pThis->DoPing(); |
1265 | } | 1307 | } |
1266 | 1308 | ||
1267 | UINT CPingyHost::DoPing() | 1309 | UINT CPingyHost::DoPing() |
1268 | { | 1310 | { |
1269 | CSingleLock slock(&m_mutex); | 1311 | CSingleLock slock(&m_mutex); |
1270 | if(!slock.Lock(2000)){ | 1312 | if(!slock.Lock(2000)){ |
1271 | m_Status.LoadString(IDS_PS_FAILEDTOLOCK); | 1313 | m_Status.LoadString(IDS_PS_FAILEDTOLOCK); |
1272 | return 1; | 1314 | return 1; |
1273 | } | 1315 | } |
1274 | m_Pinging = TRUE; | 1316 | m_Pinging = TRUE; |
1275 | m_bToPing = FALSE; | 1317 | m_bToPing = FALSE; |
1276 | VERIFY(m_Daddy->m_eveStartup.SetEvent()); | 1318 | VERIFY(m_Daddy->m_eveStartup.SetEvent()); |
1277 | m_Daddy->PostMessage(WM_DNP_UPDATEHOSTDATA,0,(LPARAM)this); | 1319 | m_Daddy->PostMessage(WM_DNP_UPDATEHOSTDATA,0,(LPARAM)this); |
1278 | in_addr ip; | 1320 | in_addr ip; |
1279 | UINT packets, lost; | 1321 | UINT packets, lost; |
1280 | packets=lost=0; | 1322 | packets=lost=0; |
1281 | CICMP* pICMP = NULL; | 1323 | CICMP* pICMP = NULL; |
1282 | UINT dataSize = m_Daddy->m_PingSize; | 1324 | UINT dataSize = m_Daddy->m_PingSize; |
1283 | intploss = 100; | 1325 | intploss = 100; |
1284 | do{ | 1326 | do{ |
1285 | if(m_HostName.IsEmpty()){ | 1327 | if(m_HostName.IsEmpty()){ |
1286 | ip.s_addr = m_IP; | 1328 | ip.s_addr = m_IP; |
1287 | hostent *he = gethostbyaddr((char*)&ip,4,PF_INET); | 1329 | hostent *he = gethostbyaddr((char*)&ip,4,PF_INET); |
1288 | if(!he) | 1330 | if(!he) |
1289 | m_HostName.Empty(); | 1331 | m_HostName.Empty(); |
1290 | else | 1332 | else |
1291 | m_HostName = he->h_name; | 1333 | m_HostName = he->h_name; |
1292 | }else{ | 1334 | }else{ |
1293 | hostent *he = gethostbyname(m_HostName); | 1335 | hostent *he = gethostbyname(m_HostName); |
1294 | if(!he){ | 1336 | if(!he){ |
1295 | m_Status.LoadString(IDS_PS_FAILEDTORESOLVE); | 1337 | m_Status.LoadString(IDS_PS_FAILEDTORESOLVE); |
1296 | m_IP = 0; | 1338 | m_IP = 0; |
1297 | break; | 1339 | break; |
1298 | } | 1340 | } |
1299 | memmove(&ip.s_addr,he->h_addr,sizeof(ip.s_addr)); | 1341 | memmove(&ip.s_addr,he->h_addr,sizeof(ip.s_addr)); |
1300 | m_IP = ip.s_addr; | 1342 | m_IP = ip.s_addr; |
1301 | } | 1343 | } |
1302 | pICMP = CICMP::CreateICMP(); | 1344 | pICMP = CICMP::CreateICMP(); |
1303 | if(!(pICMP && pICMP->Initialize())){ | 1345 | if(!(pICMP && pICMP->Initialize())){ |
1304 | m_Status.LoadString(IDS_PS_UNABLETOICMP); | 1346 | m_Status.LoadString(IDS_PS_UNABLETOICMP); |
1305 | break; | 1347 | break; |
1306 | } | 1348 | } |
1307 | m_Daddy->PostMessage(WM_DNP_UPDATEHOSTDATA,0,(LPARAM)this); | 1349 | m_Daddy->PostMessage(WM_DNP_UPDATEHOSTDATA,0,(LPARAM)this); |
1308 | ULONG sum, num, pmin, pmax; | 1350 | ULONG sum, num, pmin, pmax; |
1309 | sum = num = 0; | 1351 | sum = num = 0; |
1310 | pmin = 0xFFFFFFFF; | 1352 | pmin = 0xFFFFFFFF; |
1311 | pmax = 0; | 1353 | pmax = 0; |
1312 | UINT seq; | 1354 | UINT seq; |
1313 | for(seq = 0;seq<m_Daddy->m_PingsPerHost;seq++){ | 1355 | for(seq = 0;seq<m_Daddy->m_PingsPerHost;seq++){ |
1314 | INT status; | 1356 | INT status; |
1315 | LONG rtt = pICMP->Ping(ip,dataSize,m_Daddy->m_TimeOut,&status); | 1357 | LONG rtt = pICMP->Ping(ip,dataSize,m_Daddy->m_TimeOut,&status); |
1316 | UINT stString = 0; | 1358 | UINT stString = 0; |
1317 | switch(status){ | 1359 | switch(status){ |
1318 | case CICMP::ipSuccess: | 1360 | case CICMP::ipSuccess: |
1319 | sum+=rtt; num++; | 1361 | sum+=rtt; num++; |
1320 | if(rtt<pmin) | 1362 | if(rtt<pmin) |
1321 | pmin=rtt; | 1363 | pmin=rtt; |
1322 | if(rtt>pmax) | 1364 | if(rtt>pmax) |
1323 | pmax=rtt; | 1365 | pmax=rtt; |
@@ -1522,65 +1564,65 @@ CString filter; | |||
1522 | CFileDialog cfd(TRUE,".csv",NULL,OFN_EXPLORER|OFN_HIDEREADONLY|OFN_PATHMUSTEXIST|OFN_FILEMUSTEXIST,filter,this); | 1564 | CFileDialog cfd(TRUE,".csv",NULL,OFN_EXPLORER|OFN_HIDEREADONLY|OFN_PATHMUSTEXIST|OFN_FILEMUSTEXIST,filter,this); |
1523 | if(!m_impexPath.IsEmpty()) | 1565 | if(!m_impexPath.IsEmpty()) |
1524 | SetCurrentDirectory(m_impexPath); | 1566 | SetCurrentDirectory(m_impexPath); |
1525 | if(cfd.DoModal()==IDOK){ | 1567 | if(cfd.DoModal()==IDOK){ |
1526 | GetCurrentDirectory(2048,m_impexPath.GetBuffer(2048)); | 1568 | GetCurrentDirectory(2048,m_impexPath.GetBuffer(2048)); |
1527 | m_impexPath.ReleaseBuffer(); | 1569 | m_impexPath.ReleaseBuffer(); |
1528 | ImportLocations(cfd.GetPathName()); | 1570 | ImportLocations(cfd.GetPathName()); |
1529 | } | 1571 | } |
1530 | } | 1572 | } |
1531 | 1573 | ||
1532 | BOOL CDipstickDlg::ExportLocations(LPCTSTR file) | 1574 | BOOL CDipstickDlg::ExportLocations(LPCTSTR file) |
1533 | { | 1575 | { |
1534 | try{ | 1576 | try{ |
1535 | CStdioFile f(file,CFile::modeCreate|CFile::modeWrite|CFile::typeText); | 1577 | CStdioFile f(file,CFile::modeCreate|CFile::modeWrite|CFile::typeText); |
1536 | f.WriteString("URL,Host Name,IP Address, Min RTT,Avg RTT,Max RTT,Pktloss\n"); | 1578 | f.WriteString("URL,Host Name,IP Address, Min RTT,Avg RTT,Max RTT,Pktloss\n"); |
1537 | POSITION p = m_Hosts.GetHeadPosition(); | 1579 | POSITION p = m_Hosts.GetHeadPosition(); |
1538 | while(p){ | 1580 | while(p){ |
1539 | CPingyHost *host = m_Hosts.GetNext(p); | 1581 | CPingyHost *host = m_Hosts.GetNext(p); |
1540 | ASSERT(host); | 1582 | ASSERT(host); |
1541 | CString ph; | 1583 | CString ph; |
1542 | ph.Format("\"%s\",%s,%s,%lu,%lu,%lu,%d%%\n",host->m_URL,host->m_HostName,inet_ntoa(*(in_addr*)&host->m_IP), | 1584 | ph.Format("\"%s\",%s,%s,%lu,%lu,%lu,%d%%\n",host->m_URL,host->m_HostName,inet_ntoa(*(in_addr*)&host->m_IP), |
1543 | host->m_MinRTT,host->m_AvgRTT,host->m_MaxRTT,host->m_Packetloss | 1585 | host->m_MinRTT,host->m_AvgRTT,host->m_MaxRTT,host->m_Packetloss |
1544 | ); | 1586 | ); |
1545 | f.WriteString(ph); | 1587 | f.WriteString(ph); |
1546 | } | 1588 | } |
1547 | f.Close(); | 1589 | f.Close(); |
1548 | }catch(CException* e){ | 1590 | }catch(CException* e){ |
1549 | TRACE0("Failed to export URLList\n"); | 1591 | TRACE0("Failed to export URLList\n"); |
1550 | e->Delete(); | 1592 | e->Delete(); |
1551 | return FALSE; | 1593 | return FALSE; |
1552 | } | 1594 | } |
1553 | return TRUE; | 1595 | return TRUE; |
1554 | } | 1596 | } |
1555 | 1597 | ||
1556 | void CDipstickDlg::OnDragpadAdvancedExportlist() | 1598 | void CDipstickDlg::OnDragpadAdvancedExportlist() |
1557 | { | 1599 | { |
1558 | OnAdvancedExportlist(); | 1600 | OnAdvancedExportlist(); |
1559 | } | 1601 | } |
1560 | 1602 | ||
1561 | void CDipstickDlg::OnDragpadAdvancedImportlist() | 1603 | void CDipstickDlg::OnDragpadAdvancedImportlist() |
1562 | { | 1604 | { |
1563 | OnAdvancedImportlist(); | 1605 | OnAdvancedImportlist(); |
1564 | } | 1606 | } |
1565 | 1607 | ||
1566 | void CPingyHost::Suicide() | 1608 | void CPingyHost::Suicide() |
1567 | { | 1609 | { |
1568 | CSingleLock sl(&m_mutex); | 1610 | CSingleLock sl(&m_mutex); |
1569 | if(sl.Lock(10)){ | 1611 | if(sl.Lock(10)){ |
1570 | sl.Unlock(); | 1612 | sl.Unlock(); |
1571 | delete this; | 1613 | delete this; |
1572 | }else{ | 1614 | }else{ |
1573 | if(!AfxBeginThread(CPingyHost::SuicideProc,this)) | 1615 | if(!AfxBeginThread(CPingyHost::SuicideProc,this)) |
1574 | ASSERT(FALSE); | 1616 | ASSERT(FALSE); |
1575 | } | 1617 | } |
1576 | } | 1618 | } |
1577 | 1619 | ||
1578 | UINT CPingyHost::SuicideProc(LPVOID pParam) | 1620 | UINT CPingyHost::SuicideProc(LPVOID pParam) |
1579 | { | 1621 | { |
1580 | CPingyHost* pThis = (CPingyHost*)pParam; | 1622 | CPingyHost* pThis = (CPingyHost*)pParam; |
1581 | CSingleLock sl(&pThis->m_mutex); | 1623 | CSingleLock sl(&pThis->m_mutex); |
1582 | sl.Lock(); | 1624 | sl.Lock(); |
1583 | VERIFY(sl.Unlock()); | 1625 | VERIFY(sl.Unlock()); |
1584 | delete pThis; | 1626 | delete pThis; |
1585 | return 0; | 1627 | return 0; |
1586 | } | 1628 | } \ No newline at end of file |
diff --git a/DipstickDlg.h b/DipstickDlg.h index ce9ed22..47c3e01 100644 --- a/DipstickDlg.h +++ b/DipstickDlg.h | |||
@@ -1,109 +1,111 @@ | |||
1 | // DipstickDlg.h : header file | 1 | // DipstickDlg.h : header file |
2 | // | 2 | // |
3 | 3 | ||
4 | class CDipstickDlg; | 4 | class CDipstickDlg; |
5 | struct CPingyHost{ | 5 | struct CPingyHost{ |
6 | CPingyHost(CDipstickDlg* daddy) : m_IP(0), m_MinRTT(0), m_AvgRTT(0), m_MaxRTT(0), m_Pinged(FALSE), m_Pinging(FALSE), m_Packetloss(-1), m_bToPing(TRUE), m_Daddy(daddy){} | 6 | CPingyHost(CDipstickDlg* daddy) : m_IP(0), m_MinRTT(0), m_AvgRTT(0), m_MaxRTT(0), m_Pinged(FALSE), m_Pinging(FALSE), m_Packetloss(-1), m_bToPing(TRUE), m_Daddy(daddy){} |
7 | CPingyHost(CDipstickDlg* daddy,LPTSTR hostname) : m_HostName(hostname), m_IP(0), m_MinRTT(0), m_AvgRTT(0), m_MaxRTT(0), m_Pinged(FALSE), m_Pinging(FALSE), m_Packetloss(-1), m_bToPing(TRUE), m_Daddy(daddy){} | 7 | CPingyHost(CDipstickDlg* daddy,LPTSTR hostname) : m_HostName(hostname), m_IP(0), m_MinRTT(0), m_AvgRTT(0), m_MaxRTT(0), m_Pinged(FALSE), m_Pinging(FALSE), m_Packetloss(-1), m_bToPing(TRUE), m_Daddy(daddy){} |
8 | CPingyHost(CDipstickDlg* daddy,LPTSTR hostname,DWORD ip) : m_HostName(hostname), m_IP(ip), m_MinRTT(0), m_AvgRTT(0), m_MaxRTT(0), m_Pinged(FALSE), m_Pinging(FALSE), m_Packetloss(-1), m_bToPing(TRUE), m_Daddy(daddy){} | 8 | CPingyHost(CDipstickDlg* daddy,LPTSTR hostname,DWORD ip) : m_HostName(hostname), m_IP(ip), m_MinRTT(0), m_AvgRTT(0), m_MaxRTT(0), m_Pinged(FALSE), m_Pinging(FALSE), m_Packetloss(-1), m_bToPing(TRUE), m_Daddy(daddy){} |
9 | CPingyHost(CDipstickDlg* daddy,DWORD ip) : m_IP(ip), m_MinRTT(0), m_AvgRTT(0), m_MaxRTT(0), m_Pinged(FALSE), m_Pinging(FALSE), m_Packetloss(-1), m_bToPing(TRUE), m_Daddy(daddy){} | 9 | CPingyHost(CDipstickDlg* daddy,DWORD ip) : m_IP(ip), m_MinRTT(0), m_AvgRTT(0), m_MaxRTT(0), m_Pinged(FALSE), m_Pinging(FALSE), m_Packetloss(-1), m_bToPing(TRUE), m_Daddy(daddy){} |
10 | public: | 10 | public: |
11 | static UINT SuicideProc(LPVOID pParam); | 11 | static UINT SuicideProc(LPVOID pParam); |
12 | void Suicide(); | 12 | void Suicide(); |
13 | void Ping(); | 13 | void Ping(); |
14 | UINT DoPing(); | 14 | UINT DoPing(); |
15 | static UINT PingProc(LPVOID); | 15 | static UINT PingProc(LPVOID); |
16 | CDipstickDlg* m_Daddy; | 16 | CDipstickDlg* m_Daddy; |
17 | CMutex m_mutex; | 17 | CMutex m_mutex; |
18 | CString m_Descr; | 18 | CString m_Descr; |
19 | CString m_URL; | 19 | CString m_URL; |
20 | BOOL m_bToPing; | 20 | BOOL m_bToPing; |
21 | BOOL m_Pinging; | 21 | BOOL m_Pinging; |
22 | CStringm_HostName; | 22 | CStringm_HostName; |
23 | CString m_Status; | 23 | CString m_Status; |
24 | DWORD m_IP; | 24 | DWORD m_IP; |
25 | ULONG m_MinRTT; | 25 | ULONG m_MinRTT; |
26 | ULONG m_AvgRTT; | 26 | ULONG m_AvgRTT; |
27 | ULONG m_MaxRTT; | 27 | ULONG m_MaxRTT; |
28 | BOOL m_Pinged; | 28 | BOOL m_Pinged; |
29 | int m_Packetloss; | 29 | int m_Packetloss; |
30 | }; | 30 | }; |
31 | 31 | ||
32 | typedef CList<CPingyHost*,CPingyHost*>CHostList; | 32 | typedef CList<CPingyHost*,CPingyHost*>CHostList; |
33 | 33 | ||
34 | ///////////////////////////////////////////////////////////////////////////// | 34 | ///////////////////////////////////////////////////////////////////////////// |
35 | // CDipstickDlg dialog | 35 | // CDipstickDlg dialog |
36 | 36 | ||
37 | class CDragPad; | 37 | class CDragPad; |
38 | class CDipstickDlg : public CDialog | 38 | class CDipstickDlg : public CDialog |
39 | { | 39 | { |
40 | // Construction | 40 | // Construction |
41 | struct _xferHTML{ | 41 | struct _xferHTML{ |
42 | CString html; | 42 | CString html; |
43 | CCrackURL src; | 43 | CCrackURL src; |
44 | }; | 44 | }; |
45 | public: | 45 | public: |
46 | LRESULT OnURLSPing(WPARAM wP,LPARAM lP); | ||
47 | CRegEx m_reURL; | ||
46 | BOOL ExportLocations(LPCTSTR file); | 48 | BOOL ExportLocations(LPCTSTR file); |
47 | CString m_impexPath; | 49 | CString m_impexPath; |
48 | BOOL ImportLocations(LPCTSTR file); | 50 | BOOL ImportLocations(LPCTSTR file); |
49 | BOOL m_bIgnorelative; | 51 | BOOL m_bIgnorelative; |
50 | CEvent m_eveStartup; | 52 | CEvent m_eveStartup; |
51 | UINT volatile m_ActiveThreads; | 53 | UINT volatile m_ActiveThreads; |
52 | BOOL m_bAdjustInnermost; | 54 | BOOL m_bAdjustInnermost; |
53 | BOOL m_bSmartAdjust; | 55 | BOOL m_bSmartAdjust; |
54 | BOOL CollectURLs(COleDataObject* pDO,BOOL bTestOnly=FALSE); | 56 | BOOL CollectURLs(COleDataObject* pDO,BOOL bTestOnly=FALSE); |
55 | BOOL IsPasteableClipboard(); | 57 | BOOL IsPasteableClipboard(); |
56 | void UpdateDragpadTitle(); | 58 | void UpdateDragpadTitle(); |
57 | BOOL m_bAutoBest; | 59 | BOOL m_bAutoBest; |
58 | void RecalcLayout(int cx,int cy); | 60 | void RecalcLayout(int cx,int cy); |
59 | CSize m_MinSize; | 61 | CSize m_MinSize; |
60 | UINT m_GapY; | 62 | UINT m_GapY; |
61 | UINT m_OverY; | 63 | UINT m_OverY; |
62 | UINT m_OverX; | 64 | UINT m_OverX; |
63 | BOOL m_bMSWorkAround; | 65 | BOOL m_bMSWorkAround; |
64 | CRegEx m_reCrackHost; | 66 | CRegEx m_reCrackHost; |
65 | CRegEx m_reNestedURL; | 67 | CRegEx m_reNestedURL; |
66 | CRegEx m_reHTMLURL; // 1 - URL | 68 | CRegEx m_reHTMLURL; // 1 - URL |
67 | CRegEx m_reCrackURL; //3 - schema, 4 - host, 5 - path, 7 - query string | 69 | CRegEx m_reCrackURL; //3 - schema, 4 - host, 5 - path, 7 - query string |
68 | BITMAP m_bitmapBack; | 70 | BITMAP m_bitmapBack; |
69 | CBitmap m_bmpBack; | 71 | CBitmap m_bmpBack; |
70 | int m_iUnreachable; | 72 | int m_iUnreachable; |
71 | int m_iCompleted; | 73 | int m_iCompleted; |
72 | int m_iPinging; | 74 | int m_iPinging; |
73 | int m_iPending; | 75 | int m_iPending; |
74 | CImageList m_Images; | 76 | CImageList m_Images; |
75 | void UpdateControlButtons(); | 77 | void UpdateControlButtons(); |
76 | BOOL m_bExiting; | 78 | BOOL m_bExiting; |
77 | int CheckForPendingRequests(); | 79 | int CheckForPendingRequests(); |
78 | UINT m_MaxThreads; | 80 | UINT m_MaxThreads; |
79 | BOOL m_bShown; | 81 | BOOL m_bShown; |
80 | enum{ | 82 | enum{ |
81 | sortHost, sortIP, sortMin, sortAvg, sortMax, sortLoss | 83 | sortHost, sortIP, sortMin, sortAvg, sortMax, sortLoss |
82 | }; | 84 | }; |
83 | int m_SortCriteria; | 85 | int m_SortCriteria; |
84 | static int CALLBACK CompareItems(LPARAM lp1, LPARAM lp2, LPARAM lp); | 86 | static int CALLBACK CompareItems(LPARAM lp1, LPARAM lp2, LPARAM lp); |
85 | DWORD m_Interval; | 87 | DWORD m_Interval; |
86 | BOOL RemovePingyHost(CPingyHost *host,int index=-1); | 88 | BOOL RemovePingyHost(CPingyHost *host,int index=-1); |
87 | BOOL UpdatePingyHost(CPingyHost *host,int index=-1); | 89 | BOOL UpdatePingyHost(CPingyHost *host,int index=-1); |
88 | BOOL AddPingyHost(CPingyHost *host); | 90 | BOOL AddPingyHost(CPingyHost *host); |
89 | CHostList m_Hosts; | 91 | CHostList m_Hosts; |
90 | enum{ | 92 | enum{ |
91 | subitemHost = 0, subitemIP, subitemMin,subitemAvg,subitemMax, subitemPacketloss | 93 | subitemHost = 0, subitemIP, subitemMin,subitemAvg,subitemMax, subitemPacketloss |
92 | }; | 94 | }; |
93 | DWORD m_TimeOut; | 95 | DWORD m_TimeOut; |
94 | UINT m_PingSize; | 96 | UINT m_PingSize; |
95 | UINT m_PingsPerHost; | 97 | UINT m_PingsPerHost; |
96 | CDragPad * m_DragPad; | 98 | CDragPad * m_DragPad; |
97 | ~CDipstickDlg(); | 99 | ~CDipstickDlg(); |
98 | CDipstickDlg(CWnd* pParent = NULL);// standard constructor | 100 | CDipstickDlg(CWnd* pParent = NULL);// standard constructor |
99 | 101 | ||
100 | // Dialog Data | 102 | // Dialog Data |
101 | //{{AFX_DATA(CDipstickDlg) | 103 | //{{AFX_DATA(CDipstickDlg) |
102 | enum { IDD = IDD_DIPSTICK_DIALOG }; | 104 | enum { IDD = IDD_DIPSTICK_DIALOG }; |
103 | CButtonm_AdvancedCtl; | 105 | CButtonm_AdvancedCtl; |
104 | CButtonm_HelpCtl; | 106 | CButtonm_HelpCtl; |
105 | CButtonm_ExitCtl; | 107 | CButtonm_ExitCtl; |
106 | CButtonm_OptionsCtl; | 108 | CButtonm_OptionsCtl; |
107 | CButtonm_ManualPingCtl; | 109 | CButtonm_ManualPingCtl; |
108 | CButtonm_RemoveCtl; | 110 | CButtonm_RemoveCtl; |
109 | CButtonm_RepingAllCtl; | 111 | CButtonm_RepingAllCtl; |
diff --git a/dipstick.rc b/dipstick.rc index 55f9fde..8797946 100644 --- a/dipstick.rc +++ b/dipstick.rc | |||
@@ -21,141 +21,140 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US | |||
21 | #pragma code_page(1252) | 21 | #pragma code_page(1252) |
22 | #endif //_WIN32 | 22 | #endif //_WIN32 |
23 | 23 | ||
24 | #ifdef APSTUDIO_INVOKED | 24 | #ifdef APSTUDIO_INVOKED |
25 | ///////////////////////////////////////////////////////////////////////////// | 25 | ///////////////////////////////////////////////////////////////////////////// |
26 | // | 26 | // |
27 | // TEXTINCLUDE | 27 | // TEXTINCLUDE |
28 | // | 28 | // |
29 | 29 | ||
30 | 1 TEXTINCLUDE DISCARDABLE | 30 | 1 TEXTINCLUDE DISCARDABLE |
31 | BEGIN | 31 | BEGIN |
32 | "resource.h\0" | 32 | "resource.h\0" |
33 | END | 33 | END |
34 | 34 | ||
35 | 2 TEXTINCLUDE DISCARDABLE | 35 | 2 TEXTINCLUDE DISCARDABLE |
36 | BEGIN | 36 | BEGIN |
37 | "#include ""afxres.h""\r\n" | 37 | "#include ""afxres.h""\r\n" |
38 | "\0" | 38 | "\0" |
39 | END | 39 | END |
40 | 40 | ||
41 | 3 TEXTINCLUDE DISCARDABLE | 41 | 3 TEXTINCLUDE DISCARDABLE |
42 | BEGIN | 42 | BEGIN |
43 | "#define _AFX_NO_SPLITTER_RESOURCES\r\n" | 43 | "#define _AFX_NO_SPLITTER_RESOURCES\r\n" |
44 | "#define _AFX_NO_OLE_RESOURCES\r\n" | 44 | "#define _AFX_NO_OLE_RESOURCES\r\n" |
45 | "#define _AFX_NO_TRACKER_RESOURCES\r\n" | 45 | "#define _AFX_NO_TRACKER_RESOURCES\r\n" |
46 | "#define _AFX_NO_PROPERTY_RESOURCES\r\n" | 46 | "#define _AFX_NO_PROPERTY_RESOURCES\r\n" |
47 | "\r\n" | 47 | "\r\n" |
48 | "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n" | 48 | "#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)\r\n" |
49 | "#ifdef _WIN32\r\n" | 49 | "#ifdef _WIN32\r\n" |
50 | "LANGUAGE 9, 1\r\n" | 50 | "LANGUAGE 9, 1\r\n" |
51 | "#pragma code_page(1252)\r\n" | 51 | "#pragma code_page(1252)\r\n" |
52 | "#endif\r\n" | 52 | "#endif\r\n" |
53 | "#include ""res\\Dipstick.rc2"" // non-Microsoft Visual C++ edited resources\r\n" | 53 | "#include ""res\\Dipstick.rc2"" // non-Microsoft Visual C++ edited resources\r\n" |
54 | "#include ""afxres.rc"" // Standard components\r\n" | 54 | "#include ""afxres.rc"" // Standard components\r\n" |
55 | "#endif\0" | 55 | "#endif\0" |
56 | END | 56 | END |
57 | 57 | ||
58 | #endif // APSTUDIO_INVOKED | 58 | #endif // APSTUDIO_INVOKED |
59 | 59 | ||
60 | 60 | ||
61 | ///////////////////////////////////////////////////////////////////////////// | 61 | ///////////////////////////////////////////////////////////////////////////// |
62 | // | 62 | // |
63 | // Icon | 63 | // Icon |
64 | // | 64 | // |
65 | 65 | ||
66 | // Icon with lowest ID value placed first to ensure application icon | 66 | // Icon with lowest ID value placed first to ensure application icon |
67 | // remains consistent on all systems. | 67 | // remains consistent on all systems. |
68 | IDR_MAINFRAME ICON DISCARDABLE "res\\Dipstick.ico" | 68 | IDR_MAINFRAME ICON DISCARDABLE "res\\Dipstick.ico" |
69 | IDI_PINGING ICON DISCARDABLE "res\\pinging.ico" | 69 | IDI_PINGING ICON DISCARDABLE "res\\pinging.ico" |
70 | IDI_PENDING ICON DISCARDABLE "res\\pending.ico" | 70 | IDI_PENDING ICON DISCARDABLE "res\\pending.ico" |
71 | IDI_COMPLETED ICON DISCARDABLE "res\\complete.ico" | 71 | IDI_COMPLETED ICON DISCARDABLE "res\\complete.ico" |
72 | IDI_UNREACHABLE ICON DISCARDABLE "res\\unreach.ico" | 72 | IDI_UNREACHABLE ICON DISCARDABLE "res\\unreach.ico" |
73 | 73 | ||
74 | ///////////////////////////////////////////////////////////////////////////// | 74 | ///////////////////////////////////////////////////////////////////////////// |
75 | // | 75 | // |
76 | // Dialog | 76 | // Dialog |
77 | // | 77 | // |
78 | 78 | ||
79 | IDD_ABOUTBOX DIALOG DISCARDABLE 0, 0, 213, 61 | 79 | IDD_ABOUTBOX DIALOG DISCARDABLE 0, 0, 213, 61 |
80 | STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_CAPTION | WS_SYSMENU | 80 | STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_CAPTION | WS_SYSMENU |
81 | CAPTION "About Dipstick" | 81 | CAPTION "About Dipstick" |
82 | FONT 8, "MS Sans Serif" | 82 | FONT 8, "MS Sans Serif" |
83 | BEGIN | 83 | BEGIN |
84 | ICON IDR_MAINFRAME,IDC_STATIC,11,17,21,20 | 84 | ICON IDR_MAINFRAME,IDC_STATIC,11,17,21,20 |
85 | LTEXT "Dipstick, Version 3.0",IDC_STATIC,40,7,89,8, | 85 | LTEXT "Dipstick, Version 3.1-trunk",IDC_STATIC,40,7,89,8,SS_NOPREFIX |
86 | SS_NOPREFIX | 86 | LTEXT "Copyright © 1996-2005 Klever Group",IDC_STATIC,40,25, |
87 | LTEXT "Copyright © 1996-2004 Klever Group", | 87 | 166,8 |
88 | IDC_STATIC,40,25,166,8 | ||
89 | DEFPUSHBUTTON "OK",IDOK,174,7,32,14,WS_GROUP | 88 | DEFPUSHBUTTON "OK",IDOK,174,7,32,14,WS_GROUP |
90 | PUSHBUTTON "http://www.klever.net/",IDC_KLEVERNET,40,40,91,14 | 89 | PUSHBUTTON "http://www.klever.net/",IDC_KLEVERNET,40,40,91,14 |
91 | END | 90 | END |
92 | 91 | ||
93 | IDD_DIPSTICK_DIALOG DIALOGEX 0, 0, 419, 152 | 92 | IDD_DIPSTICK_DIALOG DIALOGEX 0, 0, 419, 152 |
94 | STYLE DS_3DLOOK | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | 93 | STYLE DS_3DLOOK | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME |
95 | EXSTYLE WS_EX_TOOLWINDOW | WS_EX_CLIENTEDGE | WS_EX_CONTEXTHELP | | 94 | EXSTYLE WS_EX_TOOLWINDOW | WS_EX_CLIENTEDGE | WS_EX_CONTEXTHELP | |
96 | WS_EX_APPWINDOW | 95 | WS_EX_APPWINDOW |
97 | CAPTION " Dipstick 3.0" | 96 | CAPTION " Dipstick 3.1-trunk" |
98 | FONT 8, "MS Sans Serif", 0, 0, 0x1 | 97 | FONT 8, "MS Sans Serif", 0, 0, 0x1 |
99 | BEGIN | 98 | BEGIN |
100 | CONTROL "List1",IDC_HOSTLIST,"SysListView32",LVS_REPORT | | 99 | CONTROL "List1",IDC_HOSTLIST,"SysListView32",LVS_REPORT | |
101 | LVS_SORTASCENDING | LVS_AUTOARRANGE | WS_BORDER | | 100 | LVS_SORTASCENDING | LVS_AUTOARRANGE | WS_BORDER | |
102 | WS_TABSTOP,8,8,349,136,WS_EX_CLIENTEDGE | 101 | WS_TABSTOP,8,8,349,136,WS_EX_CLIENTEDGE |
103 | PUSHBUTTON "&Manual Ping",IDC_MANUALPING,361,8,50,14 | 102 | PUSHBUTTON "&Manual Ping",IDC_MANUALPING,361,8,50,14 |
104 | PUSHBUTTON "&Reping",IDC_REPING,361,23,50,14,WS_DISABLED | 103 | PUSHBUTTON "&Reping",IDC_REPING,361,23,50,14,WS_DISABLED |
105 | PUSHBUTTON "Reping &All",IDC_REPINGALL,361,38,50,14,WS_DISABLED | 104 | PUSHBUTTON "Reping &All",IDC_REPINGALL,361,38,50,14,WS_DISABLED |
106 | PUSHBUTTON "R&emove",IDC_REMOVE,361,53,50,14,WS_DISABLED | 105 | PUSHBUTTON "R&emove",IDC_REMOVE,361,53,50,14,WS_DISABLED |
107 | PUSHBUTTON "Remove A&ll",IDC_CLEAR,361,68,50,14,WS_DISABLED | 106 | PUSHBUTTON "Remove A&ll",IDC_CLEAR,361,68,50,14,WS_DISABLED |
108 | PUSHBUTTON "&Help",ID_HELP,361,99,50,14 | 107 | PUSHBUTTON "&Help",ID_HELP,361,99,50,14 |
109 | PUSHBUTTON "&Options",IDC_OPTIONS,361,114,50,14 | 108 | PUSHBUTTON "&Options",IDC_OPTIONS,361,114,50,14 |
110 | PUSHBUTTON "E&xit Dipstick",IDC_EXIT,361,129,50,14 | 109 | PUSHBUTTON "E&xit Dipstick",IDC_EXIT,361,129,50,14 |
111 | PUSHBUTTON "",IDCANCEL,411,2,6,6,NOT WS_VISIBLE | WS_DISABLED | 110 | PUSHBUTTON "",IDCANCEL,411,2,6,6,NOT WS_VISIBLE | WS_DISABLED |
112 | PUSHBUTTON "Ad&vanced",IDC_ADVANCED,361,83,50,11 | 111 | PUSHBUTTON "Ad&vanced",IDC_ADVANCED,361,83,50,11 |
113 | END | 112 | END |
114 | 113 | ||
115 | IDD_DRAGPAD DIALOGEX 0, 0, 53, 33 | 114 | IDD_DRAGPAD DIALOGEX 0, 0, 53, 33 |
116 | STYLE DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION | 115 | STYLE DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION |
117 | EXSTYLE WS_EX_TOOLWINDOW | WS_EX_CLIENTEDGE | WS_EX_CONTEXTHELP | 116 | EXSTYLE WS_EX_TOOLWINDOW | WS_EX_CLIENTEDGE | WS_EX_CONTEXTHELP |
118 | CAPTION " Drag URL here" | 117 | CAPTION " Drag URL here" |
119 | FONT 8, "MS Sans Serif", 0, 0, 0x1 | 118 | FONT 8, "MS Sans Serif", 0, 0, 0x1 |
120 | BEGIN | 119 | BEGIN |
121 | CONTROL "Animate1",IDC_DNDTARGET,"SysAnimate32",WS_TABSTOP,0,0, | 120 | CONTROL "Animate1",IDC_DNDTARGET,"SysAnimate32",WS_TABSTOP,0,0, |
122 | 53,33 | 121 | 53,33 |
123 | PUSHBUTTON "",IDCANCEL,49,0,6,6,NOT WS_VISIBLE | WS_DISABLED | 122 | PUSHBUTTON "",IDCANCEL,49,0,6,6,NOT WS_VISIBLE | WS_DISABLED |
124 | DEFPUSHBUTTON "",IDOK,47,27,6,6,NOT WS_VISIBLE | WS_DISABLED | 123 | DEFPUSHBUTTON "",IDOK,47,27,6,6,NOT WS_VISIBLE | WS_DISABLED |
125 | END | 124 | END |
126 | 125 | ||
127 | IDD_OPTIONS DIALOGEX 0, 0, 179, 154 | 126 | IDD_OPTIONS DIALOGEX 0, 0, 179, 154 |
128 | STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_CAPTION | 127 | STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_CAPTION |
129 | EXSTYLE WS_EX_TOOLWINDOW | WS_EX_CLIENTEDGE | WS_EX_CONTEXTHELP | 128 | EXSTYLE WS_EX_TOOLWINDOW | WS_EX_CLIENTEDGE | WS_EX_CONTEXTHELP |
130 | CAPTION "Dipstick Options" | 129 | CAPTION "Dipstick Options" |
131 | FONT 8, "MS Sans Serif", 0, 0, 0x1 | 130 | FONT 8, "MS Sans Serif", 0, 0, 0x1 |
132 | BEGIN | 131 | BEGIN |
133 | LTEXT "Number of pings per &host",IDC_STATIC,50,9,122,10 | 132 | LTEXT "Number of pings per &host",IDC_STATIC,50,9,122,10 |
134 | EDITTEXT IDC_NPINGS,7,7,35,14,ES_AUTOHSCROLL | 133 | EDITTEXT IDC_NPINGS,7,7,35,14,ES_AUTOHSCROLL |
135 | CONTROL "Spin1",IDC_SPINPINGS,"msctls_updown32",UDS_WRAP | | 134 | CONTROL "Spin1",IDC_SPINPINGS,"msctls_updown32",UDS_WRAP | |
136 | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | | 135 | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | |
137 | UDS_ARROWKEYS | UDS_NOTHOUSANDS,31,7,11,14 | 136 | UDS_ARROWKEYS | UDS_NOTHOUSANDS,31,7,11,14 |
138 | LTEXT "&Maximum number of threads",IDC_STATIC,50,23,122,10 | 137 | LTEXT "&Maximum number of threads",IDC_STATIC,50,23,122,10 |
139 | EDITTEXT IDC_MAXPINGS,7,21,35,14,ES_AUTOHSCROLL | 138 | EDITTEXT IDC_MAXPINGS,7,21,35,14,ES_AUTOHSCROLL |
140 | CONTROL "Spin1",IDC_SPINMAXPINGS,"msctls_updown32",UDS_WRAP | | 139 | CONTROL "Spin1",IDC_SPINMAXPINGS,"msctls_updown32",UDS_WRAP | |
141 | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | | 140 | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | |
142 | UDS_ARROWKEYS | UDS_NOTHOUSANDS,31,21,11,14 | 141 | UDS_ARROWKEYS | UDS_NOTHOUSANDS,31,21,11,14 |
143 | LTEXT "Ping &timeout",IDC_STATIC,50,37,122,10 | 142 | LTEXT "Ping &timeout",IDC_STATIC,50,37,122,10 |
144 | EDITTEXT IDC_TIMEOUT,7,35,35,14,ES_AUTOHSCROLL | 143 | EDITTEXT IDC_TIMEOUT,7,35,35,14,ES_AUTOHSCROLL |
145 | CONTROL "Spin1",IDC_SPINTIMEOUT,"msctls_updown32",UDS_WRAP | | 144 | CONTROL "Spin1",IDC_SPINTIMEOUT,"msctls_updown32",UDS_WRAP | |
146 | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | | 145 | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | |
147 | UDS_ARROWKEYS | UDS_NOTHOUSANDS,31,35,11,14 | 146 | UDS_ARROWKEYS | UDS_NOTHOUSANDS,31,35,11,14 |
148 | LTEXT "&Interval between pings",IDC_STATIC,50,51,122,10 | 147 | LTEXT "&Interval between pings",IDC_STATIC,50,51,122,10 |
149 | EDITTEXT IDC_INTERVAL,7,49,35,14,ES_AUTOHSCROLL | 148 | EDITTEXT IDC_INTERVAL,7,49,35,14,ES_AUTOHSCROLL |
150 | CONTROL "Spin1",IDC_SPINTERVAL,"msctls_updown32",UDS_WRAP | | 149 | CONTROL "Spin1",IDC_SPINTERVAL,"msctls_updown32",UDS_WRAP | |
151 | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | | 150 | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | |
152 | UDS_ARROWKEYS | UDS_NOTHOUSANDS,31,49,11,14 | 151 | UDS_ARROWKEYS | UDS_NOTHOUSANDS,31,49,11,14 |
153 | LTEXT "Ping &size",IDC_STATIC,50,65,122,10 | 152 | LTEXT "Ping &size",IDC_STATIC,50,65,122,10 |
154 | EDITTEXT IDC_PACKETSIZE,7,63,35,14,ES_AUTOHSCROLL | 153 | EDITTEXT IDC_PACKETSIZE,7,63,35,14,ES_AUTOHSCROLL |
155 | CONTROL "Spin1",IDC_SPINSIZE,"msctls_updown32",UDS_WRAP | | 154 | CONTROL "Spin1",IDC_SPINSIZE,"msctls_updown32",UDS_WRAP | |
156 | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | | 155 | UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | |
157 | UDS_ARROWKEYS | UDS_NOTHOUSANDS,31,63,11,14 | 156 | UDS_ARROWKEYS | UDS_NOTHOUSANDS,31,63,11,14 |
158 | CONTROL "Test i&nnermost URL",IDC_MSWORKAROUND,"Button", | 157 | CONTROL "Test i&nnermost URL",IDC_MSWORKAROUND,"Button", |
159 | BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,7,80,165,8 | 158 | BS_AUTOCHECKBOX | BS_NOTIFY | WS_TABSTOP,7,80,165,8 |
160 | DEFPUSHBUTTON "OK",IDOK,31,133,50,14 | 159 | DEFPUSHBUTTON "OK",IDOK,31,133,50,14 |
161 | PUSHBUTTON "Cancel",IDCANCEL,97,133,50,14 | 160 | PUSHBUTTON "Cancel",IDCANCEL,97,133,50,14 |
@@ -202,153 +201,153 @@ BEGIN | |||
202 | SS_NOTIFY | 201 | SS_NOTIFY |
203 | LTEXT "../../..",IDC_TIMES,60,45,66,8,SS_NOTIFY | 202 | LTEXT "../../..",IDC_TIMES,60,45,66,8,SS_NOTIFY |
204 | LTEXT "Packet loss:",IDC_LOSSCAPTION,7,56,40,8,SS_NOTIFY | 203 | LTEXT "Packet loss:",IDC_LOSSCAPTION,7,56,40,8,SS_NOTIFY |
205 | LTEXT "..",IDC_LOSS,60,56,66,8,SS_NOPREFIX | SS_NOTIFY | 204 | LTEXT "..",IDC_LOSS,60,56,66,8,SS_NOPREFIX | SS_NOTIFY |
206 | LTEXT "Status:",IDC_STATUSCAPTION,7,66,23,8,SS_NOTIFY | 205 | LTEXT "Status:",IDC_STATUSCAPTION,7,66,23,8,SS_NOTIFY |
207 | LTEXT "..",IDC_STATUS,60,66,142,8,SS_NOPREFIX | SS_NOTIFY | 206 | LTEXT "..",IDC_STATUS,60,66,142,8,SS_NOPREFIX | SS_NOTIFY |
208 | PUSHBUTTON "&Open URL",IDC_OPENURL,7,78,50,14 | 207 | PUSHBUTTON "&Open URL",IDC_OPENURL,7,78,50,14 |
209 | ICON IDR_MAINFRAME,IDC_STATE,166,42,18,20,SS_NOTIFY | | 208 | ICON IDR_MAINFRAME,IDC_STATE,166,42,18,20,SS_NOTIFY | |
210 | SS_CENTERIMAGE | SS_REALSIZEIMAGE | 209 | SS_CENTERIMAGE | SS_REALSIZEIMAGE |
211 | PUSHBUTTON "&Copy URL",IDC_COPYURL,60,78,50,14 | 210 | PUSHBUTTON "&Copy URL",IDC_COPYURL,60,78,50,14 |
212 | END | 211 | END |
213 | 212 | ||
214 | IDD_AUTOBEST DIALOGEX 0, 0, 287, 82 | 213 | IDD_AUTOBEST DIALOGEX 0, 0, 287, 82 |
215 | STYLE DS_MODALFRAME | DS_SETFOREGROUND | DS_3DLOOK | DS_CENTER | WS_POPUP | | 214 | STYLE DS_MODALFRAME | DS_SETFOREGROUND | DS_3DLOOK | DS_CENTER | WS_POPUP | |
216 | WS_CAPTION | 215 | WS_CAPTION |
217 | EXSTYLE WS_EX_TOOLWINDOW | WS_EX_CLIENTEDGE | 216 | EXSTYLE WS_EX_TOOLWINDOW | WS_EX_CLIENTEDGE |
218 | CAPTION " Dipstick - report" | 217 | CAPTION " Dipstick - report" |
219 | FONT 8, "MS Sans Serif", 0, 0, 0x1 | 218 | FONT 8, "MS Sans Serif", 0, 0, 0x1 |
220 | BEGIN | 219 | BEGIN |
221 | DEFPUSHBUTTON "Open this URL",IDOK,110,47,68,14 | 220 | DEFPUSHBUTTON "Open this URL",IDOK,110,47,68,14 |
222 | PUSHBUTTON "&Next Location",IDC_NEXT,188,47,68,14 | 221 | PUSHBUTTON "&Next Location",IDC_NEXT,188,47,68,14 |
223 | PUSHBUTTON "&Previous Location",IDC_PREV,32,47,68,14 | 222 | PUSHBUTTON "&Previous Location",IDC_PREV,32,47,68,14 |
224 | CTEXT "..",IDC_URL,7,7,273,14,SS_NOPREFIX,WS_EX_DLGMODALFRAME | | 223 | CTEXT "..",IDC_URL,7,7,273,14,SS_NOPREFIX,WS_EX_DLGMODALFRAME | |
225 | WS_EX_CLIENTEDGE | 224 | WS_EX_CLIENTEDGE |
226 | LTEXT "Average Response Time, milliseconds:",IDC_STATIC,7,25, | 225 | LTEXT "Average Response Time, milliseconds:",IDC_STATIC,7,25, |
227 | 136,8 | 226 | 136,8 |
228 | LTEXT "..",IDC_RTT,143,25,68,8 | 227 | LTEXT "..",IDC_RTT,143,25,68,8 |
229 | LTEXT "Packet Loss:",IDC_STATIC,7,36,136,8 | 228 | LTEXT "Packet Loss:",IDC_STATIC,7,36,136,8 |
230 | LTEXT "..",IDC_PKTLOSS,143,36,68,8 | 229 | LTEXT "..",IDC_PKTLOSS,143,36,68,8 |
231 | PUSHBUTTON "Cancel",IDCANCEL,118,63,50,12 | 230 | PUSHBUTTON "Cancel",IDCANCEL,118,63,50,12 |
232 | CONTROL "Animate1",IDC_DROPSOURCE,"SysAnimate32",ACS_CENTER | | 231 | CONTROL "Animate1",IDC_DROPSOURCE,"SysAnimate32",ACS_CENTER | |
233 | ACS_AUTOPLAY,257,23,23,22,WS_EX_DLGMODALFRAME | | 232 | ACS_AUTOPLAY,257,23,23,22,WS_EX_DLGMODALFRAME | |
234 | WS_EX_STATICEDGE | 233 | WS_EX_STATICEDGE |
235 | PUSHBUTTON "&Copy URL",IDC_COPYURL,211,23,39,22,BS_CENTER | | 234 | PUSHBUTTON "&Copy URL",IDC_COPYURL,211,23,39,22,BS_CENTER | |
236 | BS_VCENTER | BS_MULTILINE | 235 | BS_VCENTER | BS_MULTILINE |
237 | END | 236 | END |
238 | 237 | ||
239 | IDD_URLS DIALOGEX 0, 0, 176, 192 | 238 | IDD_URLS DIALOGEX 0, 0, 176, 192 |
240 | STYLE DS_SETFOREGROUND | DS_3DLOOK | DS_CENTER | WS_MAXIMIZEBOX | WS_POPUP | | 239 | STYLE DS_SETFOREGROUND | DS_3DLOOK | DS_CENTER | WS_MAXIMIZEBOX | WS_POPUP | |
241 | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | 240 | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME |
242 | EXSTYLE WS_EX_CLIENTEDGE | 241 | EXSTYLE WS_EX_CLIENTEDGE |
243 | CAPTION " Select URLs of interest" | 242 | CAPTION " Select URLs of interest" |
244 | FONT 8, "MS Sans Serif", 0, 0, 0x1 | 243 | FONT 8, "MS Sans Serif", 0, 0, 0x1 |
245 | BEGIN | 244 | BEGIN |
246 | LISTBOX IDC_URLS,7,7,162,146,LBS_SORT | LBS_NOINTEGRALHEIGHT | | 245 | LISTBOX IDC_URLS,7,7,162,146,LBS_SORT | LBS_NOINTEGRALHEIGHT | |
247 | LBS_EXTENDEDSEL | NOT WS_BORDER | WS_VSCROLL | | 246 | LBS_EXTENDEDSEL | NOT WS_BORDER | WS_VSCROLL | |
248 | WS_HSCROLL | WS_TABSTOP,WS_EX_STATICEDGE | 247 | WS_HSCROLL | WS_TABSTOP,WS_EX_STATICEDGE |
249 | DEFPUSHBUTTON "OK",IDOK,7,155,50,14 | 248 | DEFPUSHBUTTON "OK",IDOK,7,155,50,14 |
250 | PUSHBUTTON "Cancel",IDCANCEL,7,171,50,14 | 249 | PUSHBUTTON "Cancel",IDCANCEL,7,171,50,14 |
251 | CONTROL "&Smart adjust selection",IDC_DOADJUST,"Button", | 250 | CONTROL "&Smart adjust selection",IDC_DOADJUST,"Button", |
252 | BS_AUTOCHECKBOX | BS_TOP | WS_TABSTOP,63,157,106,10 | 251 | BS_AUTOCHECKBOX | BS_TOP | WS_TABSTOP,63,157,106,10 |
253 | CONTROL "Adjust by &innermost URL",IDC_ADJUSTINN,"Button", | 252 | CONTROL "Adjust by &innermost URL",IDC_ADJUSTINN,"Button", |
254 | BS_AUTOCHECKBOX | BS_TOP | BS_MULTILINE | WS_TABSTOP,63, | 253 | BS_AUTOCHECKBOX | BS_TOP | BS_MULTILINE | WS_TABSTOP,63, |
255 | 175,106,10 | 254 | 175,106,10 |
256 | END | 255 | END |
257 | 256 | ||
258 | 257 | ||
259 | #ifndef _MAC | 258 | #ifndef _MAC |
260 | ///////////////////////////////////////////////////////////////////////////// | 259 | ///////////////////////////////////////////////////////////////////////////// |
261 | // | 260 | // |
262 | // Version | 261 | // Version |
263 | // | 262 | // |
264 | 263 | ||
265 | VS_VERSION_INFO VERSIONINFO | 264 | VS_VERSION_INFO VERSIONINFO |
266 | FILEVERSION 3,0,0,0 | 265 | FILEVERSION 3,1,0,0 |
267 | PRODUCTVERSION 3,0,0,0 | 266 | PRODUCTVERSION 3,1,0,0 |
268 | FILEFLAGSMASK 0x3fL | 267 | FILEFLAGSMASK 0x3fL |
269 | #ifdef _DEBUG | 268 | #ifdef _DEBUG |
270 | FILEFLAGS 0x9L | 269 | FILEFLAGS 0x9L |
271 | #else | 270 | #else |
272 | FILEFLAGS 0x8L | 271 | FILEFLAGS 0x8L |
273 | #endif | 272 | #endif |
274 | FILEOS 0x4L | 273 | FILEOS 0x4L |
275 | FILETYPE 0x1L | 274 | FILETYPE 0x1L |
276 | FILESUBTYPE 0x0L | 275 | FILESUBTYPE 0x0L |
277 | BEGIN | 276 | BEGIN |
278 | BLOCK "StringFileInfo" | 277 | BLOCK "StringFileInfo" |
279 | BEGIN | 278 | BEGIN |
280 | BLOCK "040904b0" | 279 | BLOCK "040904b0" |
281 | BEGIN | 280 | BEGIN |
282 | VALUE "CompanyName", "Klever Group (http://www.klever.net/)\0" | 281 | VALUE "CompanyName", "Klever Group (http://www.klever.net/)\0" |
283 | VALUE "FileDescription", "Dipstick, mirror locator\0" | 282 | VALUE "FileDescription", "Dipstick, mirror locator\0" |
284 | VALUE "FileVersion", "3, 0, 0, 0\0" | 283 | VALUE "FileVersion", "3, 1, 0, 0\0" |
285 | VALUE "InternalName", "DIPSTICK\0" | 284 | VALUE "InternalName", "DIPSTICK\0" |
286 | VALUE "LegalCopyright", "Copyright © 1996-2004 Klever Group (http://www.klever.net/)\0" | 285 | VALUE "LegalCopyright", "Copyright © 1996-2005 Klever Group (http://www.klever.net/)\0" |
287 | VALUE "LegalTrademarks", "Klever Group (http://www.klever.net/)\0" | 286 | VALUE "LegalTrademarks", "Klever Group (http://www.klever.net/)\0" |
288 | VALUE "OriginalFilename", "DIPSTICK.EXE\0" | 287 | VALUE "OriginalFilename", "DIPSTICK.EXE\0" |
289 | VALUE "ProductName", "Dipstick\0" | 288 | VALUE "ProductName", "Dipstick\0" |
290 | VALUE "ProductVersion", "3, 0, 0, 0\0" | 289 | VALUE "ProductVersion", "3, 1, 0, 0\0" |
291 | END | 290 | END |
292 | END | 291 | END |
293 | BLOCK "VarFileInfo" | 292 | BLOCK "VarFileInfo" |
294 | BEGIN | 293 | BEGIN |
295 | VALUE "Translation", 0x409, 1200 | 294 | VALUE "Translation", 0x409, 1200 |
296 | END | 295 | END |
297 | END | 296 | END |
298 | 297 | ||
299 | #endif // !_MAC | 298 | #endif // !_MAC |
300 | 299 | ||
301 | 300 | ||
302 | ///////////////////////////////////////////////////////////////////////////// | 301 | ///////////////////////////////////////////////////////////////////////////// |
303 | // | 302 | // |
304 | // DESIGNINFO | 303 | // DESIGNINFO |
305 | // | 304 | // |
306 | 305 | ||
307 | #ifdef APSTUDIO_INVOKED | 306 | #ifdef APSTUDIO_INVOKED |
308 | GUIDELINES DESIGNINFO DISCARDABLE | 307 | GUIDELINES DESIGNINFO DISCARDABLE |
309 | BEGIN | 308 | BEGIN |
310 | IDD_ABOUTBOX, DIALOG | 309 | IDD_ABOUTBOX, DIALOG |
311 | BEGIN | 310 | BEGIN |
312 | LEFTMARGIN, 7 | 311 | LEFTMARGIN, 7 |
313 | RIGHTMARGIN, 206 | 312 | RIGHTMARGIN, 206 |
314 | VERTGUIDE, 40 | 313 | VERTGUIDE, 40 |
315 | TOPMARGIN, 7 | 314 | TOPMARGIN, 7 |
316 | BOTTOMMARGIN, 54 | 315 | BOTTOMMARGIN, 54 |
317 | END | 316 | END |
318 | 317 | ||
319 | IDD_DIPSTICK_DIALOG, DIALOG | 318 | IDD_DIPSTICK_DIALOG, DIALOG |
320 | BEGIN | 319 | BEGIN |
321 | VERTGUIDE, 8 | 320 | VERTGUIDE, 8 |
322 | VERTGUIDE, 411 | 321 | VERTGUIDE, 411 |
323 | HORZGUIDE, 8 | 322 | HORZGUIDE, 8 |
324 | HORZGUIDE, 144 | 323 | HORZGUIDE, 144 |
325 | END | 324 | END |
326 | 325 | ||
327 | IDD_OPTIONS, DIALOG | 326 | IDD_OPTIONS, DIALOG |
328 | BEGIN | 327 | BEGIN |
329 | LEFTMARGIN, 7 | 328 | LEFTMARGIN, 7 |
330 | RIGHTMARGIN, 172 | 329 | RIGHTMARGIN, 172 |
331 | VERTGUIDE, 16 | 330 | VERTGUIDE, 16 |
332 | VERTGUIDE, 50 | 331 | VERTGUIDE, 50 |
333 | TOPMARGIN, 7 | 332 | TOPMARGIN, 7 |
334 | BOTTOMMARGIN, 147 | 333 | BOTTOMMARGIN, 147 |
335 | END | 334 | END |
336 | 335 | ||
337 | IDD_MANUALHOST, DIALOG | 336 | IDD_MANUALHOST, DIALOG |
338 | BEGIN | 337 | BEGIN |
339 | LEFTMARGIN, 7 | 338 | LEFTMARGIN, 7 |
340 | RIGHTMARGIN, 180 | 339 | RIGHTMARGIN, 180 |
341 | TOPMARGIN, 7 | 340 | TOPMARGIN, 7 |
342 | BOTTOMMARGIN, 47 | 341 | BOTTOMMARGIN, 47 |
343 | END | 342 | END |
344 | 343 | ||
345 | IDD_PROPS, DIALOG | 344 | IDD_PROPS, DIALOG |
346 | BEGIN | 345 | BEGIN |
347 | LEFTMARGIN, 7 | 346 | LEFTMARGIN, 7 |
348 | RIGHTMARGIN, 202 | 347 | RIGHTMARGIN, 202 |
349 | VERTGUIDE, 60 | 348 | VERTGUIDE, 60 |
350 | TOPMARGIN, 7 | 349 | TOPMARGIN, 7 |
351 | BOTTOMMARGIN, 92 | 350 | BOTTOMMARGIN, 92 |
352 | END | 351 | END |
353 | 352 | ||
354 | IDD_AUTOBEST, DIALOG | 353 | IDD_AUTOBEST, DIALOG |
@@ -399,169 +398,170 @@ BEGIN | |||
399 | MENUITEM "&Options", ID_DRAGPAD_OPTIONS | 398 | MENUITEM "&Options", ID_DRAGPAD_OPTIONS |
400 | MENUITEM "&Show main window", ID_DRAGPAD_SHOWMAINWINDOW | 399 | MENUITEM "&Show main window", ID_DRAGPAD_SHOWMAINWINDOW |
401 | POPUP "Ad&vanced" | 400 | POPUP "Ad&vanced" |
402 | BEGIN | 401 | BEGIN |
403 | MENUITEM "&Export List", ID_DRAGPAD_ADVANCED_EXPORTLIST | 402 | MENUITEM "&Export List", ID_DRAGPAD_ADVANCED_EXPORTLIST |
404 | 403 | ||
405 | MENUITEM "&Import List", ID_DRAGPAD_ADVANCED_IMPORTLIST | 404 | MENUITEM "&Import List", ID_DRAGPAD_ADVANCED_IMPORTLIST |
406 | 405 | ||
407 | END | 406 | END |
408 | MENUITEM SEPARATOR | 407 | MENUITEM SEPARATOR |
409 | MENUITEM "&Help", ID_DRAGPAD_HELP | 408 | MENUITEM "&Help", ID_DRAGPAD_HELP |
410 | MENUITEM "A&bout Dipstick", ID_DRAGPAD_ABOUT | 409 | MENUITEM "A&bout Dipstick", ID_DRAGPAD_ABOUT |
411 | MENUITEM "E&xit Dipstick", ID_DRAGPAD_EXIT | 410 | MENUITEM "E&xit Dipstick", ID_DRAGPAD_EXIT |
412 | END | 411 | END |
413 | POPUP "Host List" | 412 | POPUP "Host List" |
414 | BEGIN | 413 | BEGIN |
415 | MENUITEM "&Reping", ID_HOSTLIST_REPING | 414 | MENUITEM "&Reping", ID_HOSTLIST_REPING |
416 | MENUITEM "R&emove", ID_HOSTLIST_REMOVE | 415 | MENUITEM "R&emove", ID_HOSTLIST_REMOVE |
417 | MENUITEM "Open URL", ID_HOSTLIST_OPENURL | 416 | MENUITEM "Open URL", ID_HOSTLIST_OPENURL |
418 | MENUITEM "&Copy URL", ID_HOSTLIST_COPYURL | 417 | MENUITEM "&Copy URL", ID_HOSTLIST_COPYURL |
419 | MENUITEM SEPARATOR | 418 | MENUITEM SEPARATOR |
420 | MENUITEM "Reping &All", ID_HOSTLIST_REPINGALL | 419 | MENUITEM "Reping &All", ID_HOSTLIST_REPINGALL |
421 | MENUITEM "Remove A&ll", ID_HOSTLIST_REMOVEALL | 420 | MENUITEM "Remove A&ll", ID_HOSTLIST_REMOVEALL |
422 | MENUITEM SEPARATOR | 421 | MENUITEM SEPARATOR |
423 | MENUITEM "&Paste URL(s)", ID_HOSTLIST_PASTEURL | 422 | MENUITEM "&Paste URL(s)", ID_HOSTLIST_PASTEURL |
424 | MENUITEM "&Properties", ID_HOSTLIST_PROPERTIES | 423 | MENUITEM "&Properties", ID_HOSTLIST_PROPERTIES |
425 | END | 424 | END |
426 | POPUP "Advanced" | 425 | POPUP "Advanced" |
427 | BEGIN | 426 | BEGIN |
428 | MENUITEM "&Export List", ID_ADVANCED_EXPORTLIST | 427 | MENUITEM "&Export List", ID_ADVANCED_EXPORTLIST |
429 | MENUITEM "&Import List", ID_ADVANCED_IMPORTLIST | 428 | MENUITEM "&Import List", ID_ADVANCED_IMPORTLIST |
430 | END | 429 | END |
431 | END | 430 | END |
432 | 431 | ||
433 | 432 | ||
434 | ///////////////////////////////////////////////////////////////////////////// | 433 | ///////////////////////////////////////////////////////////////////////////// |
435 | // | 434 | // |
436 | // Bitmap | 435 | // Bitmap |
437 | // | 436 | // |
438 | 437 | ||
439 | IDB_DIABACK BITMAP DISCARDABLE "shared-data/klever-background.bmp" | 438 | IDB_DIABACK BITMAP DISCARDABLE "shared-data/klever-background.bmp" |
440 | 439 | ||
441 | ///////////////////////////////////////////////////////////////////////////// | 440 | ///////////////////////////////////////////////////////////////////////////// |
442 | // | 441 | // |
443 | // WAVE | 442 | // WAVE |
444 | // | 443 | // |
445 | 444 | ||
446 | IDW_BESTURL WAVE DISCARDABLE "res\\best.wav" | 445 | IDW_BESTURL WAVE DISCARDABLE "res\\best.wav" |
447 | 446 | ||
448 | ///////////////////////////////////////////////////////////////////////////// | 447 | ///////////////////////////////////////////////////////////////////////////// |
449 | // | 448 | // |
450 | // String Table | 449 | // String Table |
451 | // | 450 | // |
452 | 451 | ||
453 | STRINGTABLE DISCARDABLE | 452 | STRINGTABLE DISCARDABLE |
454 | BEGIN | 453 | BEGIN |
455 | IDS_ABOUTBOX "&About Dipstick.." | 454 | IDS_ABOUTBOX "&About Dipstick.." |
456 | IDS_PS_FAILEDTOLOCK "Failed to gain access to internal resources. Please, report to Klever." | 455 | IDS_PS_FAILEDTOLOCK "Failed to gain access to internal resources. Please, report to Klever." |
457 | IDP_SOCKETS_INIT_FAILED "Windows sockets initialization failed." | 456 | IDP_SOCKETS_INIT_FAILED "Windows sockets initialization failed." |
458 | IDS_CSVEXT ".csv" | 457 | IDS_CSVEXT ".csv" |
459 | IDS_HN_BADURL "Bad URL" | 458 | IDS_HN_BADURL "Bad URL" |
460 | IDS_ABEST_CLEANUP "Remove all locations from list?" | 459 | IDS_ABEST_CLEANUP "Remove all locations from list?" |
461 | IDS_ABEST_NONEFOUND "No reachable locations were found." | 460 | IDS_ABEST_NONEFOUND "No reachable locations were found." |
462 | IDS_ABEST_TITLE " Dipstick - report" | 461 | IDS_ABEST_TITLE " Dipstick - report" |
463 | IDS_DRAGPAD_TITLE " Dipstick 3.0" | 462 | IDS_DRAGPAD_TITLE " Dipstick 3.1-trunk" |
464 | IDS_DRAGPAD_URLS " %d/%d URL(s)" | 463 | IDS_DRAGPAD_URLS " %d/%d URL(s)" |
465 | IDS_REGEX_HTMLURL "<A[^[:alpha:]][^>]*href[[:space:]]*=[[:space:]]*""?([^[:space:]>""]+)""?[^>]*>" | 464 | IDS_REGEX_HTMLURL "<A[^[:alpha:]][^>]*href[[:space:]]*=[[:space:]]*""?([^[:space:]>""]+)""?[^>]*>" |
466 | END | 465 | END |
467 | 466 | ||
468 | STRINGTABLE DISCARDABLE | 467 | STRINGTABLE DISCARDABLE |
469 | BEGIN | 468 | BEGIN |
470 | IDS_KLEVERNET_URL "http://www.klever.net/" | 469 | IDS_KLEVERNET_URL "http://www.klever.net/" |
471 | IDS_PS_INTERNALERROR "Internal Error. Please report to Klever." | 470 | IDS_PS_INTERNALERROR "Internal Error. Please report to Klever." |
472 | IDS_PS_NETUNREACHABLE "Destination network unreachable" | 471 | IDS_PS_NETUNREACHABLE "Destination network unreachable" |
473 | IDS_PS_HOSTUNREACHABLE "Destination host unreachable" | 472 | IDS_PS_HOSTUNREACHABLE "Destination host unreachable" |
474 | IDS_PS_PROTUNREACHABLE "Destination protocol unreachable" | 473 | IDS_PS_PROTUNREACHABLE "Destination protocol unreachable" |
475 | IDS_PS_PORTUNREACHABLE "Destination port unreachable" | 474 | IDS_PS_PORTUNREACHABLE "Destination port unreachable" |
476 | IDS_PS_NORESOURCES "No resources" | 475 | IDS_PS_NORESOURCES "No resources" |
477 | IDS_PS_HWERROR "Hardware error" | 476 | IDS_PS_HWERROR "Hardware error" |
478 | IDS_PS_BIGPACKET "Packet size is too big" | 477 | IDS_PS_BIGPACKET "Packet size is too big" |
479 | END | 478 | END |
480 | 479 | ||
481 | STRINGTABLE DISCARDABLE | 480 | STRINGTABLE DISCARDABLE |
482 | BEGIN | 481 | BEGIN |
483 | IDC_DNDTARGET "Dipstick 3.0, click the right mouse button to display main window, left mouse button for menu" | 482 | IDC_DNDTARGET "Dipstick 3.1-trunk, click the right mouse button to display main window, left mouse button for menu" |
484 | IDC_HOST "Host name as specified or resolved by Dipstick" | 483 | IDC_HOST "Host name as specified or resolved by Dipstick" |
485 | END | 484 | END |
486 | 485 | ||
487 | STRINGTABLE DISCARDABLE | 486 | STRINGTABLE DISCARDABLE |
488 | BEGIN | 487 | BEGIN |
489 | IDC_URLCAPTION "Universal Resource Locator (URL) associated with this location" | 488 | IDC_URLCAPTION "Universal Resource Locator (URL) associated with this location" |
490 | IDC_URL "Universal Resource Locator (URL) associated with this location" | 489 | IDC_URL "Universal Resource Locator (URL) associated with this location" |
491 | IDC_HOSTCAPTION "Host name as specified or resolved by Dipstick" | 490 | IDC_HOSTCAPTION "Host name as specified or resolved by Dipstick" |
492 | IDC_IPCAPTION "Host's IP address as specified or resolved by Dipstick" | 491 | IDC_IPCAPTION "Host's IP address as specified or resolved by Dipstick" |
493 | IDC_TIMESCAPTION "Minmum, maximum and average round trip time in milliseconds. The less the better." | 492 | IDC_TIMESCAPTION "Minmum, maximum and average round trip time in milliseconds. The less the better." |
494 | IDC_TIMES "Minmum, maximum and average round trip time in milliseconds. The less the better." | 493 | IDC_TIMES "Minmum, maximum and average round trip time in milliseconds. The less the better." |
495 | IDC_LOSSCAPTION "IP packets loss" | 494 | IDC_LOSSCAPTION "IP packets loss" |
496 | IDC_LOSS "IP packets loss" | 495 | IDC_LOSS "IP packets loss" |
497 | IDC_STATUSCAPTION "Last error occured during attempt to ping this location" | 496 | IDC_STATUSCAPTION "Last error occured during attempt to ping this location" |
498 | IDC_STATUS "Last error occured during attempt to ping this location" | 497 | IDC_STATUS "Last error occured during attempt to ping this location" |
499 | IDC_OPENURL "Open URL in your default browser" | 498 | IDC_OPENURL "Open URL in your default browser" |
500 | END | 499 | END |
501 | 500 | ||
502 | STRINGTABLE DISCARDABLE | 501 | STRINGTABLE DISCARDABLE |
503 | BEGIN | 502 | BEGIN |
504 | IDS_PS_TIMEOUT "Request timed out" | 503 | IDS_PS_TIMEOUT "Request timed out" |
505 | IDS_PS_BADROUTE "Bad route" | 504 | IDS_PS_BADROUTE "Bad route" |
506 | IDS_PS_TTLEXPTRANSIT "TTL expired in transit" | 505 | IDS_PS_TTLEXPTRANSIT "TTL expired in transit" |
507 | IDS_PS_TTLEXPREASM "TTL expired during reassembly" | 506 | IDS_PS_TTLEXPREASM "TTL expired during reassembly" |
508 | IDS_PS_IPARAMP "IP parameter problem" | 507 | IDS_PS_IPARAMP "IP parameter problem" |
509 | IDS_PS_SOURCEQUENCH "Source quench received" | 508 | IDS_PS_SOURCEQUENCH "Source quench received" |
510 | IDS_PS_BIGOPTION "Option is too big" | 509 | IDS_PS_BIGOPTION "Option is too big" |
511 | IDS_PS_BADDEST "Bad destination" | 510 | IDS_PS_BADDEST "Bad destination" |
512 | IDS_PS_UNKNOWNERROR "Unknown error" | 511 | IDS_PS_UNKNOWNERROR "Unknown error" |
513 | IDS_REGISTRYKEY "Klever Group" | 512 | IDS_REGISTRYKEY "Klever Group" |
514 | IDS_FMT_TIMES "%lu/%lu/%lu" | 513 | IDS_FMT_TIMES "%lu/%lu/%lu" |
515 | IDS_FMT_LOSS "%d%%" | 514 | IDS_FMT_LOSS "%d%%" |
516 | IDS_TIP_UNREACHABLE "This location seems to be unreachable" | 515 | IDS_TIP_UNREACHABLE "This location seems to be unreachable" |
517 | IDS_PS_FAILEDTORESOLVE "Unable to resolve host IP" | 516 | IDS_PS_FAILEDTORESOLVE "Unable to resolve host IP" |
518 | END | 517 | END |
519 | 518 | ||
520 | STRINGTABLE DISCARDABLE | 519 | STRINGTABLE DISCARDABLE |
521 | BEGIN | 520 | BEGIN |
522 | IDS_PS_UNABLETOICMP "Unable to initialize ICMP services" | 521 | IDS_PS_UNABLETOICMP "Unable to initialize ICMP services" |
523 | IDS_TIP_PENDING "This location is waiting for it's turn to get pinged" | 522 | IDS_TIP_PENDING "This location is waiting for it's turn to get pinged" |
524 | IDS_TIP_COMPLETE "Pinging of this location has been completed" | 523 | IDS_TIP_COMPLETE "Pinging of this location has been completed" |
525 | IDS_TIP_PROPSOK "Click OK if you're done with looking and want to dismiss this window" | 524 | IDS_TIP_PROPSOK "Click OK if you're done with looking and want to dismiss this window" |
526 | IDS_TIP_INTERVAL "Interval between ping requests in seconds" | 525 | IDS_TIP_INTERVAL "Interval between ping requests in seconds" |
527 | IDS_TIP_OPTIONSOK "Click OK to make changes permanent" | 526 | IDS_TIP_OPTIONSOK "Click OK to make changes permanent" |
528 | IDS_TIP_OPTIONSCANCEL "Click CANCEL to leave dialog without making any changes" | 527 | IDS_TIP_OPTIONSCANCEL "Click CANCEL to leave dialog without making any changes" |
529 | IDS_TIP_PINGING "This location is being pinged at the moment.." | 528 | IDS_TIP_PINGING "This location is being pinged at the moment.." |
530 | END | 529 | END |
531 | 530 | ||
532 | STRINGTABLE DISCARDABLE | 531 | STRINGTABLE DISCARDABLE |
533 | BEGIN | 532 | BEGIN |
534 | IDC_MSWORKAROUND "In case of REDIRed URL - test the innermost one" | 533 | IDC_MSWORKAROUND "In case of REDIRed URL - test the innermost one" |
535 | END | 534 | END |
536 | 535 | ||
537 | STRINGTABLE DISCARDABLE | 536 | STRINGTABLE DISCARDABLE |
538 | BEGIN | 537 | BEGIN |
539 | IDS_CSVFILTER "Comma Separated Values (*.csv)|*.csv|All Files (*.*)|*.*||" | 538 | IDS_CSVFILTER "Comma Separated Values (*.csv)|*.csv|All Files (*.*)|*.*||" |
539 | IDS_REGEX_URL "([a-zA-Z]+://)?[a-zA-Z0-9-]+(\\.[a-zA-Z0-9-]*)+(/[^ \t\r\n\\f]*)?" | ||
540 | END | 540 | END |
541 | 541 | ||
542 | #endif // English (U.S.) resources | 542 | #endif // English (U.S.) resources |
543 | ///////////////////////////////////////////////////////////////////////////// | 543 | ///////////////////////////////////////////////////////////////////////////// |
544 | 544 | ||
545 | 545 | ||
546 | 546 | ||
547 | #ifndef APSTUDIO_INVOKED | 547 | #ifndef APSTUDIO_INVOKED |
548 | ///////////////////////////////////////////////////////////////////////////// | 548 | ///////////////////////////////////////////////////////////////////////////// |
549 | // | 549 | // |
550 | // Generated from the TEXTINCLUDE 3 resource. | 550 | // Generated from the TEXTINCLUDE 3 resource. |
551 | // | 551 | // |
552 | #define _AFX_NO_SPLITTER_RESOURCES | 552 | #define _AFX_NO_SPLITTER_RESOURCES |
553 | #define _AFX_NO_OLE_RESOURCES | 553 | #define _AFX_NO_OLE_RESOURCES |
554 | #define _AFX_NO_TRACKER_RESOURCES | 554 | #define _AFX_NO_TRACKER_RESOURCES |
555 | #define _AFX_NO_PROPERTY_RESOURCES | 555 | #define _AFX_NO_PROPERTY_RESOURCES |
556 | 556 | ||
557 | #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) | 557 | #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) |
558 | #ifdef _WIN32 | 558 | #ifdef _WIN32 |
559 | LANGUAGE 9, 1 | 559 | LANGUAGE 9, 1 |
560 | #pragma code_page(1252) | 560 | #pragma code_page(1252) |
561 | #endif | 561 | #endif |
562 | #include "res\Dipstick.rc2" // non-Microsoft Visual C++ edited resources | 562 | #include "res\Dipstick.rc2" // non-Microsoft Visual C++ edited resources |
563 | #include "afxres.rc" // Standard components | 563 | #include "afxres.rc" // Standard components |
564 | #endif | 564 | #endif |
565 | ///////////////////////////////////////////////////////////////////////////// | 565 | ///////////////////////////////////////////////////////////////////////////// |
566 | #endif // not APSTUDIO_INVOKED | 566 | #endif // not APSTUDIO_INVOKED |
567 | 567 | ||
diff --git a/help/dipstick.rtf b/help/dipstick.rtf index c91b3f4..839d331 100644 --- a/help/dipstick.rtf +++ b/help/dipstick.rtf | |||
@@ -1,97 +1,99 @@ | |||
1 | {\rtf1\ansi | 1 | {\rtf1\ansi |
2 | @{\footnote | 2 | @{\footnote |
3 | THIS FILE WAS AUTOMATICALLY GENERATED FROM XML DOCUMENT. | 3 | THIS FILE WAS AUTOMATICALLY GENERATED FROM XML DOCUMENT. |
4 | DO NOT MODIFY THIS FILE DIRECTLY. EDIT XML DOCUMENT INSTEAD | 4 | DO NOT MODIFY THIS FILE DIRECTLY. EDIT XML DOCUMENT INSTEAD |
5 | } | 5 | } |
6 | {\fonttbl{\f0\froman Times New Roman;}{\f1\fswiss Arial;}{\f3\froman Symbol;}}{\colortbl; | 6 | {\fonttbl{\f0\froman Times New Roman;}{\f1\fswiss Arial;}{\f3\froman Symbol;}}{\colortbl; |
7 | \red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0; | 7 | \red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0; |
8 | \red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255; | 8 | \red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255; |
9 | \red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128; | 9 | \red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128; |
10 | \red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;} | 10 | \red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;} |
11 | 11 | ||
12 | \pard\plain\keepn | 12 | \pard\plain\keepn |
13 | #{\footnote About} | 13 | #{\footnote About} |
14 | ${\footnote About Dipstick} | 14 | ${\footnote About Dipstick} |
15 | K{\footnote about} | 15 | K{\footnote about} |
16 | { \f1\fs18\b\sb120 About {\b Dipstick}} | 16 | { \f1\fs18\b\sb120 About {\b Dipstick}} |
17 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 {\b Dipstick} is our award-winning freeware that allows you to evaluate {\i mirror sites} to figure out which one has currently the least traffic. | 17 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 {\b Dipstick} is our award-winning freeware that allows you to evaluate {\i mirror sites} to figure out which one has currently the least traffic. |
18 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 | 18 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 |
19 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 {\b {\i Enjoy!}} | 19 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 {\b {\i Enjoy!}} |
20 | { | 20 | { |
21 | \par\pard\plain\sb360\sa120 \f1\fs16 Copyright (c) 1996-2004 {\uldb\cf0 Klever Group (http://www.klever.net/)}{\v %!ExecFile("http://www.klever.net/")} | 21 | \par\pard\plain\sb360\sa120 \f1\fs16 Copyright (c) 1996-2005 {\uldb\cf0 Klever Group (http://www.klever.net/)}{\v %!ExecFile("http://www.klever.net/")} |
22 | \par\qj\sb120\sa120Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | 22 | \par\qj\sb120\sa120Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
23 | \par The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | 23 | \par The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
24 | \par \sa360 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 24 | \par \sa360 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
25 | } | 25 | } |
26 | \par \sa0\sb120\ql \f1\fs16 Author: {\b\uldb\cf11 Michael Krelin ({\i hacker@klever.net})}{\v %!ExecFile("mailto:hacker@klever.net")} | 26 | \par \sa0\sb120\ql \f1\fs16 Author: {\b\uldb\cf11 Michael Krelin ({\i hacker@klever.net})}{\v %!ExecFile("mailto:hacker@klever.net")} |
27 | \par \sa0\sb0 Fan mail send to {\i\uldb gefilte@klever.net}{\v %!ExecFile("mailto:gefilte@klever.net")} | 27 | \par \sa0\sb0 Fan mail send to {\i\uldb gefilte@klever.net}{\v %!ExecFile("mailto:gefilte@klever.net")} |
28 | \page | 28 | \page |
29 | 29 | ||
30 | \pard\plain\keepn | 30 | \pard\plain\keepn |
31 | #{\footnote News} | 31 | #{\footnote News} |
32 | ${\footnote What's new} | 32 | ${\footnote What's new} |
33 | { \f1\fs18\b\sb120 What's New} | 33 | { \f1\fs18\b\sb120 What's New} |
34 | \par\pard\plain\f1\fs24\qc\cf2\b 3.1 - July 26th, 2005 | ||
35 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Ability to parse multiple URLs from plaintext selection | ||
34 | \par\pard\plain\f1\fs24\qc\cf2\b 3.0 - July 11th, 2004 | 36 | \par\pard\plain\f1\fs24\qc\cf2\b 3.0 - July 11th, 2004 |
35 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Change of {\uldb license}{\v About} and opening the source. | 37 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Change of {\uldb license}{\v About} and opening the source. |
36 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Minor cosmetic changes | 38 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Minor cosmetic changes |
37 | \par\pard\plain\f1\fs24\qc\cf2\b 2.52 - June 3rd, 1998 | 39 | \par\pard\plain\f1\fs24\qc\cf2\b 2.52 - June 3rd, 1998 |
38 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Now works properly with Winsock 2 for Windows95. Also may start working with non-Microsoft TCP/IP stacks. | 40 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Now works properly with Winsock 2 for Windows95. Also may start working with non-Microsoft TCP/IP stacks. |
39 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Fixed bug that caused GPF when removing all URLs after testing is over and you picked the URL of your choice. | 41 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Fixed bug that caused GPF when removing all URLs after testing is over and you picked the URL of your choice. |
40 | \par\pard\plain\f1\fs24\qc\cf2\b 2.5 - December 30th, 1997 | 42 | \par\pard\plain\f1\fs24\qc\cf2\b 2.5 - December 30th, 1997 |
41 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Ability to export/import sets of URLs. | 43 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Ability to export/import sets of URLs. |
42 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Copy URL menu command in the Main Window and button in the Best URL window. | 44 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Copy URL menu command in the Main Window and button in the Best URL window. |
43 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Multiple URLs dragging or pasting. Works only for MSIE4 browser. | 45 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Multiple URLs dragging or pasting. Works only for MSIE4 browser. |
44 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Annoying ToolTips removed. | 46 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Annoying ToolTips removed. |
45 | \par\pard\plain\f1\fs24\qc\cf2\b 2.00 - July 1st, 1997 | 47 | \par\pard\plain\f1\fs24\qc\cf2\b 2.00 - July 1st, 1997 |
46 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Drag'n'drop source added to the Best URL window. | 48 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Drag'n'drop source added to the Best URL window. |
47 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Completed/Total URLs counter added to {\b Dipstick} drag pad. | 49 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Completed/Total URLs counter added to {\b Dipstick} drag pad. |
48 | \par\pard\plain\fi0\li0\f1\fs18 \bullet You may now drag'n'drop URLs from main {\b Dipstick} dialog window. | 50 | \par\pard\plain\fi0\li0\f1\fs18 \bullet You may now drag'n'drop URLs from main {\b Dipstick} dialog window. |
49 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Added ability to paste URLs into {\b Dipstick} instead of dropping. | 51 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Added ability to paste URLs into {\b Dipstick} instead of dropping. |
50 | \par\pard\plain\fi0\li0\f1\fs18 \bullet New install program now lets you install {\b Dipstick} to the location of your choice. | 52 | \par\pard\plain\fi0\li0\f1\fs18 \bullet New install program now lets you install {\b Dipstick} to the location of your choice. |
51 | \par\pard\plain\f1\fs24\qc\cf2\b 1.01 - March 13th, 1997 | 53 | \par\pard\plain\f1\fs24\qc\cf2\b 1.01 - March 13th, 1997 |
52 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Resizable main {\b Dipstick} dialog window. | 54 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Resizable main {\b Dipstick} dialog window. |
53 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Come up with the best URL automatically. | 55 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Come up with the best URL automatically. |
54 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Workaround for redir.dll | 56 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Workaround for redir.dll |
55 | \par\pard\plain\fi0\li0\f1\fs18 \bullet No more {\b\cf6 MSIE} 3.0 requirement. | 57 | \par\pard\plain\fi0\li0\f1\fs18 \bullet No more {\b\cf6 MSIE} 3.0 requirement. |
56 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Remembers window positions and size as well as columns widths. | 58 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Remembers window positions and size as well as columns widths. |
57 | \par\pard\plain\fi0\li0\f1\fs18 \bullet When manually adding locations - you may specify the URL, not host name as it was before (I still wonder how it came to my mind) | 59 | \par\pard\plain\fi0\li0\f1\fs18 \bullet When manually adding locations - you may specify the URL, not host name as it was before (I still wonder how it came to my mind) |
58 | \page | 60 | \page |
59 | 61 | ||
60 | \pard\plain\keepn | 62 | \pard\plain\keepn |
61 | #{\footnote Using} | 63 | #{\footnote Using} |
62 | ${\footnote Using Dipstick} | 64 | ${\footnote Using Dipstick} |
63 | { \f1\fs18\b\sb120 Using {\b Dipstick}} | 65 | { \f1\fs18\b\sb120 Using {\b Dipstick}} |
64 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 To use {\b Dipstick}, please follow these steps:\pard | 66 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 To use {\b Dipstick}, please follow these steps:\pard |
65 | \par \fi0\li0 \bullet Load the page that contains links into your {\b\cf6 MSIE} or {\b\cf6 Netscape} browser. | 67 | \par \fi0\li0 \bullet Load the page that contains links into your {\b\cf6 MSIE} or {\b\cf6 Netscape} browser. |
66 | \par \fi0\li0 \bullet Drag'n'drop desired links to {\b Dipstick} window. | 68 | \par \fi0\li0 \bullet Drag'n'drop desired links to {\b Dipstick} window. |
67 | \par \fi0\li0 \bullet {#{\footnote UsingManual}}(Optional) you can also manually add as many links as you want by selecting {\b Manual Ping} option. You can enter {\i url}, {\i hostname} or {\i IP address} there. | 69 | \par \fi0\li0 \bullet {#{\footnote UsingManual}}(Optional) you can also manually add as many links as you want by selecting {\b Manual Ping} option. You can enter {\i url}, {\i hostname} or {\i IP address} there. |
68 | \par \fi0\li0 \bullet You will see rain going thought {\b Dipstick} window. After the rain stops, {\b Dipstick} will show you results either by suggesting the best URL or by sorting results in a table (which can be viewed by clicking on {\b Dipstick} window). | 70 | \par \fi0\li0 \bullet You will see rain going thought {\b Dipstick} window. After the rain stops, {\b Dipstick} will show you results either by suggesting the best URL or by sorting results in a table (which can be viewed by clicking on {\b Dipstick} window). |
69 | \par \fi0\li0 \bullet After you are done, you can reping all selected URLs by clicking {\uldb {\b Reping All}}{\v MainWindowRA} button in {\b Dipstick} window.\pard | 71 | \par \fi0\li0 \bullet After you are done, you can reping all selected URLs by clicking {\uldb {\b Reping All}}{\v MainWindowRA} button in {\b Dipstick} window.\pard |
70 | \par\sa120\sb120\qj\f1\fs16 Small note for newbies (all others, please do not get mad): To drag'n'drop the URL, you need to move your mouse to the link on the web page, press and hold the select (usually - left) mouse button, and drag the mouse (with the selected URL to {\b Dipstick} window and then release mouse button. | 72 | \par\sa120\sb120\qj\f1\fs16 Small note for newbies (all others, please do not get mad): To drag'n'drop the URL, you need to move your mouse to the link on the web page, press and hold the select (usually - left) mouse button, and drag the mouse (with the selected URL to {\b Dipstick} window and then release mouse button. |
71 | \page | 73 | \page |
72 | 74 | ||
73 | \pard\plain\keepn | 75 | \pard\plain\keepn |
74 | #{\footnote MainWindow} | 76 | #{\footnote MainWindow} |
75 | ${\footnote Main Window} | 77 | ${\footnote Main Window} |
76 | { \f1\fs18\b\sb120 Main Window} | 78 | { \f1\fs18\b\sb120 Main Window} |
77 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 The main window consists of -\pard | 79 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 The main window consists of -\pard |
78 | \par \fi0\li0 \bullet {\b Brilliant ListView with the following columns:} | 80 | \par \fi0\li0 \bullet {\b Brilliant ListView with the following columns:} |
79 | \par \fi0\li0 \bullet Host Name - host name as it was specified in the URL or resolved from IP address. | 81 | \par \fi0\li0 \bullet Host Name - host name as it was specified in the URL or resolved from IP address. |
80 | \par \fi0\li0 \bullet Host IP address - host IP address as it was specified in the URL or resolved from host name. | 82 | \par \fi0\li0 \bullet Host IP address - host IP address as it was specified in the URL or resolved from host name. |
81 | \par \fi0\li0 \bullet Min RTT - Minimum Round Trip Time. {\b Dipstick} sends a few echo requests to remote host and calculates minimum, maximum, and average Round Trip Times. The less the better. | 83 | \par \fi0\li0 \bullet Min RTT - Minimum Round Trip Time. {\b Dipstick} sends a few echo requests to remote host and calculates minimum, maximum, and average Round Trip Times. The less the better. |
82 | \par \fi0\li0 \bullet Avg RTT - Average Round Trip Time. About the same meaning as in Min RTT, but this is the average one. The less the better. By default locations are sorted by Avg RTT. | 84 | \par \fi0\li0 \bullet Avg RTT - Average Round Trip Time. About the same meaning as in Min RTT, but this is the average one. The less the better. By default locations are sorted by Avg RTT. |
83 | \par \fi0\li0 \bullet Max RTT - Maximum Round Trip Time. About the same meaning as in Min RTT and Avg RTT, but this is maximum one. The less the better. | 85 | \par \fi0\li0 \bullet Max RTT - Maximum Round Trip Time. About the same meaning as in Min RTT and Avg RTT, but this is maximum one. The less the better. |
84 | \par \fi0\li0 \bullet Pktloss - Percentage of the requests lost somewhere in the net. The less the better. | 86 | \par \fi0\li0 \bullet Pktloss - Percentage of the requests lost somewhere in the net. The less the better. |
85 | \par \fi0\li0 \bullet {\b Buttons:} | 87 | \par \fi0\li0 \bullet {\b Buttons:} |
86 | \par \fi0\li0 \bullet {#{\footnote MainWindowMP}}Manual Ping - lets you add location manually (usually you just drag'n'drop locations into {\b Dipstick} window. | 88 | \par \fi0\li0 \bullet {#{\footnote MainWindowMP}}Manual Ping - lets you add location manually (usually you just drag'n'drop locations into {\b Dipstick} window. |
87 | \par \fi0\li0 \bullet Reping - Test selected location again. | 89 | \par \fi0\li0 \bullet Reping - Test selected location again. |
88 | \par \fi0\li0 \bullet {#{\footnote MainWindowRA}}Reping All - Test again all locations in the list. | 90 | \par \fi0\li0 \bullet {#{\footnote MainWindowRA}}Reping All - Test again all locations in the list. |
89 | \par \fi0\li0 \bullet Remove - Remove selected location from the list. | 91 | \par \fi0\li0 \bullet Remove - Remove selected location from the list. |
90 | \par \fi0\li0 \bullet Remove All - Remove all locations from the list. | 92 | \par \fi0\li0 \bullet Remove All - Remove all locations from the list. |
91 | \par \fi0\li0 \bullet Help - I think you have a clue on what this button does. | 93 | \par \fi0\li0 \bullet Help - I think you have a clue on what this button does. |
92 | \par \fi0\li0 \bullet Options - Set {\b Dipstick} options | 94 | \par \fi0\li0 \bullet Options - Set {\b Dipstick} options |
93 | \par \fi0\li0 \bullet Exit Dipstick - Close {\b Dipstick} program\pard | 95 | \par \fi0\li0 \bullet Exit Dipstick - Close {\b Dipstick} program\pard |
94 | \page | 96 | \page |
95 | 97 | ||
96 | \pard\plain\keepn | 98 | \pard\plain\keepn |
97 | #{\footnote Options} | 99 | #{\footnote Options} |
diff --git a/help/dipstick.xml b/help/dipstick.xml index 4754e47..8ed0383 100644 --- a/help/dipstick.xml +++ b/help/dipstick.xml | |||
@@ -1,76 +1,79 @@ | |||
1 | <?xml version="1.0"?> | 1 | <?xml version="1.0"?> |
2 | <winhelp> | 2 | <winhelp> |
3 | <topic id="About" title="About Dipstick" keywords="about"> | 3 | <topic id="About" title="About Dipstick" keywords="about"> |
4 | <heading scroll="no">About <kin>Dipstick</kin></heading> | 4 | <heading scroll="no">About <kin>Dipstick</kin></heading> |
5 | <p><kin>Dipstick</kin> is our award-winning freeware that allows you to evaluate <term>mirror sites</term> to figure out which one has currently the least traffic.</p> | 5 | <p><kin>Dipstick</kin> is our award-winning freeware that allows you to evaluate <term>mirror sites</term> to figure out which one has currently the least traffic.</p> |
6 | <p/> | 6 | <p/> |
7 | <p><b><i>Enjoy!</i></b></p> | 7 | <p><b><i>Enjoy!</i></b></p> |
8 | <license years="1996-2004"/> | 8 | <license years="1996-2005"/> |
9 | <credits/> | 9 | <credits/> |
10 | </topic> | 10 | </topic> |
11 | <topic id="News" title="What's new"> | 11 | <topic id="News" title="What's new"> |
12 | <heading scroll="no">What's New</heading> | 12 | <heading scroll="no">What's New</heading> |
13 | <newsfor version="3.1" date="July 26th, 2005"> | ||
14 | <ni>Ability to parse multiple URLs from plaintext selection</ni> | ||
15 | </newsfor> | ||
13 | <newsfor version="3.0" date="July 11th, 2004"> | 16 | <newsfor version="3.0" date="July 11th, 2004"> |
14 | <ni>Change of <a href="#About">license</a> and opening the source.</ni> | 17 | <ni>Change of <a href="#About">license</a> and opening the source.</ni> |
15 | <ni>Minor cosmetic changes</ni> | 18 | <ni>Minor cosmetic changes</ni> |
16 | </newsfor> | 19 | </newsfor> |
17 | <newsfor version="2.52" date="June 3rd, 1998"> | 20 | <newsfor version="2.52" date="June 3rd, 1998"> |
18 | <ni>Now works properly with Winsock 2 for Windows95. Also may start working with non-Microsoft TCP/IP stacks.</ni> | 21 | <ni>Now works properly with Winsock 2 for Windows95. Also may start working with non-Microsoft TCP/IP stacks.</ni> |
19 | <ni>Fixed bug that caused GPF when removing all URLs after testing is over and you picked the URL of your choice.</ni> | 22 | <ni>Fixed bug that caused GPF when removing all URLs after testing is over and you picked the URL of your choice.</ni> |
20 | </newsfor> | 23 | </newsfor> |
21 | <newsfor version="2.5" date="December 30th, 1997"> | 24 | <newsfor version="2.5" date="December 30th, 1997"> |
22 | <ni>Ability to export/import sets of URLs.</ni> | 25 | <ni>Ability to export/import sets of URLs.</ni> |
23 | <ni>Copy URL menu command in the Main Window and button in the Best URL window.</ni> | 26 | <ni>Copy URL menu command in the Main Window and button in the Best URL window.</ni> |
24 | <ni>Multiple URLs dragging or pasting. Works only for MSIE4 browser.</ni> | 27 | <ni>Multiple URLs dragging or pasting. Works only for MSIE4 browser.</ni> |
25 | <ni>Annoying ToolTips removed.</ni> | 28 | <ni>Annoying ToolTips removed.</ni> |
26 | </newsfor> | 29 | </newsfor> |
27 | <newsfor version="2.00" date="July 1st, 1997"> | 30 | <newsfor version="2.00" date="July 1st, 1997"> |
28 | <ni>Drag'n'drop source added to the Best URL window.</ni> | 31 | <ni>Drag'n'drop source added to the Best URL window.</ni> |
29 | <ni>Completed/Total URLs counter added to <kin>Dipstick</kin> drag pad.</ni> | 32 | <ni>Completed/Total URLs counter added to <kin>Dipstick</kin> drag pad.</ni> |
30 | <ni>You may now drag'n'drop URLs from main <kin>Dipstick</kin> dialog window.</ni> | 33 | <ni>You may now drag'n'drop URLs from main <kin>Dipstick</kin> dialog window.</ni> |
31 | <ni>Added ability to paste URLs into <kin>Dipstick</kin> instead of dropping.</ni> | 34 | <ni>Added ability to paste URLs into <kin>Dipstick</kin> instead of dropping.</ni> |
32 | <ni>New install program now lets you install <kin>Dipstick</kin> to the location of your choice.</ni> | 35 | <ni>New install program now lets you install <kin>Dipstick</kin> to the location of your choice.</ni> |
33 | </newsfor> | 36 | </newsfor> |
34 | <newsfor version="1.01" date="March 13th, 1997"> | 37 | <newsfor version="1.01" date="March 13th, 1997"> |
35 | <ni>Resizable main <kin>Dipstick</kin> dialog window.</ni> | 38 | <ni>Resizable main <kin>Dipstick</kin> dialog window.</ni> |
36 | <ni>Come up with the best URL automatically.</ni> | 39 | <ni>Come up with the best URL automatically.</ni> |
37 | <ni>Workaround for redir.dll</ni> | 40 | <ni>Workaround for redir.dll</ni> |
38 | <ni>No more <product>MSIE</product> 3.0 requirement.</ni> | 41 | <ni>No more <product>MSIE</product> 3.0 requirement.</ni> |
39 | <ni>Remembers window positions and size as well as columns widths.</ni> | 42 | <ni>Remembers window positions and size as well as columns widths.</ni> |
40 | <ni>When manually adding locations - you may specify the URL, not host name as it was before (I still wonder how it came to my mind)</ni> | 43 | <ni>When manually adding locations - you may specify the URL, not host name as it was before (I still wonder how it came to my mind)</ni> |
41 | </newsfor> | 44 | </newsfor> |
42 | </topic> | 45 | </topic> |
43 | <topic id="Using" title="Using Dipstick"> | 46 | <topic id="Using" title="Using Dipstick"> |
44 | <heading scroll="no">Using <kin>Dipstick</kin></heading> | 47 | <heading scroll="no">Using <kin>Dipstick</kin></heading> |
45 | <p>To use <kin>Dipstick</kin>, please follow these steps:</p> | 48 | <p>To use <kin>Dipstick</kin>, please follow these steps:</p> |
46 | <ul> | 49 | <ul> |
47 | <li>Load the page that contains links into your <product>MSIE</product> or <product>Netscape</product> browser.</li> | 50 | <li>Load the page that contains links into your <product>MSIE</product> or <product>Netscape</product> browser.</li> |
48 | <li>Drag'n'drop desired links to <kin>Dipstick</kin> window.</li> | 51 | <li>Drag'n'drop desired links to <kin>Dipstick</kin> window.</li> |
49 | <li><a name="UsingManual"/>(Optional) you can also manually add as many links as you want by selecting <b>Manual Ping</b> option. You can enter <term>url</term>, <term>hostname</term> or <term>IP address</term> there.</li> | 52 | <li><a name="UsingManual"/>(Optional) you can also manually add as many links as you want by selecting <b>Manual Ping</b> option. You can enter <term>url</term>, <term>hostname</term> or <term>IP address</term> there.</li> |
50 | <li>You will see rain going thought <kin>Dipstick</kin> window. After the rain stops, <kin>Dipstick</kin> will show you results either by suggesting the best URL or by sorting results in a table (which can be viewed by clicking on <kin>Dipstick</kin> window).</li> | 53 | <li>You will see rain going thought <kin>Dipstick</kin> window. After the rain stops, <kin>Dipstick</kin> will show you results either by suggesting the best URL or by sorting results in a table (which can be viewed by clicking on <kin>Dipstick</kin> window).</li> |
51 | <li>After you are done, you can reping all selected URLs by clicking <a href="#MainWindowRA"><b>Reping All</b></a> button in <kin>Dipstick</kin> window.</li> | 54 | <li>After you are done, you can reping all selected URLs by clicking <a href="#MainWindowRA"><b>Reping All</b></a> button in <kin>Dipstick</kin> window.</li> |
52 | </ul> | 55 | </ul> |
53 | <note>Small note for newbies (all others, please do not get mad): To drag'n'drop the URL, you need to move your mouse to the link on the web page, press and hold the select (usually - left) mouse button, and drag the mouse (with the selected URL to <kin>Dipstick</kin> window and then release mouse button.</note> | 56 | <note>Small note for newbies (all others, please do not get mad): To drag'n'drop the URL, you need to move your mouse to the link on the web page, press and hold the select (usually - left) mouse button, and drag the mouse (with the selected URL to <kin>Dipstick</kin> window and then release mouse button.</note> |
54 | </topic> | 57 | </topic> |
55 | <topic id="MainWindow" title="Main Window"> | 58 | <topic id="MainWindow" title="Main Window"> |
56 | <heading scroll="no">Main Window</heading> | 59 | <heading scroll="no">Main Window</heading> |
57 | <p>The main window consists of -</p> | 60 | <p>The main window consists of -</p> |
58 | <ul> | 61 | <ul> |
59 | <li><b>Brilliant ListView with the following columns:</b></li> | 62 | <li><b>Brilliant ListView with the following columns:</b></li> |
60 | <li>Host Name - host name as it was specified in the URL or resolved from IP address.</li> | 63 | <li>Host Name - host name as it was specified in the URL or resolved from IP address.</li> |
61 | <li>Host IP address - host IP address as it was specified in the URL or resolved from host name.</li> | 64 | <li>Host IP address - host IP address as it was specified in the URL or resolved from host name.</li> |
62 | <li>Min RTT - Minimum Round Trip Time. <kin>Dipstick</kin> sends a few echo requests to remote host and calculates minimum, maximum, and average Round Trip Times. The less the better.</li> | 65 | <li>Min RTT - Minimum Round Trip Time. <kin>Dipstick</kin> sends a few echo requests to remote host and calculates minimum, maximum, and average Round Trip Times. The less the better.</li> |
63 | <li>Avg RTT - Average Round Trip Time. About the same meaning as in Min RTT, but this is the average one. The less the better. By default locations are sorted by Avg RTT.</li> | 66 | <li>Avg RTT - Average Round Trip Time. About the same meaning as in Min RTT, but this is the average one. The less the better. By default locations are sorted by Avg RTT.</li> |
64 | <li>Max RTT - Maximum Round Trip Time. About the same meaning as in Min RTT and Avg RTT, but this is maximum one. The less the better.</li> | 67 | <li>Max RTT - Maximum Round Trip Time. About the same meaning as in Min RTT and Avg RTT, but this is maximum one. The less the better.</li> |
65 | <li>Pktloss - Percentage of the requests lost somewhere in the net. The less the better.</li> | 68 | <li>Pktloss - Percentage of the requests lost somewhere in the net. The less the better.</li> |
66 | <li><b>Buttons:</b></li> | 69 | <li><b>Buttons:</b></li> |
67 | <li><a name="MainWindowMP"/>Manual Ping - lets you add location manually (usually you just drag'n'drop locations into <kin>Dipstick</kin> window.</li> | 70 | <li><a name="MainWindowMP"/>Manual Ping - lets you add location manually (usually you just drag'n'drop locations into <kin>Dipstick</kin> window.</li> |
68 | <li>Reping - Test selected location again.</li> | 71 | <li>Reping - Test selected location again.</li> |
69 | <li><a name="MainWindowRA"/>Reping All - Test again all locations in the list.</li> | 72 | <li><a name="MainWindowRA"/>Reping All - Test again all locations in the list.</li> |
70 | <li>Remove - Remove selected location from the list.</li> | 73 | <li>Remove - Remove selected location from the list.</li> |
71 | <li>Remove All - Remove all locations from the list.</li> | 74 | <li>Remove All - Remove all locations from the list.</li> |
72 | <li>Help - I think you have a clue on what this button does.</li> | 75 | <li>Help - I think you have a clue on what this button does.</li> |
73 | <li>Options - Set <kin>Dipstick</kin> options</li> | 76 | <li>Options - Set <kin>Dipstick</kin> options</li> |
74 | <li>Exit Dipstick - Close <kin>Dipstick</kin> program</li> | 77 | <li>Exit Dipstick - Close <kin>Dipstick</kin> program</li> |
75 | </ul> | 78 | </ul> |
76 | </topic> | 79 | </topic> |
diff --git a/install/install.cpp b/install/install.cpp index 296f3a3..1d91bc2 100644 --- a/install/install.cpp +++ b/install/install.cpp | |||
@@ -1,68 +1,68 @@ | |||
1 | #include "resource.h" | 1 | #include "resource.h" |
2 | #include "../shared-code/install.h" | 2 | #include "../shared-code/install.h" |
3 | 3 | ||
4 | #define KINNAME "Dipstick" | 4 | #define KINNAME "Dipstick" |
5 | #define KINSHORT KINNAME | 5 | #define KINSHORT KINNAME |
6 | #define VERSION "3.0" | 6 | #define VERSION "3.1-trunk" |
7 | 7 | ||
8 | BOOL Install(void) | 8 | BOOL Install(void) |
9 | { | 9 | { |
10 | STRING dPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group",KINSHORT "Path"); | 10 | STRING dPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group",KINSHORT "Path"); |
11 | STRING kPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group","KINPath"); | 11 | STRING kPath = strFETCH_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group","KINPath"); |
12 | LPCSTR qPath = ((LPCSTR)dPath)?(LPCSTR)dPath:(((LPCSTR)kPath)?(LPSTR)kPath:"C:\\Program Files\\Klever\\Nothings"); | 12 | LPCSTR qPath = ((LPCSTR)dPath)?(LPCSTR)dPath:(((LPCSTR)kPath)?(LPSTR)kPath:"C:\\Program Files\\Klever\\Nothings"); |
13 | STRING path = REQUESTPATH(" " KINNAME " " VERSION,"\nEnter destination path:",qPath); | 13 | STRING path = REQUESTPATH(" " KINNAME " " VERSION,"\nEnter destination path:",qPath); |
14 | if(!path) | 14 | if(!path) |
15 | return NULL; | 15 | return NULL; |
16 | 16 | ||
17 | #ifdefK_ANNED | 17 | #ifdefK_ANNED |
18 | STRING sysDir(_MAX_PATH); | 18 | STRING sysDir(_MAX_PATH); |
19 | GetSystemDirectory(sysDir,_MAX_PATH); | 19 | GetSystemDirectory(sysDir,_MAX_PATH); |
20 | INSTALLFILE("mfc42.dl_",sysDir,"mfc42.dll"); | 20 | INSTALLFILE("mfc42.dl_",sysDir,"mfc42.dll"); |
21 | #endif | 21 | #endif |
22 | 22 | ||
23 | MAKE_PATH(path); | 23 | MAKE_PATH(path); |
24 | STRING shortPath = GET_SHORT_PATH(path); | 24 | STRING shortPath = GET_SHORT_PATH(path); |
25 | if(!shortPath){ | 25 | if(!shortPath){ |
26 | MessageBox(NULL,"Failed to install " KINNAME " " VERSION " in specified directory",NULL,MB_ICONERROR|MB_OK); | 26 | MessageBox(NULL,"Failed to install " KINNAME " " VERSION " in specified directory",NULL,MB_ICONERROR|MB_OK); |
27 | return FALSE; | 27 | return FALSE; |
28 | } | 28 | } |
29 | 29 | ||
30 | if(!( | 30 | if(!( |
31 | INSTALLFILE("dipstick.ex_",path,"dipstick.exe") && | 31 | INSTALLFILE("dipstick.ex_",path,"dipstick.exe") && |
32 | INSTALLFILE("dipstick.hl_",path,"dipstick.hlp") && | 32 | INSTALLFILE("dipstick.hl_",path,"dipstick.hlp") && |
33 | INSTALLFILE("dipstick.cn_",path,"dipstick.cnt") | 33 | INSTALLFILE("dipstick.cn_",path,"dipstick.cnt") |
34 | )){ | 34 | )){ |
35 | MessageBox(NULL,"Failed to install " KINNAME " " VERSION " in specified directory",NULL,MB_ICONERROR|MB_OK); | 35 | MessageBox(NULL,"Failed to install " KINNAME " " VERSION " in specified directory",NULL,MB_ICONERROR|MB_OK); |
36 | return FALSE; | 36 | return FALSE; |
37 | } | 37 | } |
38 | ADDMENU("Klever Group",KINNAME,path,"dipstick.exe"); | 38 | ADDMENU("Klever Group",KINNAME,path,"dipstick.exe"); |
39 | 39 | ||
40 | strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group",KINSHORT "Path",path); | 40 | strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group",KINSHORT "Path",path); |
41 | strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group","KINPath",path); | 41 | strSET_REG_KEY(HKEY_LOCAL_MACHINE,"Software\\Klever Group","KINPath",path); |
42 | 42 | ||
43 | FILE* inf=CREATE_INF_FILE(path,KINSHORT ".INF"); | 43 | FILE* inf=CREATE_INF_FILE(path,KINSHORT ".INF"); |
44 | if(!inf){ | 44 | if(!inf){ |
45 | MessageBox(NULL,"Failed to install " KINNAME " " VERSION,NULL,MB_ICONERROR|MB_OK); | 45 | MessageBox(NULL,"Failed to install " KINNAME " " VERSION,NULL,MB_ICONERROR|MB_OK); |
46 | return FALSE; | 46 | return FALSE; |
47 | } | 47 | } |
48 | INF_FILE_HEADER(inf); | 48 | INF_FILE_HEADER(inf); |
49 | INF_FILE_SECTION(inf,"Uninstall"); | 49 | INF_FILE_SECTION(inf,"Uninstall"); |
50 | fprintf(inf,"AddReg=kFiles\nDelReg=kReg\nUpdateInis=kMenu\n"); | 50 | fprintf(inf,"AddReg=kFiles\nDelReg=kReg\nUpdateInis=kMenu\n"); |
51 | INF_FILE_SECTION(inf,"kFiles"); | 51 | INF_FILE_SECTION(inf,"kFiles"); |
52 | INF_REMOVE_ROOT(inf,KINSHORT "Files",path); | 52 | INF_REMOVE_ROOT(inf,KINSHORT "Files",path); |
53 | INF_REMOVE_FILE(inf,KINSHORT "Files","dipstick.exe"); | 53 | INF_REMOVE_FILE(inf,KINSHORT "Files","dipstick.exe"); |
54 | INF_REMOVE_HELP_FILE(inf,KINSHORT "Files","dipstick"); | 54 | INF_REMOVE_HELP_FILE(inf,KINSHORT "Files","dipstick"); |
55 | INF_REMOVE_FILE(inf,KINSHORT "Files",KINSHORT ".INF"); | 55 | INF_REMOVE_FILE(inf,KINSHORT "Files",KINSHORT ".INF"); |
56 | INF_FILE_SECTION(inf,"kReg"); | 56 | INF_FILE_SECTION(inf,"kReg"); |
57 | INF_UNINSTALL_REG(inf,KINSHORT); | 57 | INF_UNINSTALL_REG(inf,KINSHORT); |
58 | INF_FILE_SECTION(inf,"kMenu"); | 58 | INF_FILE_SECTION(inf,"kMenu"); |
59 | INF_MENU_GROUP(inf,1,"Klever Group"); | 59 | INF_MENU_GROUP(inf,1,"Klever Group"); |
60 | INF_MENU_ITEM(inf,1,KINNAME); | 60 | INF_MENU_ITEM(inf,1,KINNAME); |
61 | fclose(inf); | 61 | fclose(inf); |
62 | 62 | ||
63 | REG_UNINSTALL_COMMAND(KINSHORT,"Klever " KINNAME " " VERSION,shortPath,KINSHORT ".INF","Uninstall"); | 63 | REG_UNINSTALL_COMMAND(KINSHORT,"Klever " KINNAME " " VERSION,shortPath,KINSHORT ".INF","Uninstall"); |
64 | 64 | ||
65 | MessageBox(NULL,KINNAME " " VERSION " installed successfully, you may now run it from 'Programs/Klever Group' menu or remove it using Control Panel Add/Remove Programs applet."," Rejoice!",MB_ICONINFORMATION|MB_OK); | 65 | MessageBox(NULL,KINNAME " " VERSION " installed successfully, you may now run it from 'Programs/Klever Group' menu or remove it using Control Panel Add/Remove Programs applet."," Rejoice!",MB_ICONINFORMATION|MB_OK); |
66 | 66 | ||
67 | return TRUE; | 67 | return TRUE; |
68 | } | 68 | } |
diff --git a/install/install.rc b/install/install.rc index 016c554..2bdee9c 100644 --- a/install/install.rc +++ b/install/install.rc | |||
@@ -70,113 +70,113 @@ BEGIN | |||
70 | "IDD_INSTALLING$(FALSE)", DIALOG | 70 | "IDD_INSTALLING$(FALSE)", DIALOG |
71 | BEGIN | 71 | BEGIN |
72 | LEFTMARGIN, 7 | 72 | LEFTMARGIN, 7 |
73 | RIGHTMARGIN, 193 | 73 | RIGHTMARGIN, 193 |
74 | TOPMARGIN, 7 | 74 | TOPMARGIN, 7 |
75 | BOTTOMMARGIN, 67 | 75 | BOTTOMMARGIN, 67 |
76 | HORZGUIDE, 39 | 76 | HORZGUIDE, 39 |
77 | END | 77 | END |
78 | 78 | ||
79 | IDD_PATH, DIALOG | 79 | IDD_PATH, DIALOG |
80 | BEGIN | 80 | BEGIN |
81 | LEFTMARGIN, 7 | 81 | LEFTMARGIN, 7 |
82 | RIGHTMARGIN, 248 | 82 | RIGHTMARGIN, 248 |
83 | VERTGUIDE, 202 | 83 | VERTGUIDE, 202 |
84 | VERTGUIDE, 208 | 84 | VERTGUIDE, 208 |
85 | TOPMARGIN, 7 | 85 | TOPMARGIN, 7 |
86 | BOTTOMMARGIN, 66 | 86 | BOTTOMMARGIN, 66 |
87 | HORZGUIDE, 37 | 87 | HORZGUIDE, 37 |
88 | END | 88 | END |
89 | END | 89 | END |
90 | #endif // APSTUDIO_INVOKED | 90 | #endif // APSTUDIO_INVOKED |
91 | 91 | ||
92 | 92 | ||
93 | #ifdef APSTUDIO_INVOKED | 93 | #ifdef APSTUDIO_INVOKED |
94 | ///////////////////////////////////////////////////////////////////////////// | 94 | ///////////////////////////////////////////////////////////////////////////// |
95 | // | 95 | // |
96 | // TEXTINCLUDE | 96 | // TEXTINCLUDE |
97 | // | 97 | // |
98 | 98 | ||
99 | 1 TEXTINCLUDE DISCARDABLE | 99 | 1 TEXTINCLUDE DISCARDABLE |
100 | BEGIN | 100 | BEGIN |
101 | "resource.h\0" | 101 | "resource.h\0" |
102 | END | 102 | END |
103 | 103 | ||
104 | 2 TEXTINCLUDE DISCARDABLE | 104 | 2 TEXTINCLUDE DISCARDABLE |
105 | BEGIN | 105 | BEGIN |
106 | "#include ""afxres.h""\r\n" | 106 | "#include ""afxres.h""\r\n" |
107 | "\0" | 107 | "\0" |
108 | END | 108 | END |
109 | 109 | ||
110 | 3 TEXTINCLUDE DISCARDABLE | 110 | 3 TEXTINCLUDE DISCARDABLE |
111 | BEGIN | 111 | BEGIN |
112 | "#include ""custom.rch""\0" | 112 | "#include ""custom.rch""\0" |
113 | END | 113 | END |
114 | 114 | ||
115 | #endif // APSTUDIO_INVOKED | 115 | #endif // APSTUDIO_INVOKED |
116 | 116 | ||
117 | 117 | ||
118 | ///////////////////////////////////////////////////////////////////////////// | 118 | ///////////////////////////////////////////////////////////////////////////// |
119 | // | 119 | // |
120 | // Icon | 120 | // Icon |
121 | // | 121 | // |
122 | 122 | ||
123 | // Icon with lowest ID value placed first to ensure application icon | 123 | // Icon with lowest ID value placed first to ensure application icon |
124 | // remains consistent on all systems. | 124 | // remains consistent on all systems. |
125 | IDI_ICON ICON DISCARDABLE "../shared-data/install-icon.ico" | 125 | IDI_ICON ICON DISCARDABLE "../shared-data/install-icon.ico" |
126 | 126 | ||
127 | #ifndef _MAC | 127 | #ifndef _MAC |
128 | ///////////////////////////////////////////////////////////////////////////// | 128 | ///////////////////////////////////////////////////////////////////////////// |
129 | // | 129 | // |
130 | // Version | 130 | // Version |
131 | // | 131 | // |
132 | 132 | ||
133 | VS_VERSION_INFO VERSIONINFO | 133 | VS_VERSION_INFO VERSIONINFO |
134 | FILEVERSION 3,0,0,0 | 134 | FILEVERSION 3,1,0,0 |
135 | PRODUCTVERSION 3,0,0,0 | 135 | PRODUCTVERSION 3,1,0,0 |
136 | FILEFLAGSMASK 0x3fL | 136 | FILEFLAGSMASK 0x3fL |
137 | #ifdef _DEBUG | 137 | #ifdef _DEBUG |
138 | FILEFLAGS 0x1L | 138 | FILEFLAGS 0x1L |
139 | #else | 139 | #else |
140 | FILEFLAGS 0x0L | 140 | FILEFLAGS 0x0L |
141 | #endif | 141 | #endif |
142 | FILEOS 0x40004L | 142 | FILEOS 0x40004L |
143 | FILETYPE 0x1L | 143 | FILETYPE 0x1L |
144 | FILESUBTYPE 0x0L | 144 | FILESUBTYPE 0x0L |
145 | BEGIN | 145 | BEGIN |
146 | BLOCK "StringFileInfo" | 146 | BLOCK "StringFileInfo" |
147 | BEGIN | 147 | BEGIN |
148 | BLOCK "040904b0" | 148 | BLOCK "040904b0" |
149 | BEGIN | 149 | BEGIN |
150 | VALUE "CompanyName", "Klever Group (http://www.klever.net/)\0" | 150 | VALUE "CompanyName", "Klever Group (http://www.klever.net/)\0" |
151 | VALUE "FileDescription", "INSTALL: Dipstick, mirror locator\0" | 151 | VALUE "FileDescription", "INSTALL: Dipstick, mirror locator\0" |
152 | VALUE "FileVersion", "3, 0, 0, 0\0" | 152 | VALUE "FileVersion", "3, 1, 0, 0\0" |
153 | VALUE "InternalName", "INSTALL\0" | 153 | VALUE "InternalName", "INSTALL\0" |
154 | VALUE "LegalCopyright", "Copyright © 1996-2004 Klever Group (http://www.klever.net/)\0" | 154 | VALUE "LegalCopyright", "Copyright © 1996-2005 Klever Group (http://www.klever.net/)\0" |
155 | VALUE "LegalTrademarks", "Klever Group (http://www.klever.net/)\0" | 155 | VALUE "LegalTrademarks", "Klever Group (http://www.klever.net/)\0" |
156 | VALUE "OriginalFilename", "INSTALL.EXE\0" | 156 | VALUE "OriginalFilename", "INSTALL.EXE\0" |
157 | VALUE "ProductName", "Dipstick\0" | 157 | VALUE "ProductName", "Dipstick\0" |
158 | VALUE "ProductVersion", "3, 0, 0, 0\0" | 158 | VALUE "ProductVersion", "3, 1, 0, 0\0" |
159 | END | 159 | END |
160 | END | 160 | END |
161 | BLOCK "VarFileInfo" | 161 | BLOCK "VarFileInfo" |
162 | BEGIN | 162 | BEGIN |
163 | VALUE "Translation", 0x409, 1200 | 163 | VALUE "Translation", 0x409, 1200 |
164 | END | 164 | END |
165 | END | 165 | END |
166 | 166 | ||
167 | #endif // !_MAC | 167 | #endif // !_MAC |
168 | 168 | ||
169 | #endif // English (U.S.) resources | 169 | #endif // English (U.S.) resources |
170 | ///////////////////////////////////////////////////////////////////////////// | 170 | ///////////////////////////////////////////////////////////////////////////// |
171 | 171 | ||
172 | 172 | ||
173 | 173 | ||
174 | #ifndef APSTUDIO_INVOKED | 174 | #ifndef APSTUDIO_INVOKED |
175 | ///////////////////////////////////////////////////////////////////////////// | 175 | ///////////////////////////////////////////////////////////////////////////// |
176 | // | 176 | // |
177 | // Generated from the TEXTINCLUDE 3 resource. | 177 | // Generated from the TEXTINCLUDE 3 resource. |
178 | // | 178 | // |
179 | #include "custom.rch" | 179 | #include "custom.rch" |
180 | ///////////////////////////////////////////////////////////////////////////// | 180 | ///////////////////////////////////////////////////////////////////////////// |
181 | #endif // not APSTUDIO_INVOKED | 181 | #endif // not APSTUDIO_INVOKED |
182 | 182 | ||
@@ -1,85 +1,86 @@ | |||
1 | //{{NO_DEPENDENCIES}} | 1 | //{{NO_DEPENDENCIES}} |
2 | // Microsoft Developer Studio generated include file. | 2 | // Microsoft Developer Studio generated include file. |
3 | // Used by Dipstick.rc | 3 | // Used by Dipstick.rc |
4 | // | 4 | // |
5 | #define IDM_ABOUTBOX 0x0010 | 5 | #define IDM_ABOUTBOX 0x0010 |
6 | #define IDD_ABOUTBOX 100 | 6 | #define IDD_ABOUTBOX 100 |
7 | #define IDS_ABOUTBOX 101 | 7 | #define IDS_ABOUTBOX 101 |
8 | #define IDD_DIPSTICK_DIALOG 102 | 8 | #define IDD_DIPSTICK_DIALOG 102 |
9 | #define IDS_REGEX_NESTEDURL 102 | 9 | #define IDS_REGEX_NESTEDURL 102 |
10 | #define IDS_PS_FAILEDTOLOCK 102 | 10 | #define IDS_PS_FAILEDTOLOCK 102 |
11 | #define IDP_SOCKETS_INIT_FAILED 103 | 11 | #define IDP_SOCKETS_INIT_FAILED 103 |
12 | #define IDS_REGEX_CRACKHOST 104 | 12 | #define IDS_REGEX_CRACKHOST 104 |
13 | #define IDS_CSVEXT 104 | 13 | #define IDS_CSVEXT 104 |
14 | #define IDS_HN_BADURL 105 | 14 | #define IDS_HN_BADURL 105 |
15 | #define IDS_ABEST_CLEANUP 106 | 15 | #define IDS_ABEST_CLEANUP 106 |
16 | #define IDS_ABEST_NONEFOUND 107 | 16 | #define IDS_ABEST_NONEFOUND 107 |
17 | #define IDS_ABEST_TITLE 108 | 17 | #define IDS_ABEST_TITLE 108 |
18 | #define IDS_DRAGPAD_TITLE 109 | 18 | #define IDS_DRAGPAD_TITLE 109 |
19 | #define IDS_DRAGPAD_URLS 110 | 19 | #define IDS_DRAGPAD_URLS 110 |
20 | #define IDS_REGEX_HTMLURL 111 | 20 | #define IDS_REGEX_HTMLURL 111 |
21 | #define IDS_CSVFILTER 112 | 21 | #define IDS_CSVFILTER 112 |
22 | #define IDS_REGEX_URL 113 | ||
22 | #define IDR_MAINFRAME 128 | 23 | #define IDR_MAINFRAME 128 |
23 | #define IDD_DRAGPAD 129 | 24 | #define IDD_DRAGPAD 129 |
24 | #define IDR_DNDAVI 130 | 25 | #define IDR_DNDAVI 130 |
25 | #define IDD_OPTIONS 132 | 26 | #define IDD_OPTIONS 132 |
26 | #define IDR_MENU 133 | 27 | #define IDR_MENU 133 |
27 | #define IDD_MANUALHOST 134 | 28 | #define IDD_MANUALHOST 134 |
28 | #define IDD_PROPS 135 | 29 | #define IDD_PROPS 135 |
29 | #define IDI_PINGING 136 | 30 | #define IDI_PINGING 136 |
30 | #define IDI_PENDING 137 | 31 | #define IDI_PENDING 137 |
31 | #define IDI_COMPLETED 138 | 32 | #define IDI_COMPLETED 138 |
32 | #define IDI_UNREACHABLE 139 | 33 | #define IDI_UNREACHABLE 139 |
33 | #define IDB_DIABACK 140 | 34 | #define IDB_DIABACK 140 |
34 | #define IDD_AUTOBEST 141 | 35 | #define IDD_AUTOBEST 141 |
35 | #define IDW_BESTURL 142 | 36 | #define IDW_BESTURL 142 |
36 | #define IDR_DRAGAVI 143 | 37 | #define IDR_DRAGAVI 143 |
37 | #define IDD_URLS 145 | 38 | #define IDD_URLS 145 |
38 | #define IDC_HOSTLIST 1002 | 39 | #define IDC_HOSTLIST 1002 |
39 | #define IDC_DNDTARGET 1011 | 40 | #define IDC_DNDTARGET 1011 |
40 | #define IDC_OPTIONS 1013 | 41 | #define IDC_OPTIONS 1013 |
41 | #define IDC_NPINGS 1014 | 42 | #define IDC_NPINGS 1014 |
42 | #define IDC_PACKETSIZE 1015 | 43 | #define IDC_PACKETSIZE 1015 |
43 | #define IDC_TIMEOUT 1016 | 44 | #define IDC_TIMEOUT 1016 |
44 | #define IDC_INTERVAL 1017 | 45 | #define IDC_INTERVAL 1017 |
45 | #define IDC_KLEVERNET 1017 | 46 | #define IDC_KLEVERNET 1017 |
46 | #define IDC_MAXPINGS 1018 | 47 | #define IDC_MAXPINGS 1018 |
47 | #define IDC_MANUALPING 1019 | 48 | #define IDC_MANUALPING 1019 |
48 | #define IDC_HOST 1020 | 49 | #define IDC_HOST 1020 |
49 | #define IDC_REPING 1021 | 50 | #define IDC_REPING 1021 |
50 | #define IDC_IP 1021 | 51 | #define IDC_IP 1021 |
51 | #define IDC_REPINGALL 1022 | 52 | #define IDC_REPINGALL 1022 |
52 | #define IDC_CLEAR 1023 | 53 | #define IDC_CLEAR 1023 |
53 | #define IDC_EXIT 1024 | 54 | #define IDC_EXIT 1024 |
54 | #define IDC_REMOVE 1025 | 55 | #define IDC_REMOVE 1025 |
55 | #define IDC_URLCAPTION 1026 | 56 | #define IDC_URLCAPTION 1026 |
56 | #define IDC_URL 1027 | 57 | #define IDC_URL 1027 |
57 | #define IDC_HOSTCAPTION 1028 | 58 | #define IDC_HOSTCAPTION 1028 |
58 | #define IDC_IPCAPTION 1029 | 59 | #define IDC_IPCAPTION 1029 |
59 | #define IDC_TIMESCAPTION 1030 | 60 | #define IDC_TIMESCAPTION 1030 |
60 | #define IDC_TIMES 1031 | 61 | #define IDC_TIMES 1031 |
61 | #define IDC_LOSSCAPTION 1032 | 62 | #define IDC_LOSSCAPTION 1032 |
62 | #define IDC_LOSS 1033 | 63 | #define IDC_LOSS 1033 |
63 | #define IDC_STATUSCAPTION 1034 | 64 | #define IDC_STATUSCAPTION 1034 |
64 | #define IDC_STATUS 1035 | 65 | #define IDC_STATUS 1035 |
65 | #define IDC_OPENURL 1036 | 66 | #define IDC_OPENURL 1036 |
66 | #define IDC_STATE 1039 | 67 | #define IDC_STATE 1039 |
67 | #define IDC_MSWORKAROUND 1048 | 68 | #define IDC_MSWORKAROUND 1048 |
68 | #define IDC_SPINPINGS 1049 | 69 | #define IDC_SPINPINGS 1049 |
69 | #define IDC_SPINMAXPINGS 1050 | 70 | #define IDC_SPINMAXPINGS 1050 |
70 | #define IDC_SPINTIMEOUT 1051 | 71 | #define IDC_SPINTIMEOUT 1051 |
71 | #define IDC_RTT 1051 | 72 | #define IDC_RTT 1051 |
72 | #define IDC_SPINTERVAL 1052 | 73 | #define IDC_SPINTERVAL 1052 |
73 | #define IDC_PKTLOSS 1052 | 74 | #define IDC_PKTLOSS 1052 |
74 | #define IDC_SPINSIZE 1053 | 75 | #define IDC_SPINSIZE 1053 |
75 | #define IDC_PREV 1053 | 76 | #define IDC_PREV 1053 |
76 | #define IDC_AUTOBEST 1054 | 77 | #define IDC_AUTOBEST 1054 |
77 | #define IDC_NEXT 1054 | 78 | #define IDC_NEXT 1054 |
78 | #define IDC_SMARTADJUST 1055 | 79 | #define IDC_SMARTADJUST 1055 |
79 | #define IDC_DROPSOURCE 1056 | 80 | #define IDC_DROPSOURCE 1056 |
80 | #define IDC_URLS 1057 | 81 | #define IDC_URLS 1057 |
81 | #define IDC_DOADJUST 1058 | 82 | #define IDC_DOADJUST 1058 |
82 | #define IDC_ADJUSTINN 1059 | 83 | #define IDC_ADJUSTINN 1059 |
83 | #define IDC_IGNORELA 1060 | 84 | #define IDC_IGNORELA 1060 |
84 | #define IDC_COPYURL 1060 | 85 | #define IDC_COPYURL 1060 |
85 | #define IDC_ADVANCED 1061 | 86 | #define IDC_ADVANCED 1061 |
@@ -1,36 +1,37 @@ | |||
1 | // stdafx.h : include file for standard system include files, | 1 | // stdafx.h : include file for standard system include files, |
2 | // or project specific include files that are used frequently, but | 2 | // or project specific include files that are used frequently, but |
3 | // are changed infrequently | 3 | // are changed infrequently |
4 | // | 4 | // |
5 | 5 | ||
6 | #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers | 6 | #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers |
7 | 7 | ||
8 | #include <afxwin.h> // MFC core and standard components | 8 | #include <afxwin.h> // MFC core and standard components |
9 | #include <afxext.h> // MFC extensions | 9 | #include <afxext.h> // MFC extensions |
10 | #ifndef _AFX_NO_AFXCMN_SUPPORT | 10 | #ifndef _AFX_NO_AFXCMN_SUPPORT |
11 | #include <afxcmn.h> // MFC support for Windows 95 Common Controls | 11 | #include <afxcmn.h> // MFC support for Windows 95 Common Controls |
12 | #endif // _AFX_NO_AFXCMN_SUPPORT | 12 | #endif // _AFX_NO_AFXCMN_SUPPORT |
13 | 13 | ||
14 | #include <afxsock.h> // MFC socket extensions | 14 | #include <afxsock.h> // MFC socket extensions |
15 | 15 | ||
16 | #include <afxole.h> | 16 | #include <afxole.h> |
17 | #include <afxtempl.h> | 17 | #include <afxtempl.h> |
18 | #include <afxmt.h> | 18 | #include <afxmt.h> |
19 | 19 | ||
20 | #include <winsock.h> | 20 | #include <winsock.h> |
21 | #include "shared-code/ms_icmp.h" | 21 | #include "shared-code/ms_icmp.h" |
22 | #include "shared-code/ip_icmp.h" | 22 | #include "shared-code/ip_icmp.h" |
23 | 23 | ||
24 | #include "shared-code/kICMP.h" | 24 | #include "shared-code/kICMP.h" |
25 | #include "shared-code/RegEx.h" | 25 | #include "shared-code/RegEx.h" |
26 | #include "CrackURL.h" | 26 | #include "CrackURL.h" |
27 | 27 | ||
28 | enum{ | 28 | enum{ |
29 | WM_DNP_ACTIVITYCOUNT = WM_USER+16, | 29 | WM_DNP_ACTIVITYCOUNT = WM_USER+16, |
30 | WM_DNP_URLPING, | 30 | WM_DNP_URLPING, |
31 | WM_DNP_UPDATEHOSTDATA, | 31 | WM_DNP_UPDATEHOSTDATA, |
32 | WM_DNP_HTML | 32 | WM_DNP_HTML, |
33 | WM_DNP_URLSPING | ||
33 | }; | 34 | }; |
34 | #include <MMSystem.h> | 35 | #include <MMSystem.h> |
35 | // CG: The following line was added by the Windows Multimedia component. | 36 | // CG: The following line was added by the Windows Multimedia component. |
36 | #pragma comment(lib, "winmm.lib") | 37 | #pragma comment(lib, "winmm.lib") |