diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-10-14 18:01:08 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-10-14 18:01:08 (GMT) |
commit | 4f13c95eed55e8b0d989f2eeeb0ab72bd70f2b38 (patch) | |
tree | bcdab6f521bde9211fb810a1adaf06fbc4a93504 /src/config.l | |
parent | f12c78472b4ea2f6b82c241a345af5da3d4973b9 (diff) | |
download | Doxygen-4f13c95eed55e8b0d989f2eeeb0ab72bd70f2b38.zip Doxygen-4f13c95eed55e8b0d989f2eeeb0ab72bd70f2b38.tar.gz Doxygen-4f13c95eed55e8b0d989f2eeeb0ab72bd70f2b38.tar.bz2 |
Release-1.2.11-20011014
Diffstat (limited to 'src/config.l')
-rw-r--r-- | src/config.l | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/src/config.l b/src/config.l index 006bd7e..456330b 100644 --- a/src/config.l +++ b/src/config.l @@ -1307,13 +1307,6 @@ void Config::create() FALSE ); cb = addBool( - "CLASS_DIAGRAMS", - "If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will \n" - "generate a class diagram (in Html and LaTeX) for classes with base or \n" - "super classes. Setting the tag to NO turns the diagrams off. \n", - TRUE - ); - cb = addBool( "SOURCE_BROWSER", "If the SOURCE_BROWSER tag is set to YES then a list of source files will \n" "be generated. Documented entities will be cross-referenced with these sources. \n", @@ -1717,8 +1710,10 @@ void Config::create() "If the GENERATE_TREEVIEW tag is set to YES, a side panel 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+). ", + "JavaScript and frames is required (for instance Mozilla, Netscape 4.0+, \n" + "or Internet explorer 4.0+). Note that for large projects the tree generation \n" + "can take a very long time. In such cases it is better to disable this feature. \n" + "Windows users are probably better off using the HTML help feature. \n", FALSE ); cb->addDependency("GENERATE_HTML"); @@ -2021,6 +2016,15 @@ void Config::create() addInfo( "Dot","Configuration options related to the dot tool "); //----------------------------------------------------------------------------------------------- cb = addBool( + "CLASS_DIAGRAMS", + "If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will \n" + "generate a inheritance diagram (in Html, RTF and LaTeX) for classes with base or \n" + "super classes. Setting the tag to NO turns the diagrams off. Note that this \n" + "option is superceded by the HAVE_DOT option below. This is only a fallback. It is \n" + "recommended to install and use dot, since it yield more powerful graphs. \n", + TRUE + ); + cb = addBool( "HAVE_DOT", "If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is \n" "available from the path. This tool is part of Graphviz, a graph visualization \n" @@ -2054,6 +2058,14 @@ void Config::create() ); cb->addDependency("HAVE_DOT"); cb = addBool( + "HIDE_UNDOC_RELATIONS", + "If set to YES, the inheritance and collaboration graphs will hide \n" + "inheritance and usage relations if the target is undocumented \n" + "or is not a class. \n", + TRUE + ); + cb->addDependency("HAVE_DOT"); + cb = addBool( "INCLUDE_GRAPH", "If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT \n" "tags are set to YES then doxygen will generate a graph for each documented \n" |