diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2012-05-19 12:11:23 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2012-05-19 12:11:23 (GMT) |
commit | 7e1fa1f27b1d85172af518acc24b8bc68a0f1b29 (patch) | |
tree | 58d7a64919b99cc76fdc7120ae5d0407f3163a67 /src/configoptions.cpp | |
parent | c11926b2549660b7eb6b73aa4bf2096e56a6f8dd (diff) | |
download | Doxygen-7e1fa1f27b1d85172af518acc24b8bc68a0f1b29.zip Doxygen-7e1fa1f27b1d85172af518acc24b8bc68a0f1b29.tar.gz Doxygen-7e1fa1f27b1d85172af518acc24b8bc68a0f1b29.tar.bz2 |
Release-1.8.1
Diffstat (limited to 'src/configoptions.cpp')
-rw-r--r-- | src/configoptions.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/configoptions.cpp b/src/configoptions.cpp index e075ac0..6c6be0c 100644 --- a/src/configoptions.cpp +++ b/src/configoptions.cpp @@ -1285,6 +1285,19 @@ void addConfigOptions(Config *cfg) ); cb->addDependency("GENERATE_HTML"); //---- + ci = cfg->addInt( + "HTML_INDEX_NUM_ENTRIES", + "With HTML_INDEX_NUM_ENTRIES one can control the preferred number of\n" + "entries shown in the various tree structured indices initially; the user\n" + "can expand and collapse entries dynamically later on. Doxygen will expand\n" + "the tree to such a level that at most the specified number of entries are\n" + "visible (unless a fully collapsed tree already exceeds this amount).\n" + "So setting the number of entries 1 will produce a full collapsed tree by\n" + "default. 0 is a special value representing an infinite number of entries\n" + "and will result in a full expanded tree by default.", + 0,9999,100 + ); + //---- cb = cfg->addBool( "GENERATE_DOCSET", "If the GENERATE_DOCSET tag is set to YES, additional index files\n" |