-
Notifications
You must be signed in to change notification settings - Fork 963
/
Help.cs
428 lines (376 loc) · 15.4 KB
/
Help.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#nullable disable
using System.Buffers;
using System.Diagnostics;
using System.Drawing;
using System.Globalization;
using System.Runtime.InteropServices;
using static Interop;
using static Interop.Hhctl;
namespace System.Windows.Forms
{
/// <summary>
/// Represents the HTML 1.0 Help engine.
/// </summary>
public static class Help
{
#if DEBUG
internal static readonly TraceSwitch WindowsFormsHelpTrace = new TraceSwitch("WindowsFormsHelpTrace", "Debug help system");
#else
internal static readonly TraceSwitch WindowsFormsHelpTrace;
#endif
private const int HTML10HELP = 2;
private const int HTMLFILE = 3;
/// <summary>
/// Displays
/// the contents of the Help file at located at a specified Url.
/// </summary>
public static void ShowHelp(Control parent, string url)
{
ShowHelp(parent, url, HelpNavigator.TableOfContents, null);
}
/// <summary>
/// Displays the contents of
/// the Help
/// file for a specific topic found at the specified Url.
/// </summary>
public static void ShowHelp(Control parent, string url, HelpNavigator navigator)
{
ShowHelp(parent, url, navigator, null);
}
/// <summary>
/// Displays the contents of
/// the Help
/// file for a specific topic found at the specified Url.
/// </summary>
public static void ShowHelp(Control parent, string url, string keyword)
{
if (keyword != null && keyword.Length != 0)
{
ShowHelp(parent, url, HelpNavigator.Topic, keyword);
}
else
{
ShowHelp(parent, url, HelpNavigator.TableOfContents, null);
}
}
/// <summary>
/// Displays the contents of the Help file located at
/// the Url
/// supplied by the
/// user.
/// </summary>
public static void ShowHelp(Control parent, string url, HelpNavigator command, object parameter)
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "Help:: ShowHelp");
switch (GetHelpFileType(url))
{
case HTML10HELP:
ShowHTML10Help(parent, url, command, parameter);
break;
case HTMLFILE:
ShowHTMLFile(parent, url, command, parameter);
break;
}
}
/// <summary>
/// Displays the index of the specified file.
/// </summary>
public static void ShowHelpIndex(Control parent, string url)
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "Help:: ShowHelpIndex");
ShowHelp(parent, url, HelpNavigator.Index, null);
}
/// <summary>
/// Displays a Help pop-up window.
/// </summary>
public unsafe static void ShowPopup(Control parent, string caption, Point location)
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "Help:: ShowPopup");
var pop = new HH_POPUPW
{
cbStruct = sizeof(HH_POPUPW),
pt = location,
rcMargins = new RECT(-1, -1, -1, -1), // Ignore
clrForeground = new COLORREF(unchecked((uint)-1)), // Ignore
clrBackground = SystemColors.Window
};
fixed (char* pszText = caption)
{
pop.pszText = pszText;
ShowHTML10Help(parent, null, HelpNavigator.Topic, pop);
}
}
/// <summary>
/// Displays HTML 1.0 Help with the specified parameters
/// </summary>
private unsafe static void ShowHTML10Help(Control parent, string url, HelpNavigator command, object param)
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "Help:: ShowHTML10Help:: " + url + ", " + command.ToString("G") + ", " + param);
// See if we can get a full path and file name and if that will
// resolve the out of memory condition with file names that include spaces.
// If we can't, though, we can't assume that the path's no good: it might be in
// the Windows help directory.
Uri file = null;
string pathAndFileName = url; //This is our best guess at the path yet.
file = Resolve(url);
if (file != null)
{ // Can't assume we have a good url
pathAndFileName = file.AbsoluteUri;
}
if (file is null || file.IsFile)
{
string localPath = (file != null && file.IsFile) ? file.LocalPath : url;
// If this is a local path, convert it to a short path name. Pass 0 as the length the first time
uint requiredStringSize = Kernel32.GetShortPathNameW(localPath, null, 0);
if (requiredStringSize > 0)
{
// It's able to make it a short path.
char[] shortName = ArrayPool<char>.Shared.Rent((int)requiredStringSize);
fixed (char* pShortName = shortName)
{
requiredStringSize = Kernel32.GetShortPathNameW(localPath, pShortName, requiredStringSize);
// If it can't make it a short path, just leave the path we had.
pathAndFileName = new string(pShortName, 0, (int)requiredStringSize);
}
ArrayPool<char>.Shared.Return(shortName);
}
}
HandleRef handle;
if (parent != null)
{
handle = new HandleRef(parent, parent.Handle);
}
else
{
handle = new HandleRef(null, User32.GetActiveWindow());
}
object htmlParam;
if (param is string stringParam)
{
HH htmlCommand = MapCommandToHTMLCommand(command, stringParam, out htmlParam);
if (htmlParam is string stringHtmlParam)
{
HtmlHelpW(handle, pathAndFileName, htmlCommand, stringHtmlParam);
}
else if (htmlParam is int intParam)
{
HtmlHelpW(handle, pathAndFileName, htmlCommand, (IntPtr)intParam);
}
else if (htmlParam is HH_FTS_QUERYW query)
{
fixed (char* pszSearchQuery = stringParam)
{
query.pszSearchQuery = pszSearchQuery;
HtmlHelpW(handle, pathAndFileName, htmlCommand, ref query);
}
}
else if (htmlParam is HH_ALINKW aLink)
{
// According to MSDN documentation, we have to ensure that the help window is up
// before we call ALINK lookup.
HtmlHelpW(IntPtr.Zero, pathAndFileName, HH.DISPLAY_TOPIC, IntPtr.Zero);
fixed (char* pszKeywords = stringParam)
{
aLink.pszKeywords = pszKeywords;
HtmlHelpW(handle, pathAndFileName, htmlCommand, ref aLink);
}
}
else
{
Debug.Fail("Cannot handle HTML parameter of type: " + htmlParam.GetType());
HtmlHelpW(handle, pathAndFileName, htmlCommand, (string)param);
}
}
else if (param is null)
{
HtmlHelpW(handle, pathAndFileName, MapCommandToHTMLCommand(command, null, out htmlParam), IntPtr.Zero);
}
else if (param is HH_POPUPW popup)
{
HtmlHelpW(handle, pathAndFileName, HH.DISPLAY_TEXT_POPUP, ref popup);
}
else if (param.GetType() == typeof(int))
{
throw new ArgumentException(string.Format(SR.InvalidArgument, nameof(param), "Integer"), nameof(param));
}
}
/// <summary>
/// Displays HTMLFile with the specified parameters
/// </summary>
private static void ShowHTMLFile(Control parent, string url, HelpNavigator command, object param)
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "Help:: ShowHTMLHelp:: " + url + ", " + command.ToString("G") + ", " + param);
Uri file = Resolve(url);
if (file is null)
{
throw new ArgumentException(string.Format(SR.HelpInvalidURL, url), nameof(url));
}
switch (command)
{
case HelpNavigator.TableOfContents:
case HelpNavigator.Find:
case HelpNavigator.Index:
// nothing needed...
//
break;
case HelpNavigator.Topic:
if (param != null && param is string)
{
file = new Uri(file.ToString() + "#" + (string)param);
}
break;
}
HandleRef handle;
if (parent != null)
{
handle = new HandleRef(parent, parent.Handle);
}
else
{
handle = new HandleRef(null, User32.GetActiveWindow());
}
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "\tExecuting '" + file.ToString() + "'");
Shell32.ShellExecuteW(handle, null, file.ToString(), null, null, User32.SW.NORMAL);
}
private static Uri Resolve(string partialUri)
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "Help:: Resolve " + partialUri);
Debug.Indent();
Uri file = null;
if (!string.IsNullOrEmpty(partialUri))
{
try
{
file = new Uri(partialUri);
}
catch (UriFormatException)
{
// Ignore invalid uris.
}
}
if (file != null && file.Scheme == "file")
{
string localPath = file.LocalPath + file.Fragment;
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "file, check for existence");
if (!File.Exists(localPath))
{
// clear, and try relative to AppBase...
//
file = null;
}
}
if (file is null)
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "try AppBase relative");
try
{
// try relative to AppBase...
//
file = new Uri(new Uri(AppContext.BaseDirectory),
partialUri);
}
catch (UriFormatException)
{
// Ignore invalid uris.
}
if (file != null && file.Scheme == "file")
{
string localPath = file.LocalPath + file.Fragment;
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "file, check for existence");
if (!File.Exists(localPath))
{
// clear - file isn't there...
//
file = null;
}
}
}
Debug.Unindent();
return file;
}
private static int GetHelpFileType(string url)
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "Help:: GetHelpFileType " + url);
if (url is null)
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "\tnull, must be Html File");
return HTMLFILE;
}
Uri file = Resolve(url);
if (file is null || file.Scheme == "file")
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "\tfile");
string ext = Path.GetExtension(file is null ? url : file.LocalPath + file.Fragment).ToLower(CultureInfo.InvariantCulture);
if (ext == ".chm" || ext == ".col")
{
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "\tchm or col, HtmlHelp 1.0 file");
return HTML10HELP;
}
}
Debug.WriteLineIf(WindowsFormsHelpTrace.TraceVerbose, "\tnot file, or odd extension, but be HTML");
return HTMLFILE;
}
/// <summary>
/// Maps one of the COMMAND_* constants to the HTML 1.0 Help equivalent.
/// </summary>
private unsafe static HH MapCommandToHTMLCommand(HelpNavigator command, string param, out object htmlParam)
{
htmlParam = param;
if (string.IsNullOrEmpty(param) && (command == HelpNavigator.AssociateIndex || command == HelpNavigator.KeywordIndex))
{
return HH.DISPLAY_INDEX;
}
switch (command)
{
case HelpNavigator.Topic:
return HH.DISPLAY_TOPIC;
case HelpNavigator.TableOfContents:
return HH.DISPLAY_TOC;
case HelpNavigator.Index:
return HH.DISPLAY_INDEX;
case HelpNavigator.Find:
{
var ftsQuery = new HH_FTS_QUERYW
{
cbStruct = sizeof(HH_FTS_QUERYW),
iProximity = HH_FTS_QUERYW.DEFAULT_PROXIMITY,
fExecute = BOOL.TRUE,
fUniCodeStrings = BOOL.TRUE
};
htmlParam = ftsQuery;
return HH.DISPLAY_SEARCH;
}
case HelpNavigator.TopicId:
{
try
{
htmlParam = int.Parse(param, CultureInfo.InvariantCulture);
return HH.HELP_CONTEXT;
}
catch
{
// default to just showing the index
return HH.DISPLAY_INDEX;
}
}
case HelpNavigator.KeywordIndex:
case HelpNavigator.AssociateIndex:
{
var alink = new HH_ALINKW
{
cbStruct = sizeof(HH_ALINKW),
fIndexOnFail = BOOL.TRUE,
fReserved = BOOL.FALSE
};
htmlParam = alink;
return command == HelpNavigator.KeywordIndex ? HH.KEYWORD_LOOKUP : HH.ALINK_LOOKUP;
}
default:
return (HH)command;
}
}
}
}