summaryrefslogtreecommitdiffstats
path: root/src/configoptions.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2009-12-30 13:28:15 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2009-12-30 13:28:15 (GMT)
commit05b70e8e2c6e0cda9b74fc99fd782d1977d298c9 (patch)
treee73e0b41d708a8ea6260e541347b464cb2e5aeaa /src/configoptions.cpp
parente32567534d95ff3960fa4dcad7733c18e1b39bc5 (diff)
downloadDoxygen-05b70e8e2c6e0cda9b74fc99fd782d1977d298c9.zip
Doxygen-05b70e8e2c6e0cda9b74fc99fd782d1977d298c9.tar.gz
Doxygen-05b70e8e2c6e0cda9b74fc99fd782d1977d298c9.tar.bz2
Release-1.6.2
Diffstat (limited to 'src/configoptions.cpp')
-rw-r--r--src/configoptions.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/configoptions.cpp b/src/configoptions.cpp
index 6ec5151..3233bef 100644
--- a/src/configoptions.cpp
+++ b/src/configoptions.cpp
@@ -1253,6 +1253,7 @@ void addConfigOptions(Config *cfg)
"Qt Help Project output. For more information please see\n"
"http://doc.trolltech.com/qthelpproject.html#namespace"
);
+ cs->setDefaultValue("org.doxygen.Project");
cs->addDependency("GENERATE_QHP");
//----
cs = cfg->addString(
@@ -1298,6 +1299,28 @@ void addConfigOptions(Config *cfg)
cs->addDependency("GENERATE_QHP");
//----
cb = cfg->addBool(
+ "GENERATE_ECLIPSEHELP",
+ "If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files\n"
+ " will be generated, which together with the HTML files, form an Eclipse help\n"
+ " plugin. To install this plugin and make it available under the help contents\n"
+ "menu in Eclipse, the contents of the directory containing the HTML and XML\n"
+ "files needs to be copied into the plugins directory of eclipse. The name of\n"
+ "the directory within the plugins directory should be the same as\n"
+ "the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before the help appears.",
+ FALSE
+ );
+ cb->addDependency("GENERATE_HTML");
+ //----
+ cs = cfg->addString(
+ "ECLIPSE_DOC_ID",
+ "A unique identifier for the eclipse help plugin. When installing the plugin\n"
+ "the directory name containing the HTML and XML files should also have\n"
+ "this name."
+ );
+ cs->setDefaultValue("org.doxygen.Project");
+ cs->addDependency("GENERATE_ECLIPSEHELP");
+ //----
+ cb = cfg->addBool(
"DISABLE_INDEX",
"The DISABLE_INDEX tag can be used to turn on/off the condensed index at\n"
"top of each HTML page. The value NO (the default) enables the index and\n"