diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-11-26 14:55:14 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-11-26 14:55:14 (GMT) |
commit | a30c2e3c5ea41ae1947e9893c82ed8c8b6d7c5a2 (patch) | |
tree | 0bbfa006a4c63e8fe48b3d0022699cffaea24b47 /addon | |
parent | 2f32e4c28047cdec982a818e8abe5632af2d9511 (diff) | |
download | Doxygen-a30c2e3c5ea41ae1947e9893c82ed8c8b6d7c5a2.zip Doxygen-a30c2e3c5ea41ae1947e9893c82ed8c8b6d7c5a2.tar.gz Doxygen-a30c2e3c5ea41ae1947e9893c82ed8c8b6d7c5a2.tar.bz2 |
Release-1.2.3-20001126
Diffstat (limited to 'addon')
-rw-r--r-- | addon/configgen/configgen.cpp | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/addon/configgen/configgen.cpp b/addon/configgen/configgen.cpp index c6aa0f2..c05cca7 100644 --- a/addon/configgen/configgen.cpp +++ b/addon/configgen/configgen.cpp @@ -712,8 +712,8 @@ int main(int argc,char * argv[]) // process template file while (!ctfile.atEnd()) { - int l=ctfile.readLine(buf,maxLineLen-1); - if (buf[l-2]=='\r') // remove the \r for the folks using Windows + int l = ctfile.readLine(buf,maxLineLen-1); + if (l>1 && buf[l-2]=='\r') // remove the \r for the folks using Windows { buf[l-2]='\n'; buf[l-1]='\r'; @@ -1302,6 +1302,31 @@ void init() 1,20 ); addDependency("enumValuesPerLine","generateHtml"); + ConfigBool::add( "ftvHelpFlag", + "GENERATE_TREEVIEW", + "FALSE", + "should a folder tree view be generated?", + "If the GENERATE_TREEVIEW tag is set to YES, a side pannel will be\n" + "generated containing a tree-like index structure (just like the one that \n" + "is generated for HTML Help). For this to work a browser that supports \n" + "JavaScript and frames is required (for instance Netscape 4.0+ \n" + "or Internet explorer 4.0+). " + ); + addDependency("ftvHelpFlag","generateHtml"); + +// TODO: integrate this option +// ConfigBool::add( "htmlHelpGroupsOnly", +// "HTMLHELP_GROUPS_ONLY", +// "FALSE", +// "should \\ingroup's be used to create HTML Help hierarchy?", +// "If the HTMLHELP_GROUPS_ONLY tag is set to YES, documented objects are \n" +// "displayed in the HTML Help tree if and only if they are \n" +// "placed in a user-defined group using the \\ingroup markup. \n" +// "Use \\defgroup to define a group before adding objects to a group. \n" +// "Also affects FTV Help (see GENERATE_FTVHELP tag). \n" +// ); +// addDependency("htmlHelpGroupsOnly","generateHtml"); + //----------------------------------------------------------------------------------------------- ConfigInfo::add( "LaTeX","configuration options related to the LaTeX output"); //----------------------------------------------------------------------------------------------- |