summaryrefslogtreecommitdiffstats
path: root/src/configoptions.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-06-22 20:14:03 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2009-06-22 20:14:03 (GMT)
commit7c0a46b50fad0925e47b78326f8c2e92e3829fb4 (patch)
tree2f918f7da3205101b2a8a300ee9afefe247b3f24 /src/configoptions.cpp
parent7a3de4c3c8aac25c38b6e93bb0927de40cd1c650 (diff)
downloadDoxygen-7c0a46b50fad0925e47b78326f8c2e92e3829fb4.zip
Doxygen-7c0a46b50fad0925e47b78326f8c2e92e3829fb4.tar.gz
Doxygen-7c0a46b50fad0925e47b78326f8c2e92e3829fb4.tar.bz2
Release-1.5.9-20090622
Diffstat (limited to 'src/configoptions.cpp')
-rw-r--r--src/configoptions.cpp41
1 files changed, 16 insertions, 25 deletions
diff --git a/src/configoptions.cpp b/src/configoptions.cpp
index f95b834..bea89b6 100644
--- a/src/configoptions.cpp
+++ b/src/configoptions.cpp
@@ -630,14 +630,6 @@ void addConfigOptions(Config *cfg)
);
//----
cb = cfg->addBool(
- "SHOW_USED_FILES",
- "Set the SHOW_USED_FILES tag to NO to disable the list of files generated \n"
- "at the bottom of the documentation of classes and structs. If set to YES the \n"
- "list will mention the files that were used to generate the documentation.",
- TRUE
- );
- //----
- cb = cfg->addBool(
"SHOW_DIRECTORIES",
"If the sources in your project are distributed over multiple directories \n"
"then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy \n"
@@ -1291,29 +1283,26 @@ void addConfigOptions(Config *cfg)
);
ci->addDependency("GENERATE_HTML");
//----
- ce = cfg->addEnum(
+ cb = cfg->addBool(
"GENERATE_TREEVIEW",
"The GENERATE_TREEVIEW tag is used to specify whether a tree-like index \n"
"structure should be generated to display hierarchical information. \n"
"If the tag value is set to FRAME, a side panel will be generated \n"
"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, DHTML, CSS and frames is required (for instance Mozilla 1.0+, \n"
- "Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are \n"
- "probably better off using the HTML help feature. Other possible values \n"
- "for this tag are: HIERARCHIES, which will generate the Groups, Directories, \n"
- "and Class Hierarchy pages using a tree view instead of an ordered list; \n"
- "ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which \n"
- "disables this behavior completely. For backwards compatibility with previous \n"
- "releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE \n"
- "respectively.",
- "NONE"
- );
- ce->addValue("NONE");
- ce->addValue("FRAME");
- ce->addValue("HIERARCHIES");
- ce->addValue("ALL");
- ce->addDependency("GENERATE_HTML");
+ "JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). \n"
+ "Windows users are probably better off using the HTML help feature.",
+ FALSE
+ );
+ cb->addDependency("GENERATE_HTML");
+ //----
+ cb = cfg->addBool(
+ "USE_INLINE_TREES",
+ "By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, \n"
+ "and Class Hierarchy pages using a tree view instead of an ordered list.",
+ FALSE
+ );
+ cb->addDependency("GENERATE_HTML");
//----
ci = cfg->addInt(
"TREEVIEW_WIDTH",
@@ -2095,6 +2084,8 @@ void addConfigOptions(Config *cfg)
FALSE
);
//----
+ cfg->addObsolete("SHOW_USED_FILES");
+ //----
cfg->addObsolete("USE_WINDOWS_ENCODING");
//----
cfg->addObsolete("DETAILS_AT_TOP");