I think the question was how to get those references to be listed in the
left pane of a html help window, together with the 'Compound List' and the
'Class Hierarchy'.
I didn't find any direct way to do that. One workaround would be to use the
modules facility, but this will list your entries under a 'Modules' title
in the TOC. For this, look up the 'Grouping' section in the main
documentation page of doxygen. I'm not sure if this will be of any use to
you, but it's the closest one I know about.
Cheers,
Bogdan
----- Original Message -----
From: "David Cramer" <dav...@br...>
To: <dox...@li...>
Sent: Tuesday, June 26, 2001 5:21 PM
Subject: RE: [Doxygen-users] Index/TOC entries in .chm files
Create an file named whatever you like (e.g. componentname.overview) in
the following format. The \htmlinclude command pulls in the content from
the html page verbatim (though there won't be any autolinking). I find
that if you make the name of the page (e.g. "naming" in "\page naming")
must not be the same as the base of any of your .html files. Poke around
in the Doxygen documentation under these command and you'll find the
info you need
(http://www.stack.nl/~dimitri/doxygen/commands.html#commands):
/*! \mainpage Internationalization Overview
\section intro Introduction
Internationalization is good.
\subsection topics Related Topics:
<ul>
<li> \ref collation
<li> \ref conversion
<li> \ref languagecodes
<li> \ref countrycodes
<li> \ref linking
<li> \ref naming
<li> \ref icudocmain
</ul>
*/
/*! \page naming Library Naming Conventions
\htmlinclude BroadJumpLibNaming.html
*/
/*! \page linking Linking
\htmlinclude BJIntlLinking.html
*/
/*! \page collation Collation Overview
\htmlinclude CollationOverview.html
*/
/*! \page conversion Conversion Overview
\htmlinclude ConversionOverview.html
*/
/*! \page languagecodes ISO 639 Language Codes
\htmlinclude ISO-639--Language-Codes.html
*/
/*! \page countrycodes ISO 3166 Country Codes
\htmlinclude ISO-3166--Country-Codes.html
*/
-David
> -----Original Message-----
> From: Gordian Elsinger [mailto:els...@is...]
> Sent: Tuesday, June 26, 2001 4:55 AM
> To: Doxygen Mailinglist
> Subject: [Doxygen-users] Index/TOC entries in .chm files
>
>
> Hi,
> when I add external HTML files to a doxygen help project I
> would also like
> to add index and TOC entries for the MS HTML help workshop
> referencing those
> files. Otherwise my external files can only be found either
> by direct links
> from the mainpage or by searching the help project.
> Is there an easy way to include those references (other than
> editing the
> .hhc and .hhk files by hand, which is not such a good idea
> for automatic
> build jobs)? Like a special command I have overlooked ;-)?
>
> Thanks,
> Gordian
>
>
> _______________________________________________
> Doxygen-users mailing list
> Dox...@li...
> http://lists.sourceforge.net/lists/listinfo/doxygen-users
>
_______________________________________________
Doxygen-users mailing list
Dox...@li...
http://lists.sourceforge.net/lists/listinfo/doxygen-users
|