]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/htmlhlpf.tex
added and documented wxApp::OnAssert
[wxWidgets.git] / docs / latex / wx / htmlhlpf.tex
CommitLineData
42d306a0 1\section{Help Files Format}\label{helpformat}
704a4b75 2
22d6efa8 3wxHTML library uses a reduced version of MS HTML Workshop format.
36edded9
JS
4Tex2RTF can produce these files when generating HTML, if you set {\bf htmlWorkshopFiles} to {\bf true} in
5your tex2rtf.ini file.
704a4b75
VS
6
7(See \helpref{wxHtmlHelpController}{wxhtmlhelpcontroller} for help controller description.)
8
f6bcfd97 9A {\bf book} consists of three files: header file, contents file and index file.
fac26663
JS
10You can make a regular zip archive of these files, plus the HTML and any image files,
11for wxHTML (or helpview) to read; and the .zip file can optionally be renamed to .htb.
704a4b75
VS
12
13\wxheading{Header file (.hhp)}
14
15Header file must contain these lines (and may contain additional lines which are ignored) :
16
17\begin{verbatim}
18Contents file=@filename.hhc@
19Index file=@filename.hhk@
20Title=@title of your book@
21Default topic=@default page to be displayed.htm@
22\end{verbatim}
23
76b566d0
VS
24All filenames (including the Default topic) are relative to the
25location of .hhp file.
26
27{\bf Localization note:} In addition, .hhp file may contain line
28
29\begin{verbatim}
30Charset=@rfc_charset@
31\end{verbatim}
32
d17f05af 33which specifies what charset (e.g. "iso8859\_1") was used in contents
76b566d0
VS
34and index files. Please note that this line is incompatible with
35MS HTML Help Workshop and it would either silently remove it or complain
36with some error. See also
457e6c54 37\helpref{Writing non-English applications}{nonenglishoverview}.
704a4b75
VS
38
39\wxheading{Contents file (.hhc)}
40
41Contents file has HTML syntax and it can be parsed by regular HTML parser. It contains exactly one list
6aa358ae 42(\tt{<ul>}....\tt{</ul>} statement):
704a4b75
VS
43
44\begin{verbatim}
45<ul>
46
47 <li> <object>
48 <param name="Name" value="@topic name@">
49 <param name="ID" value=@numeric_id@>
50 <param name="Local" value="@filename.htm@">
51 </object>
52 <li> <object>
53 <param name="Name" value="@topic name@">
54 <param name="ID" value=@numeric_id@>
55 <param name="Local" value="@filename.htm@">
56 </object>
57 ...
58
59</ul>
60\end{verbatim}
61
62You can modify value attributes of param tags. {\it topic name} is name of chapter/topic as is displayed in
605d715d 63contents, {\it filename.htm} is HTML page name (relative to .hhp file) and {\it numeric\_id} is optional
704a4b75
VS
64- it is used only when you use \helpref{wxHtmlHelpController::Display(int)}{wxhtmlhelpcontrollerdisplay}
65
6aa358ae 66Items in the list may be nested - one \tt{<li>} statement may contain a \tt{<ul>} sub-statement:
704a4b75
VS
67
68\begin{verbatim}
69<ul>
70
71 <li> <object>
72 <param name="Name" value="Top node">
73 <param name="Local" value="top.htm">
74 </object>
75 <ul>
76 <li> <object>
77 <param name="Name" value="subnode in topnode">
78 <param name="Local" value="subnode1.htm">
79 </object>
80 ...
81 </ul>
82
83 <li> <object>
84 <param name="Name" value="Another Top">
85 <param name="Local" value="top2.htm">
86 </object>
87 ...
88
89</ul>
90\end{verbatim}
91
704a4b75
VS
92\wxheading{Index file (.hhk)}
93
94Index files have same format as contents file except that ID params are ignored and sublists are {\bf not}
95allowed.
96