-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathHelp.cs
More file actions
377 lines (331 loc) · 12.7 KB
/
Help.cs
File metadata and controls
377 lines (331 loc) · 12.7 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Drawing;
using System.Globalization;
using Windows.Win32.Data.HtmlHelp;
using static Windows.Win32.Data.HtmlHelp.HTML_HELP_COMMAND;
namespace System.Windows.Forms;
/// <summary>
/// Represents the HTML 1.0 Help engine.
/// </summary>
public static class Help
{
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 is not 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)
{
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)
{
ShowHelp(parent, url, HelpNavigator.Index, null);
}
/// <summary>
/// Displays a Help pop-up window.
/// </summary>
public static unsafe void ShowPopup(Control? parent, string caption, Point location)
{
HH_POPUP pop = new()
{
cbStruct = sizeof(HH_POPUP),
pt = location,
rcMargins = new RECT(-1, -1, -1, -1), // Ignore
clrForeground = SystemColors.WindowText,
clrBackground = SystemColors.Window
};
Font font = SystemFonts.StatusFont ?? SystemFonts.DefaultFont;
string captionFont = $"{font.Name}, {font.SizeInPoints}, , {(font.Bold ? "BOLD" : "")}{(font.Italic ? "ITALIC" : "")}{(font.Underline ? "UNDERLINE" : "")}";
fixed (char* pszText = caption, pszFont = captionFont)
{
pop.pszText = (sbyte*)pszText;
pop.pszFont = (sbyte*)pszFont;
ShowHTML10Help(parent, null, HelpNavigator.Topic, pop);
}
}
/// <summary>
/// Displays HTML 1.0 Help with the specified parameters.
/// </summary>
private static unsafe void ShowHTML10Help(Control? parent, string? url, HelpNavigator command, object? 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 is not null)
{
// Can't assume we have a good url
pathAndFileName = file.AbsoluteUri;
}
if (file is null || file.IsFile)
{
string? localPath = (file is not 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 = PInvoke.GetShortPathName(localPath, null, 0);
if (requiredStringSize > 0)
{
// It's able to make it a short path.
using BufferScope<char> shortName = new((int)requiredStringSize);
fixed (char* pShortName = shortName)
{
requiredStringSize = PInvoke.GetShortPathName(localPath, pShortName, requiredStringSize);
// If it can't make it a short path, just leave the path we had.
pathAndFileName = shortName[..(int)requiredStringSize].ToString();
}
}
}
HandleRef<HWND> handle = parent is not null ? (new(parent)) : Control.GetHandleRef(PInvoke.GetActiveWindow());
object? htmlParam;
if (param is string stringParam)
{
HTML_HELP_COMMAND htmlCommand = MapCommandToHTMLCommand(command, stringParam, out htmlParam);
if (htmlParam is string stringHtmlParam)
{
PInvoke.HtmlHelp(handle, pathAndFileName, htmlCommand, stringHtmlParam);
}
else if (htmlParam is int intParam)
{
PInvoke.HtmlHelp(handle, pathAndFileName, htmlCommand, (nuint)intParam);
}
else if (htmlParam is HH_FTS_QUERY query)
{
fixed (char* pszSearchQuery = stringParam)
{
query.pszSearchQuery = (sbyte*)pszSearchQuery;
PInvoke.HtmlHelp(handle, pathAndFileName, htmlCommand, in query);
}
}
else if (htmlParam is HH_AKLINK aLink)
{
// According to MSDN documentation, we have to ensure that the help window is up
// before we call ALINK lookup.
PInvoke.HtmlHelp(HWND.Null, pathAndFileName, HH_DISPLAY_TOPIC, null);
fixed (char* pszKeywords = stringParam)
{
aLink.pszKeywords = (sbyte*)pszKeywords;
PInvoke.HtmlHelp(handle, pathAndFileName, htmlCommand, in aLink);
}
}
else
{
Debug.Fail($"Cannot handle HTML parameter of type: {htmlParam!.GetType()}");
PInvoke.HtmlHelp(handle, pathAndFileName, htmlCommand, (string)param);
}
}
else if (param is null)
{
PInvoke.HtmlHelp(handle, pathAndFileName, MapCommandToHTMLCommand(command, null, out htmlParam), null);
}
else if (param is HH_POPUP popup)
{
PInvoke.HtmlHelp(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)
{
Uri? file = Resolve(url) ?? 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 is string stringParam)
{
file = new Uri($"{file}#{stringParam}");
}
break;
}
HandleRef<HWND> handle = parent is not null ? new(parent) : Control.GetHandleRef(PInvoke.GetActiveWindow());
string fileName = file.ToString();
string? executable = file.IsFile ? FindExecutableInternal(file.LocalPath.ToString()) : null;
PInvoke.ShellExecute(handle.Handle, lpOperation: null, executable ?? fileName, executable is not null ? fileName : null, lpDirectory: null, SHOW_WINDOW_CMD.SW_NORMAL);
GC.KeepAlive(handle.Wrapper);
}
private static unsafe string? FindExecutableInternal(string uri)
{
HINSTANCE result;
Span<char> buffer = stackalloc char[(int)PInvokeCore.MAX_PATH + 1];
fixed (char* lpFileLocal = uri)
{
fixed (char* b = buffer)
{
result = PInvoke.FindExecutable(lpFileLocal, lpDirectory: null, lpResult: b);
}
}
return result <= 32 ? null : buffer.SliceAtFirstNull().ToString();
}
private static Uri? Resolve(string? partialUri)
{
Uri? file = null;
if (!string.IsNullOrEmpty(partialUri))
{
try
{
file = new Uri(partialUri);
}
catch (UriFormatException)
{
// Ignore invalid uris.
}
}
if (file is not null && file.Scheme == "file")
{
string localPath = file.LocalPath + file.Fragment;
if (!File.Exists(localPath))
{
// Clear, and try relative to AppBase.
file = null;
}
}
if (file is null)
{
try
{
// Try relative to AppBase.
file = new Uri(new Uri(AppContext.BaseDirectory),
partialUri);
}
catch (UriFormatException)
{
// Ignore invalid uris.
}
if (file is not null && file.Scheme == "file")
{
string localPath = file.LocalPath + file.Fragment;
if (!File.Exists(localPath))
{
// Clear - file isn't there.
file = null;
}
}
}
return file;
}
private static int GetHelpFileType(string? url)
{
if (url is null)
{
return HTMLFILE;
}
Uri? file = Resolve(url);
if (file is null || file.Scheme == "file")
{
string ext = Path.GetExtension(file is null ? url : file.LocalPath + file.Fragment).ToLower(CultureInfo.InvariantCulture);
if (ext is ".chm" or ".col")
{
return HTML10HELP;
}
}
return HTMLFILE;
}
/// <summary>
/// Maps one of the COMMAND_* constants to the HTML 1.0 Help equivalent.
/// </summary>
private static unsafe HTML_HELP_COMMAND 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:
{
HH_FTS_QUERY ftsQuery = new()
{
cbStruct = sizeof(HH_FTS_QUERY),
iProximity = (int)HH_FTS_DEFAULT_PROXIMITY,
fExecute = true,
fUniCodeStrings = true
};
htmlParam = ftsQuery;
return HH_DISPLAY_SEARCH;
}
case HelpNavigator.TopicId:
{
if (int.TryParse(param, out int htmlParamAsInt))
{
htmlParam = htmlParamAsInt;
return HH_HELP_CONTEXT;
}
// default to just showing the index
return HH_DISPLAY_INDEX;
}
case HelpNavigator.KeywordIndex:
case HelpNavigator.AssociateIndex:
{
HH_AKLINK alink = new()
{
cbStruct = sizeof(HH_AKLINK),
fIndexOnFail = true,
fReserved = false
};
htmlParam = alink;
return command == HelpNavigator.KeywordIndex ? HH_KEYWORD_LOOKUP : HH_ALINK_LOOKUP;
}
default:
return (HTML_HELP_COMMAND)command;
}
}
}