summaryrefslogtreecommitdiffstats
path: root/src/config.l
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2008-10-05 09:07:25 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2008-10-05 09:07:25 (GMT)
commit3102b81d682bf0b3b4dd50148434ab8e575a3d2e (patch)
tree9ff275a866b1660085cb0e638922291f5b2abd36 /src/config.l
parent631bd3426f23c6a69b8a19156b25387ceba007d4 (diff)
downloadDoxygen-3102b81d682bf0b3b4dd50148434ab8e575a3d2e.zip
Doxygen-3102b81d682bf0b3b4dd50148434ab8e575a3d2e.tar.gz
Doxygen-3102b81d682bf0b3b4dd50148434ab8e575a3d2e.tar.bz2
Release-1.5.7.1
Diffstat (limited to 'src/config.l')
-rw-r--r--src/config.l40
1 files changed, 15 insertions, 25 deletions
diff --git a/src/config.l b/src/config.l
index 2023417..79795a8 100644
--- a/src/config.l
+++ b/src/config.l
@@ -1298,13 +1298,6 @@ void Config::check()
config_err("Warning: Specifying QCH_FILE requires QHG_LOCATION to be set.\n");
}
- // check INDEXLOG creation requirements
- if (!Config_getBool("GENERATE_HTML") &&
- Config_getBool("GENERATE_INDEXLOG"))
- {
- config_err("Warning: GENERATE_INDEXLOG=YES requires GENERATE_HTML=YES.\n");
- }
-
if (Config_getBool("HAVE_DOT"))
{
QCString curFontPath = Config_getString("DOT_FONTPATH");
@@ -2079,7 +2072,6 @@ void Config::create()
);
cs->setWidgetType(ConfigString::File);
addObsolete("DETAILS_AT_TOP");
- addObsolete("ALPHABETICAL_INDEX");
//-----------------------------------------------------------------------------------------------
@@ -2326,13 +2318,13 @@ void Config::create()
addInfo( "Index","configuration options related to the alphabetical class index");
//-----------------------------------------------------------------------------------------------
- //cb = addBool(
- // "ALPHABETICAL_INDEX",
- // "If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index \n"
- // "of all compounds will be generated. Enable this if the project \n"
- // "contains a lot of classes, structs, unions or interfaces. \n",
- // FALSE
- // );
+ cb = addBool(
+ "ALPHABETICAL_INDEX",
+ "If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index \n"
+ "of all compounds will be generated. Enable this if the project \n"
+ "contains a lot of classes, structs, unions or interfaces. \n",
+ FALSE
+ );
ci = addInt(
"COLS_IN_ALPHA_INDEX",
"If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then \n"
@@ -2655,16 +2647,6 @@ void Config::create()
8,50,10
);
ci->addDependency("GENERATE_HTML");
-#if 0
- cb = addBool(
- "GENERATE_INDEXLOG",
- "If the GENERATE_INDEXLOG tag is set to YES, an additional log file \n"
- "will be generated that can be used to create new index formats using XSLT \n"
- "instead of writing C++ code. \n",
- FALSE
- );
- cb->addDependency("GENERATE_HTML");
-#endif
//-----------------------------------------------------------------------------------------------
addInfo( "LaTeX","configuration options related to the LaTeX output");
@@ -3149,12 +3131,20 @@ void Config::create()
"containing the font. \n"
);
cs->setDefaultValue("FreeSans");
+ cb->addDependency("HAVE_DOT");
+ ci = addInt( "DOT_FONTSIZE",
+ "The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. \n"
+ "The default size is 10pt. \n",
+ 4,24,10
+ );
+ ci->addDependency("HAVE_DOT");
cs = addString( "DOT_FONTPATH",
"By default doxygen will tell dot to use the output directory to look for the \n"
"FreeSans.ttf font (which doxygen will put there itself). If you specify a \n"
"different font using DOT_FONTNAME you can set the path where dot \n"
"can find it using this tag. \n"
);
+ cs->addDependency("HAVE_DOT");
cb = addBool(
"CLASS_GRAPH",
"If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen \n"