Fix for UBSan build
[platform/upstream/doxygen.git] / src / configoptions.cpp
1 /* WARNING: This file is generated!
2  * Do not edit this file, but edit config.xml instead and run
3  * python configgen.py to regenerate this file!
4  */
5
6 #include "configoptions.h"
7 #include "config.h"
8 #include "portable.h"
9
10 void addConfigOptions(Config *cfg)
11 {
12   ConfigString *cs;
13   ConfigEnum   *ce;
14   ConfigList   *cl;
15   ConfigInt    *ci;
16   ConfigBool   *cb;
17
18   //---------------------------------------------------------------------------
19   cfg->addInfo("Project","Project related configuration options");
20   //---------------------------------------------------------------------------
21
22   //----
23   cs = cfg->addString(
24                  "DOXYFILE_ENCODING",
25                  "This tag specifies the encoding used for all characters in the config file\n"
26                  "that follow. The default is UTF-8 which is also the encoding used for all\n"
27                  "text before the first occurrence of this tag. Doxygen uses libiconv (or the\n"
28                  "iconv built into libc) for the transcoding. See\n"
29                  "http://www.gnu.org/software/libiconv for the list of possible encodings."
30                 );
31   cs->setDefaultValue("UTF-8");
32   //----
33   cs = cfg->addString(
34                  "PROJECT_NAME",
35                  "The PROJECT_NAME tag is a single word (or sequence of words) that should\n"
36                  "identify the project. Note that if you do not use Doxywizard you need\n"
37                  "to put quotes around the project name if it contains spaces."
38                 );
39   cs->setDefaultValue("My Project");
40   //----
41   cs = cfg->addString(
42                  "PROJECT_NUMBER",
43                  "The PROJECT_NUMBER tag can be used to enter a project or revision number.\n"
44                  "This could be handy for archiving the generated documentation or\n"
45                  "if some version control system is used."
46                 );
47   //----
48   cs = cfg->addString(
49                  "PROJECT_BRIEF",
50                  "Using the PROJECT_BRIEF tag one can provide an optional one line description\n"
51                  "for a project that appears at the top of each page and should give viewer\n"
52                  "a quick idea about the purpose of the project. Keep the description short."
53                 );
54   //----
55   cs = cfg->addString(
56                  "PROJECT_LOGO",
57                  "With the PROJECT_LOGO tag one can specify an logo or icon that is\n"
58                  "included in the documentation. The maximum height of the logo should not\n"
59                  "exceed 55 pixels and the maximum width should not exceed 200 pixels.\n"
60                  "Doxygen will copy the logo to the output directory."
61                 );
62   cs->setWidgetType(ConfigString::File);
63   //----
64   cs = cfg->addString(
65                  "OUTPUT_DIRECTORY",
66                  "The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)\n"
67                  "base path where the generated documentation will be put.\n"
68                  "If a relative path is entered, it will be relative to the location\n"
69                  "where doxygen was started. If left blank the current directory will be used."
70                 );
71   cs->setWidgetType(ConfigString::Dir);
72   //----
73   cb = cfg->addBool(
74                  "CREATE_SUBDIRS",
75                  "If the CREATE_SUBDIRS tag is set to YES, then doxygen will create\n"
76                  "4096 sub-directories (in 2 levels) under the output directory of each output\n"
77                  "format and will distribute the generated files over these directories.\n"
78                  "Enabling this option can be useful when feeding doxygen a huge amount of\n"
79                  "source files, where putting all generated files in the same directory would\n"
80                  "otherwise cause performance problems for the file system.",
81                  FALSE
82                 );
83   //----
84   ce = cfg->addEnum(
85                  "OUTPUT_LANGUAGE",
86                  "The OUTPUT_LANGUAGE tag is used to specify the language in which all\n"
87                  "documentation generated by doxygen is written. Doxygen will use this\n"
88                  "information to generate all constant output in the proper language.\n"
89                  "The default language is English, other supported languages are:\n"
90                  "Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,\n"
91                  "Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,\n"
92                  "Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English\n"
93                  "messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,\n"
94                  "Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak,\n"
95                  "Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.",
96                  "English"
97                 );
98   ce->addValue("Afrikaans");
99   ce->addValue("Arabic");
100   ce->addValue("Brazilian");
101   ce->addValue("Catalan");
102   ce->addValue("Chinese");
103   ce->addValue("Chinese-Traditional");
104   ce->addValue("Croatian");
105   ce->addValue("Czech");
106   ce->addValue("Danish");
107   ce->addValue("Dutch");
108   ce->addValue("English");
109   ce->addValue("Esperanto");
110   ce->addValue("Farsi");
111   ce->addValue("Finnish");
112   ce->addValue("French");
113   ce->addValue("German");
114   ce->addValue("Greek");
115   ce->addValue("Hungarian");
116   ce->addValue("Italian");
117   ce->addValue("Japanese");
118   ce->addValue("Japanese-en");
119   ce->addValue("Korean");
120   ce->addValue("Korean-en");
121   ce->addValue("Norwegian");
122   ce->addValue("Macedonian");
123   ce->addValue("Persian");
124   ce->addValue("Polish");
125   ce->addValue("Portuguese");
126   ce->addValue("Romanian");
127   ce->addValue("Russian");
128   ce->addValue("Serbian");
129   ce->addValue("Slovak");
130   ce->addValue("Slovene");
131   ce->addValue("Spanish");
132   ce->addValue("Swedish");
133   ce->addValue("Turkish");
134   ce->addValue("Ukrainian");
135   ce->addValue("Vietnamese");
136   //----
137   cb = cfg->addBool(
138                  "BRIEF_MEMBER_DESC",
139                  "If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will\n"
140                  "include brief member descriptions after the members that are listed in\n"
141                  "the file and class documentation (similar to JavaDoc).\n"
142                  "Set to NO to disable this.",
143                  TRUE
144                 );
145   //----
146   cb = cfg->addBool(
147                  "REPEAT_BRIEF",
148                  "If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend\n"
149                  "the brief description of a member or function before the detailed description.\n"
150                  "Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the\n"
151                  "brief descriptions will be completely suppressed.",
152                  TRUE
153                 );
154   //----
155   cl = cfg->addList(
156                  "ABBREVIATE_BRIEF",
157                  "This tag implements a quasi-intelligent brief description abbreviator\n"
158                  "that is used to form the text in various listings. Each string\n"
159                  "in this list, if found as the leading text of the brief description, will be\n"
160                  "stripped from the text and the result after processing the whole list, is\n"
161                  "used as the annotated text. Otherwise, the brief description is used as-is.\n"
162                  "If left blank, the following values are used (\"$name\" is automatically\n"
163                  "replaced with the name of the entity): \"The $name class\" \"The $name widget\"\n"
164                  "\"The $name file\" \"is\" \"provides\" \"specifies\" \"contains\"\n"
165                  "\"represents\" \"a\" \"an\" \"the\""
166                 );
167   cl->addValue("The $name class");
168   cl->addValue("The $name widget");
169   cl->addValue("The $name file");
170   cl->addValue("is");
171   cl->addValue("provides");
172   cl->addValue("specifies");
173   cl->addValue("contains");
174   cl->addValue("represents");
175   cl->addValue("a");
176   cl->addValue("an");
177   cl->addValue("the");
178   //----
179   cb = cfg->addBool(
180                  "ALWAYS_DETAILED_SEC",
181                  "If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then\n"
182                  "Doxygen will generate a detailed section even if there is only a brief\n"
183                  "description.",
184                  FALSE
185                 );
186   //----
187   cb = cfg->addBool(
188                  "INLINE_INHERITED_MEMB",
189                  "If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all\n"
190                  "inherited members of a class in the documentation of that class as if those\n"
191                  "members were ordinary class members. Constructors, destructors and assignment\n"
192                  "operators of the base classes will not be shown.",
193                  FALSE
194                 );
195   //----
196   cb = cfg->addBool(
197                  "FULL_PATH_NAMES",
198                  "If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full\n"
199                  "path before files name in the file list and in the header files. If set\n"
200                  "to NO the shortest path that makes the file name unique will be used.",
201                  TRUE
202                 );
203   //----
204   cl = cfg->addList(
205                  "STRIP_FROM_PATH",
206                  "If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag\n"
207                  "can be used to strip a user-defined part of the path. Stripping is\n"
208                  "only done if one of the specified strings matches the left-hand part of\n"
209                  "the path. The tag can be used to show relative paths in the file list.\n"
210                  "If left blank the directory from which doxygen is run is used as the\n"
211                  "path to strip. Note that you specify absolute paths here, but also\n"
212                  "relative paths, which will be relative from the directory where doxygen is\n"
213                  "started."
214                 );
215   cl->addValue("");
216   cl->addDependency("FULL_PATH_NAMES");
217   //----
218   cl = cfg->addList(
219                  "STRIP_FROM_INC_PATH",
220                  "The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of\n"
221                  "the path mentioned in the documentation of a class, which tells\n"
222                  "the reader which header file to include in order to use a class.\n"
223                  "If left blank only the name of the header file containing the class\n"
224                  "definition is used. Otherwise one should specify the include paths that\n"
225                  "are normally passed to the compiler using the -I flag."
226                 );
227   //----
228   cb = cfg->addBool(
229                  "SHORT_NAMES",
230                  "If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter\n"
231                  "(but less readable) file names. This can be useful if your file system\n"
232                  "doesn't support long names like on DOS, Mac, or CD-ROM.",
233                  FALSE
234                 );
235   //----
236   cb = cfg->addBool(
237                  "JAVADOC_AUTOBRIEF",
238                  "If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen\n"
239                  "will interpret the first line (until the first dot) of a JavaDoc-style\n"
240                  "comment as the brief description. If set to NO, the JavaDoc\n"
241                  "comments will behave just like regular Qt-style comments\n"
242                  "(thus requiring an explicit @brief command for a brief description.)",
243                  FALSE
244                 );
245   //----
246   cb = cfg->addBool(
247                  "QT_AUTOBRIEF",
248                  "If the QT_AUTOBRIEF tag is set to YES then Doxygen will\n"
249                  "interpret the first line (until the first dot) of a Qt-style\n"
250                  "comment as the brief description. If set to NO, the comments\n"
251                  "will behave just like regular Qt-style comments (thus requiring\n"
252                  "an explicit \\brief command for a brief description.)",
253                  FALSE
254                 );
255   //----
256   cb = cfg->addBool(
257                  "MULTILINE_CPP_IS_BRIEF",
258                  "The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen\n"
259                  "treat a multi-line C++ special comment block (i.e. a block of //! or ///\n"
260                  "comments) as a brief description. This used to be the default behaviour.\n"
261                  "The new default is to treat a multi-line C++ comment block as a detailed\n"
262                  "description. Set this tag to YES if you prefer the old behaviour instead.",
263                  FALSE
264                 );
265   //----
266   cb = cfg->addBool(
267                  "INHERIT_DOCS",
268                  "If the INHERIT_DOCS tag is set to YES (the default) then an undocumented\n"
269                  "member inherits the documentation from any documented member that it\n"
270                  "re-implements.",
271                  TRUE
272                 );
273   //----
274   cb = cfg->addBool(
275                  "SEPARATE_MEMBER_PAGES",
276                  "If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce\n"
277                  "a new page for each member. If set to NO, the documentation of a member will\n"
278                  "be part of the file/class/namespace that contains it.",
279                  FALSE
280                 );
281   //----
282   ci = cfg->addInt(
283                  "TAB_SIZE",
284                  "The TAB_SIZE tag can be used to set the number of spaces in a tab.\n"
285                  "Doxygen uses this value to replace tabs by spaces in code fragments.",
286                  1,16,4
287                 );
288   //----
289   cl = cfg->addList(
290                  "ALIASES",
291                  "This tag can be used to specify a number of aliases that acts\n"
292                  "as commands in the documentation. An alias has the form \"name=value\".\n"
293                  "For example adding \"sideeffect=\\par Side Effects:\\n\" will allow you to\n"
294                  "put the command \\sideeffect (or @sideeffect) in the documentation, which\n"
295                  "will result in a user-defined paragraph with heading \"Side Effects:\".\n"
296                  "You can put \\n's in the value part of an alias to insert newlines."
297                 );
298   //----
299   cl = cfg->addList(
300                  "TCL_SUBST",
301                  "This tag can be used to specify a number of word-keyword mappings (TCL only).\n"
302                  "A mapping has the form \"name=value\". For example adding\n"
303                  "\"class=itcl::class\" will allow you to use the command class in the\n"
304                  "itcl::class meaning."
305                 );
306   //----
307   cb = cfg->addBool(
308                  "OPTIMIZE_OUTPUT_FOR_C",
309                  "Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C\n"
310                  "sources only. Doxygen will then generate output that is more tailored for C.\n"
311                  "For instance, some of the names that are used will be different. The list\n"
312                  "of all members will be omitted, etc.",
313                  FALSE
314                 );
315   //----
316   cb = cfg->addBool(
317                  "OPTIMIZE_OUTPUT_JAVA",
318                  "Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java\n"
319                  "sources only. Doxygen will then generate output that is more tailored for\n"
320                  "Java. For instance, namespaces will be presented as packages, qualified\n"
321                  "scopes will look different, etc.",
322                  FALSE
323                 );
324   //----
325   cb = cfg->addBool(
326                  "OPTIMIZE_FOR_FORTRAN",
327                  "Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran\n"
328                  "sources only. Doxygen will then generate output that is more tailored for\n"
329                  "Fortran.",
330                  FALSE
331                 );
332   //----
333   cb = cfg->addBool(
334                  "OPTIMIZE_OUTPUT_VHDL",
335                  "Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL\n"
336                  "sources. Doxygen will then generate output that is tailored for\n"
337                  "VHDL.",
338                  FALSE
339                 );
340   //----
341   cl = cfg->addList(
342                  "EXTENSION_MAPPING",
343                  "Doxygen selects the parser to use depending on the extension of the files it\n"
344                  "parses. With this tag you can assign which parser to use for a given\n"
345                  "extension. Doxygen has a built-in mapping, but you can override or extend it\n"
346                  "using this tag. The format is ext=language, where ext is a file extension,\n"
347                  "and language is one of the parsers supported by doxygen: IDL, Java,\n"
348                  "Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C,\n"
349                  "C++. For instance to make doxygen treat .inc files as Fortran files (default\n"
350                  "is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note\n"
351                  "that for custom extensions you also need to set FILE_PATTERNS otherwise the\n"
352                  "files are not read by doxygen."
353                 );
354   //----
355   cb = cfg->addBool(
356                  "MARKDOWN_SUPPORT",
357                  "If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all\n"
358                  "comments according to the Markdown format, which allows for more readable\n"
359                  "documentation. See http://daringfireball.net/projects/markdown/ for details.\n"
360                  "The output of markdown processing is further processed by doxygen, so you\n"
361                  "can mix doxygen, HTML, and XML commands with Markdown formatting.\n"
362                  "Disable only in case of backward compatibilities issues.",
363                  TRUE
364                 );
365   //----
366   cb = cfg->addBool(
367                  "AUTOLINK_SUPPORT",
368                  "When enabled doxygen tries to link words that correspond to documented classes,\n"
369                  "or namespaces to their corresponding documentation. Such a link can be\n"
370                  "prevented in individual cases by by putting a % sign in front of the word or\n"
371                  "globally by setting AUTOLINK_SUPPORT to NO.",
372                  TRUE
373                 );
374   //----
375   cb = cfg->addBool(
376                  "BUILTIN_STL_SUPPORT",
377                  "If you use STL classes (i.e. std::string, std::vector, etc.) but do not want\n"
378                  "to include (a tag file for) the STL sources as input, then you should\n"
379                  "set this tag to YES in order to let doxygen match functions declarations and\n"
380                  "definitions whose arguments contain STL classes (e.g. func(std::string); v.s.\n"
381                  "func(std::string) {}). This also makes the inheritance and collaboration\n"
382                  "diagrams that involve STL classes more complete and accurate.",
383                  FALSE
384                 );
385   //----
386   cb = cfg->addBool(
387                  "CPP_CLI_SUPPORT",
388                  "If you use Microsoft's C++/CLI language, you should set this option to YES to\n"
389                  "enable parsing support.",
390                  FALSE
391                 );
392   //----
393   cb = cfg->addBool(
394                  "SIP_SUPPORT",
395                  "Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.\n"
396                  "Doxygen will parse them like normal C++ but will assume all classes use public\n"
397                  "instead of private inheritance when no explicit protection keyword is present.",
398                  FALSE
399                 );
400   //----
401   cb = cfg->addBool(
402                  "IDL_PROPERTY_SUPPORT",
403                  "For Microsoft's IDL there are propget and propput attributes to indicate getter and setter methods for a property. Setting this option to YES (the default) will make doxygen replace the get and set methods by a property in the documentation. This will only work if the methods are indeed getting or setting a simple type. If this is not the case, or you want to show the methods anyway, you should set this option to NO.",
404                  TRUE
405                 );
406   //----
407   cb = cfg->addBool(
408                  "DISTRIBUTE_GROUP_DOC",
409                  "If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC\n"
410                  "tag is set to YES, then doxygen will reuse the documentation of the first\n"
411                  "member in the group (if any) for the other members of the group. By default\n"
412                  "all members of a group must be documented explicitly.",
413                  FALSE
414                 );
415   //----
416   cb = cfg->addBool(
417                  "SUBGROUPING",
418                  "Set the SUBGROUPING tag to YES (the default) to allow class member groups of\n"
419                  "the same type (for instance a group of public functions) to be put as a\n"
420                  "subgroup of that type (e.g. under the Public Functions section). Set it to\n"
421                  "NO to prevent subgrouping. Alternatively, this can be done per class using\n"
422                  "the \\nosubgrouping command.",
423                  TRUE
424                 );
425   //----
426   cb = cfg->addBool(
427                  "INLINE_GROUPED_CLASSES",
428                  "When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and\n"
429                  "unions are shown inside the group in which they are included (e.g. using\n"
430                  "@ingroup) instead of on a separate page (for HTML and Man pages) or\n"
431                  "section (for LaTeX and RTF).",
432                  FALSE
433                 );
434   //----
435   cb = cfg->addBool(
436                  "INLINE_SIMPLE_STRUCTS",
437                  "When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and\n"
438                  "unions with only public data fields will be shown inline in the documentation\n"
439                  "of the scope in which they are defined (i.e. file, namespace, or group\n"
440                  "documentation), provided this scope is documented. If set to NO (the default),\n"
441                  "structs, classes, and unions are shown on a separate page (for HTML and Man\n"
442                  "pages) or section (for LaTeX and RTF).",
443                  FALSE
444                 );
445   //----
446   cb = cfg->addBool(
447                  "TYPEDEF_HIDES_STRUCT",
448                  "When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum\n"
449                  "is documented as struct, union, or enum with the name of the typedef. So\n"
450                  "typedef struct TypeS {} TypeT, will appear in the documentation as a struct\n"
451                  "with name TypeT. When disabled the typedef will appear as a member of a file,\n"
452                  "namespace, or class. And the struct will be named TypeS. This can typically\n"
453                  "be useful for C code in case the coding convention dictates that all compound\n"
454                  "types are typedef'ed and only the typedef is referenced, never the tag name.",
455                  FALSE
456                 );
457   //----
458   ci = cfg->addInt(
459                  "SYMBOL_CACHE_SIZE",
460                  "The SYMBOL_CACHE_SIZE determines the size of the internal cache use to\n"
461                  "determine which symbols to keep in memory and which to flush to disk.\n"
462                  "When the cache is full, less often used symbols will be written to disk.\n"
463                  "For small to medium size projects (<1000 input files) the default value is\n"
464                  "probably good enough. For larger projects a too small cache size can cause\n"
465                  "doxygen to be busy swapping symbols to and from disk most of the time\n"
466                  "causing a significant performance penalty.\n"
467                  "If the system has enough physical memory increasing the cache will improve the\n"
468                  "performance by keeping more symbols in memory. Note that the value works on\n"
469                  "a logarithmic scale so increasing the size by one will roughly double the\n"
470                  "memory usage. The cache size is given by this formula:\n"
471                  "2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,\n"
472                  "corresponding to a cache size of 2^16 = 65536 symbols.",
473                  0,9,0
474                 );
475   //----
476   ci = cfg->addInt(
477                  "LOOKUP_CACHE_SIZE",
478                  "Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be\n"
479                  "set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given\n"
480                  "their name and scope. Since this can be an expensive process and often the\n"
481                  "same symbol appear multiple times in the code, doxygen keeps a cache of\n"
482                  "pre-resolved symbols. If the cache is too small doxygen will become slower.\n"
483                  "If the cache is too large, memory is wasted. The cache size is given by this\n"
484                  "formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0,\n"
485                  "corresponding to a cache size of 2^16 = 65536 symbols.",
486                  0,9,0
487                 );
488   //---------------------------------------------------------------------------
489   cfg->addInfo("Build","Build related configuration options");
490   //---------------------------------------------------------------------------
491
492   //----
493   cb = cfg->addBool(
494                  "EXTRACT_ALL",
495                  "If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in\n"
496                  "documentation are documented, even if no documentation was available.\n"
497                  "Private class members and static file members will be hidden unless\n"
498                  "the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES",
499                  FALSE
500                 );
501   //----
502   cb = cfg->addBool(
503                  "EXTRACT_PRIVATE",
504                  "If the EXTRACT_PRIVATE tag is set to YES all private members of a class\n"
505                  "will be included in the documentation.",
506                  FALSE
507                 );
508   //----
509   cb = cfg->addBool(
510                  "EXTRACT_PACKAGE",
511                  "If the EXTRACT_PACKAGE tag is set to YES all members with package or internal\n"
512                  "scope will be included in the documentation.",
513                  FALSE
514                 );
515   //----
516   cb = cfg->addBool(
517                  "EXTRACT_STATIC",
518                  "If the EXTRACT_STATIC tag is set to YES all static members of a file\n"
519                  "will be included in the documentation.",
520                  FALSE
521                 );
522   //----
523   cb = cfg->addBool(
524                  "EXTRACT_LOCAL_CLASSES",
525                  "If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)\n"
526                  "defined locally in source files will be included in the documentation.\n"
527                  "If set to NO only classes defined in header files are included.",
528                  TRUE
529                 );
530   //----
531   cb = cfg->addBool(
532                  "EXTRACT_LOCAL_METHODS",
533                  "This flag is only useful for Objective-C code. When set to YES local\n"
534                  "methods, which are defined in the implementation section but not in\n"
535                  "the interface are included in the documentation.\n"
536                  "If set to NO (the default) only methods in the interface are included.",
537                  FALSE
538                 );
539   //----
540   cb = cfg->addBool(
541                  "EXTRACT_ANON_NSPACES",
542                  "If this flag is set to YES, the members of anonymous namespaces will be\n"
543                  "extracted and appear in the documentation as a namespace called\n"
544                  "'anonymous_namespace{file}', where file will be replaced with the base\n"
545                  "name of the file that contains the anonymous namespace. By default\n"
546                  "anonymous namespaces are hidden.",
547                  FALSE
548                 );
549   //----
550   cb = cfg->addBool(
551                  "HIDE_UNDOC_MEMBERS",
552                  "If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all\n"
553                  "undocumented members of documented classes, files or namespaces.\n"
554                  "If set to NO (the default) these members will be included in the\n"
555                  "various overviews, but no documentation section is generated.\n"
556                  "This option has no effect if EXTRACT_ALL is enabled.",
557                  FALSE
558                 );
559   //----
560   cb = cfg->addBool(
561                  "HIDE_UNDOC_CLASSES",
562                  "If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all\n"
563                  "undocumented classes that are normally visible in the class hierarchy.\n"
564                  "If set to NO (the default) these classes will be included in the various\n"
565                  "overviews. This option has no effect if EXTRACT_ALL is enabled.",
566                  FALSE
567                 );
568   //----
569   cb = cfg->addBool(
570                  "HIDE_FRIEND_COMPOUNDS",
571                  "If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all\n"
572                  "friend (class|struct|union) declarations.\n"
573                  "If set to NO (the default) these declarations will be included in the\n"
574                  "documentation.",
575                  FALSE
576                 );
577   //----
578   cb = cfg->addBool(
579                  "HIDE_IN_BODY_DOCS",
580                  "If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any\n"
581                  "documentation blocks found inside the body of a function.\n"
582                  "If set to NO (the default) these blocks will be appended to the\n"
583                  "function's detailed documentation block.",
584                  FALSE
585                 );
586   //----
587   cb = cfg->addBool(
588                  "INTERNAL_DOCS",
589                  "The INTERNAL_DOCS tag determines if documentation\n"
590                  "that is typed after a \\internal command is included. If the tag is set\n"
591                  "to NO (the default) then the documentation will be excluded.\n"
592                  "Set it to YES to include the internal documentation.",
593                  FALSE
594                 );
595   //----
596   cb = cfg->addBool(
597                  "CASE_SENSE_NAMES",
598                  "If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate\n"
599                  "file names in lower-case letters. If set to YES upper-case letters are also\n"
600                  "allowed. This is useful if you have classes or files whose names only differ\n"
601                  "in case and if your file system supports case sensitive file names. Windows\n"
602                  "and Mac users are advised to set this option to NO.",
603                  portable_fileSystemIsCaseSensitive()
604                 );
605   //----
606   cb = cfg->addBool(
607                  "HIDE_SCOPE_NAMES",
608                  "If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen\n"
609                  "will show members with their full class and namespace scopes in the\n"
610                  "documentation. If set to YES the scope will be hidden.",
611                  FALSE
612                 );
613   //----
614   cb = cfg->addBool(
615                  "SHOW_INCLUDE_FILES",
616                  "If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen\n"
617                  "will put a list of the files that are included by a file in the documentation\n"
618                  "of that file.",
619                  TRUE
620                 );
621   //----
622   cb = cfg->addBool(
623                  "FORCE_LOCAL_INCLUDES",
624                  "If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen\n"
625                  "will list include files with double quotes in the documentation\n"
626                  "rather than with sharp brackets.",
627                  FALSE
628                 );
629   //----
630   cb = cfg->addBool(
631                  "INLINE_INFO",
632                  "If the INLINE_INFO tag is set to YES (the default) then a tag [inline]\n"
633                  "is inserted in the documentation for inline members.",
634                  TRUE
635                 );
636   //----
637   cb = cfg->addBool(
638                  "SORT_MEMBER_DOCS",
639                  "If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen\n"
640                  "will sort the (detailed) documentation of file and class members\n"
641                  "alphabetically by member name. If set to NO the members will appear in\n"
642                  "declaration order.",
643                  TRUE
644                 );
645   //----
646   cb = cfg->addBool(
647                  "SORT_BRIEF_DOCS",
648                  "If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the\n"
649                  "brief documentation of file, namespace and class members alphabetically\n"
650                  "by member name. If set to NO (the default) the members will appear in\n"
651                  "declaration order.",
652                  FALSE
653                 );
654   //----
655   cb = cfg->addBool(
656                  "SORT_MEMBERS_CTORS_1ST",
657                  "If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen\n"
658                  "will sort the (brief and detailed) documentation of class members so that\n"
659                  "constructors and destructors are listed first. If set to NO (the default)\n"
660                  "the constructors will appear in the respective orders defined by\n"
661                  "SORT_MEMBER_DOCS and SORT_BRIEF_DOCS.\n"
662                  "This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO\n"
663                  "and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.",
664                  FALSE
665                 );
666   //----
667   cb = cfg->addBool(
668                  "SORT_GROUP_NAMES",
669                  "If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the\n"
670                  "hierarchy of group names into alphabetical order. If set to NO (the default)\n"
671                  "the group names will appear in their defined order.",
672                  FALSE
673                 );
674   //----
675   cb = cfg->addBool(
676                  "SORT_BY_SCOPE_NAME",
677                  "If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be\n"
678                  "sorted by fully-qualified names, including namespaces. If set to\n"
679                  "NO (the default), the class list will be sorted only by class name,\n"
680                  "not including the namespace part.\n"
681                  "Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.\n"
682                  "Note: This option applies only to the class list, not to the\n"
683                  "alphabetical list.",
684                  FALSE
685                 );
686   //----
687   cb = cfg->addBool(
688                  "STRICT_PROTO_MATCHING",
689                  "If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to\n"
690                  "do proper type resolution of all parameters of a function it will reject a\n"
691                  "match between the prototype and the implementation of a member function even\n"
692                  "if there is only one candidate or it is obvious which candidate to choose\n"
693                  "by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen\n"
694                  "will still accept a match between prototype and implementation in such cases.",
695                  FALSE
696                 );
697   //----
698   cb = cfg->addBool(
699                  "GENERATE_TODOLIST",
700                  "The GENERATE_TODOLIST tag can be used to enable (YES) or\n"
701                  "disable (NO) the todo list. This list is created by putting \\todo\n"
702                  "commands in the documentation.",
703                  TRUE
704                 );
705   //----
706   cb = cfg->addBool(
707                  "GENERATE_TESTLIST",
708                  "The GENERATE_TESTLIST tag can be used to enable (YES) or\n"
709                  "disable (NO) the test list. This list is created by putting \\test\n"
710                  "commands in the documentation.",
711                  TRUE
712                 );
713   //----
714   cb = cfg->addBool(
715                  "GENERATE_BUGLIST",
716                  "The GENERATE_BUGLIST tag can be used to enable (YES) or\n"
717                  "disable (NO) the bug list. This list is created by putting \\bug\n"
718                  "commands in the documentation.",
719                  TRUE
720                 );
721   //----
722   cb = cfg->addBool(
723                  "GENERATE_DEPRECATEDLIST",
724                  "The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or\n"
725                  "disable (NO) the deprecated list. This list is created by putting\n"
726                  "\\deprecated commands in the documentation.",
727                  TRUE
728                 );
729   //----
730   cl = cfg->addList(
731                  "ENABLED_SECTIONS",
732                  "The ENABLED_SECTIONS tag can be used to enable conditional\n"
733                  "documentation sections, marked by \\if sectionname ... \\endif."
734                 );
735   //----
736   ci = cfg->addInt(
737                  "MAX_INITIALIZER_LINES",
738                  "The MAX_INITIALIZER_LINES tag determines the maximum number of lines\n"
739                  "the initial value of a variable or macro consists of for it to appear in\n"
740                  "the documentation. If the initializer consists of more lines than specified\n"
741                  "here it will be hidden. Use a value of 0 to hide initializers completely.\n"
742                  "The appearance of the initializer of individual variables and macros in the\n"
743                  "documentation can be controlled using \\showinitializer or \\hideinitializer\n"
744                  "command in the documentation regardless of this setting.",
745                  0,10000,30
746                 );
747   //----
748   cb = cfg->addBool(
749                  "SHOW_USED_FILES",
750                  "Set the SHOW_USED_FILES tag to NO to disable the list of files generated\n"
751                  "at the bottom of the documentation of classes and structs. If set to YES the\n"
752                  "list will mention the files that were used to generate the documentation.",
753                  TRUE
754                 );
755   //----
756   cb = cfg->addBool(
757                  "SHOW_FILES",
758                  "Set the SHOW_FILES tag to NO to disable the generation of the Files page.\n"
759                  "This will remove the Files entry from the Quick Index and from the\n"
760                  "Folder Tree View (if specified). The default is YES.",
761                  TRUE
762                 );
763   //----
764   cb = cfg->addBool(
765                  "SHOW_NAMESPACES",
766                  "Set the SHOW_NAMESPACES tag to NO to disable the generation of the\n"
767                  "Namespaces page.\n"
768                  "This will remove the Namespaces entry from the Quick Index\n"
769                  "and from the Folder Tree View (if specified). The default is YES.",
770                  TRUE
771                 );
772   //----
773   cs = cfg->addString(
774                  "FILE_VERSION_FILTER",
775                  "The FILE_VERSION_FILTER tag can be used to specify a program or script that\n"
776                  "doxygen should invoke to get the current version for each file (typically from\n"
777                  "the version control system). Doxygen will invoke the program by executing (via\n"
778                  "popen()) the command <command> <input-file>, where <command> is the value of\n"
779                  "the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file\n"
780                  "provided by doxygen. Whatever the program writes to standard output\n"
781                  "is used as the file version. See the manual for examples."
782                 );
783   cs->setWidgetType(ConfigString::File);
784   //----
785   cs = cfg->addString(
786                  "LAYOUT_FILE",
787                  "The LAYOUT_FILE tag can be used to specify a layout file which will be parsed\n"
788                  "by doxygen. The layout file controls the global structure of the generated\n"
789                  "output files in an output format independent way. To create the layout file\n"
790                  "that represents doxygen's defaults, run doxygen with the -l option.\n"
791                  "You can optionally specify a file name after the option, if omitted\n"
792                  "DoxygenLayout.xml will be used as the name of the layout file."
793                 );
794   cs->setWidgetType(ConfigString::File);
795   //----
796   cl = cfg->addList(
797                  "CITE_BIB_FILES",
798                  "The CITE_BIB_FILES tag can be used to specify one or more bib files\n"
799                  "containing the references data. This must be a list of .bib files. The\n"
800                  ".bib extension is automatically appended if omitted. Using this command\n"
801                  "requires the bibtex tool to be installed. See also\n"
802                  "http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style\n"
803                  "of the bibliography can be controlled using LATEX_BIB_STYLE. To use this\n"
804                  "feature you need bibtex and perl available in the search path."
805                 );
806   cl->setWidgetType(ConfigList::File);
807   //---------------------------------------------------------------------------
808   cfg->addInfo("Messages","configuration options related to warning and progress messages");
809   //---------------------------------------------------------------------------
810
811   //----
812   cb = cfg->addBool(
813                  "QUIET",
814                  "The QUIET tag can be used to turn on/off the messages that are generated\n"
815                  "by doxygen. Possible values are YES and NO. If left blank NO is used.",
816                  FALSE
817                 );
818   //----
819   cb = cfg->addBool(
820                  "WARNINGS",
821                  "The WARNINGS tag can be used to turn on/off the warning messages that are\n"
822                  "generated by doxygen. Possible values are YES and NO. If left blank\n"
823                  "NO is used.",
824                  TRUE
825                 );
826   //----
827   cb = cfg->addBool(
828                  "WARN_IF_UNDOCUMENTED",
829                  "If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings\n"
830                  "for undocumented members. If EXTRACT_ALL is set to YES then this flag will\n"
831                  "automatically be disabled.",
832                  TRUE
833                 );
834   //----
835   cb = cfg->addBool(
836                  "WARN_IF_DOC_ERROR",
837                  "If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for\n"
838                  "potential errors in the documentation, such as not documenting some\n"
839                  "parameters in a documented function, or documenting parameters that\n"
840                  "don't exist or using markup commands wrongly.",
841                  TRUE
842                 );
843   //----
844   cb = cfg->addBool(
845                  "WARN_NO_PARAMDOC",
846                  "The WARN_NO_PARAMDOC option can be enabled to get warnings for\n"
847                  "functions that are documented, but have no documentation for their parameters\n"
848                  "or return value. If set to NO (the default) doxygen will only warn about\n"
849                  "wrong or incomplete parameter documentation, but not about the absence of\n"
850                  "documentation.",
851                  FALSE
852                 );
853   //----
854   cs = cfg->addString(
855                  "WARN_FORMAT",
856                  "The WARN_FORMAT tag determines the format of the warning messages that\n"
857                  "doxygen can produce. The string should contain the $file, $line, and $text\n"
858                  "tags, which will be replaced by the file and line number from which the\n"
859                  "warning originated and the warning text. Optionally the format may contain\n"
860                  "$version, which will be replaced by the version of the file (if it could\n"
861                  "be obtained via FILE_VERSION_FILTER)"
862                 );
863   cs->setDefaultValue("$file:$line: $text");
864   //----
865   cs = cfg->addString(
866                  "WARN_LOGFILE",
867                  "The WARN_LOGFILE tag can be used to specify a file to which warning\n"
868                  "and error messages should be written. If left blank the output is written\n"
869                  "to stderr."
870                 );
871   cs->setWidgetType(ConfigString::File);
872   //---------------------------------------------------------------------------
873   cfg->addInfo("Input","configuration options related to the input files");
874   //---------------------------------------------------------------------------
875
876   //----
877   cl = cfg->addList(
878                  "INPUT",
879                  "The INPUT tag can be used to specify the files and/or directories that contain\n"
880                  "documented source files. You may enter file names like \"myfile.cpp\" or\n"
881                  "directories like \"/usr/src/myproject\". Separate the files or directories\n"
882                  "with spaces."
883                 );
884   cl->addValue("");
885   cl->setWidgetType(ConfigList::FileAndDir);
886   //----
887   cs = cfg->addString(
888                  "INPUT_ENCODING",
889                  "This tag can be used to specify the character encoding of the source files\n"
890                  "that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is\n"
891                  "also the default input encoding. Doxygen uses libiconv (or the iconv built\n"
892                  "into libc) for the transcoding. See http://www.gnu.org/software/libiconv for\n"
893                  "the list of possible encodings."
894                 );
895   cs->setDefaultValue("UTF-8");
896   //----
897   cl = cfg->addList(
898                  "FILE_PATTERNS",
899                  "If the value of the INPUT tag contains directories, you can use the\n"
900                  "FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp\n"
901                  "and *.h) to filter out the source-files in the directories. If left\n"
902                  "blank the following patterns are tested:\n"
903                  "*.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh\n"
904                  "*.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py\n"
905                  "*.f90 *.f *.for *.vhd *.vhdl"
906                 );
907   cl->addValue("*.c");
908   cl->addValue("*.cc");
909   cl->addValue("*.cxx");
910   cl->addValue("*.cpp");
911   cl->addValue("*.c++");
912   cl->addValue("*.d");
913   cl->addValue("*.java");
914   cl->addValue("*.ii");
915   cl->addValue("*.ixx");
916   cl->addValue("*.ipp");
917   cl->addValue("*.i++");
918   cl->addValue("*.inl");
919   cl->addValue("*.h");
920   cl->addValue("*.hh");
921   cl->addValue("*.hxx");
922   cl->addValue("*.hpp");
923   cl->addValue("*.h++");
924   cl->addValue("*.idl");
925   cl->addValue("*.odl");
926   cl->addValue("*.cs");
927   cl->addValue("*.php");
928   cl->addValue("*.php3");
929   cl->addValue("*.inc");
930   cl->addValue("*.m");
931   cl->addValue("*.markdown");
932   cl->addValue("*.md");
933   cl->addValue("*.mm");
934   cl->addValue("*.dox");
935   cl->addValue("*.py");
936   cl->addValue("*.f90");
937   cl->addValue("*.f");
938   cl->addValue("*.for");
939   cl->addValue("*.vhd");
940   cl->addValue("*.vhdl");
941   //----
942   cb = cfg->addBool(
943                  "RECURSIVE",
944                  "The RECURSIVE tag can be used to turn specify whether or not subdirectories\n"
945                  "should be searched for input files as well. Possible values are YES and NO.\n"
946                  "If left blank NO is used.",
947                  FALSE
948                 );
949   //----
950   cl = cfg->addList(
951                  "EXCLUDE",
952                  "The EXCLUDE tag can be used to specify files and/or directories that should be\n"
953                  "excluded from the INPUT source files. This way you can easily exclude a\n"
954                  "subdirectory from a directory tree whose root is specified with the INPUT tag.\n"
955                  "Note that relative paths are relative to the directory from which doxygen is\n"
956                  "run."
957                 );
958   cl->setWidgetType(ConfigList::FileAndDir);
959   //----
960   cb = cfg->addBool(
961                  "EXCLUDE_SYMLINKS",
962                  "The EXCLUDE_SYMLINKS tag can be used to select whether or not files or\n"
963                  "directories that are symbolic links (a Unix file system feature) are excluded\n"
964                  "from the input.",
965                  FALSE
966                 );
967   //----
968   cl = cfg->addList(
969                  "EXCLUDE_PATTERNS",
970                  "If the value of the INPUT tag contains directories, you can use the\n"
971                  "EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude\n"
972                  "certain files from those directories. Note that the wildcards are matched\n"
973                  "against the file with absolute path, so to exclude all test directories\n"
974                  "for example use the pattern */test/*"
975                 );
976   //----
977   cl = cfg->addList(
978                  "EXCLUDE_SYMBOLS",
979                  "The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names\n"
980                  "(namespaces, classes, functions, etc.) that should be excluded from the\n"
981                  "output. The symbol name can be a fully qualified name, a word, or if the\n"
982                  "wildcard * is used, a substring. Examples: ANamespace, AClass,\n"
983                  "AClass::ANamespace, ANamespace::*Test"
984                 );
985   //----
986   cl = cfg->addList(
987                  "EXAMPLE_PATH",
988                  "The EXAMPLE_PATH tag can be used to specify one or more files or\n"
989                  "directories that contain example code fragments that are included (see\n"
990                  "the \\include command)."
991                 );
992   cl->setWidgetType(ConfigList::Dir);
993   //----
994   cl = cfg->addList(
995                  "EXAMPLE_PATTERNS",
996                  "If the value of the EXAMPLE_PATH tag contains directories, you can use the\n"
997                  "EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp\n"
998                  "and *.h) to filter out the source-files in the directories. If left\n"
999                  "blank all files are included."
1000                 );
1001   cl->addValue("*");
1002   //----
1003   cb = cfg->addBool(
1004                  "EXAMPLE_RECURSIVE",
1005                  "If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be\n"
1006                  "searched for input files to be used with the \\include or \\dontinclude\n"
1007                  "commands irrespective of the value of the RECURSIVE tag.\n"
1008                  "Possible values are YES and NO. If left blank NO is used.",
1009                  FALSE
1010                 );
1011   //----
1012   cl = cfg->addList(
1013                  "IMAGE_PATH",
1014                  "The IMAGE_PATH tag can be used to specify one or more files or\n"
1015                  "directories that contain image that are included in the documentation (see\n"
1016                  "the \\image command)."
1017                 );
1018   cl->setWidgetType(ConfigList::Dir);
1019   //----
1020   cs = cfg->addString(
1021                  "INPUT_FILTER",
1022                  "The INPUT_FILTER tag can be used to specify a program that doxygen should\n"
1023                  "invoke to filter for each input file. Doxygen will invoke the filter program\n"
1024                  "by executing (via popen()) the command <filter> <input-file>, where <filter>\n"
1025                  "is the value of the INPUT_FILTER tag, and <input-file> is the name of an\n"
1026                  "input file. Doxygen will then use the output that the filter program writes\n"
1027                  "to standard output.\n"
1028                  "If FILTER_PATTERNS is specified, this tag will be\n"
1029                  "ignored."
1030                 );
1031   cs->setWidgetType(ConfigString::File);
1032   //----
1033   cl = cfg->addList(
1034                  "FILTER_PATTERNS",
1035                  "The FILTER_PATTERNS tag can be used to specify filters on a per file pattern\n"
1036                  "basis.\n"
1037                  "Doxygen will compare the file name with each pattern and apply the\n"
1038                  "filter if there is a match.\n"
1039                  "The filters are a list of the form:\n"
1040                  "pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further\n"
1041                  "info on how filters are used. If FILTER_PATTERNS is empty or if\n"
1042                  "non of the patterns match the file name, INPUT_FILTER is applied."
1043                 );
1044   //----
1045   cb = cfg->addBool(
1046                  "FILTER_SOURCE_FILES",
1047                  "If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using\n"
1048                  "INPUT_FILTER) will be used to filter the input files when producing source\n"
1049                  "files to browse (i.e. when SOURCE_BROWSER is set to YES).",
1050                  FALSE
1051                 );
1052   //----
1053   cl = cfg->addList(
1054                  "FILTER_SOURCE_PATTERNS",
1055                  "The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file\n"
1056                  "pattern. A pattern will override the setting for FILTER_PATTERN (if any)\n"
1057                  "and it is also possible to disable source filtering for a specific pattern\n"
1058                  "using *.ext= (so without naming a filter). This option only has effect when\n"
1059                  "FILTER_SOURCE_FILES is enabled."
1060                 );
1061   cl->addDependency("FILTER_SOURCE_FILES");
1062   //---------------------------------------------------------------------------
1063   cfg->addInfo("Source Browser","configuration options related to source browsing");
1064   //---------------------------------------------------------------------------
1065
1066   //----
1067   cb = cfg->addBool(
1068                  "SOURCE_BROWSER",
1069                  "If the SOURCE_BROWSER tag is set to YES then a list of source files will\n"
1070                  "be generated. Documented entities will be cross-referenced with these sources.\n"
1071                  "Note: To get rid of all source code in the generated output, make sure also\n"
1072                  "VERBATIM_HEADERS is set to NO.",
1073                  FALSE
1074                 );
1075   //----
1076   cb = cfg->addBool(
1077                  "INLINE_SOURCES",
1078                  "Setting the INLINE_SOURCES tag to YES will include the body\n"
1079                  "of functions and classes directly in the documentation.",
1080                  FALSE
1081                 );
1082   //----
1083   cb = cfg->addBool(
1084                  "STRIP_CODE_COMMENTS",
1085                  "Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct\n"
1086                  "doxygen to hide any special comment blocks from generated source code\n"
1087                  "fragments. Normal C, C++ and Fortran comments will always remain visible.",
1088                  TRUE
1089                 );
1090   //----
1091   cb = cfg->addBool(
1092                  "REFERENCED_BY_RELATION",
1093                  "If the REFERENCED_BY_RELATION tag is set to YES\n"
1094                  "then for each documented function all documented\n"
1095                  "functions referencing it will be listed.",
1096                  FALSE
1097                 );
1098   //----
1099   cb = cfg->addBool(
1100                  "REFERENCES_RELATION",
1101                  "If the REFERENCES_RELATION tag is set to YES\n"
1102                  "then for each documented function all documented entities\n"
1103                  "called/used by that function will be listed.",
1104                  FALSE
1105                 );
1106   //----
1107   cb = cfg->addBool(
1108                  "REFERENCES_LINK_SOURCE",
1109                  "If the REFERENCES_LINK_SOURCE tag is set to YES (the default)\n"
1110                  "and SOURCE_BROWSER tag is set to YES, then the hyperlinks from\n"
1111                  "functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will\n"
1112                  "link to the source code.\n"
1113                  "Otherwise they will link to the documentation.",
1114                  TRUE
1115                 );
1116   //----
1117   cb = cfg->addBool(
1118                  "USE_HTAGS",
1119                  "If the USE_HTAGS tag is set to YES then the references to source code\n"
1120                  "will point to the HTML generated by the htags(1) tool instead of doxygen\n"
1121                  "built-in source browser. The htags tool is part of GNU's global source\n"
1122                  "tagging system (see http://www.gnu.org/software/global/global.html). You\n"
1123                  "will need version 4.8.6 or higher.",
1124                  FALSE
1125                 );
1126   cb->addDependency("SOURCE_BROWSER");
1127   //----
1128   cb = cfg->addBool(
1129                  "VERBATIM_HEADERS",
1130                  "If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen\n"
1131                  "will generate a verbatim copy of the header file for each class for\n"
1132                  "which an include is specified. Set to NO to disable this.",
1133                  TRUE
1134                 );
1135   //---------------------------------------------------------------------------
1136   cfg->addInfo("Index","configuration options related to the alphabetical class index");
1137   //---------------------------------------------------------------------------
1138
1139   //----
1140   cb = cfg->addBool(
1141                  "ALPHABETICAL_INDEX",
1142                  "If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index\n"
1143                  "of all compounds will be generated. Enable this if the project\n"
1144                  "contains a lot of classes, structs, unions or interfaces.",
1145                  TRUE
1146                 );
1147   //----
1148   ci = cfg->addInt(
1149                  "COLS_IN_ALPHA_INDEX",
1150                  "If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then\n"
1151                  "the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns\n"
1152                  "in which this list will be split (can be a number in the range [1..20])",
1153                  1,20,5
1154                 );
1155   //----
1156   cl = cfg->addList(
1157                  "IGNORE_PREFIX",
1158                  "In case all classes in a project start with a common prefix, all\n"
1159                  "classes will be put under the same header in the alphabetical index.\n"
1160                  "The IGNORE_PREFIX tag can be used to specify one or more prefixes that\n"
1161                  "should be ignored while generating the index headers."
1162                 );
1163   //---------------------------------------------------------------------------
1164   cfg->addInfo("HTML","configuration options related to the HTML output");
1165   //---------------------------------------------------------------------------
1166
1167   //----
1168   cb = cfg->addBool(
1169                  "GENERATE_HTML",
1170                  "If the GENERATE_HTML tag is set to YES (the default) Doxygen will\n"
1171                  "generate HTML output.",
1172                  TRUE
1173                 );
1174   //----
1175   cs = cfg->addString(
1176                  "HTML_OUTPUT",
1177                  "The HTML_OUTPUT tag is used to specify where the HTML docs will be put.\n"
1178                  "If a relative path is entered the value of OUTPUT_DIRECTORY will be\n"
1179                  "put in front of it. If left blank `html' will be used as the default path."
1180                 );
1181   cs->setDefaultValue("html");
1182   cs->setWidgetType(ConfigString::Dir);
1183   cs->addDependency("GENERATE_HTML");
1184   //----
1185   cs = cfg->addString(
1186                  "HTML_FILE_EXTENSION",
1187                  "The HTML_FILE_EXTENSION tag can be used to specify the file extension for\n"
1188                  "each generated HTML page (for example: .htm,.php,.asp). If it is left blank\n"
1189                  "doxygen will generate files with .html extension."
1190                 );
1191   cs->setDefaultValue(".html");
1192   cs->addDependency("GENERATE_HTML");
1193   //----
1194   cs = cfg->addString(
1195                  "HTML_HEADER",
1196                  "The HTML_HEADER tag can be used to specify a personal HTML header for\n"
1197                  "each generated HTML page. If it is left blank doxygen will generate a\n"
1198                  "standard header. Note that when using a custom header you are responsible\n"
1199                  " for the proper inclusion of any scripts and style sheets that doxygen\n"
1200                  "needs, which is dependent on the configuration options used.\n"
1201                  "It is advised to generate a default header using \"doxygen -w html\n"
1202                  "header.html footer.html stylesheet.css YourConfigFile\" and then modify\n"
1203                  "that header. Note that the header is subject to change so you typically\n"
1204                  "have to redo this when upgrading to a newer version of doxygen or when\n"
1205                  "changing the value of configuration settings such as GENERATE_TREEVIEW!"
1206                 );
1207   cs->setWidgetType(ConfigString::File);
1208   cs->addDependency("GENERATE_HTML");
1209   //----
1210   cs = cfg->addString(
1211                  "HTML_FOOTER",
1212                  "The HTML_FOOTER tag can be used to specify a personal HTML footer for\n"
1213                  "each generated HTML page. If it is left blank doxygen will generate a\n"
1214                  "standard footer."
1215                 );
1216   cs->setWidgetType(ConfigString::File);
1217   cs->addDependency("GENERATE_HTML");
1218   //----
1219   cs = cfg->addString(
1220                  "HTML_STYLESHEET",
1221                  "The HTML_STYLESHEET tag can be used to specify a user-defined cascading\n"
1222                  "style sheet that is used by each HTML page. It can be used to\n"
1223                  "fine-tune the look of the HTML output. If left blank doxygen will\n"
1224                  "generate a default style sheet. Note that it is recommended to use\n"
1225                  "HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this\n"
1226                  "tag will in the future become obsolete."
1227                 );
1228   cs->setWidgetType(ConfigString::File);
1229   cs->addDependency("GENERATE_HTML");
1230   //----
1231   cs = cfg->addString(
1232                  "HTML_EXTRA_STYLESHEET",
1233                  "The HTML_EXTRA_STYLESHEET tag can be used to specify an additional\n"
1234                  "user-defined cascading style sheet that is included after the standard\n"
1235                  "style sheets created by doxygen. Using this option one can overrule\n"
1236                  "certain style aspects. This is preferred over using HTML_STYLESHEET\n"
1237                  "since it does not replace the standard style sheet and is therefor more\n"
1238                  "robust against future updates. Doxygen will copy the style sheet file to\n"
1239                  "the output directory."
1240                 );
1241   cs->setWidgetType(ConfigString::File);
1242   cs->addDependency("GENERATE_HTML");
1243   //----
1244   cl = cfg->addList(
1245                  "HTML_EXTRA_FILES",
1246                  "The HTML_EXTRA_FILES tag can be used to specify one or more extra images or\n"
1247                  "other source files which should be copied to the HTML output directory. Note\n"
1248                  "that these files will be copied to the base HTML output directory. Use the\n"
1249                  "$relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these\n"
1250                  "files. In the HTML_STYLESHEET file, use the file name only. Also note that\n"
1251                  "the files will be copied as-is; there are no commands or markers available."
1252                 );
1253   cl->addDependency("GENERATE_HTML");
1254   cl->setWidgetType(ConfigList::File);
1255   //----
1256   ci = cfg->addInt(
1257                  "HTML_COLORSTYLE_HUE",
1258                  "The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.\n"
1259                  "Doxygen will adjust the colors in the style sheet and background images\n"
1260                  "according to this color. Hue is specified as an angle on a colorwheel,\n"
1261                  "see http://en.wikipedia.org/wiki/Hue for more information.\n"
1262                  "For instance the value 0 represents red, 60 is yellow, 120 is green,\n"
1263                  "180 is cyan, 240 is blue, 300 purple, and 360 is red again.\n"
1264                  "The allowed range is 0 to 359.",
1265                  0,359,220
1266                 );
1267   ci->addDependency("GENERATE_HTML");
1268   //----
1269   ci = cfg->addInt(
1270                  "HTML_COLORSTYLE_SAT",
1271                  "The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of\n"
1272                  "the colors in the HTML output. For a value of 0 the output will use\n"
1273                  "grayscales only. A value of 255 will produce the most vivid colors.",
1274                  0,255,100
1275                 );
1276   ci->addDependency("GENERATE_HTML");
1277   //----
1278   ci = cfg->addInt(
1279                  "HTML_COLORSTYLE_GAMMA",
1280                  "The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to\n"
1281                  "the luminance component of the colors in the HTML output. Values below\n"
1282                  "100 gradually make the output lighter, whereas values above 100 make\n"
1283                  "the output darker. The value divided by 100 is the actual gamma applied,\n"
1284                  "so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2,\n"
1285                  "and 100 does not change the gamma.",
1286                  40,240,80
1287                 );
1288   //----
1289   cb = cfg->addBool(
1290                  "HTML_TIMESTAMP",
1291                  "If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML\n"
1292                  "page will contain the date and time when the page was generated. Setting\n"
1293                  "this to NO can help when comparing the output of multiple runs.",
1294                  FALSE
1295                 );
1296   cb->addDependency("GENERATE_HTML");
1297   //----
1298   cb = cfg->addBool(
1299                  "HTML_DYNAMIC_SECTIONS",
1300                  "If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML\n"
1301                  "documentation will contain sections that can be hidden and shown after the\n"
1302                  "page has loaded.",
1303                  FALSE
1304                 );
1305   cb->addDependency("GENERATE_HTML");
1306   //----
1307   ci = cfg->addInt(
1308                  "HTML_INDEX_NUM_ENTRIES",
1309                  "With HTML_INDEX_NUM_ENTRIES one can control the preferred number of\n"
1310                  "entries shown in the various tree structured indices initially; the user\n"
1311                  "can expand and collapse entries dynamically later on. Doxygen will expand\n"
1312                  "the tree to such a level that at most the specified number of entries are\n"
1313                  "visible (unless a fully collapsed tree already exceeds this amount).\n"
1314                  "So setting the number of entries 1 will produce a full collapsed tree by\n"
1315                  "default. 0 is a special value representing an infinite number of entries\n"
1316                  "and will result in a full expanded tree by default.",
1317                  0,9999,100
1318                 );
1319   //----
1320   cb = cfg->addBool(
1321                  "GENERATE_DOCSET",
1322                  "If the GENERATE_DOCSET tag is set to YES, additional index files\n"
1323                  "will be generated that can be used as input for Apple's Xcode 3\n"
1324                  "integrated development environment, introduced with OSX 10.5 (Leopard).\n"
1325                  "To create a documentation set, doxygen will generate a Makefile in the\n"
1326                  "HTML output directory. Running make will produce the docset in that\n"
1327                  "directory and running \"make install\" will install the docset in\n"
1328                  "~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find\n"
1329                  "it at startup.\n"
1330                  "See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html\n"
1331                  "for more information.",
1332                  FALSE
1333                 );
1334   cb->addDependency("GENERATE_HTML");
1335   //----
1336   cs = cfg->addString(
1337                  "DOCSET_FEEDNAME",
1338                  "When GENERATE_DOCSET tag is set to YES, this tag determines the name of the\n"
1339                  "feed. A documentation feed provides an umbrella under which multiple\n"
1340                  "documentation sets from a single provider (such as a company or product suite)\n"
1341                  "can be grouped."
1342                 );
1343   cs->setDefaultValue("Doxygen generated docs");
1344   cs->addDependency("GENERATE_DOCSET");
1345   //----
1346   cs = cfg->addString(
1347                  "DOCSET_BUNDLE_ID",
1348                  "When GENERATE_DOCSET tag is set to YES, this tag specifies a string that\n"
1349                  "should uniquely identify the documentation set bundle. This should be a\n"
1350                  "reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen\n"
1351                  "will append .docset to the name."
1352                 );
1353   cs->setDefaultValue("org.doxygen.Project");
1354   cs->addDependency("GENERATE_DOCSET");
1355   //----
1356   cs = cfg->addString(
1357                  "DOCSET_PUBLISHER_ID",
1358                  "When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely\n"
1359                  "identify the documentation publisher. This should be a reverse domain-name\n"
1360                  "style string, e.g. com.mycompany.MyDocSet.documentation."
1361                 );
1362   cs->setDefaultValue("org.doxygen.Publisher");
1363   cs->addDependency("GENERATE_DOCSET");
1364   //----
1365   cs = cfg->addString(
1366                  "DOCSET_PUBLISHER_NAME",
1367                  "The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher."
1368                 );
1369   cs->setDefaultValue("Publisher");
1370   cs->addDependency("GENERATE_DOCSET");
1371   //----
1372   cb = cfg->addBool(
1373                  "GENERATE_HTMLHELP",
1374                  "If the GENERATE_HTMLHELP tag is set to YES, additional index files\n"
1375                  "will be generated that can be used as input for tools like the\n"
1376                  "Microsoft HTML help workshop to generate a compiled HTML help file (.chm)\n"
1377                  "of the generated HTML documentation.",
1378                  FALSE
1379                 );
1380   cb->addDependency("GENERATE_HTML");
1381   //----
1382   cs = cfg->addString(
1383                  "CHM_FILE",
1384                  "If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can\n"
1385                  "be used to specify the file name of the resulting .chm file. You\n"
1386                  "can add a path in front of the file if the result should not be\n"
1387                  "written to the html output directory."
1388                 );
1389   cs->setWidgetType(ConfigString::File);
1390   cs->addDependency("GENERATE_HTMLHELP");
1391   //----
1392   cs = cfg->addString(
1393                  "HHC_LOCATION",
1394                  "If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can\n"
1395                  "be used to specify the location (absolute path including file name) of\n"
1396                  "the HTML help compiler (hhc.exe). If non-empty doxygen will try to run\n"
1397                  "the HTML help compiler on the generated index.hhp."
1398                 );
1399   cs->setWidgetType(ConfigString::File);
1400   cs->addDependency("GENERATE_HTMLHELP");
1401   //----
1402   cb = cfg->addBool(
1403                  "GENERATE_CHI",
1404                  "If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag\n"
1405                  "controls if a separate .chi index file is generated (YES) or that\n"
1406                  "it should be included in the master .chm file (NO).",
1407                  FALSE
1408                 );
1409   cb->addDependency("GENERATE_HTMLHELP");
1410   //----
1411   cs = cfg->addString(
1412                  "CHM_INDEX_ENCODING",
1413                  "If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING\n"
1414                  "is used to encode HtmlHelp index (hhk), content (hhc) and project file\n"
1415                  "content."
1416                 );
1417   cs->addDependency("GENERATE_HTMLHELP");
1418   //----
1419   cb = cfg->addBool(
1420                  "BINARY_TOC",
1421                  "If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag\n"
1422                  "controls whether a binary table of contents is generated (YES) or a\n"
1423                  "normal table of contents (NO) in the .chm file.",
1424                  FALSE
1425                 );
1426   cb->addDependency("GENERATE_HTMLHELP");
1427   //----
1428   cb = cfg->addBool(
1429                  "TOC_EXPAND",
1430                  "The TOC_EXPAND flag can be set to YES to add extra items for group members\n"
1431                  "to the contents of the HTML help documentation and to the tree view.",
1432                  FALSE
1433                 );
1434   cb->addDependency("GENERATE_HTMLHELP");
1435   //----
1436   cb = cfg->addBool(
1437                  "GENERATE_QHP",
1438                  "If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and\n"
1439                  "QHP_VIRTUAL_FOLDER are set, an additional index file will be generated\n"
1440                  "that can be used as input for Qt's qhelpgenerator to generate a\n"
1441                  "Qt Compressed Help (.qch) of the generated HTML documentation.",
1442                  FALSE
1443                 );
1444   cb->addDependency("GENERATE_HTML");
1445   //----
1446   cs = cfg->addString(
1447                  "QCH_FILE",
1448                  "If the QHG_LOCATION tag is specified, the QCH_FILE tag can\n"
1449                  "be used to specify the file name of the resulting .qch file.\n"
1450                  "The path specified is relative to the HTML output folder."
1451                 );
1452   cs->setWidgetType(ConfigString::File);
1453   cs->addDependency("GENERATE_QHP");
1454   //----
1455   cs = cfg->addString(
1456                  "QHP_NAMESPACE",
1457                  "The QHP_NAMESPACE tag specifies the namespace to use when generating\n"
1458                  "Qt Help Project output. For more information please see\n"
1459                  "http://doc.trolltech.com/qthelpproject.html#namespace"
1460                 );
1461   cs->setDefaultValue("org.doxygen.Project");
1462   cs->addDependency("GENERATE_QHP");
1463   //----
1464   cs = cfg->addString(
1465                  "QHP_VIRTUAL_FOLDER",
1466                  "The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating\n"
1467                  "Qt Help Project output. For more information please see\n"
1468                  "http://doc.trolltech.com/qthelpproject.html#virtual-folders"
1469                 );
1470   cs->setDefaultValue("doc");
1471   cs->addDependency("GENERATE_QHP");
1472   //----
1473   cs = cfg->addString(
1474                  "QHP_CUST_FILTER_NAME",
1475                  "If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to\n"
1476                  "add. For more information please see\n"
1477                  "http://doc.trolltech.com/qthelpproject.html#custom-filters"
1478                 );
1479   cs->addDependency("GENERATE_QHP");
1480   //----
1481   cs = cfg->addString(
1482                  "QHP_CUST_FILTER_ATTRS",
1483                  "The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the\n"
1484                  "custom filter to add. For more information please see\n"
1485                  "<a href=\"http://doc.trolltech.com/qthelpproject.html#custom-filters\">\n"
1486                  "Qt Help Project / Custom Filters</a>."
1487                 );
1488   cs->addDependency("GENERATE_QHP");
1489   //----
1490   cs = cfg->addString(
1491                  "QHP_SECT_FILTER_ATTRS",
1492                  "The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this\n"
1493                  "project's\n"
1494                  "filter section matches.\n"
1495                  "<a href=\"http://doc.trolltech.com/qthelpproject.html#filter-attributes\">\n"
1496                  "Qt Help Project / Filter Attributes</a>."
1497                 );
1498   cs->addDependency("GENERATE_QHP");
1499   //----
1500   cs = cfg->addString(
1501                  "QHG_LOCATION",
1502                  "If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can\n"
1503                  "be used to specify the location of Qt's qhelpgenerator.\n"
1504                  "If non-empty doxygen will try to run qhelpgenerator on the generated\n"
1505                  ".qhp file."
1506                 );
1507   cs->setWidgetType(ConfigString::File);
1508   cs->addDependency("GENERATE_QHP");
1509   //----
1510   cb = cfg->addBool(
1511                  "GENERATE_ECLIPSEHELP",
1512                  "If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files\n"
1513                  " will be generated, which together with the HTML files, form an Eclipse help\n"
1514                  "plugin. To install this plugin and make it available under the help contents\n"
1515                  "menu in Eclipse, the contents of the directory containing the HTML and XML\n"
1516                  "files needs to be copied into the plugins directory of eclipse. The name of\n"
1517                  "the directory within the plugins directory should be the same as\n"
1518                  "the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before\n"
1519                  "the help appears.",
1520                  FALSE
1521                 );
1522   cb->addDependency("GENERATE_HTML");
1523   //----
1524   cs = cfg->addString(
1525                  "ECLIPSE_DOC_ID",
1526                  "A unique identifier for the eclipse help plugin. When installing the plugin\n"
1527                  "the directory name containing the HTML and XML files should also have\n"
1528                  "this name."
1529                 );
1530   cs->setDefaultValue("org.doxygen.Project");
1531   cs->addDependency("GENERATE_ECLIPSEHELP");
1532   //----
1533   cb = cfg->addBool(
1534                  "DISABLE_INDEX",
1535                  "The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs)\n"
1536                  "at top of each HTML page. The value NO (the default) enables the index and\n"
1537                  "the value YES disables it. Since the tabs have the same information as the\n"
1538                  "navigation tree you can set this option to NO if you already set\n"
1539                  "GENERATE_TREEVIEW to YES.",
1540                  FALSE
1541                 );
1542   cb->addDependency("GENERATE_HTML");
1543   //----
1544   cb = cfg->addBool(
1545                  "GENERATE_TREEVIEW",
1546                  "The GENERATE_TREEVIEW tag is used to specify whether a tree-like index\n"
1547                  "structure should be generated to display hierarchical information.\n"
1548                  "If the tag value is set to YES, a side panel will be generated\n"
1549                  "containing a tree-like index structure (just like the one that\n"
1550                  "is generated for HTML Help). For this to work a browser that supports\n"
1551                  "JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).\n"
1552                  "Windows users are probably better off using the HTML help feature.\n"
1553                  "Since the tree basically has the same information as the tab index you\n"
1554                  "could consider to set DISABLE_INDEX to NO when enabling this option.",
1555                  FALSE
1556                 );
1557   cb->addDependency("GENERATE_HTML");
1558   //----
1559   ci = cfg->addInt(
1560                  "ENUM_VALUES_PER_LINE",
1561                  "The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values\n"
1562                  "(range [0,1..20]) that doxygen will group on one line in the generated HTML\n"
1563                  "documentation. Note that a value of 0 will completely suppress the enum\n"
1564                  "values from appearing in the overview section.",
1565                  0,20,4
1566                 );
1567   ci->addDependency("GENERATE_HTML");
1568   //----
1569   ci = cfg->addInt(
1570                  "TREEVIEW_WIDTH",
1571                  "If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be\n"
1572                  "used to set the initial width (in pixels) of the frame in which the tree\n"
1573                  "is shown.",
1574                  0,1500,250
1575                 );
1576   ci->addDependency("GENERATE_HTML");
1577   //----
1578   cb = cfg->addBool(
1579                  "EXT_LINKS_IN_WINDOW",
1580                  "When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open\n"
1581                  "links to external symbols imported via tag files in a separate window.",
1582                  FALSE
1583                 );
1584   cb->addDependency("GENERATE_HTML");
1585   //----
1586   ci = cfg->addInt(
1587                  "FORMULA_FONTSIZE",
1588                  "Use this tag to change the font size of Latex formulas included\n"
1589                  "as images in the HTML documentation. The default is 10. Note that\n"
1590                  "when you change the font size after a successful doxygen run you need\n"
1591                  "to manually remove any form_*.png images from the HTML output directory\n"
1592                  "to force them to be regenerated.",
1593                  8,50,10
1594                 );
1595   ci->addDependency("GENERATE_HTML");
1596   //----
1597   cb = cfg->addBool(
1598                  "FORMULA_TRANSPARENT",
1599                  "Use the FORMULA_TRANPARENT tag to determine whether or not the images\n"
1600                  "generated for formulas are transparent PNGs. Transparent PNGs are\n"
1601                  "not supported properly for IE 6.0, but are supported on all modern browsers.\n"
1602                  "Note that when changing this option you need to delete any form_*.png files\n"
1603                  "in the HTML output before the changes have effect.",
1604                  TRUE
1605                 );
1606   cb->addDependency("GENERATE_HTML");
1607   //----
1608   cb = cfg->addBool(
1609                  "USE_MATHJAX",
1610                  "Enable the USE_MATHJAX option to render LaTeX formulas using MathJax\n"
1611                  "(see http://www.mathjax.org) which uses client side Javascript for the\n"
1612                  "rendering instead of using prerendered bitmaps. Use this if you do not\n"
1613                  "have LaTeX installed or if you want to formulas look prettier in the HTML\n"
1614                  "output. When enabled you may also need to install MathJax separately and\n"
1615                  "configure the path to it using the MATHJAX_RELPATH option.",
1616                  FALSE
1617                 );
1618   //----
1619   cs = cfg->addString(
1620                  "MATHJAX_RELPATH",
1621                  "When MathJax is enabled you need to specify the location relative to the\n"
1622                  "HTML output directory using the MATHJAX_RELPATH option. The destination\n"
1623                  "directory should contain the MathJax.js script. For instance, if the mathjax\n"
1624                  "directory is located at the same level as the HTML output directory, then\n"
1625                  "MATHJAX_RELPATH should be ../mathjax. The default value points to\n"
1626                  "the MathJax Content Delivery Network so you can quickly see the result without\n"
1627                  "installing MathJax.\n"
1628                  "However, it is strongly recommended to install a local\n"
1629                  "copy of MathJax from http://www.mathjax.org before deployment."
1630                 );
1631   cs->setDefaultValue("http://cdn.mathjax.org/mathjax/latest");
1632   //----
1633   cl = cfg->addList(
1634                  "MATHJAX_EXTENSIONS",
1635                  "The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension\n"
1636                  "names that should be enabled during MathJax rendering."
1637                 );
1638   cl->addDependency("USE_MATHJAX");
1639   //----
1640   cb = cfg->addBool(
1641                  "SEARCHENGINE",
1642                  "When the SEARCHENGINE tag is enabled doxygen will generate a search box\n"
1643                  "for the HTML output. The underlying search engine uses javascript\n"
1644                  "and DHTML and should work on any modern browser. Note that when using\n"
1645                  "HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets\n"
1646                  "(GENERATE_DOCSET) there is already a search function so this one should\n"
1647                  "typically be disabled. For large projects the javascript based search engine\n"
1648                  "can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.",
1649                  TRUE
1650                 );
1651   cb->addDependency("GENERATE_HTML");
1652   //----
1653   cb = cfg->addBool(
1654                  "SERVER_BASED_SEARCH",
1655                  "When the SERVER_BASED_SEARCH tag is enabled the search engine will be\n"
1656                  "implemented using a PHP enabled web server instead of at the web client\n"
1657                  "using Javascript. Doxygen will generate the search PHP script and index\n"
1658                  "file to put on the web server. The advantage of the server\n"
1659                  "based approach is that it scales better to large projects and allows\n"
1660                  "full text search. The disadvantages are that it is more difficult to setup\n"
1661                  "and does not have live searching capabilities.",
1662                  FALSE
1663                 );
1664   cb->addDependency("SEARCHENGINE");
1665   //---------------------------------------------------------------------------
1666   cfg->addInfo("LaTeX","configuration options related to the LaTeX output");
1667   //---------------------------------------------------------------------------
1668
1669   //----
1670   cb = cfg->addBool(
1671                  "GENERATE_LATEX",
1672                  "If the GENERATE_LATEX tag is set to YES (the default) Doxygen will\n"
1673                  "generate Latex output.",
1674                  TRUE
1675                 );
1676   //----
1677   cs = cfg->addString(
1678                  "LATEX_OUTPUT",
1679                  "The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.\n"
1680                  "If a relative path is entered the value of OUTPUT_DIRECTORY will be\n"
1681                  "put in front of it. If left blank `latex' will be used as the default path."
1682                 );
1683   cs->setDefaultValue("latex");
1684   cs->setWidgetType(ConfigString::Dir);
1685   cs->addDependency("GENERATE_LATEX");
1686   //----
1687   cs = cfg->addString(
1688                  "LATEX_CMD_NAME",
1689                  "The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be\n"
1690                  "invoked. If left blank `latex' will be used as the default command name.\n"
1691                  "Note that when enabling USE_PDFLATEX this option is only used for\n"
1692                  "generating bitmaps for formulas in the HTML output, but not in the\n"
1693                  "Makefile that is written to the output directory."
1694                 );
1695   cs->setDefaultValue("latex");
1696   cs->setWidgetType(ConfigString::File);
1697   cs->addDependency("GENERATE_LATEX");
1698   //----
1699   cs = cfg->addString(
1700                  "MAKEINDEX_CMD_NAME",
1701                  "The MAKEINDEX_CMD_NAME tag can be used to specify the command name to\n"
1702                  "generate index for LaTeX. If left blank `makeindex' will be used as the\n"
1703                  "default command name."
1704                 );
1705   cs->setDefaultValue("makeindex");
1706   cs->setWidgetType(ConfigString::File);
1707   cs->addDependency("GENERATE_LATEX");
1708   //----
1709   cb = cfg->addBool(
1710                  "COMPACT_LATEX",
1711                  "If the COMPACT_LATEX tag is set to YES Doxygen generates more compact\n"
1712                  "LaTeX documents. This may be useful for small projects and may help to\n"
1713                  "save some trees in general.",
1714                  FALSE
1715                 );
1716   cb->addDependency("GENERATE_LATEX");
1717   //----
1718   ce = cfg->addEnum(
1719                  "PAPER_TYPE",
1720                  "The PAPER_TYPE tag can be used to set the paper type that is used\n"
1721                  "by the printer. Possible values are: a4, letter, legal and\n"
1722                  "executive. If left blank a4wide will be used.",
1723                  "a4"
1724                 );
1725   ce->addValue("a4");
1726   ce->addValue("a4wide");
1727   ce->addValue("letter");
1728   ce->addValue("legal");
1729   ce->addValue("executive");
1730   ce->addDependency("GENERATE_LATEX");
1731   //----
1732   cl = cfg->addList(
1733                  "EXTRA_PACKAGES",
1734                  "The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX\n"
1735                  "packages that should be included in the LaTeX output."
1736                 );
1737   cl->addDependency("GENERATE_LATEX");
1738   //----
1739   cs = cfg->addString(
1740                  "LATEX_HEADER",
1741                  "The LATEX_HEADER tag can be used to specify a personal LaTeX header for\n"
1742                  "the generated latex document. The header should contain everything until\n"
1743                  "the first chapter. If it is left blank doxygen will generate a\n"
1744                  "standard header. Notice: only use this tag if you know what you are doing!"
1745                 );
1746   cs->setWidgetType(ConfigString::File);
1747   cs->addDependency("GENERATE_LATEX");
1748   //----
1749   cs = cfg->addString(
1750                  "LATEX_FOOTER",
1751                  "The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for\n"
1752                  "the generated latex document. The footer should contain everything after\n"
1753                  "the last chapter. If it is left blank doxygen will generate a\n"
1754                  "standard footer. Notice: only use this tag if you know what you are doing!"
1755                 );
1756   cs->setWidgetType(ConfigString::File);
1757   cs->addDependency("GENERATE_LATEX");
1758   //----
1759   cb = cfg->addBool(
1760                  "PDF_HYPERLINKS",
1761                  "If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated\n"
1762                  "is prepared for conversion to pdf (using ps2pdf). The pdf file will\n"
1763                  "contain links (just like the HTML output) instead of page references\n"
1764                  "This makes the output suitable for online browsing using a pdf viewer.",
1765                  TRUE
1766                 );
1767   cb->addDependency("GENERATE_LATEX");
1768   //----
1769   cb = cfg->addBool(
1770                  "USE_PDFLATEX",
1771                  "If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of\n"
1772                  "plain latex in the generated Makefile. Set this option to YES to get a\n"
1773                  "higher quality PDF documentation.",
1774                  TRUE
1775                 );
1776   cb->addDependency("GENERATE_LATEX");
1777   //----
1778   cb = cfg->addBool(
1779                  "LATEX_BATCHMODE",
1780                  "If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\\\batchmode.\n"
1781                  "command to the generated LaTeX files. This will instruct LaTeX to keep\n"
1782                  "running if errors occur, instead of asking the user for help.\n"
1783                  "This option is also used when generating formulas in HTML.",
1784                  FALSE
1785                 );
1786   cb->addDependency("GENERATE_LATEX");
1787   //----
1788   cb = cfg->addBool(
1789                  "LATEX_HIDE_INDICES",
1790                  "If LATEX_HIDE_INDICES is set to YES then doxygen will not\n"
1791                  "include the index chapters (such as File Index, Compound Index, etc.)\n"
1792                  "in the output.",
1793                  FALSE
1794                 );
1795   cb->addDependency("GENERATE_LATEX");
1796   //----
1797   cb = cfg->addBool(
1798                  "LATEX_SOURCE_CODE",
1799                  "If LATEX_SOURCE_CODE is set to YES then doxygen will include\n"
1800                  "source code with syntax highlighting in the LaTeX output.\n"
1801                  "Note that which sources are shown also depends on other settings\n"
1802                  "such as SOURCE_BROWSER.",
1803                  FALSE
1804                 );
1805   cb->addDependency("GENERATE_LATEX");
1806   //----
1807   cs = cfg->addString(
1808                  "LATEX_BIB_STYLE",
1809                  "The LATEX_BIB_STYLE tag can be used to specify the style to use for the\n"
1810                  "bibliography, e.g. plainnat, or ieeetr. The default style is \"plain\". See\n"
1811                  "http://en.wikipedia.org/wiki/BibTeX for more info."
1812                 );
1813   cs->setDefaultValue("plain");
1814   //---------------------------------------------------------------------------
1815   cfg->addInfo("RTF","configuration options related to the RTF output");
1816   //---------------------------------------------------------------------------
1817
1818   //----
1819   cb = cfg->addBool(
1820                  "GENERATE_RTF",
1821                  "If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output\n"
1822                  "The RTF output is optimized for Word 97 and may not look very pretty with\n"
1823                  "other RTF readers or editors.",
1824                  FALSE
1825                 );
1826   //----
1827   cs = cfg->addString(
1828                  "RTF_OUTPUT",
1829                  "The RTF_OUTPUT tag is used to specify where the RTF docs will be put.\n"
1830                  "If a relative path is entered the value of OUTPUT_DIRECTORY will be\n"
1831                  "put in front of it. If left blank `rtf' will be used as the default path."
1832                 );
1833   cs->setDefaultValue("rtf");
1834   cs->setWidgetType(ConfigString::Dir);
1835   cs->addDependency("GENERATE_RTF");
1836   //----
1837   cb = cfg->addBool(
1838                  "COMPACT_RTF",
1839                  "If the COMPACT_RTF tag is set to YES Doxygen generates more compact\n"
1840                  "RTF documents. This may be useful for small projects and may help to\n"
1841                  "save some trees in general.",
1842                  FALSE
1843                 );
1844   cb->addDependency("GENERATE_RTF");
1845   //----
1846   cb = cfg->addBool(
1847                  "RTF_HYPERLINKS",
1848                  "If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated\n"
1849                  "will contain hyperlink fields. The RTF file will\n"
1850                  "contain links (just like the HTML output) instead of page references.\n"
1851                  "This makes the output suitable for online browsing using WORD or other\n"
1852                  "programs which support those fields.\n"
1853                  "Note: wordpad (write) and others do not support links.",
1854                  FALSE
1855                 );
1856   cb->addDependency("GENERATE_RTF");
1857   //----
1858   cs = cfg->addString(
1859                  "RTF_STYLESHEET_FILE",
1860                  "Load style sheet definitions from file. Syntax is similar to doxygen's\n"
1861                  "config file, i.e. a series of assignments. You only have to provide\n"
1862                  "replacements, missing definitions are set to their default value."
1863                 );
1864   cs->setWidgetType(ConfigString::File);
1865   cs->addDependency("GENERATE_RTF");
1866   //----
1867   cs = cfg->addString(
1868                  "RTF_EXTENSIONS_FILE",
1869                  "Set optional variables used in the generation of an rtf document.\n"
1870                  "Syntax is similar to doxygen's config file."
1871                 );
1872   cs->setWidgetType(ConfigString::File);
1873   cs->addDependency("GENERATE_RTF");
1874   //---------------------------------------------------------------------------
1875   cfg->addInfo("Man","configuration options related to the man page output");
1876   //---------------------------------------------------------------------------
1877
1878   //----
1879   cb = cfg->addBool(
1880                  "GENERATE_MAN",
1881                  "If the GENERATE_MAN tag is set to YES (the default) Doxygen will\n"
1882                  "generate man pages",
1883                  FALSE
1884                 );
1885   //----
1886   cs = cfg->addString(
1887                  "MAN_OUTPUT",
1888                  "The MAN_OUTPUT tag is used to specify where the man pages will be put.\n"
1889                  "If a relative path is entered the value of OUTPUT_DIRECTORY will be\n"
1890                  "put in front of it. If left blank `man' will be used as the default path."
1891                 );
1892   cs->setDefaultValue("man");
1893   cs->setWidgetType(ConfigString::Dir);
1894   cs->addDependency("GENERATE_MAN");
1895   //----
1896   cs = cfg->addString(
1897                  "MAN_EXTENSION",
1898                  "The MAN_EXTENSION tag determines the extension that is added to\n"
1899                  "the generated man pages (default is the subroutine's section .3)"
1900                 );
1901   cs->setDefaultValue(".3");
1902   cs->addDependency("GENERATE_MAN");
1903   //----
1904   cb = cfg->addBool(
1905                  "MAN_LINKS",
1906                  "If the MAN_LINKS tag is set to YES and Doxygen generates man output,\n"
1907                  "then it will generate one additional man file for each entity\n"
1908                  "documented in the real man page(s). These additional files\n"
1909                  "only source the real man page, but without them the man command\n"
1910                  "would be unable to find the correct page. The default is NO.",
1911                  FALSE
1912                 );
1913   cb->addDependency("GENERATE_MAN");
1914   //---------------------------------------------------------------------------
1915   cfg->addInfo("XML","configuration options related to the XML output");
1916   //---------------------------------------------------------------------------
1917
1918   //----
1919   cb = cfg->addBool(
1920                  "GENERATE_XML",
1921                  "If the GENERATE_XML tag is set to YES Doxygen will\n"
1922                  "generate an XML file that captures the structure of\n"
1923                  "the code including all documentation.",
1924                  FALSE
1925                 );
1926   //----
1927   cs = cfg->addString(
1928                  "XML_OUTPUT",
1929                  "The XML_OUTPUT tag is used to specify where the XML pages will be put.\n"
1930                  "If a relative path is entered the value of OUTPUT_DIRECTORY will be\n"
1931                  "put in front of it. If left blank `xml' will be used as the default path."
1932                 );
1933   cs->setDefaultValue("xml");
1934   cs->setWidgetType(ConfigString::Dir);
1935   cs->addDependency("GENERATE_XML");
1936   //----
1937   cs = cfg->addString(
1938                  "XML_SCHEMA",
1939                  "The XML_SCHEMA tag can be used to specify an XML schema,\n"
1940                  "which can be used by a validating XML parser to check the\n"
1941                  "syntax of the XML files."
1942                 );
1943   cs->addDependency("GENERATE_XML");
1944   //----
1945   cs = cfg->addString(
1946                  "XML_DTD",
1947                  "The XML_DTD tag can be used to specify an XML DTD,\n"
1948                  "which can be used by a validating XML parser to check the\n"
1949                  "syntax of the XML files."
1950                 );
1951   cs->addDependency("GENERATE_XML");
1952   //----
1953   cb = cfg->addBool(
1954                  "XML_PROGRAMLISTING",
1955                  "If the XML_PROGRAMLISTING tag is set to YES Doxygen will\n"
1956                  "dump the program listings (including syntax highlighting\n"
1957                  "and cross-referencing information) to the XML output. Note that\n"
1958                  "enabling this will significantly increase the size of the XML output.",
1959                  TRUE
1960                 );
1961   cb->addDependency("GENERATE_XML");
1962   //---------------------------------------------------------------------------
1963   cfg->addInfo("DEF","configuration options for the AutoGen Definitions output");
1964   //---------------------------------------------------------------------------
1965
1966   //----
1967   cb = cfg->addBool(
1968                  "GENERATE_AUTOGEN_DEF",
1969                  "If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will\n"
1970                  "generate an AutoGen Definitions (see autogen.sf.net) file\n"
1971                  "that captures the structure of the code including all\n"
1972                  "documentation. Note that this feature is still experimental\n"
1973                  "and incomplete at the moment.",
1974                  FALSE
1975                 );
1976   //---------------------------------------------------------------------------
1977   cfg->addInfo("PerlMod","configuration options related to the Perl module output");
1978   //---------------------------------------------------------------------------
1979
1980   //----
1981   cb = cfg->addBool(
1982                  "GENERATE_PERLMOD",
1983                  "If the GENERATE_PERLMOD tag is set to YES Doxygen will\n"
1984                  "generate a Perl module file that captures the structure of\n"
1985                  "the code including all documentation. Note that this\n"
1986                  "feature is still experimental and incomplete at the\n"
1987                  "moment.",
1988                  FALSE
1989                 );
1990   //----
1991   cb = cfg->addBool(
1992                  "PERLMOD_LATEX",
1993                  "If the PERLMOD_LATEX tag is set to YES Doxygen will generate\n"
1994                  "the necessary Makefile rules, Perl scripts and LaTeX code to be able\n"
1995                  "to generate PDF and DVI output from the Perl module output.",
1996                  FALSE
1997                 );
1998   cb->addDependency("GENERATE_PERLMOD");
1999   //----
2000   cb = cfg->addBool(
2001                  "PERLMOD_PRETTY",
2002                  "If the PERLMOD_PRETTY tag is set to YES the Perl module output will be\n"
2003                  "nicely formatted so it can be parsed by a human reader.\n"
2004                  "This is useful\n"
2005                  "if you want to understand what is going on.\n"
2006                  "On the other hand, if this\n"
2007                  "tag is set to NO the size of the Perl module output will be much smaller\n"
2008                  "and Perl will parse it just the same.",
2009                  TRUE
2010                 );
2011   cb->addDependency("GENERATE_PERLMOD");
2012   //----
2013   cs = cfg->addString(
2014                  "PERLMOD_MAKEVAR_PREFIX",
2015                  "The names of the make variables in the generated doxyrules.make file\n"
2016                  "are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.\n"
2017                  "This is useful so different doxyrules.make files included by the same\n"
2018                  "Makefile don't overwrite each other's variables."
2019                 );
2020   cs->addDependency("GENERATE_PERLMOD");
2021   //---------------------------------------------------------------------------
2022   cfg->addInfo("Preprocessor","Configuration options related to the preprocessor");
2023   //---------------------------------------------------------------------------
2024
2025   //----
2026   cb = cfg->addBool(
2027                  "ENABLE_PREPROCESSING",
2028                  "If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will\n"
2029                  "evaluate all C-preprocessor directives found in the sources and include\n"
2030                  "files.",
2031                  TRUE
2032                 );
2033   //----
2034   cb = cfg->addBool(
2035                  "MACRO_EXPANSION",
2036                  "If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro\n"
2037                  "names in the source code. If set to NO (the default) only conditional\n"
2038                  "compilation will be performed. Macro expansion can be done in a controlled\n"
2039                  "way by setting EXPAND_ONLY_PREDEF to YES.",
2040                  FALSE
2041                 );
2042   cb->addDependency("ENABLE_PREPROCESSING");
2043   //----
2044   cb = cfg->addBool(
2045                  "EXPAND_ONLY_PREDEF",
2046                  "If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES\n"
2047                  "then the macro expansion is limited to the macros specified with the\n"
2048                  "PREDEFINED and EXPAND_AS_DEFINED tags.",
2049                  FALSE
2050                 );
2051   cb->addDependency("ENABLE_PREPROCESSING");
2052   //----
2053   cb = cfg->addBool(
2054                  "SEARCH_INCLUDES",
2055                  "If the SEARCH_INCLUDES tag is set to YES (the default) the includes files\n"
2056                  "pointed to by INCLUDE_PATH will be searched when a #include is found.",
2057                  TRUE
2058                 );
2059   cb->addDependency("ENABLE_PREPROCESSING");
2060   //----
2061   cl = cfg->addList(
2062                  "INCLUDE_PATH",
2063                  "The INCLUDE_PATH tag can be used to specify one or more directories that\n"
2064                  "contain include files that are not input files but should be processed by\n"
2065                  "the preprocessor."
2066                 );
2067   cl->addDependency("ENABLE_PREPROCESSING");
2068   cl->setWidgetType(ConfigList::Dir);
2069   //----
2070   cl = cfg->addList(
2071                  "INCLUDE_FILE_PATTERNS",
2072                  "You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard\n"
2073                  "patterns (like *.h and *.hpp) to filter out the header-files in the\n"
2074                  "directories. If left blank, the patterns specified with FILE_PATTERNS will\n"
2075                  "be used."
2076                 );
2077   cl->addDependency("ENABLE_PREPROCESSING");
2078   //----
2079   cl = cfg->addList(
2080                  "PREDEFINED",
2081                  "The PREDEFINED tag can be used to specify one or more macro names that\n"
2082                  "are defined before the preprocessor is started (similar to the -D option of\n"
2083                  "gcc). The argument of the tag is a list of macros of the form: name\n"
2084                  "or name=definition (no spaces). If the definition and the = are\n"
2085                  "omitted =1 is assumed. To prevent a macro definition from being\n"
2086                  "undefined via #undef or recursively expanded use the := operator\n"
2087                  "instead of the = operator."
2088                 );
2089   cl->addDependency("ENABLE_PREPROCESSING");
2090   //----
2091   cl = cfg->addList(
2092                  "EXPAND_AS_DEFINED",
2093                  "If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then\n"
2094                  "this tag can be used to specify a list of macro names that should be expanded.\n"
2095                  "The macro definition that is found in the sources will be used.\n"
2096                  "Use the PREDEFINED tag if you want to use a different macro definition that\n"
2097                  "overrules the definition found in the source code."
2098                 );
2099   cl->addDependency("ENABLE_PREPROCESSING");
2100   //----
2101   cb = cfg->addBool(
2102                  "SKIP_FUNCTION_MACROS",
2103                  "If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then\n"
2104                  "doxygen's preprocessor will remove all references to function-like macros\n"
2105                  "that are alone on a line, have an all uppercase name, and do not end with a\n"
2106                  "semicolon, because these will confuse the parser if not removed.",
2107                  TRUE
2108                 );
2109   cb->addDependency("ENABLE_PREPROCESSING");
2110   //---------------------------------------------------------------------------
2111   cfg->addInfo("External","Configuration::additions related to external references");
2112   //---------------------------------------------------------------------------
2113
2114   //----
2115   cl = cfg->addList(
2116                  "TAGFILES",
2117                  "The TAGFILES option can be used to specify one or more tagfiles. For each\n"
2118                  "tag file the location of the external documentation should be added. The\n"
2119                  "format of a tag file without this location is as follows:\n"
2120                  "\n"
2121                  "TAGFILES = file1 file2 ...\n"
2122                  "Adding location for the tag files is done as follows:\n"
2123                  "\n"
2124                  "TAGFILES = file1=loc1 \"file2 = loc2\" ...\n"
2125                  "where \"loc1\" and \"loc2\" can be relative or absolute paths\n"
2126                  "or URLs. Note that each tag file must have a unique name (where the name does\n"
2127                  "NOT include the path). If a tag file is not located in the directory in which\n"
2128                  "doxygen is run, you must also specify the path to the tagfile here."
2129                 );
2130   cl->setWidgetType(ConfigList::File);
2131   //----
2132   cs = cfg->addString(
2133                  "GENERATE_TAGFILE",
2134                  "When a file name is specified after GENERATE_TAGFILE, doxygen will create\n"
2135                  "a tag file that is based on the input files it reads."
2136                 );
2137   cs->setWidgetType(ConfigString::File);
2138   //----
2139   cb = cfg->addBool(
2140                  "ALLEXTERNALS",
2141                  "If the ALLEXTERNALS tag is set to YES all external classes will be listed\n"
2142                  "in the class index. If set to NO only the inherited external classes\n"
2143                  "will be listed.",
2144                  FALSE
2145                 );
2146   //----
2147   cb = cfg->addBool(
2148                  "EXTERNAL_GROUPS",
2149                  "If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed\n"
2150                  "in the modules index. If set to NO, only the current project's groups will\n"
2151                  "be listed.",
2152                  TRUE
2153                 );
2154   //----
2155   cs = cfg->addString(
2156                  "PERL_PATH",
2157                  "The PERL_PATH should be the absolute path and name of the perl script\n"
2158                  "interpreter (i.e. the result of `which perl')."
2159                 );
2160   cs->setDefaultValue("/usr/bin/perl");
2161   cs->setWidgetType(ConfigString::Dir);
2162   //---------------------------------------------------------------------------
2163   cfg->addInfo("Dot","Configuration options related to the dot tool");
2164   //---------------------------------------------------------------------------
2165
2166   //----
2167   cb = cfg->addBool(
2168                  "CLASS_DIAGRAMS",
2169                  "If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will\n"
2170                  "generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base\n"
2171                  "or super classes. Setting the tag to NO turns the diagrams off. Note that\n"
2172                  "this option also works with HAVE_DOT disabled, but it is recommended to\n"
2173                  "install and use dot, since it yields more powerful graphs.",
2174                  TRUE
2175                 );
2176   //----
2177   cs = cfg->addString(
2178                  "MSCGEN_PATH",
2179                  "You can define message sequence charts within doxygen comments using the \\msc\n"
2180                  "command. Doxygen will then run the mscgen tool (see\n"
2181                  "http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the\n"
2182                  "documentation. The MSCGEN_PATH tag allows you to specify the directory where\n"
2183                  "the mscgen tool resides. If left empty the tool is assumed to be found in the\n"
2184                  "default search path."
2185                 );
2186   //----
2187   cb = cfg->addBool(
2188                  "HIDE_UNDOC_RELATIONS",
2189                  "If set to YES, the inheritance and collaboration graphs will hide\n"
2190                  "inheritance and usage relations if the target is undocumented\n"
2191                  "or is not a class.",
2192                  TRUE
2193                 );
2194   //----
2195   cb = cfg->addBool(
2196                  "HAVE_DOT",
2197                  "If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is\n"
2198                  "available from the path. This tool is part of Graphviz, a graph visualization\n"
2199                  "toolkit from AT&T and Lucent Bell Labs. The other options in this section\n"
2200                  "have no effect if this option is set to NO (the default)",
2201                  FALSE
2202                 );
2203   //----
2204   ci = cfg->addInt(
2205                  "DOT_NUM_THREADS",
2206                  "The DOT_NUM_THREADS specifies the number of dot invocations doxygen is\n"
2207                  "allowed to run in parallel. When set to 0 (the default) doxygen will\n"
2208                  "base this on the number of processors available in the system. You can set it\n"
2209                  "explicitly to a value larger than 0 to get control over the balance\n"
2210                  "between CPU load and processing speed.",
2211                  0,32,0
2212                 );
2213   //----
2214   cs = cfg->addString(
2215                  "DOT_FONTNAME",
2216                  "By default doxygen will use the Helvetica font for all dot files that\n"
2217                  "doxygen generates. When you want a differently looking font you can specify\n"
2218                  "the font name using DOT_FONTNAME. You need to make sure dot is able to find\n"
2219                  "the font, which can be done by putting it in a standard location or by setting\n"
2220                  "the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the\n"
2221                  "directory containing the font."
2222                 );
2223   cs->setDefaultValue("Helvetica");
2224   cs->addDependency("HAVE_DOT");
2225   //----
2226   ci = cfg->addInt(
2227                  "DOT_FONTSIZE",
2228                  "The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs.\n"
2229                  "The default size is 10pt.",
2230                  4,24,10
2231                 );
2232   ci->addDependency("HAVE_DOT");
2233   //----
2234   cs = cfg->addString(
2235                  "DOT_FONTPATH",
2236                  "By default doxygen will tell dot to use the Helvetica font.\n"
2237                  "If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to\n"
2238                  "set the path where dot can find it."
2239                 );
2240   cs->addDependency("HAVE_DOT");
2241   //----
2242   cb = cfg->addBool(
2243                  "CLASS_GRAPH",
2244                  "If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen\n"
2245                  "will generate a graph for each documented class showing the direct and\n"
2246                  "indirect inheritance relations. Setting this tag to YES will force the\n"
2247                  "CLASS_DIAGRAMS tag to NO.",
2248                  TRUE
2249                 );
2250   cb->addDependency("HAVE_DOT");
2251   //----
2252   cb = cfg->addBool(
2253                  "COLLABORATION_GRAPH",
2254                  "If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen\n"
2255                  "will generate a graph for each documented class showing the direct and\n"
2256                  "indirect implementation dependencies (inheritance, containment, and\n"
2257                  "class references variables) of the class with other documented classes.",
2258                  TRUE
2259                 );
2260   cb->addDependency("HAVE_DOT");
2261   //----
2262   cb = cfg->addBool(
2263                  "GROUP_GRAPHS",
2264                  "If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen\n"
2265                  "will generate a graph for groups, showing the direct groups dependencies",
2266                  TRUE
2267                 );
2268   cb->addDependency("HAVE_DOT");
2269   //----
2270   cb = cfg->addBool(
2271                  "UML_LOOK",
2272                  "If the UML_LOOK tag is set to YES doxygen will generate inheritance and\n"
2273                  "collaboration diagrams in a style similar to the OMG's Unified Modeling\n"
2274                  "Language.",
2275                  FALSE
2276                 );
2277   cb->addDependency("HAVE_DOT");
2278   //----
2279   ci = cfg->addInt(
2280                  "UML_LIMIT_NUM_FIELDS",
2281                  "If the UML_LOOK tag is enabled, the fields and methods are shown inside\n"
2282                  "the class node. If there are many fields or methods and many nodes the\n"
2283                  "graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS\n"
2284                  "threshold limits the number of items for each type to make the size more\n"
2285                  "managable. Set this to 0 for no limit. Note that the threshold may be\n"
2286                  "exceeded by 50% before the limit is enforced.",
2287                  0,100,10
2288                 );
2289   ci->addDependency("HAVE_DOT");
2290   //----
2291   cb = cfg->addBool(
2292                  "TEMPLATE_RELATIONS",
2293                  "If set to YES, the inheritance and collaboration graphs will show the\n"
2294                  "relations between templates and their instances.",
2295                  FALSE
2296                 );
2297   cb->addDependency("HAVE_DOT");
2298   //----
2299   cb = cfg->addBool(
2300                  "INCLUDE_GRAPH",
2301                  "If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT\n"
2302                  "tags are set to YES then doxygen will generate a graph for each documented\n"
2303                  "file showing the direct and indirect include dependencies of the file with\n"
2304                  "other documented files.",
2305                  TRUE
2306                 );
2307   cb->addDependency("HAVE_DOT");
2308   //----
2309   cb = cfg->addBool(
2310                  "INCLUDED_BY_GRAPH",
2311                  "If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and\n"
2312                  "HAVE_DOT tags are set to YES then doxygen will generate a graph for each\n"
2313                  "documented header file showing the documented files that directly or\n"
2314                  "indirectly include this file.",
2315                  TRUE
2316                 );
2317   cb->addDependency("HAVE_DOT");
2318   //----
2319   cb = cfg->addBool(
2320                  "CALL_GRAPH",
2321                  "If the CALL_GRAPH and HAVE_DOT options are set to YES then\n"
2322                  "doxygen will generate a call dependency graph for every global function\n"
2323                  "or class method. Note that enabling this option will significantly increase\n"
2324                  "the time of a run. So in most cases it will be better to enable call graphs\n"
2325                  "for selected functions only using the \\callgraph command.",
2326                  FALSE
2327                 );
2328   cb->addDependency("HAVE_DOT");
2329   //----
2330   cb = cfg->addBool(
2331                  "CALLER_GRAPH",
2332                  "If the CALLER_GRAPH and HAVE_DOT tags are set to YES then\n"
2333                  "doxygen will generate a caller dependency graph for every global function\n"
2334                  "or class method. Note that enabling this option will significantly increase\n"
2335                  "the time of a run. So in most cases it will be better to enable caller\n"
2336                  "graphs for selected functions only using the \\callergraph command.",
2337                  FALSE
2338                 );
2339   cb->addDependency("HAVE_DOT");
2340   //----
2341   cb = cfg->addBool(
2342                  "GRAPHICAL_HIERARCHY",
2343                  "If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen\n"
2344                  "will generate a graphical hierarchy of all classes instead of a textual one.",
2345                  TRUE
2346                 );
2347   cb->addDependency("HAVE_DOT");
2348   //----
2349   cb = cfg->addBool(
2350                  "DIRECTORY_GRAPH",
2351                  "If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES\n"
2352                  "then doxygen will show the dependencies a directory has on other directories\n"
2353                  "in a graphical way. The dependency relations are determined by the #include\n"
2354                  "relations between the files in the directories.",
2355                  TRUE
2356                 );
2357   cb->addDependency("HAVE_DOT");
2358   //----
2359   ce = cfg->addEnum(
2360                  "DOT_IMAGE_FORMAT",
2361                  "The DOT_IMAGE_FORMAT tag can be used to set the image format of the images\n"
2362                  "generated by dot. Possible values are svg, png, jpg, or gif.\n"
2363                  "If left blank png will be used. If you choose svg you need to set\n"
2364                  "HTML_FILE_EXTENSION to xhtml in order to make the SVG files\n"
2365                  "visible in IE 9+ (other browsers do not have this requirement).",
2366                  "png"
2367                 );
2368   ce->addValue("png");
2369   ce->addValue("jpg");
2370   ce->addValue("gif");
2371   ce->addValue("svg");
2372   ce->addDependency("HAVE_DOT");
2373   //----
2374   cb = cfg->addBool(
2375                  "INTERACTIVE_SVG",
2376                  "If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to\n"
2377                  "enable generation of interactive SVG images that allow zooming and panning.\n"
2378                  "Note that this requires a modern browser other than Internet Explorer.\n"
2379                  "Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you\n"
2380                  "need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files\n"
2381                  "visible. Older versions of IE do not have SVG support.",
2382                  FALSE
2383                 );
2384   cb->addDependency("HAVE_DOT");
2385   //----
2386   cs = cfg->addString(
2387                  "DOT_PATH",
2388                  "The tag DOT_PATH can be used to specify the path where the dot tool can be\n"
2389                  "found. If left blank, it is assumed the dot tool can be found in the path."
2390                 );
2391   cs->setWidgetType(ConfigString::Dir);
2392   cs->addDependency("HAVE_DOT");
2393   //----
2394   cl = cfg->addList(
2395                  "DOTFILE_DIRS",
2396                  "The DOTFILE_DIRS tag can be used to specify one or more directories that\n"
2397                  "contain dot files that are included in the documentation (see the\n"
2398                  "\\dotfile command)."
2399                 );
2400   cl->addDependency("HAVE_DOT");
2401   cl->setWidgetType(ConfigList::Dir);
2402   //----
2403   cl = cfg->addList(
2404                  "MSCFILE_DIRS",
2405                  "The MSCFILE_DIRS tag can be used to specify one or more directories that\n"
2406                  "contain msc files that are included in the documentation (see the\n"
2407                  "\\mscfile command)."
2408                 );
2409   cl->setWidgetType(ConfigList::Dir);
2410   //----
2411   ci = cfg->addInt(
2412                  "DOT_GRAPH_MAX_NODES",
2413                  "The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of\n"
2414                  "nodes that will be shown in the graph. If the number of nodes in a graph\n"
2415                  "becomes larger than this value, doxygen will truncate the graph, which is\n"
2416                  "visualized by representing a node as a red box. Note that doxygen if the\n"
2417                  "number of direct children of the root node in a graph is already larger than\n"
2418                  "DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note\n"
2419                  "that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.",
2420                  0,10000,50
2421                 );
2422   ci->addDependency("HAVE_DOT");
2423   //----
2424   ci = cfg->addInt(
2425                  "MAX_DOT_GRAPH_DEPTH",
2426                  "The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the\n"
2427                  "graphs generated by dot. A depth value of 3 means that only nodes reachable\n"
2428                  "from the root by following a path via at most 3 edges will be shown. Nodes\n"
2429                  "that lay further from the root node will be omitted. Note that setting this\n"
2430                  "option to 1 or 2 may greatly reduce the computation time needed for large\n"
2431                  "code bases. Also note that the size of a graph can be further restricted by\n"
2432                  "DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.",
2433                  0,1000,0
2434                 );
2435   ci->addDependency("HAVE_DOT");
2436   //----
2437   cb = cfg->addBool(
2438                  "DOT_TRANSPARENT",
2439                  "Set the DOT_TRANSPARENT tag to YES to generate images with a transparent\n"
2440                  "background. This is disabled by default, because dot on Windows does not\n"
2441                  "seem to support this out of the box. Warning: Depending on the platform used,\n"
2442                  "enabling this option may lead to badly anti-aliased labels on the edges of\n"
2443                  "a graph (i.e. they become hard to read).",
2444                  FALSE
2445                 );
2446   cb->addDependency("HAVE_DOT");
2447   //----
2448   cb = cfg->addBool(
2449                  "DOT_MULTI_TARGETS",
2450                  "Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output\n"
2451                  "files in one run (i.e. multiple -o and -T options on the command line). This\n"
2452                  "makes dot run faster, but since only newer versions of dot (>1.8.10)\n"
2453                  "support this, this feature is disabled by default.",
2454                  FALSE
2455                 );
2456   cb->addDependency("HAVE_DOT");
2457   //----
2458   cb = cfg->addBool(
2459                  "GENERATE_LEGEND",
2460                  "If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will\n"
2461                  "generate a legend page explaining the meaning of the various boxes and\n"
2462                  "arrows in the dot generated graphs.",
2463                  TRUE
2464                 );
2465   cb->addDependency("HAVE_DOT");
2466   //----
2467   cb = cfg->addBool(
2468                  "DOT_CLEANUP",
2469                  "If the DOT_CLEANUP tag is set to YES (the default) Doxygen will\n"
2470                  "remove the intermediate dot files that are used to generate\n"
2471                  "the various graphs.",
2472                  TRUE
2473                 );
2474   cb->addDependency("HAVE_DOT");
2475   //----
2476   cfg->addObsolete("USE_WINDOWS_ENCODING");
2477   //----
2478   cfg->addObsolete("DETAILS_AT_TOP");
2479   //----
2480   cfg->addObsolete("QTHELP_FILE");
2481   //----
2482   cfg->addObsolete("QTHELP_CONFIG");
2483   //----
2484   cfg->addObsolete("DOXYGEN2QTHELP_LOC");
2485   //----
2486   cfg->addObsolete("MAX_DOT_GRAPH_WIDTH");
2487   //----
2488   cfg->addObsolete("MAX_DOT_GRAPH_HEIGHT");
2489   //----
2490   cfg->addObsolete("CGI_NAME");
2491   //----
2492   cfg->addObsolete("CGI_URL");
2493   //----
2494   cfg->addObsolete("DOC_URL");
2495   //----
2496   cfg->addObsolete("DOC_ABSPATH");
2497   //----
2498   cfg->addObsolete("BIN_ABSPATH");
2499   //----
2500   cfg->addObsolete("EXT_DOC_PATHS");
2501   //----
2502   cfg->addObsolete("USE_INLINE_TREES");
2503   //----
2504   cfg->addObsolete("SHOW_DIRECTORIES");
2505   //----
2506   cfg->addObsolete("HTML_ALIGN_MEMBERS");
2507 }