Functions
configoptions.h File Reference

Go to the source code of this file.

Functions

void addConfigOptions (Config *cfg)
 

Function Documentation

void addConfigOptions ( Config cfg)

Definition at line 11 of file configoptions.cpp.

12 {
14  ConfigEnum *ce;
15  ConfigList *cl;
16  ConfigInt *ci;
17  ConfigBool *cb;
18 
19  cfg->setHeader(
20  "This file describes the settings to be used by the documentation system\n"
21  "doxygen (www.doxygen.org) for a project.\n"
22  "\n"
23  "All text after a double hash (##) is considered a comment and is placed in\n"
24  "front of the TAG it is preceding.\n"
25  "\n"
26  "All text after a single hash (#) is considered a comment and will be ignored.\n"
27  "The format is:\n"
28  "TAG = value [value, ...]\n"
29  "For lists, items can also be appended using:\n"
30  "TAG += value [value, ...]\n"
31  "Values that contain spaces should be placed between quotes (\\\" \\\")."
32  );
33  //---------------------------------------------------------------------------
34  cfg->addInfo("Project","Project related configuration options");
35  //---------------------------------------------------------------------------
36 
37  //----
38  cs = cfg->addString(
39  "DOXYFILE_ENCODING",
40  "This tag specifies the encoding used for all characters in the config file\n"
41  "that follow. The default is UTF-8 which is also the encoding used for all text\n"
42  "before the first occurrence of this tag. Doxygen uses libiconv (or the iconv\n"
43  "built into libc) for the transcoding. See http://www.gnu.org/software/libiconv\n"
44  "for the list of possible encodings.\n"
45  "The default value is: UTF-8."
46  );
47  cs->setDefaultValue("UTF-8");
48  //----
49  cs = cfg->addString(
50  "PROJECT_NAME",
51  "The PROJECT_NAME tag is a single word (or a sequence of words surrounded by\n"
52  "double-quotes, unless you are using Doxywizard) that should identify the\n"
53  "project for which the documentation is generated. This name is used in the\n"
54  "title of most generated pages and in a few other places.\n"
55  "The default value is: My Project."
56  );
57  cs->setDefaultValue("My Project");
58  //----
59  cs = cfg->addString(
60  "PROJECT_NUMBER",
61  "The PROJECT_NUMBER tag can be used to enter a project or revision number. This\n"
62  "could be handy for archiving the generated documentation or if some version\n"
63  "control system is used."
64  );
65  //----
66  cs = cfg->addString(
67  "PROJECT_BRIEF",
68  "Using the PROJECT_BRIEF tag one can provide an optional one line description\n"
69  "for a project that appears at the top of each page and should give viewer a\n"
70  "quick idea about the purpose of the project. Keep the description short."
71  );
72  //----
73  cs = cfg->addString(
74  "PROJECT_LOGO",
75  "With the PROJECT_LOGO tag one can specify a logo or an icon that is included\n"
76  "in the documentation. The maximum height of the logo should not exceed 55\n"
77  "pixels and the maximum width should not exceed 200 pixels. Doxygen will copy\n"
78  "the logo to the output directory."
79  );
81  //----
82  cs = cfg->addString(
83  "OUTPUT_DIRECTORY",
84  "The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path\n"
85  "into which the generated documentation will be written. If a relative path is\n"
86  "entered, it will be relative to the location where doxygen was started. If\n"
87  "left blank the current directory will be used."
88  );
90  //----
91  cb = cfg->addBool(
92  "CREATE_SUBDIRS",
93  "If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-\n"
94  "directories (in 2 levels) under the output directory of each output format and\n"
95  "will distribute the generated files over these directories. Enabling this\n"
96  "option can be useful when feeding doxygen a huge amount of source files, where\n"
97  "putting all generated files in the same directory would otherwise causes\n"
98  "performance problems for the file system.\n"
99  "The default value is: NO.",
100  FALSE
101  );
102  //----
103  cb = cfg->addBool(
104  "ALLOW_UNICODE_NAMES",
105  "If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII\n"
106  "characters to appear in the names of generated files. If set to NO, non-ASCII\n"
107  "characters will be escaped, for example _xE3_x81_x84 will be used for Unicode\n"
108  "U+3044.\n"
109  "The default value is: NO.",
110  FALSE
111  );
112  //----
113  ce = cfg->addEnum(
114  "OUTPUT_LANGUAGE",
115  "The OUTPUT_LANGUAGE tag is used to specify the language in which all\n"
116  "documentation generated by doxygen is written. Doxygen will use this\n"
117  "information to generate all constant output in the proper language.\n"
118  "Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,\n"
119  "Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),\n"
120  "Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,\n"
121  "Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),\n"
122  "Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,\n"
123  "Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,\n"
124  "Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,\n"
125  "Ukrainian and Vietnamese.\n"
126  "The default value is: English.",
127  "English"
128  );
129  ce->addValue("Afrikaans");
130  ce->addValue("Arabic");
131  ce->addValue("Armenian");
132  ce->addValue("Brazilian");
133  ce->addValue("Catalan");
134  ce->addValue("Chinese");
135  ce->addValue("Chinese-Traditional");
136  ce->addValue("Croatian");
137  ce->addValue("Czech");
138  ce->addValue("Danish");
139  ce->addValue("Dutch");
140  ce->addValue("English");
141  ce->addValue("Esperanto");
142  ce->addValue("Farsi");
143  ce->addValue("Finnish");
144  ce->addValue("French");
145  ce->addValue("German");
146  ce->addValue("Greek");
147  ce->addValue("Hungarian");
148  ce->addValue("Indonesian");
149  ce->addValue("Italian");
150  ce->addValue("Japanese");
151  ce->addValue("Japanese-en");
152  ce->addValue("Korean");
153  ce->addValue("Korean-en");
154  ce->addValue("Latvian");
155  ce->addValue("Lithuanian");
156  ce->addValue("Macedonian");
157  ce->addValue("Norwegian");
158  ce->addValue("Persian");
159  ce->addValue("Polish");
160  ce->addValue("Portuguese");
161  ce->addValue("Romanian");
162  ce->addValue("Russian");
163  ce->addValue("Serbian");
164  ce->addValue("Serbian-Cyrillic");
165  ce->addValue("Slovak");
166  ce->addValue("Slovene");
167  ce->addValue("Spanish");
168  ce->addValue("Swedish");
169  ce->addValue("Turkish");
170  ce->addValue("Ukrainian");
171  ce->addValue("Vietnamese");
172  //----
173  cb = cfg->addBool(
174  "BRIEF_MEMBER_DESC",
175  "If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member\n"
176  "descriptions after the members that are listed in the file and class\n"
177  "documentation (similar to Javadoc). Set to NO to disable this.\n"
178  "The default value is: YES.",
179  TRUE
180  );
181  //----
182  cb = cfg->addBool(
183  "REPEAT_BRIEF",
184  "If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief\n"
185  "description of a member or function before the detailed description\n"
186  "\n"
187  "Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the\n"
188  "brief descriptions will be completely suppressed.\n"
189  "The default value is: YES.",
190  TRUE
191  );
192  //----
193  cl = cfg->addList(
194  "ABBREVIATE_BRIEF",
195  "This tag implements a quasi-intelligent brief description abbreviator that is\n"
196  "used to form the text in various listings. Each string in this list, if found\n"
197  "as the leading text of the brief description, will be stripped from the text\n"
198  "and the result, after processing the whole list, is used as the annotated\n"
199  "text. Otherwise, the brief description is used as-is. If left blank, the\n"
200  "following values are used ($name is automatically replaced with the name of\n"
201  "the entity):The $name class, The $name widget, The $name file, is, provides,\n"
202  "specifies, contains, represents, a, an and the."
203  );
204  cl->addValue("The $name class");
205  cl->addValue("The $name widget");
206  cl->addValue("The $name file");
207  cl->addValue("is");
208  cl->addValue("provides");
209  cl->addValue("specifies");
210  cl->addValue("contains");
211  cl->addValue("represents");
212  cl->addValue("a");
213  cl->addValue("an");
214  cl->addValue("the");
215  //----
216  cb = cfg->addBool(
217  "ALWAYS_DETAILED_SEC",
218  "If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then\n"
219  "doxygen will generate a detailed section even if there is only a brief\n"
220  "description.\n"
221  "The default value is: NO.",
222  FALSE
223  );
224  //----
225  cb = cfg->addBool(
226  "INLINE_INHERITED_MEMB",
227  "If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all\n"
228  "inherited members of a class in the documentation of that class as if those\n"
229  "members were ordinary class members. Constructors, destructors and assignment\n"
230  "operators of the base classes will not be shown.\n"
231  "The default value is: NO.",
232  FALSE
233  );
234  //----
235  cb = cfg->addBool(
236  "FULL_PATH_NAMES",
237  "If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path\n"
238  "before files name in the file list and in the header files. If set to NO the\n"
239  "shortest path that makes the file name unique will be used\n"
240  "The default value is: YES.",
241  TRUE
242  );
243  //----
244  cl = cfg->addList(
245  "STRIP_FROM_PATH",
246  "The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.\n"
247  "Stripping is only done if one of the specified strings matches the left-hand\n"
248  "part of the path. The tag can be used to show relative paths in the file list.\n"
249  "If left blank the directory from which doxygen is run is used as the path to\n"
250  "strip.\n"
251  "\n"
252  "Note that you can specify absolute paths here, but also relative paths, which\n"
253  "will be relative from the directory where doxygen is started.\n"
254  "This tag requires that the tag FULL_PATH_NAMES is set to YES."
255  );
256  cl->addValue("");
257  cl->addDependency("FULL_PATH_NAMES");
258  //----
259  cl = cfg->addList(
260  "STRIP_FROM_INC_PATH",
261  "The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the\n"
262  "path mentioned in the documentation of a class, which tells the reader which\n"
263  "header file to include in order to use a class. If left blank only the name of\n"
264  "the header file containing the class definition is used. Otherwise one should\n"
265  "specify the list of include paths that are normally passed to the compiler\n"
266  "using the -I flag."
267  );
268  //----
269  cb = cfg->addBool(
270  "SHORT_NAMES",
271  "If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but\n"
272  "less readable) file names. This can be useful is your file systems doesn't\n"
273  "support long names like on DOS, Mac, or CD-ROM.\n"
274  "The default value is: NO.",
275  FALSE
276  );
277  //----
278  cb = cfg->addBool(
279  "JAVADOC_AUTOBRIEF",
280  "If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the\n"
281  "first line (until the first dot) of a Javadoc-style comment as the brief\n"
282  "description. If set to NO, the Javadoc-style will behave just like regular Qt-\n"
283  "style comments (thus requiring an explicit @brief command for a brief\n"
284  "description.)\n"
285  "The default value is: NO.",
286  FALSE
287  );
288  //----
289  cb = cfg->addBool(
290  "QT_AUTOBRIEF",
291  "If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first\n"
292  "line (until the first dot) of a Qt-style comment as the brief description. If\n"
293  "set to NO, the Qt-style will behave just like regular Qt-style comments (thus\n"
294  "requiring an explicit \\brief command for a brief description.)\n"
295  "The default value is: NO.",
296  FALSE
297  );
298  //----
299  cb = cfg->addBool(
300  "MULTILINE_CPP_IS_BRIEF",
301  "The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a\n"
302  "multi-line C++ special comment block (i.e. a block of //! or /// comments) as\n"
303  "a brief description. This used to be the default behavior. The new default is\n"
304  "to treat a multi-line C++ comment block as a detailed description. Set this\n"
305  "tag to YES if you prefer the old behavior instead.\n"
306  "\n"
307  "Note that setting this tag to YES also means that rational rose comments are\n"
308  "not recognized any more.\n"
309  "The default value is: NO.",
310  FALSE
311  );
312  //----
313  cb = cfg->addBool(
314  "INHERIT_DOCS",
315  "If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the\n"
316  "documentation from any documented member that it re-implements.\n"
317  "The default value is: YES.",
318  TRUE
319  );
320  //----
321  cb = cfg->addBool(
322  "SEPARATE_MEMBER_PAGES",
323  "If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new\n"
324  "page for each member. If set to NO, the documentation of a member will be part\n"
325  "of the file/class/namespace that contains it.\n"
326  "The default value is: NO.",
327  FALSE
328  );
329  //----
330  ci = cfg->addInt(
331  "TAB_SIZE",
332  "The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen\n"
333  "uses this value to replace tabs by spaces in code fragments.\n"
334  "Minimum value: 1, maximum value: 16, default value: 4.",
335  1,16,4
336  );
337  //----
338  cl = cfg->addList(
339  "ALIASES",
340  "This tag can be used to specify a number of aliases that act as commands in\n"
341  "the documentation. An alias has the form:\n"
342  "name=value\n"
343  "For example adding\n"
344  "\"sideeffect=@par Side Effects:\\n\"\n"
345  "will allow you to put the command \\sideeffect (or @sideeffect) in the\n"
346  "documentation, which will result in a user-defined paragraph with heading\n"
347  "\"Side Effects:\". You can put \\n's in the value part of an alias to insert\n"
348  "newlines."
349  );
350  //----
351  cl = cfg->addList(
352  "TCL_SUBST",
353  "This tag can be used to specify a number of word-keyword mappings (TCL only).\n"
354  "A mapping has the form \"name=value\". For example adding \"class=itcl::class\"\n"
355  "will allow you to use the command class in the itcl::class meaning."
356  );
357  //----
358  cb = cfg->addBool(
359  "OPTIMIZE_OUTPUT_FOR_C",
360  "Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources\n"
361  "only. Doxygen will then generate output that is more tailored for C. For\n"
362  "instance, some of the names that are used will be different. The list of all\n"
363  "members will be omitted, etc.\n"
364  "The default value is: NO.",
365  FALSE
366  );
367  //----
368  cb = cfg->addBool(
369  "OPTIMIZE_OUTPUT_JAVA",
370  "Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or\n"
371  "Python sources only. Doxygen will then generate output that is more tailored\n"
372  "for that language. For instance, namespaces will be presented as packages,\n"
373  "qualified scopes will look different, etc.\n"
374  "The default value is: NO.",
375  FALSE
376  );
377  //----
378  cb = cfg->addBool(
379  "OPTIMIZE_FOR_FORTRAN",
380  "Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran\n"
381  "sources. Doxygen will then generate output that is tailored for Fortran.\n"
382  "The default value is: NO.",
383  FALSE
384  );
385  //----
386  cb = cfg->addBool(
387  "OPTIMIZE_OUTPUT_VHDL",
388  "Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL\n"
389  "sources. Doxygen will then generate output that is tailored for VHDL.\n"
390  "The default value is: NO.",
391  FALSE
392  );
393  //----
394  cl = cfg->addList(
395  "EXTENSION_MAPPING",
396  "Doxygen selects the parser to use depending on the extension of the files it\n"
397  "parses. With this tag you can assign which parser to use for a given\n"
398  "extension. Doxygen has a built-in mapping, but you can override or extend it\n"
399  "using this tag. The format is ext=language, where ext is a file extension, and\n"
400  "language is one of the parsers supported by doxygen: IDL, Java, Javascript,\n"
401  "C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran:\n"
402  "FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran:\n"
403  "Fortran. In the later case the parser tries to guess whether the code is fixed\n"
404  "or free formatted code, this is the default for Fortran type files), VHDL. For\n"
405  "instance to make doxygen treat .inc files as Fortran files (default is PHP),\n"
406  "and .f files as C (default is Fortran), use: inc=Fortran f=C.\n"
407  "\n"
408  "Note: For files without extension you can use no_extension as a placeholder.\n"
409  "\n"
410  "Note that for custom extensions you also need to set FILE_PATTERNS otherwise\n"
411  "the files are not read by doxygen."
412  );
413  //----
414  cb = cfg->addBool(
415  "MARKDOWN_SUPPORT",
416  "If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments\n"
417  "according to the Markdown format, which allows for more readable\n"
418  "documentation. See http://daringfireball.net/projects/markdown/ for details.\n"
419  "The output of markdown processing is further processed by doxygen, so you can\n"
420  "mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in\n"
421  "case of backward compatibilities issues.\n"
422  "The default value is: YES.",
423  TRUE
424  );
425  //----
426  cb = cfg->addBool(
427  "AUTOLINK_SUPPORT",
428  "When enabled doxygen tries to link words that correspond to documented\n"
429  "classes, or namespaces to their corresponding documentation. Such a link can\n"
430  "be prevented in individual cases by putting a % sign in front of the word or\n"
431  "globally by setting AUTOLINK_SUPPORT to NO.\n"
432  "The default value is: YES.",
433  TRUE
434  );
435  //----
436  cb = cfg->addBool(
437  "BUILTIN_STL_SUPPORT",
438  "If you use STL classes (i.e. std::string, std::vector, etc.) but do not want\n"
439  "to include (a tag file for) the STL sources as input, then you should set this\n"
440  "tag to YES in order to let doxygen match functions declarations and\n"
441  "definitions whose arguments contain STL classes (e.g. func(std::string);\n"
442  "versus func(std::string) {}). This also make the inheritance and collaboration\n"
443  "diagrams that involve STL classes more complete and accurate.\n"
444  "The default value is: NO.",
445  FALSE
446  );
447  //----
448  cb = cfg->addBool(
449  "CPP_CLI_SUPPORT",
450  "If you use Microsoft's C++/CLI language, you should set this option to YES to\n"
451  "enable parsing support.\n"
452  "The default value is: NO.",
453  FALSE
454  );
455  //----
456  cb = cfg->addBool(
457  "SIP_SUPPORT",
458  "Set the SIP_SUPPORT tag to YES if your project consists of sip (see:\n"
459  "http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen\n"
460  "will parse them like normal C++ but will assume all classes use public instead\n"
461  "of private inheritance when no explicit protection keyword is present.\n"
462  "The default value is: NO.",
463  FALSE
464  );
465  //----
466  cb = cfg->addBool(
467  "IDL_PROPERTY_SUPPORT",
468  "For Microsoft's IDL there are propget and propput attributes to indicate\n"
469  "getter and setter methods for a property. Setting this option to YES will make\n"
470  "doxygen to replace the get and set methods by a property in the documentation.\n"
471  "This will only work if the methods are indeed getting or setting a simple\n"
472  "type. If this is not the case, or you want to show the methods anyway, you\n"
473  "should set this option to NO.\n"
474  "The default value is: YES.",
475  TRUE
476  );
477  //----
478  cb = cfg->addBool(
479  "DISTRIBUTE_GROUP_DOC",
480  "If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC\n"
481  "tag is set to YES then doxygen will reuse the documentation of the first\n"
482  "member in the group (if any) for the other members of the group. By default\n"
483  "all members of a group must be documented explicitly.\n"
484  "The default value is: NO.",
485  FALSE
486  );
487  //----
488  cb = cfg->addBool(
489  "GROUP_NESTED_COMPOUNDS",
490  "If one adds a struct or class to a group and this option is enabled, then also\n"
491  "any nested class or struct is added to the same group. By default this option\n"
492  "is disabled and one has to add nested compounds explicitly via \\ingroup.\n"
493  "The default value is: NO.",
494  FALSE
495  );
496  //----
497  cb = cfg->addBool(
498  "SUBGROUPING",
499  "Set the SUBGROUPING tag to YES to allow class member groups of the same type\n"
500  "(for instance a group of public functions) to be put as a subgroup of that\n"
501  "type (e.g. under the Public Functions section). Set it to NO to prevent\n"
502  "subgrouping. Alternatively, this can be done per class using the\n"
503  "\\nosubgrouping command.\n"
504  "The default value is: YES.",
505  TRUE
506  );
507  //----
508  cb = cfg->addBool(
509  "INLINE_GROUPED_CLASSES",
510  "When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions\n"
511  "are shown inside the group in which they are included (e.g. using \\ingroup)\n"
512  "instead of on a separate page (for HTML and Man pages) or section (for LaTeX\n"
513  "and RTF).\n"
514  "\n"
515  "Note that this feature does not work in combination with\n"
516  "SEPARATE_MEMBER_PAGES.\n"
517  "The default value is: NO.",
518  FALSE
519  );
520  //----
521  cb = cfg->addBool(
522  "INLINE_SIMPLE_STRUCTS",
523  "When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions\n"
524  "with only public data fields or simple typedef fields will be shown inline in\n"
525  "the documentation of the scope in which they are defined (i.e. file,\n"
526  "namespace, or group documentation), provided this scope is documented. If set\n"
527  "to NO, structs, classes, and unions are shown on a separate page (for HTML and\n"
528  "Man pages) or section (for LaTeX and RTF).\n"
529  "The default value is: NO.",
530  FALSE
531  );
532  //----
533  cb = cfg->addBool(
534  "TYPEDEF_HIDES_STRUCT",
535  "When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or\n"
536  "enum is documented as struct, union, or enum with the name of the typedef. So\n"
537  "typedef struct TypeS {} TypeT, will appear in the documentation as a struct\n"
538  "with name TypeT. When disabled the typedef will appear as a member of a file,\n"
539  "namespace, or class. And the struct will be named TypeS. This can typically be\n"
540  "useful for C code in case the coding convention dictates that all compound\n"
541  "types are typedef'ed and only the typedef is referenced, never the tag name.\n"
542  "The default value is: NO.",
543  FALSE
544  );
545  //----
546  ci = cfg->addInt(
547  "LOOKUP_CACHE_SIZE",
548  "The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This\n"
549  "cache is used to resolve symbols given their name and scope. Since this can be\n"
550  "an expensive process and often the same symbol appears multiple times in the\n"
551  "code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small\n"
552  "doxygen will become slower. If the cache is too large, memory is wasted. The\n"
553  "cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range\n"
554  "is 0..9, the default is 0, corresponding to a cache size of 2^16=65536\n"
555  "symbols. At the end of a run doxygen will report the cache usage and suggest\n"
556  "the optimal cache size from a speed point of view.\n"
557  "Minimum value: 0, maximum value: 9, default value: 0.",
558  0,9,0
559  );
560  //---------------------------------------------------------------------------
561  cfg->addInfo("Build","Build related configuration options");
562  //---------------------------------------------------------------------------
563 
564  //----
565  cb = cfg->addBool(
566  "EXTRACT_ALL",
567  "If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in\n"
568  "documentation are documented, even if no documentation was available. Private\n"
569  "class members and static file members will be hidden unless the\n"
570  "EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.\n"
571  "Note: This will also disable the warnings about undocumented members that are\n"
572  "normally produced when WARNINGS is set to YES.\n"
573  "The default value is: NO.",
574  FALSE
575  );
576  //----
577  cb = cfg->addBool(
578  "EXTRACT_PRIVATE",
579  "If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will\n"
580  "be included in the documentation.\n"
581  "The default value is: NO.",
582  FALSE
583  );
584  //----
585  cb = cfg->addBool(
586  "EXTRACT_PACKAGE",
587  "If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal\n"
588  "scope will be included in the documentation.\n"
589  "The default value is: NO.",
590  FALSE
591  );
592  //----
593  cb = cfg->addBool(
594  "EXTRACT_STATIC",
595  "If the EXTRACT_STATIC tag is set to YES, all static members of a file will be\n"
596  "included in the documentation.\n"
597  "The default value is: NO.",
598  FALSE
599  );
600  //----
601  cb = cfg->addBool(
602  "EXTRACT_LOCAL_CLASSES",
603  "If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined\n"
604  "locally in source files will be included in the documentation. If set to NO,\n"
605  "only classes defined in header files are included. Does not have any effect\n"
606  "for Java sources.\n"
607  "The default value is: YES.",
608  TRUE
609  );
610  //----
611  cb = cfg->addBool(
612  "EXTRACT_LOCAL_METHODS",
613  "This flag is only useful for Objective-C code. If set to YES, local methods,\n"
614  "which are defined in the implementation section but not in the interface are\n"
615  "included in the documentation. If set to NO, only methods in the interface are\n"
616  "included.\n"
617  "The default value is: NO.",
618  FALSE
619  );
620  //----
621  cb = cfg->addBool(
622  "EXTRACT_ANON_NSPACES",
623  "If this flag is set to YES, the members of anonymous namespaces will be\n"
624  "extracted and appear in the documentation as a namespace called\n"
625  "'anonymous_namespace{file}', where file will be replaced with the base name of\n"
626  "the file that contains the anonymous namespace. By default anonymous namespace\n"
627  "are hidden.\n"
628  "The default value is: NO.",
629  FALSE
630  );
631  //----
632  cb = cfg->addBool(
633  "HIDE_UNDOC_MEMBERS",
634  "If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all\n"
635  "undocumented members inside documented classes or files. If set to NO these\n"
636  "members will be included in the various overviews, but no documentation\n"
637  "section is generated. This option has no effect if EXTRACT_ALL is enabled.\n"
638  "The default value is: NO.",
639  FALSE
640  );
641  //----
642  cb = cfg->addBool(
643  "HIDE_UNDOC_CLASSES",
644  "If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all\n"
645  "undocumented classes that are normally visible in the class hierarchy. If set\n"
646  "to NO, these classes will be included in the various overviews. This option\n"
647  "has no effect if EXTRACT_ALL is enabled.\n"
648  "The default value is: NO.",
649  FALSE
650  );
651  //----
652  cb = cfg->addBool(
653  "HIDE_FRIEND_COMPOUNDS",
654  "If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend\n"
655  "(class|struct|union) declarations. If set to NO, these declarations will be\n"
656  "included in the documentation.\n"
657  "The default value is: NO.",
658  FALSE
659  );
660  //----
661  cb = cfg->addBool(
662  "HIDE_IN_BODY_DOCS",
663  "If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any\n"
664  "documentation blocks found inside the body of a function. If set to NO, these\n"
665  "blocks will be appended to the function's detailed documentation block.\n"
666  "The default value is: NO.",
667  FALSE
668  );
669  //----
670  cb = cfg->addBool(
671  "INTERNAL_DOCS",
672  "The INTERNAL_DOCS tag determines if documentation that is typed after a\n"
673  "\\internal command is included. If the tag is set to NO then the documentation\n"
674  "will be excluded. Set it to YES to include the internal documentation.\n"
675  "The default value is: NO.",
676  FALSE
677  );
678  //----
679  cb = cfg->addBool(
680  "CASE_SENSE_NAMES",
681  "If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file\n"
682  "names in lower-case letters. If set to YES, upper-case letters are also\n"
683  "allowed. This is useful if you have classes or files whose names only differ\n"
684  "in case and if your file system supports case sensitive file names. Windows\n"
685  "and Mac users are advised to set this option to NO.\n"
686  "The default value is: system dependent.",
688  );
689  //----
690  cb = cfg->addBool(
691  "HIDE_SCOPE_NAMES",
692  "If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with\n"
693  "their full class and namespace scopes in the documentation. If set to YES, the\n"
694  "scope will be hidden.\n"
695  "The default value is: NO.",
696  FALSE
697  );
698  //----
699  cb = cfg->addBool(
700  "HIDE_COMPOUND_REFERENCE",
701  "If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will\n"
702  "append additional text to a page's title, such as Class Reference. If set to\n"
703  "YES the compound reference will be hidden.\n"
704  "The default value is: NO.",
705  FALSE
706  );
707  //----
708  cb = cfg->addBool(
709  "SHOW_INCLUDE_FILES",
710  "If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of\n"
711  "the files that are included by a file in the documentation of that file.\n"
712  "The default value is: YES.",
713  TRUE
714  );
715  //----
716  cb = cfg->addBool(
717  "SHOW_GROUPED_MEMB_INC",
718  "If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each\n"
719  "grouped member an include statement to the documentation, telling the reader\n"
720  "which file to include in order to use the member.\n"
721  "The default value is: NO.",
722  FALSE
723  );
724  //----
725  cb = cfg->addBool(
726  "FORCE_LOCAL_INCLUDES",
727  "If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include\n"
728  "files with double quotes in the documentation rather than with sharp brackets.\n"
729  "The default value is: NO.",
730  FALSE
731  );
732  //----
733  cb = cfg->addBool(
734  "INLINE_INFO",
735  "If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the\n"
736  "documentation for inline members.\n"
737  "The default value is: YES.",
738  TRUE
739  );
740  //----
741  cb = cfg->addBool(
742  "SORT_MEMBER_DOCS",
743  "If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the\n"
744  "(detailed) documentation of file and class members alphabetically by member\n"
745  "name. If set to NO, the members will appear in declaration order.\n"
746  "The default value is: YES.",
747  TRUE
748  );
749  //----
750  cb = cfg->addBool(
751  "SORT_BRIEF_DOCS",
752  "If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief\n"
753  "descriptions of file, namespace and class members alphabetically by member\n"
754  "name. If set to NO, the members will appear in declaration order. Note that\n"
755  "this will also influence the order of the classes in the class list.\n"
756  "The default value is: NO.",
757  FALSE
758  );
759  //----
760  cb = cfg->addBool(
761  "SORT_MEMBERS_CTORS_1ST",
762  "If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the\n"
763  "(brief and detailed) documentation of class members so that constructors and\n"
764  "destructors are listed first. If set to NO the constructors will appear in the\n"
765  "respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.\n"
766  "Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief\n"
767  "member documentation.\n"
768  "Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting\n"
769  "detailed member documentation.\n"
770  "The default value is: NO.",
771  FALSE
772  );
773  //----
774  cb = cfg->addBool(
775  "SORT_GROUP_NAMES",
776  "If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy\n"
777  "of group names into alphabetical order. If set to NO the group names will\n"
778  "appear in their defined order.\n"
779  "The default value is: NO.",
780  FALSE
781  );
782  //----
783  cb = cfg->addBool(
784  "SORT_BY_SCOPE_NAME",
785  "If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by\n"
786  "fully-qualified names, including namespaces. If set to NO, the class list will\n"
787  "be sorted only by class name, not including the namespace part.\n"
788  "Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.\n"
789  "Note: This option applies only to the class list, not to the alphabetical\n"
790  "list.\n"
791  "The default value is: NO.",
792  FALSE
793  );
794  //----
795  cb = cfg->addBool(
796  "STRICT_PROTO_MATCHING",
797  "If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper\n"
798  "type resolution of all parameters of a function it will reject a match between\n"
799  "the prototype and the implementation of a member function even if there is\n"
800  "only one candidate or it is obvious which candidate to choose by doing a\n"
801  "simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still\n"
802  "accept a match between prototype and implementation in such cases.\n"
803  "The default value is: NO.",
804  FALSE
805  );
806  //----
807  cb = cfg->addBool(
808  "GENERATE_TODOLIST",
809  "The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo\n"
810  "list. This list is created by putting \\todo commands in the documentation.\n"
811  "The default value is: YES.",
812  TRUE
813  );
814  //----
815  cb = cfg->addBool(
816  "GENERATE_TESTLIST",
817  "The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test\n"
818  "list. This list is created by putting \\test commands in the documentation.\n"
819  "The default value is: YES.",
820  TRUE
821  );
822  //----
823  cb = cfg->addBool(
824  "GENERATE_BUGLIST",
825  "The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug\n"
826  "list. This list is created by putting \\bug commands in the documentation.\n"
827  "The default value is: YES.",
828  TRUE
829  );
830  //----
831  cb = cfg->addBool(
832  "GENERATE_DEPRECATEDLIST",
833  "The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)\n"
834  "the deprecated list. This list is created by putting \\deprecated commands in\n"
835  "the documentation.\n"
836  "The default value is: YES.",
837  TRUE
838  );
839  //----
840  cl = cfg->addList(
841  "ENABLED_SECTIONS",
842  "The ENABLED_SECTIONS tag can be used to enable conditional documentation\n"
843  "sections, marked by \\if <section_label> ... \\endif and \\cond <section_label>\n"
844  "... \\endcond blocks."
845  );
846  //----
847  ci = cfg->addInt(
848  "MAX_INITIALIZER_LINES",
849  "The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the\n"
850  "initial value of a variable or macro / define can have for it to appear in the\n"
851  "documentation. If the initializer consists of more lines than specified here\n"
852  "it will be hidden. Use a value of 0 to hide initializers completely. The\n"
853  "appearance of the value of individual variables and macros / defines can be\n"
854  "controlled using \\showinitializer or \\hideinitializer command in the\n"
855  "documentation regardless of this setting.\n"
856  "Minimum value: 0, maximum value: 10000, default value: 30.",
857  0,10000,30
858  );
859  //----
860  cb = cfg->addBool(
861  "SHOW_USED_FILES",
862  "Set the SHOW_USED_FILES tag to NO to disable the list of files generated at\n"
863  "the bottom of the documentation of classes and structs. If set to YES, the\n"
864  "list will mention the files that were used to generate the documentation.\n"
865  "The default value is: YES.",
866  TRUE
867  );
868  //----
869  cb = cfg->addBool(
870  "SHOW_FILES",
871  "Set the SHOW_FILES tag to NO to disable the generation of the Files page. This\n"
872  "will remove the Files entry from the Quick Index and from the Folder Tree View\n"
873  "(if specified).\n"
874  "The default value is: YES.",
875  TRUE
876  );
877  //----
878  cb = cfg->addBool(
879  "SHOW_NAMESPACES",
880  "Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces\n"
881  "page. This will remove the Namespaces entry from the Quick Index and from the\n"
882  "Folder Tree View (if specified).\n"
883  "The default value is: YES.",
884  TRUE
885  );
886  //----
887  cs = cfg->addString(
888  "FILE_VERSION_FILTER",
889  "The FILE_VERSION_FILTER tag can be used to specify a program or script that\n"
890  "doxygen should invoke to get the current version for each file (typically from\n"
891  "the version control system). Doxygen will invoke the program by executing (via\n"
892  "popen()) the command command input-file, where command is the value of the\n"
893  "FILE_VERSION_FILTER tag, and input-file is the name of an input file provided\n"
894  "by doxygen. Whatever the program writes to standard output is used as the file\n"
895  "version. For an example see the documentation."
896  );
898  //----
899  cs = cfg->addString(
900  "LAYOUT_FILE",
901  "The LAYOUT_FILE tag can be used to specify a layout file which will be parsed\n"
902  "by doxygen. The layout file controls the global structure of the generated\n"
903  "output files in an output format independent way. To create the layout file\n"
904  "that represents doxygen's defaults, run doxygen with the -l option. You can\n"
905  "optionally specify a file name after the option, if omitted DoxygenLayout.xml\n"
906  "will be used as the name of the layout file.\n"
907  "\n"
908  "Note that if you run doxygen from a directory containing a file called\n"
909  "DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE\n"
910  "tag is left empty."
911  );
913  //----
914  cl = cfg->addList(
915  "CITE_BIB_FILES",
916  "The CITE_BIB_FILES tag can be used to specify one or more bib files containing\n"
917  "the reference definitions. This must be a list of .bib files. The .bib\n"
918  "extension is automatically appended if omitted. This requires the bibtex tool\n"
919  "to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.\n"
920  "For LaTeX the style of the bibliography can be controlled using\n"
921  "LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the\n"
922  "search path. See also \\cite for info how to create references."
923  );
925  //---------------------------------------------------------------------------
926  cfg->addInfo("Messages","Configuration options related to warning and progress messages");
927  //---------------------------------------------------------------------------
928 
929  //----
930  cb = cfg->addBool(
931  "QUIET",
932  "The QUIET tag can be used to turn on/off the messages that are generated to\n"
933  "standard output by doxygen. If QUIET is set to YES this implies that the\n"
934  "messages are off.\n"
935  "The default value is: NO.",
936  FALSE
937  );
938  //----
939  cb = cfg->addBool(
940  "WARNINGS",
941  "The WARNINGS tag can be used to turn on/off the warning messages that are\n"
942  "generated to standard error (stderr) by doxygen. If WARNINGS is set to YES\n"
943  "this implies that the warnings are on.\n"
944  "\n"
945  "Tip: Turn warnings on while writing the documentation.\n"
946  "The default value is: YES.",
947  TRUE
948  );
949  //----
950  cb = cfg->addBool(
951  "WARN_IF_UNDOCUMENTED",
952  "If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate\n"
953  "warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag\n"
954  "will automatically be disabled.\n"
955  "The default value is: YES.",
956  TRUE
957  );
958  //----
959  cb = cfg->addBool(
960  "WARN_IF_DOC_ERROR",
961  "If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for\n"
962  "potential errors in the documentation, such as not documenting some parameters\n"
963  "in a documented function, or documenting parameters that don't exist or using\n"
964  "markup commands wrongly.\n"
965  "The default value is: YES.",
966  TRUE
967  );
968  //----
969  cb = cfg->addBool(
970  "WARN_NO_PARAMDOC",
971  "This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that\n"
972  "are documented, but have no documentation for their parameters or return\n"
973  "value. If set to NO, doxygen will only warn about wrong or incomplete\n"
974  "parameter documentation, but not about the absence of documentation.\n"
975  "The default value is: NO.",
976  FALSE
977  );
978  //----
979  cb = cfg->addBool(
980  "WARN_AS_ERROR",
981  "If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when\n"
982  "a warning is encountered.\n"
983  "The default value is: NO.",
984  FALSE
985  );
986  //----
987  cs = cfg->addString(
988  "WARN_FORMAT",
989  "The WARN_FORMAT tag determines the format of the warning messages that doxygen\n"
990  "can produce. The string should contain the $file, $line, and $text tags, which\n"
991  "will be replaced by the file and line number from which the warning originated\n"
992  "and the warning text. Optionally the format may contain $version, which will\n"
993  "be replaced by the version of the file (if it could be obtained via\n"
994  "FILE_VERSION_FILTER)\n"
995  "The default value is: $file:$line: $text."
996  );
997  cs->setDefaultValue("$file:$line: $text");
998  //----
999  cs = cfg->addString(
1000  "WARN_LOGFILE",
1001  "The WARN_LOGFILE tag can be used to specify a file to which warning and error\n"
1002  "messages should be written. If left blank the output is written to standard\n"
1003  "error (stderr)."
1004  );
1006  //---------------------------------------------------------------------------
1007  cfg->addInfo("Input","Configuration options related to the input files");
1008  //---------------------------------------------------------------------------
1009 
1010  //----
1011  cl = cfg->addList(
1012  "INPUT",
1013  "The INPUT tag is used to specify the files and/or directories that contain\n"
1014  "documented source files. You may enter file names like myfile.cpp or\n"
1015  "directories like /usr/src/myproject. Separate the files or directories with\n"
1016  "spaces. See also FILE_PATTERNS and EXTENSION_MAPPING\n"
1017  "Note: If this tag is empty the current directory is searched."
1018  );
1019  cl->addValue("");
1021  //----
1022  cs = cfg->addString(
1023  "INPUT_ENCODING",
1024  "This tag can be used to specify the character encoding of the source files\n"
1025  "that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses\n"
1026  "libiconv (or the iconv built into libc) for the transcoding. See the libiconv\n"
1027  "documentation (see: http://www.gnu.org/software/libiconv) for the list of\n"
1028  "possible encodings.\n"
1029  "The default value is: UTF-8."
1030  );
1031  cs->setDefaultValue("UTF-8");
1032  //----
1033  cl = cfg->addList(
1034  "FILE_PATTERNS",
1035  "If the value of the INPUT tag contains directories, you can use the\n"
1036  "FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and\n"
1037  "*.h) to filter out the source-files in the directories.\n"
1038  "\n"
1039  "Note that for custom extensions or not directly supported extensions you also\n"
1040  "need to set EXTENSION_MAPPING for the extension otherwise the files are not\n"
1041  "read by doxygen.\n"
1042  "\n"
1043  "If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,\n"
1044  "*.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,\n"
1045  "*.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,\n"
1046  "*.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f, *.for, *.tcl,\n"
1047  "*.vhd, *.vhdl, *.ucf, *.qsf, *.as and *.js."
1048  );
1049  cl->addValue("*.c");
1050  cl->addValue("*.cc");
1051  cl->addValue("*.cxx");
1052  cl->addValue("*.cpp");
1053  cl->addValue("*.c++");
1054  cl->addValue("*.java");
1055  cl->addValue("*.ii");
1056  cl->addValue("*.ixx");
1057  cl->addValue("*.ipp");
1058  cl->addValue("*.i++");
1059  cl->addValue("*.inl");
1060  cl->addValue("*.idl");
1061  cl->addValue("*.ddl");
1062  cl->addValue("*.odl");
1063  cl->addValue("*.h");
1064  cl->addValue("*.hh");
1065  cl->addValue("*.hxx");
1066  cl->addValue("*.hpp");
1067  cl->addValue("*.h++");
1068  cl->addValue("*.cs");
1069  cl->addValue("*.d");
1070  cl->addValue("*.php");
1071  cl->addValue("*.php4");
1072  cl->addValue("*.php5");
1073  cl->addValue("*.phtml");
1074  cl->addValue("*.inc");
1075  cl->addValue("*.m");
1076  cl->addValue("*.markdown");
1077  cl->addValue("*.md");
1078  cl->addValue("*.mm");
1079  cl->addValue("*.dox");
1080  cl->addValue("*.py");
1081  cl->addValue("*.pyw");
1082  cl->addValue("*.f90");
1083  cl->addValue("*.f");
1084  cl->addValue("*.for");
1085  cl->addValue("*.tcl");
1086  cl->addValue("*.vhd");
1087  cl->addValue("*.vhdl");
1088  cl->addValue("*.ucf");
1089  cl->addValue("*.qsf");
1090  cl->addValue("*.as");
1091  cl->addValue("*.js");
1092  //----
1093  cb = cfg->addBool(
1094  "RECURSIVE",
1095  "The RECURSIVE tag can be used to specify whether or not subdirectories should\n"
1096  "be searched for input files as well.\n"
1097  "The default value is: NO.",
1098  FALSE
1099  );
1100  //----
1101  cl = cfg->addList(
1102  "EXCLUDE",
1103  "The EXCLUDE tag can be used to specify files and/or directories that should be\n"
1104  "excluded from the INPUT source files. This way you can easily exclude a\n"
1105  "subdirectory from a directory tree whose root is specified with the INPUT tag.\n"
1106  "\n"
1107  "Note that relative paths are relative to the directory from which doxygen is\n"
1108  "run."
1109  );
1111  //----
1112  cb = cfg->addBool(
1113  "EXCLUDE_SYMLINKS",
1114  "The EXCLUDE_SYMLINKS tag can be used to select whether or not files or\n"
1115  "directories that are symbolic links (a Unix file system feature) are excluded\n"
1116  "from the input.\n"
1117  "The default value is: NO.",
1118  FALSE
1119  );
1120  //----
1121  cl = cfg->addList(
1122  "EXCLUDE_PATTERNS",
1123  "If the value of the INPUT tag contains directories, you can use the\n"
1124  "EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude\n"
1125  "certain files from those directories.\n"
1126  "\n"
1127  "Note that the wildcards are matched against the file with absolute path, so to\n"
1128  "exclude all test directories for example use the pattern */test/*"
1129  );
1130  //----
1131  cl = cfg->addList(
1132  "EXCLUDE_SYMBOLS",
1133  "The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names\n"
1134  "(namespaces, classes, functions, etc.) that should be excluded from the\n"
1135  "output. The symbol name can be a fully qualified name, a word, or if the\n"
1136  "wildcard * is used, a substring. Examples: ANamespace, AClass,\n"
1137  "AClass::ANamespace, ANamespace::*Test\n"
1138  "\n"
1139  "Note that the wildcards are matched against the file with absolute path, so to\n"
1140  "exclude all test directories use the pattern */test/*"
1141  );
1142  //----
1143  cl = cfg->addList(
1144  "EXAMPLE_PATH",
1145  "The EXAMPLE_PATH tag can be used to specify one or more files or directories\n"
1146  "that contain example code fragments that are included (see the \\include\n"
1147  "command)."
1148  );
1150  //----
1151  cl = cfg->addList(
1152  "EXAMPLE_PATTERNS",
1153  "If the value of the EXAMPLE_PATH tag contains directories, you can use the\n"
1154  "EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and\n"
1155  "*.h) to filter out the source-files in the directories. If left blank all\n"
1156  "files are included."
1157  );
1158  cl->addValue("*");
1159  //----
1160  cb = cfg->addBool(
1161  "EXAMPLE_RECURSIVE",
1162  "If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be\n"
1163  "searched for input files to be used with the \\include or \\dontinclude commands\n"
1164  "irrespective of the value of the RECURSIVE tag.\n"
1165  "The default value is: NO.",
1166  FALSE
1167  );
1168  //----
1169  cl = cfg->addList(
1170  "IMAGE_PATH",
1171  "The IMAGE_PATH tag can be used to specify one or more files or directories\n"
1172  "that contain images that are to be included in the documentation (see the\n"
1173  "\\image command)."
1174  );
1176  //----
1177  cs = cfg->addString(
1178  "INPUT_FILTER",
1179  "The INPUT_FILTER tag can be used to specify a program that doxygen should\n"
1180  "invoke to filter for each input file. Doxygen will invoke the filter program\n"
1181  "by executing (via popen()) the command:\n"
1182  "\n"
1183  "<filter> <input-file>\n"
1184  "\n"
1185  "where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the\n"
1186  "name of an input file. Doxygen will then use the output that the filter\n"
1187  "program writes to standard output. If FILTER_PATTERNS is specified, this tag\n"
1188  "will be ignored.\n"
1189  "\n"
1190  "Note that the filter must not add or remove lines; it is applied before the\n"
1191  "code is scanned, but not when the output code is generated. If lines are added\n"
1192  "or removed, the anchors will not be placed correctly.\n"
1193  "\n"
1194  "Note that for custom extensions or not directly supported extensions you also\n"
1195  "need to set EXTENSION_MAPPING for the extension otherwise the files are not\n"
1196  "properly processed by doxygen.\n"
1197  ""
1198  );
1200  //----
1201  cl = cfg->addList(
1202  "FILTER_PATTERNS",
1203  "The FILTER_PATTERNS tag can be used to specify filters on a per file pattern\n"
1204  "basis. Doxygen will compare the file name with each pattern and apply the\n"
1205  "filter if there is a match. The filters are a list of the form: pattern=filter\n"
1206  "(like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how\n"
1207  "filters are used. If the FILTER_PATTERNS tag is empty or if none of the\n"
1208  "patterns match the file name, INPUT_FILTER is applied.\n"
1209  "\n"
1210  "Note that for custom extensions or not directly supported extensions you also\n"
1211  "need to set EXTENSION_MAPPING for the extension otherwise the files are not\n"
1212  "properly processed by doxygen.\n"
1213  ""
1214  );
1215  //----
1216  cb = cfg->addBool(
1217  "FILTER_SOURCE_FILES",
1218  "If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using\n"
1219  "INPUT_FILTER) will also be used to filter the input files that are used for\n"
1220  "producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).\n"
1221  "The default value is: NO.",
1222  FALSE
1223  );
1224  //----
1225  cl = cfg->addList(
1226  "FILTER_SOURCE_PATTERNS",
1227  "The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file\n"
1228  "pattern. A pattern will override the setting for FILTER_PATTERN (if any) and\n"
1229  "it is also possible to disable source filtering for a specific pattern using\n"
1230  "*.ext= (so without naming a filter).\n"
1231  "This tag requires that the tag FILTER_SOURCE_FILES is set to YES."
1232  );
1233  cl->addDependency("FILTER_SOURCE_FILES");
1234  //----
1235  cs = cfg->addString(
1236  "USE_MDFILE_AS_MAINPAGE",
1237  "If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that\n"
1238  "is part of the input, its contents will be placed on the main page\n"
1239  "(index.html). This can be useful if you have a project on for instance GitHub\n"
1240  "and want to reuse the introduction page also for the doxygen output."
1241  );
1242  //---------------------------------------------------------------------------
1243  cfg->addInfo("Source_Browser","Configuration options related to source browsing");
1244  //---------------------------------------------------------------------------
1245 
1246  //----
1247  cb = cfg->addBool(
1248  "SOURCE_BROWSER",
1249  "If the SOURCE_BROWSER tag is set to YES then a list of source files will be\n"
1250  "generated. Documented entities will be cross-referenced with these sources.\n"
1251  "\n"
1252  "Note: To get rid of all source code in the generated output, make sure that\n"
1253  "also VERBATIM_HEADERS is set to NO.\n"
1254  "The default value is: NO.",
1255  FALSE
1256  );
1257  //----
1258  cb = cfg->addBool(
1259  "INLINE_SOURCES",
1260  "Setting the INLINE_SOURCES tag to YES will include the body of functions,\n"
1261  "classes and enums directly into the documentation.\n"
1262  "The default value is: NO.",
1263  FALSE
1264  );
1265  //----
1266  cb = cfg->addBool(
1267  "STRIP_CODE_COMMENTS",
1268  "Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any\n"
1269  "special comment blocks from generated source code fragments. Normal C, C++ and\n"
1270  "Fortran comments will always remain visible.\n"
1271  "The default value is: YES.",
1272  TRUE
1273  );
1274  //----
1275  cb = cfg->addBool(
1276  "REFERENCED_BY_RELATION",
1277  "If the REFERENCED_BY_RELATION tag is set to YES then for each documented\n"
1278  "function all documented functions referencing it will be listed.\n"
1279  "The default value is: NO.",
1280  FALSE
1281  );
1282  //----
1283  cb = cfg->addBool(
1284  "REFERENCES_RELATION",
1285  "If the REFERENCES_RELATION tag is set to YES then for each documented function\n"
1286  "all documented entities called/used by that function will be listed.\n"
1287  "The default value is: NO.",
1288  FALSE
1289  );
1290  //----
1291  cb = cfg->addBool(
1292  "REFERENCES_LINK_SOURCE",
1293  "If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set\n"
1294  "to YES then the hyperlinks from functions in REFERENCES_RELATION and\n"
1295  "REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will\n"
1296  "link to the documentation.\n"
1297  "The default value is: YES.",
1298  TRUE
1299  );
1300  //----
1301  cb = cfg->addBool(
1302  "SOURCE_TOOLTIPS",
1303  "If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the\n"
1304  "source code will show a tooltip with additional information such as prototype,\n"
1305  "brief description and links to the definition and documentation. Since this\n"
1306  "will make the HTML file larger and loading of large files a bit slower, you\n"
1307  "can opt to disable this feature.\n"
1308  "The default value is: YES.\n"
1309  "This tag requires that the tag SOURCE_BROWSER is set to YES.",
1310  TRUE
1311  );
1312  cb->addDependency("SOURCE_BROWSER");
1313  //----
1314  cb = cfg->addBool(
1315  "USE_HTAGS",
1316  "If the USE_HTAGS tag is set to YES then the references to source code will\n"
1317  "point to the HTML generated by the htags(1) tool instead of doxygen built-in\n"
1318  "source browser. The htags tool is part of GNU's global source tagging system\n"
1319  "(see http://www.gnu.org/software/global/global.html). You will need version\n"
1320  "4.8.6 or higher.\n"
1321  "\n"
1322  "To use it do the following:\n"
1323  "- Install the latest version of global\n"
1324  "- Enable SOURCE_BROWSER and USE_HTAGS in the config file\n"
1325  "- Make sure the INPUT points to the root of the source tree\n"
1326  "- Run doxygen as normal\n"
1327  "\n"
1328  "Doxygen will invoke htags (and that will in turn invoke gtags), so these\n"
1329  "tools must be available from the command line (i.e. in the search path).\n"
1330  "\n"
1331  "The result: instead of the source browser generated by doxygen, the links to\n"
1332  "source code will now point to the output of htags.\n"
1333  "The default value is: NO.\n"
1334  "This tag requires that the tag SOURCE_BROWSER is set to YES.",
1335  FALSE
1336  );
1337  cb->addDependency("SOURCE_BROWSER");
1338  //----
1339  cb = cfg->addBool(
1340  "VERBATIM_HEADERS",
1341  "If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a\n"
1342  "verbatim copy of the header file for each class for which an include is\n"
1343  "specified. Set to NO to disable this.\n"
1344  "See also: Section \\class.\n"
1345  "The default value is: YES.",
1346  TRUE
1347  );
1348 #if USE_LIBCLANG
1349  //----
1350  cb = cfg->addBool(
1351  "CLANG_ASSISTED_PARSING",
1352  "If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the\n"
1353  "clang parser (see: http://clang.llvm.org/) for more accurate parsing at the\n"
1354  "cost of reduced performance. This can be particularly helpful with template\n"
1355  "rich C++ code for which doxygen's built-in parser lacks the necessary type\n"
1356  "information.\n"
1357  "Note: The availability of this option depends on whether or not doxygen was\n"
1358  "generated with the -Duse-libclang=ON option for CMake.\n"
1359  "The default value is: NO.",
1360  FALSE
1361  );
1362 #else
1363  cfg->addDisabled("CLANG_ASSISTED_PARSING");
1364 #endif
1365 #if USE_LIBCLANG
1366  //----
1367  cl = cfg->addList(
1368  "CLANG_OPTIONS",
1369  "If clang assisted parsing is enabled you can provide the compiler with command\n"
1370  "line options that you would normally use when invoking the compiler. Note that\n"
1371  "the include paths will already be set by doxygen for the files and directories\n"
1372  "specified with INPUT and INCLUDE_PATH.\n"
1373  "This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES."
1374  );
1375  cl->addDependency("CLANG_ASSISTED_PARSING");
1376 #else
1377  cfg->addDisabled("CLANG_OPTIONS");
1378 #endif
1379  //---------------------------------------------------------------------------
1380  cfg->addInfo("Index","Configuration options related to the alphabetical class index");
1381  //---------------------------------------------------------------------------
1382 
1383  //----
1384  cb = cfg->addBool(
1385  "ALPHABETICAL_INDEX",
1386  "If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all\n"
1387  "compounds will be generated. Enable this if the project contains a lot of\n"
1388  "classes, structs, unions or interfaces.\n"
1389  "The default value is: YES.",
1390  TRUE
1391  );
1392  //----
1393  ci = cfg->addInt(
1394  "COLS_IN_ALPHA_INDEX",
1395  "The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in\n"
1396  "which the alphabetical index list will be split.\n"
1397  "Minimum value: 1, maximum value: 20, default value: 5.\n"
1398  "This tag requires that the tag ALPHABETICAL_INDEX is set to YES.",
1399  1,20,5
1400  );
1401  ci->addDependency("ALPHABETICAL_INDEX");
1402  //----
1403  cl = cfg->addList(
1404  "IGNORE_PREFIX",
1405  "In case all classes in a project start with a common prefix, all classes will\n"
1406  "be put under the same header in the alphabetical index. The IGNORE_PREFIX tag\n"
1407  "can be used to specify a prefix (or a list of prefixes) that should be ignored\n"
1408  "while generating the index headers.\n"
1409  "This tag requires that the tag ALPHABETICAL_INDEX is set to YES."
1410  );
1411  cl->addDependency("ALPHABETICAL_INDEX");
1412  //---------------------------------------------------------------------------
1413  cfg->addInfo("HTML","Configuration options related to the HTML output");
1414  //---------------------------------------------------------------------------
1415 
1416  //----
1417  cb = cfg->addBool(
1418  "GENERATE_HTML",
1419  "If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output\n"
1420  "The default value is: YES.",
1421  TRUE
1422  );
1423  //----
1424  cs = cfg->addString(
1425  "HTML_OUTPUT",
1426  "The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a\n"
1427  "relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n"
1428  "it.\n"
1429  "The default directory is: html.\n"
1430  "This tag requires that the tag GENERATE_HTML is set to YES."
1431  );
1432  cs->setDefaultValue("html");
1434  cs->addDependency("GENERATE_HTML");
1435  //----
1436  cs = cfg->addString(
1437  "HTML_FILE_EXTENSION",
1438  "The HTML_FILE_EXTENSION tag can be used to specify the file extension for each\n"
1439  "generated HTML page (for example: .htm, .php, .asp).\n"
1440  "The default value is: .html.\n"
1441  "This tag requires that the tag GENERATE_HTML is set to YES."
1442  );
1443  cs->setDefaultValue(".html");
1444  cs->addDependency("GENERATE_HTML");
1445  //----
1446  cs = cfg->addString(
1447  "HTML_HEADER",
1448  "The HTML_HEADER tag can be used to specify a user-defined HTML header file for\n"
1449  "each generated HTML page. If the tag is left blank doxygen will generate a\n"
1450  "standard header.\n"
1451  "\n"
1452  "To get valid HTML the header file that includes any scripts and style sheets\n"
1453  "that doxygen needs, which is dependent on the configuration options used (e.g.\n"
1454  "the setting GENERATE_TREEVIEW). It is highly recommended to start with a\n"
1455  "default header using\n"
1456  "doxygen -w html new_header.html new_footer.html new_stylesheet.css\n"
1457  "YourConfigFile\n"
1458  "and then modify the file new_header.html. See also section \"Doxygen usage\"\n"
1459  "for information on how to generate the default header that doxygen normally\n"
1460  "uses.\n"
1461  "Note: The header is subject to change so you typically have to regenerate the\n"
1462  "default header when upgrading to a newer version of doxygen. For a description\n"
1463  "of the possible markers and block names see the documentation.\n"
1464  "This tag requires that the tag GENERATE_HTML is set to YES."
1465  );
1467  cs->addDependency("GENERATE_HTML");
1468  //----
1469  cs = cfg->addString(
1470  "HTML_FOOTER",
1471  "The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each\n"
1472  "generated HTML page. If the tag is left blank doxygen will generate a standard\n"
1473  "footer. See HTML_HEADER for more information on how to generate a default\n"
1474  "footer and what special commands can be used inside the footer. See also\n"
1475  "section \"Doxygen usage\" for information on how to generate the default footer\n"
1476  "that doxygen normally uses.\n"
1477  "This tag requires that the tag GENERATE_HTML is set to YES."
1478  );
1480  cs->addDependency("GENERATE_HTML");
1481  //----
1482  cs = cfg->addString(
1483  "HTML_STYLESHEET",
1484  "The HTML_STYLESHEET tag can be used to specify a user-defined cascading style\n"
1485  "sheet that is used by each HTML page. It can be used to fine-tune the look of\n"
1486  "the HTML output. If left blank doxygen will generate a default style sheet.\n"
1487  "See also section \"Doxygen usage\" for information on how to generate the style\n"
1488  "sheet that doxygen normally uses.\n"
1489  "Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as\n"
1490  "it is more robust and this tag (HTML_STYLESHEET) will in the future become\n"
1491  "obsolete.\n"
1492  "This tag requires that the tag GENERATE_HTML is set to YES."
1493  );
1495  cs->addDependency("GENERATE_HTML");
1496  //----
1497  cl = cfg->addList(
1498  "HTML_EXTRA_STYLESHEET",
1499  "The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined\n"
1500  "cascading style sheets that are included after the standard style sheets\n"
1501  "created by doxygen. Using this option one can overrule certain style aspects.\n"
1502  "This is preferred over using HTML_STYLESHEET since it does not replace the\n"
1503  "standard style sheet and is therefore more robust against future updates.\n"
1504  "Doxygen will copy the style sheet files to the output directory.\n"
1505  "Note: The order of the extra style sheet files is of importance (e.g. the last\n"
1506  "style sheet in the list overrules the setting of the previous ones in the\n"
1507  "list). For an example see the documentation.\n"
1508  "This tag requires that the tag GENERATE_HTML is set to YES."
1509  );
1510  cl->addDependency("GENERATE_HTML");
1512  //----
1513  cl = cfg->addList(
1514  "HTML_EXTRA_FILES",
1515  "The HTML_EXTRA_FILES tag can be used to specify one or more extra images or\n"
1516  "other source files which should be copied to the HTML output directory. Note\n"
1517  "that these files will be copied to the base HTML output directory. Use the\n"
1518  "$relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these\n"
1519  "files. In the HTML_STYLESHEET file, use the file name only. Also note that the\n"
1520  "files will be copied as-is; there are no commands or markers available.\n"
1521  "This tag requires that the tag GENERATE_HTML is set to YES."
1522  );
1523  cl->addDependency("GENERATE_HTML");
1525  //----
1526  ci = cfg->addInt(
1527  "HTML_COLORSTYLE_HUE",
1528  "The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen\n"
1529  "will adjust the colors in the style sheet and background images according to\n"
1530  "this color. Hue is specified as an angle on a colorwheel, see\n"
1531  "http://en.wikipedia.org/wiki/Hue for more information. For instance the value\n"
1532  "0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300\n"
1533  "purple, and 360 is red again.\n"
1534  "Minimum value: 0, maximum value: 359, default value: 220.\n"
1535  "This tag requires that the tag GENERATE_HTML is set to YES.",
1536  0,359,220
1537  );
1538  ci->addDependency("GENERATE_HTML");
1539  //----
1540  ci = cfg->addInt(
1541  "HTML_COLORSTYLE_SAT",
1542  "The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors\n"
1543  "in the HTML output. For a value of 0 the output will use grayscales only. A\n"
1544  "value of 255 will produce the most vivid colors.\n"
1545  "Minimum value: 0, maximum value: 255, default value: 100.\n"
1546  "This tag requires that the tag GENERATE_HTML is set to YES.",
1547  0,255,100
1548  );
1549  ci->addDependency("GENERATE_HTML");
1550  //----
1551  ci = cfg->addInt(
1552  "HTML_COLORSTYLE_GAMMA",
1553  "The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the\n"
1554  "luminance component of the colors in the HTML output. Values below 100\n"
1555  "gradually make the output lighter, whereas values above 100 make the output\n"
1556  "darker. The value divided by 100 is the actual gamma applied, so 80 represents\n"
1557  "a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not\n"
1558  "change the gamma.\n"
1559  "Minimum value: 40, maximum value: 240, default value: 80.\n"
1560  "This tag requires that the tag GENERATE_HTML is set to YES.",
1561  40,240,80
1562  );
1563  ci->addDependency("GENERATE_HTML");
1564  //----
1565  cb = cfg->addBool(
1566  "HTML_TIMESTAMP",
1567  "If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML\n"
1568  "page will contain the date and time when the page was generated. Setting this\n"
1569  "to YES can help to show when doxygen was last run and thus if the\n"
1570  "documentation is up to date.\n"
1571  "The default value is: NO.\n"
1572  "This tag requires that the tag GENERATE_HTML is set to YES.",
1573  FALSE
1574  );
1575  cb->addDependency("GENERATE_HTML");
1576  //----
1577  cb = cfg->addBool(
1578  "HTML_DYNAMIC_SECTIONS",
1579  "If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML\n"
1580  "documentation will contain sections that can be hidden and shown after the\n"
1581  "page has loaded.\n"
1582  "The default value is: NO.\n"
1583  "This tag requires that the tag GENERATE_HTML is set to YES.",
1584  FALSE
1585  );
1586  cb->addDependency("GENERATE_HTML");
1587  //----
1588  ci = cfg->addInt(
1589  "HTML_INDEX_NUM_ENTRIES",
1590  "With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries\n"
1591  "shown in the various tree structured indices initially; the user can expand\n"
1592  "and collapse entries dynamically later on. Doxygen will expand the tree to\n"
1593  "such a level that at most the specified number of entries are visible (unless\n"
1594  "a fully collapsed tree already exceeds this amount). So setting the number of\n"
1595  "entries 1 will produce a full collapsed tree by default. 0 is a special value\n"
1596  "representing an infinite number of entries and will result in a full expanded\n"
1597  "tree by default.\n"
1598  "Minimum value: 0, maximum value: 9999, default value: 100.\n"
1599  "This tag requires that the tag GENERATE_HTML is set to YES.",
1600  0,9999,100
1601  );
1602  ci->addDependency("GENERATE_HTML");
1603  //----
1604  cb = cfg->addBool(
1605  "GENERATE_DOCSET",
1606  "If the GENERATE_DOCSET tag is set to YES, additional index files will be\n"
1607  "generated that can be used as input for Apple's Xcode 3 integrated development\n"
1608  "environment (see: http://developer.apple.com/tools/xcode/), introduced with\n"
1609  "OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a\n"
1610  "Makefile in the HTML output directory. Running make will produce the docset in\n"
1611  "that directory and running make install will install the docset in\n"
1612  "~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at\n"
1613  "startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html\n"
1614  "for more information.\n"
1615  "The default value is: NO.\n"
1616  "This tag requires that the tag GENERATE_HTML is set to YES.",
1617  FALSE
1618  );
1619  cb->addDependency("GENERATE_HTML");
1620  //----
1621  cs = cfg->addString(
1622  "DOCSET_FEEDNAME",
1623  "This tag determines the name of the docset feed. A documentation feed provides\n"
1624  "an umbrella under which multiple documentation sets from a single provider\n"
1625  "(such as a company or product suite) can be grouped.\n"
1626  "The default value is: Doxygen generated docs.\n"
1627  "This tag requires that the tag GENERATE_DOCSET is set to YES."
1628  );
1629  cs->setDefaultValue("Doxygen generated docs");
1630  cs->addDependency("GENERATE_DOCSET");
1631  //----
1632  cs = cfg->addString(
1633  "DOCSET_BUNDLE_ID",
1634  "This tag specifies a string that should uniquely identify the documentation\n"
1635  "set bundle. This should be a reverse domain-name style string, e.g.\n"
1636  "com.mycompany.MyDocSet. Doxygen will append .docset to the name.\n"
1637  "The default value is: org.doxygen.Project.\n"
1638  "This tag requires that the tag GENERATE_DOCSET is set to YES."
1639  );
1640  cs->setDefaultValue("org.doxygen.Project");
1641  cs->addDependency("GENERATE_DOCSET");
1642  //----
1643  cs = cfg->addString(
1644  "DOCSET_PUBLISHER_ID",
1645  "The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify\n"
1646  "the documentation publisher. This should be a reverse domain-name style\n"
1647  "string, e.g. com.mycompany.MyDocSet.documentation.\n"
1648  "The default value is: org.doxygen.Publisher.\n"
1649  "This tag requires that the tag GENERATE_DOCSET is set to YES."
1650  );
1651  cs->setDefaultValue("org.doxygen.Publisher");
1652  cs->addDependency("GENERATE_DOCSET");
1653  //----
1654  cs = cfg->addString(
1655  "DOCSET_PUBLISHER_NAME",
1656  "The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.\n"
1657  "The default value is: Publisher.\n"
1658  "This tag requires that the tag GENERATE_DOCSET is set to YES."
1659  );
1660  cs->setDefaultValue("Publisher");
1661  cs->addDependency("GENERATE_DOCSET");
1662  //----
1663  cb = cfg->addBool(
1664  "GENERATE_HTMLHELP",
1665  "If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three\n"
1666  "additional HTML index files: index.hhp, index.hhc, and index.hhk. The\n"
1667  "index.hhp is a project file that can be read by Microsoft's HTML Help Workshop\n"
1668  "(see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on\n"
1669  "Windows.\n"
1670  "\n"
1671  "The HTML Help Workshop contains a compiler that can convert all HTML output\n"
1672  "generated by doxygen into a single compiled HTML file (.chm). Compiled HTML\n"
1673  "files are now used as the Windows 98 help format, and will replace the old\n"
1674  "Windows help format (.hlp) on all Windows platforms in the future. Compressed\n"
1675  "HTML files also contain an index, a table of contents, and you can search for\n"
1676  "words in the documentation. The HTML workshop also contains a viewer for\n"
1677  "compressed HTML files.\n"
1678  "The default value is: NO.\n"
1679  "This tag requires that the tag GENERATE_HTML is set to YES.",
1680  FALSE
1681  );
1682  cb->addDependency("GENERATE_HTML");
1683  //----
1684  cs = cfg->addString(
1685  "CHM_FILE",
1686  "The CHM_FILE tag can be used to specify the file name of the resulting .chm\n"
1687  "file. You can add a path in front of the file if the result should not be\n"
1688  "written to the html output directory.\n"
1689  "This tag requires that the tag GENERATE_HTMLHELP is set to YES."
1690  );
1692  cs->addDependency("GENERATE_HTMLHELP");
1693  //----
1694  cs = cfg->addString(
1695  "HHC_LOCATION",
1696  "The HHC_LOCATION tag can be used to specify the location (absolute path\n"
1697  "including file name) of the HTML help compiler (hhc.exe). If non-empty,\n"
1698  "doxygen will try to run the HTML help compiler on the generated index.hhp.\n"
1699  "The file has to be specified with full path.\n"
1700  "This tag requires that the tag GENERATE_HTMLHELP is set to YES."
1701  );
1703  cs->addDependency("GENERATE_HTMLHELP");
1704  //----
1705  cb = cfg->addBool(
1706  "GENERATE_CHI",
1707  "The GENERATE_CHI flag controls if a separate .chi index file is generated\n"
1708  "(YES) or that it should be included in the master .chm file (NO).\n"
1709  "The default value is: NO.\n"
1710  "This tag requires that the tag GENERATE_HTMLHELP is set to YES.",
1711  FALSE
1712  );
1713  cb->addDependency("GENERATE_HTMLHELP");
1714  //----
1715  cs = cfg->addString(
1716  "CHM_INDEX_ENCODING",
1717  "The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)\n"
1718  "and project file content.\n"
1719  "This tag requires that the tag GENERATE_HTMLHELP is set to YES."
1720  );
1721  cs->addDependency("GENERATE_HTMLHELP");
1722  //----
1723  cb = cfg->addBool(
1724  "BINARY_TOC",
1725  "The BINARY_TOC flag controls whether a binary table of contents is generated\n"
1726  "(YES) or a normal table of contents (NO) in the .chm file. Furthermore it\n"
1727  "enables the Previous and Next buttons.\n"
1728  "The default value is: NO.\n"
1729  "This tag requires that the tag GENERATE_HTMLHELP is set to YES.",
1730  FALSE
1731  );
1732  cb->addDependency("GENERATE_HTMLHELP");
1733  //----
1734  cb = cfg->addBool(
1735  "TOC_EXPAND",
1736  "The TOC_EXPAND flag can be set to YES to add extra items for group members to\n"
1737  "the table of contents of the HTML help documentation and to the tree view.\n"
1738  "The default value is: NO.\n"
1739  "This tag requires that the tag GENERATE_HTMLHELP is set to YES.",
1740  FALSE
1741  );
1742  cb->addDependency("GENERATE_HTMLHELP");
1743  //----
1744  cb = cfg->addBool(
1745  "GENERATE_QHP",
1746  "If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and\n"
1747  "QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that\n"
1748  "can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help\n"
1749  "(.qch) of the generated HTML documentation.\n"
1750  "The default value is: NO.\n"
1751  "This tag requires that the tag GENERATE_HTML is set to YES.",
1752  FALSE
1753  );
1754  cb->addDependency("GENERATE_HTML");
1755  //----
1756  cs = cfg->addString(
1757  "QCH_FILE",
1758  "If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify\n"
1759  "the file name of the resulting .qch file. The path specified is relative to\n"
1760  "the HTML output folder.\n"
1761  "This tag requires that the tag GENERATE_QHP is set to YES."
1762  );
1764  cs->addDependency("GENERATE_QHP");
1765  //----
1766  cs = cfg->addString(
1767  "QHP_NAMESPACE",
1768  "The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help\n"
1769  "Project output. For more information please see Qt Help Project / Namespace\n"
1770  "(see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace).\n"
1771  "The default value is: org.doxygen.Project.\n"
1772  "This tag requires that the tag GENERATE_QHP is set to YES."
1773  );
1774  cs->setDefaultValue("org.doxygen.Project");
1775  cs->addDependency("GENERATE_QHP");
1776  //----
1777  cs = cfg->addString(
1778  "QHP_VIRTUAL_FOLDER",
1779  "The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt\n"
1780  "Help Project output. For more information please see Qt Help Project / Virtual\n"
1781  "Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual-\n"
1782  "folders).\n"
1783  "The default value is: doc.\n"
1784  "This tag requires that the tag GENERATE_QHP is set to YES."
1785  );
1786  cs->setDefaultValue("doc");
1787  cs->addDependency("GENERATE_QHP");
1788  //----
1789  cs = cfg->addString(
1790  "QHP_CUST_FILTER_NAME",
1791  "If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom\n"
1792  "filter to add. For more information please see Qt Help Project / Custom\n"
1793  "Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-\n"
1794  "filters).\n"
1795  "This tag requires that the tag GENERATE_QHP is set to YES."
1796  );
1797  cs->addDependency("GENERATE_QHP");
1798  //----
1799  cs = cfg->addString(
1800  "QHP_CUST_FILTER_ATTRS",
1801  "The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the\n"
1802  "custom filter to add. For more information please see Qt Help Project / Custom\n"
1803  "Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-\n"
1804  "filters).\n"
1805  "This tag requires that the tag GENERATE_QHP is set to YES."
1806  );
1807  cs->addDependency("GENERATE_QHP");
1808  //----
1809  cs = cfg->addString(
1810  "QHP_SECT_FILTER_ATTRS",
1811  "The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this\n"
1812  "project's filter section matches. Qt Help Project / Filter Attributes (see:\n"
1813  "http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).\n"
1814  "This tag requires that the tag GENERATE_QHP is set to YES."
1815  );
1816  cs->addDependency("GENERATE_QHP");
1817  //----
1818  cs = cfg->addString(
1819  "QHG_LOCATION",
1820  "The QHG_LOCATION tag can be used to specify the location of Qt's\n"
1821  "qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the\n"
1822  "generated .qhp file.\n"
1823  "This tag requires that the tag GENERATE_QHP is set to YES."
1824  );
1826  cs->addDependency("GENERATE_QHP");
1827  //----
1828  cb = cfg->addBool(
1829  "GENERATE_ECLIPSEHELP",
1830  "If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be\n"
1831  "generated, together with the HTML files, they form an Eclipse help plugin. To\n"
1832  "install this plugin and make it available under the help contents menu in\n"
1833  "Eclipse, the contents of the directory containing the HTML and XML files needs\n"
1834  "to be copied into the plugins directory of eclipse. The name of the directory\n"
1835  "within the plugins directory should be the same as the ECLIPSE_DOC_ID value.\n"
1836  "After copying Eclipse needs to be restarted before the help appears.\n"
1837  "The default value is: NO.\n"
1838  "This tag requires that the tag GENERATE_HTML is set to YES.",
1839  FALSE
1840  );
1841  cb->addDependency("GENERATE_HTML");
1842  //----
1843  cs = cfg->addString(
1844  "ECLIPSE_DOC_ID",
1845  "A unique identifier for the Eclipse help plugin. When installing the plugin\n"
1846  "the directory name containing the HTML and XML files should also have this\n"
1847  "name. Each documentation set should have its own identifier.\n"
1848  "The default value is: org.doxygen.Project.\n"
1849  "This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES."
1850  );
1851  cs->setDefaultValue("org.doxygen.Project");
1852  cs->addDependency("GENERATE_ECLIPSEHELP");
1853  //----
1854  cb = cfg->addBool(
1855  "DISABLE_INDEX",
1856  "If you want full control over the layout of the generated HTML pages it might\n"
1857  "be necessary to disable the index and replace it with your own. The\n"
1858  "DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top\n"
1859  "of each HTML page. A value of NO enables the index and the value YES disables\n"
1860  "it. Since the tabs in the index contain the same information as the navigation\n"
1861  "tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.\n"
1862  "The default value is: NO.\n"
1863  "This tag requires that the tag GENERATE_HTML is set to YES.",
1864  FALSE
1865  );
1866  cb->addDependency("GENERATE_HTML");
1867  //----
1868  cb = cfg->addBool(
1869  "GENERATE_TREEVIEW",
1870  "The GENERATE_TREEVIEW tag is used to specify whether a tree-like index\n"
1871  "structure should be generated to display hierarchical information. If the tag\n"
1872  "value is set to YES, a side panel will be generated containing a tree-like\n"
1873  "index structure (just like the one that is generated for HTML Help). For this\n"
1874  "to work a browser that supports JavaScript, DHTML, CSS and frames is required\n"
1875  "(i.e. any modern browser). Windows users are probably better off using the\n"
1876  "HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can\n"
1877  "further fine-tune the look of the index. As an example, the default style\n"
1878  "sheet generated by doxygen has an example that shows how to put an image at\n"
1879  "the root of the tree instead of the PROJECT_NAME. Since the tree basically has\n"
1880  "the same information as the tab index, you could consider setting\n"
1881  "DISABLE_INDEX to YES when enabling this option.\n"
1882  "The default value is: NO.\n"
1883  "This tag requires that the tag GENERATE_HTML is set to YES.",
1884  FALSE
1885  );
1886  cb->addDependency("GENERATE_HTML");
1887  //----
1888  ci = cfg->addInt(
1889  "ENUM_VALUES_PER_LINE",
1890  "The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that\n"
1891  "doxygen will group on one line in the generated HTML documentation.\n"
1892  "\n"
1893  "Note that a value of 0 will completely suppress the enum values from appearing\n"
1894  "in the overview section.\n"
1895  "Minimum value: 0, maximum value: 20, default value: 4.\n"
1896  "This tag requires that the tag GENERATE_HTML is set to YES.",
1897  0,20,4
1898  );
1899  ci->addDependency("GENERATE_HTML");
1900  //----
1901  ci = cfg->addInt(
1902  "TREEVIEW_WIDTH",
1903  "If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used\n"
1904  "to set the initial width (in pixels) of the frame in which the tree is shown.\n"
1905  "Minimum value: 0, maximum value: 1500, default value: 250.\n"
1906  "This tag requires that the tag GENERATE_HTML is set to YES.",
1907  0,1500,250
1908  );
1909  ci->addDependency("GENERATE_HTML");
1910  //----
1911  cb = cfg->addBool(
1912  "EXT_LINKS_IN_WINDOW",
1913  "If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to\n"
1914  "external symbols imported via tag files in a separate window.\n"
1915  "The default value is: NO.\n"
1916  "This tag requires that the tag GENERATE_HTML is set to YES.",
1917  FALSE
1918  );
1919  cb->addDependency("GENERATE_HTML");
1920  //----
1921  ci = cfg->addInt(
1922  "FORMULA_FONTSIZE",
1923  "Use this tag to change the font size of LaTeX formulas included as images in\n"
1924  "the HTML documentation. When you change the font size after a successful\n"
1925  "doxygen run you need to manually remove any form_*.png images from the HTML\n"
1926  "output directory to force them to be regenerated.\n"
1927  "Minimum value: 8, maximum value: 50, default value: 10.\n"
1928  "This tag requires that the tag GENERATE_HTML is set to YES.",
1929  8,50,10
1930  );
1931  ci->addDependency("GENERATE_HTML");
1932  //----
1933  cb = cfg->addBool(
1934  "FORMULA_TRANSPARENT",
1935  "Use the FORMULA_TRANPARENT tag to determine whether or not the images\n"
1936  "generated for formulas are transparent PNGs. Transparent PNGs are not\n"
1937  "supported properly for IE 6.0, but are supported on all modern browsers.\n"
1938  "\n"
1939  "Note that when changing this option you need to delete any form_*.png files in\n"
1940  "the HTML output directory before the changes have effect.\n"
1941  "The default value is: YES.\n"
1942  "This tag requires that the tag GENERATE_HTML is set to YES.",
1943  TRUE
1944  );
1945  cb->addDependency("GENERATE_HTML");
1946  //----
1947  cb = cfg->addBool(
1948  "USE_MATHJAX",
1949  "Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see\n"
1950  "http://www.mathjax.org) which uses client side Javascript for the rendering\n"
1951  "instead of using pre-rendered bitmaps. Use this if you do not have LaTeX\n"
1952  "installed or if you want to formulas look prettier in the HTML output. When\n"
1953  "enabled you may also need to install MathJax separately and configure the path\n"
1954  "to it using the MATHJAX_RELPATH option.\n"
1955  "The default value is: NO.\n"
1956  "This tag requires that the tag GENERATE_HTML is set to YES.",
1957  FALSE
1958  );
1959  cb->addDependency("GENERATE_HTML");
1960  //----
1961  ce = cfg->addEnum(
1962  "MATHJAX_FORMAT",
1963  "When MathJax is enabled you can set the default output format to be used for\n"
1964  "the MathJax output. See the MathJax site (see:\n"
1965  "http://docs.mathjax.org/en/latest/output.html) for more details.\n"
1966  "Possible values are: HTML-CSS (which is slower, but has the best\n"
1967  "compatibility), NativeMML (i.e. MathML) and SVG.\n"
1968  "The default value is: HTML-CSS.\n"
1969  "This tag requires that the tag USE_MATHJAX is set to YES.",
1970  "HTML-CSS"
1971  );
1972  ce->addValue("HTML-CSS");
1973  ce->addValue("NativeMML");
1974  ce->addValue("SVG");
1975  ce->addDependency("USE_MATHJAX");
1976  //----
1977  cs = cfg->addString(
1978  "MATHJAX_RELPATH",
1979  "When MathJax is enabled you need to specify the location relative to the HTML\n"
1980  "output directory using the MATHJAX_RELPATH option. The destination directory\n"
1981  "should contain the MathJax.js script. For instance, if the mathjax directory\n"
1982  "is located at the same level as the HTML output directory, then\n"
1983  "MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax\n"
1984  "Content Delivery Network so you can quickly see the result without installing\n"
1985  "MathJax. However, it is strongly recommended to install a local copy of\n"
1986  "MathJax from http://www.mathjax.org before deployment.\n"
1987  "The default value is: http://cdn.mathjax.org/mathjax/latest.\n"
1988  "This tag requires that the tag USE_MATHJAX is set to YES."
1989  );
1990  cs->setDefaultValue("http://cdn.mathjax.org/mathjax/latest");
1991  cs->addDependency("USE_MATHJAX");
1992  //----
1993  cl = cfg->addList(
1994  "MATHJAX_EXTENSIONS",
1995  "The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax\n"
1996  "extension names that should be enabled during MathJax rendering. For example\n"
1997  "MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols\n"
1998  "This tag requires that the tag USE_MATHJAX is set to YES."
1999  );
2000  cl->addDependency("USE_MATHJAX");
2001  //----
2002  cs = cfg->addString(
2003  "MATHJAX_CODEFILE",
2004  "The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces\n"
2005  "of code that will be used on startup of the MathJax code. See the MathJax site\n"
2006  "(see: http://docs.mathjax.org/en/latest/output.html) for more details. For an\n"
2007  "example see the documentation.\n"
2008  "This tag requires that the tag USE_MATHJAX is set to YES."
2009  );
2010  cs->addDependency("USE_MATHJAX");
2011  //----
2012  cb = cfg->addBool(
2013  "SEARCHENGINE",
2014  "When the SEARCHENGINE tag is enabled doxygen will generate a search box for\n"
2015  "the HTML output. The underlying search engine uses javascript and DHTML and\n"
2016  "should work on any modern browser. Note that when using HTML help\n"
2017  "(GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)\n"
2018  "there is already a search function so this one should typically be disabled.\n"
2019  "For large projects the javascript based search engine can be slow, then\n"
2020  "enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to\n"
2021  "search using the keyboard; to jump to the search box use <access key> + S\n"
2022  "(what the <access key> is depends on the OS and browser, but it is typically\n"
2023  "<CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down\n"
2024  "key> to jump into the search results window, the results can be navigated\n"
2025  "using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel\n"
2026  "the search. The filter options can be selected when the cursor is inside the\n"
2027  "search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>\n"
2028  "to select a filter and <Enter> or <escape> to activate or cancel the filter\n"
2029  "option.\n"
2030  "The default value is: YES.\n"
2031  "This tag requires that the tag GENERATE_HTML is set to YES.",
2032  TRUE
2033  );
2034  cb->addDependency("GENERATE_HTML");
2035  //----
2036  cb = cfg->addBool(
2037  "SERVER_BASED_SEARCH",
2038  "When the SERVER_BASED_SEARCH tag is enabled the search engine will be\n"
2039  "implemented using a web server instead of a web client using Javascript. There\n"
2040  "are two flavors of web server based searching depending on the EXTERNAL_SEARCH\n"
2041  "setting. When disabled, doxygen will generate a PHP script for searching and\n"
2042  "an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing\n"
2043  "and searching needs to be provided by external tools. See the section\n"
2044  "\"External Indexing and Searching\" for details.\n"
2045  "The default value is: NO.\n"
2046  "This tag requires that the tag SEARCHENGINE is set to YES.",
2047  FALSE
2048  );
2049  cb->addDependency("SEARCHENGINE");
2050  //----
2051  cb = cfg->addBool(
2052  "EXTERNAL_SEARCH",
2053  "When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP\n"
2054  "script for searching. Instead the search results are written to an XML file\n"
2055  "which needs to be processed by an external indexer. Doxygen will invoke an\n"
2056  "external search engine pointed to by the SEARCHENGINE_URL option to obtain the\n"
2057  "search results.\n"
2058  "\n"
2059  "Doxygen ships with an example indexer (doxyindexer) and search engine\n"
2060  "(doxysearch.cgi) which are based on the open source search engine library\n"
2061  "Xapian (see: http://xapian.org/).\n"
2062  "\n"
2063  "See the section \"External Indexing and Searching\" for details.\n"
2064  "The default value is: NO.\n"
2065  "This tag requires that the tag SEARCHENGINE is set to YES.",
2066  FALSE
2067  );
2068  cb->addDependency("SEARCHENGINE");
2069  //----
2070  cs = cfg->addString(
2071  "SEARCHENGINE_URL",
2072  "The SEARCHENGINE_URL should point to a search engine hosted by a web server\n"
2073  "which will return the search results when EXTERNAL_SEARCH is enabled.\n"
2074  "\n"
2075  "Doxygen ships with an example indexer (doxyindexer) and search engine\n"
2076  "(doxysearch.cgi) which are based on the open source search engine library\n"
2077  "Xapian (see: http://xapian.org/). See the section \"External Indexing and\n"
2078  "Searching\" for details.\n"
2079  "This tag requires that the tag SEARCHENGINE is set to YES."
2080  );
2081  cs->addDependency("SEARCHENGINE");
2082  //----
2083  cs = cfg->addString(
2084  "SEARCHDATA_FILE",
2085  "When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed\n"
2086  "search data is written to a file for indexing by an external tool. With the\n"
2087  "SEARCHDATA_FILE tag the name of this file can be specified.\n"
2088  "The default file is: searchdata.xml.\n"
2089  "This tag requires that the tag SEARCHENGINE is set to YES."
2090  );
2091  cs->setDefaultValue("searchdata.xml");
2093  cs->addDependency("SEARCHENGINE");
2094  //----
2095  cs = cfg->addString(
2096  "EXTERNAL_SEARCH_ID",
2097  "When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the\n"
2098  "EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is\n"
2099  "useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple\n"
2100  "projects and redirect the results back to the right project.\n"
2101  "This tag requires that the tag SEARCHENGINE is set to YES."
2102  );
2103  cs->addDependency("SEARCHENGINE");
2104  //----
2105  cl = cfg->addList(
2106  "EXTRA_SEARCH_MAPPINGS",
2107  "The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen\n"
2108  "projects other than the one defined by this configuration file, but that are\n"
2109  "all added to the same external search index. Each project needs to have a\n"
2110  "unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of\n"
2111  "to a relative location where the documentation can be found. The format is:\n"
2112  "EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...\n"
2113  "This tag requires that the tag SEARCHENGINE is set to YES."
2114  );
2115  cl->addDependency("SEARCHENGINE");
2116  //---------------------------------------------------------------------------
2117  cfg->addInfo("LaTeX","Configuration options related to the LaTeX output");
2118  //---------------------------------------------------------------------------
2119 
2120  //----
2121  cb = cfg->addBool(
2122  "GENERATE_LATEX",
2123  "If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.\n"
2124  "The default value is: YES.",
2125  TRUE
2126  );
2127  //----
2128  cs = cfg->addString(
2129  "LATEX_OUTPUT",
2130  "The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a\n"
2131  "relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n"
2132  "it.\n"
2133  "The default directory is: latex.\n"
2134  "This tag requires that the tag GENERATE_LATEX is set to YES."
2135  );
2136  cs->setDefaultValue("latex");
2138  cs->addDependency("GENERATE_LATEX");
2139  //----
2140  cs = cfg->addString(
2141  "LATEX_CMD_NAME",
2142  "The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be\n"
2143  "invoked.\n"
2144  "\n"
2145  "Note that when enabling USE_PDFLATEX this option is only used for generating\n"
2146  "bitmaps for formulas in the HTML output, but not in the Makefile that is\n"
2147  "written to the output directory.\n"
2148  "The default file is: latex.\n"
2149  "This tag requires that the tag GENERATE_LATEX is set to YES."
2150  );
2151  cs->setDefaultValue("latex");
2153  cs->addDependency("GENERATE_LATEX");
2154  //----
2155  cs = cfg->addString(
2156  "MAKEINDEX_CMD_NAME",
2157  "The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate\n"
2158  "index for LaTeX.\n"
2159  "The default file is: makeindex.\n"
2160  "This tag requires that the tag GENERATE_LATEX is set to YES."
2161  );
2162  cs->setDefaultValue("makeindex");
2164  cs->addDependency("GENERATE_LATEX");
2165  //----
2166  cb = cfg->addBool(
2167  "COMPACT_LATEX",
2168  "If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX\n"
2169  "documents. This may be useful for small projects and may help to save some\n"
2170  "trees in general.\n"
2171  "The default value is: NO.\n"
2172  "This tag requires that the tag GENERATE_LATEX is set to YES.",
2173  FALSE
2174  );
2175  cb->addDependency("GENERATE_LATEX");
2176  //----
2177  ce = cfg->addEnum(
2178  "PAPER_TYPE",
2179  "The PAPER_TYPE tag can be used to set the paper type that is used by the\n"
2180  "printer.\n"
2181  "Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x\n"
2182  "14 inches) and executive (7.25 x 10.5 inches).\n"
2183  "The default value is: a4.\n"
2184  "This tag requires that the tag GENERATE_LATEX is set to YES.",
2185  "a4"
2186  );
2187  ce->addValue("a4");
2188  ce->addValue("letter");
2189  ce->addValue("legal");
2190  ce->addValue("executive");
2191  ce->addDependency("GENERATE_LATEX");
2192  //----
2193  cl = cfg->addList(
2194  "EXTRA_PACKAGES",
2195  "The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names\n"
2196  "that should be included in the LaTeX output. The package can be specified just\n"
2197  "by its name or with the correct syntax as to be used with the LaTeX\n"
2198  "\\usepackage command. To get the times font for instance you can specify :\n"
2199  "EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}\n"
2200  "To use the option intlimits with the amsmath package you can specify:\n"
2201  "EXTRA_PACKAGES=[intlimits]{amsmath}\n"
2202  "If left blank no extra packages will be included.\n"
2203  "This tag requires that the tag GENERATE_LATEX is set to YES."
2204  );
2205  cl->addDependency("GENERATE_LATEX");
2206  //----
2207  cs = cfg->addString(
2208  "LATEX_HEADER",
2209  "The LATEX_HEADER tag can be used to specify a personal LaTeX header for the\n"
2210  "generated LaTeX document. The header should contain everything until the first\n"
2211  "chapter. If it is left blank doxygen will generate a standard header. See\n"
2212  "section \"Doxygen usage\" for information on how to let doxygen write the\n"
2213  "default header to a separate file.\n"
2214  "\n"
2215  "Note: Only use a user-defined header if you know what you are doing! The\n"
2216  "following commands have a special meaning inside the header: $title,\n"
2217  "$datetime, $date, $doxygenversion, $projectname, $projectnumber,\n"
2218  "$projectbrief, $projectlogo. Doxygen will replace $title with the empty\n"
2219  "string, for the replacement values of the other commands the user is referred\n"
2220  "to HTML_HEADER.\n"
2221  "This tag requires that the tag GENERATE_LATEX is set to YES."
2222  );
2224  cs->addDependency("GENERATE_LATEX");
2225  //----
2226  cs = cfg->addString(
2227  "LATEX_FOOTER",
2228  "The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the\n"
2229  "generated LaTeX document. The footer should contain everything after the last\n"
2230  "chapter. If it is left blank doxygen will generate a standard footer. See\n"
2231  "LATEX_HEADER for more information on how to generate a default footer and what\n"
2232  "special commands can be used inside the footer.\n"
2233  "\n"
2234  "Note: Only use a user-defined footer if you know what you are doing!\n"
2235  "This tag requires that the tag GENERATE_LATEX is set to YES."
2236  );
2238  cs->addDependency("GENERATE_LATEX");
2239  //----
2240  cl = cfg->addList(
2241  "LATEX_EXTRA_STYLESHEET",
2242  "The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined\n"
2243  "LaTeX style sheets that are included after the standard style sheets created\n"
2244  "by doxygen. Using this option one can overrule certain style aspects. Doxygen\n"
2245  "will copy the style sheet files to the output directory.\n"
2246  "Note: The order of the extra style sheet files is of importance (e.g. the last\n"
2247  "style sheet in the list overrules the setting of the previous ones in the\n"
2248  "list).\n"
2249  "This tag requires that the tag GENERATE_LATEX is set to YES."
2250  );
2251  cl->addDependency("GENERATE_LATEX");
2253  //----
2254  cl = cfg->addList(
2255  "LATEX_EXTRA_FILES",
2256  "The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or\n"
2257  "other source files which should be copied to the LATEX_OUTPUT output\n"
2258  "directory. Note that the files will be copied as-is; there are no commands or\n"
2259  "markers available.\n"
2260  "This tag requires that the tag GENERATE_LATEX is set to YES."
2261  );
2262  cl->addDependency("GENERATE_LATEX");
2264  //----
2265  cb = cfg->addBool(
2266  "PDF_HYPERLINKS",
2267  "If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is\n"
2268  "prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will\n"
2269  "contain links (just like the HTML output) instead of page references. This\n"
2270  "makes the output suitable for online browsing using a PDF viewer.\n"
2271  "The default value is: YES.\n"
2272  "This tag requires that the tag GENERATE_LATEX is set to YES.",
2273  TRUE
2274  );
2275  cb->addDependency("GENERATE_LATEX");
2276  //----
2277  cb = cfg->addBool(
2278  "USE_PDFLATEX",
2279  "If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate\n"
2280  "the PDF file directly from the LaTeX files. Set this option to YES, to get a\n"
2281  "higher quality PDF documentation.\n"
2282  "The default value is: YES.\n"
2283  "This tag requires that the tag GENERATE_LATEX is set to YES.",
2284  TRUE
2285  );
2286  cb->addDependency("GENERATE_LATEX");
2287  //----
2288  cb = cfg->addBool(
2289  "LATEX_BATCHMODE",
2290  "If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode\n"
2291  "command to the generated LaTeX files. This will instruct LaTeX to keep running\n"
2292  "if errors occur, instead of asking the user for help. This option is also used\n"
2293  "when generating formulas in HTML.\n"
2294  "The default value is: NO.\n"
2295  "This tag requires that the tag GENERATE_LATEX is set to YES.",
2296  FALSE
2297  );
2298  cb->addDependency("GENERATE_LATEX");
2299  //----
2300  cb = cfg->addBool(
2301  "LATEX_HIDE_INDICES",
2302  "If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the\n"
2303  "index chapters (such as File Index, Compound Index, etc.) in the output.\n"
2304  "The default value is: NO.\n"
2305  "This tag requires that the tag GENERATE_LATEX is set to YES.",
2306  FALSE
2307  );
2308  cb->addDependency("GENERATE_LATEX");
2309  //----
2310  cb = cfg->addBool(
2311  "LATEX_SOURCE_CODE",
2312  "If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source\n"
2313  "code with syntax highlighting in the LaTeX output.\n"
2314  "\n"
2315  "Note that which sources are shown also depends on other settings such as\n"
2316  "SOURCE_BROWSER.\n"
2317  "The default value is: NO.\n"
2318  "This tag requires that the tag GENERATE_LATEX is set to YES.",
2319  FALSE
2320  );
2321  cb->addDependency("GENERATE_LATEX");
2322  //----
2323  cs = cfg->addString(
2324  "LATEX_BIB_STYLE",
2325  "The LATEX_BIB_STYLE tag can be used to specify the style to use for the\n"
2326  "bibliography, e.g. plainnat, or ieeetr. See\n"
2327  "http://en.wikipedia.org/wiki/BibTeX and \\cite for more info.\n"
2328  "The default value is: plain.\n"
2329  "This tag requires that the tag GENERATE_LATEX is set to YES."
2330  );
2331  cs->setDefaultValue("plain");
2332  cs->addDependency("GENERATE_LATEX");
2333  //----
2334  cb = cfg->addBool(
2335  "LATEX_TIMESTAMP",
2336  "If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated\n"
2337  "page will contain the date and time when the page was generated. Setting this\n"
2338  "to NO can help when comparing the output of multiple runs.\n"
2339  "The default value is: NO.\n"
2340  "This tag requires that the tag GENERATE_LATEX is set to YES.",
2341  FALSE
2342  );
2343  cb->addDependency("GENERATE_LATEX");
2344  //---------------------------------------------------------------------------
2345  cfg->addInfo("RTF","Configuration options related to the RTF output");
2346  //---------------------------------------------------------------------------
2347 
2348  //----
2349  cb = cfg->addBool(
2350  "GENERATE_RTF",
2351  "If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The\n"
2352  "RTF output is optimized for Word 97 and may not look too pretty with other RTF\n"
2353  "readers/editors.\n"
2354  "The default value is: NO.",
2355  FALSE
2356  );
2357  //----
2358  cs = cfg->addString(
2359  "RTF_OUTPUT",
2360  "The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a\n"
2361  "relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n"
2362  "it.\n"
2363  "The default directory is: rtf.\n"
2364  "This tag requires that the tag GENERATE_RTF is set to YES."
2365  );
2366  cs->setDefaultValue("rtf");
2368  cs->addDependency("GENERATE_RTF");
2369  //----
2370  cb = cfg->addBool(
2371  "COMPACT_RTF",
2372  "If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF\n"
2373  "documents. This may be useful for small projects and may help to save some\n"
2374  "trees in general.\n"
2375  "The default value is: NO.\n"
2376  "This tag requires that the tag GENERATE_RTF is set to YES.",
2377  FALSE
2378  );
2379  cb->addDependency("GENERATE_RTF");
2380  //----
2381  cb = cfg->addBool(
2382  "RTF_HYPERLINKS",
2383  "If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will\n"
2384  "contain hyperlink fields. The RTF file will contain links (just like the HTML\n"
2385  "output) instead of page references. This makes the output suitable for online\n"
2386  "browsing using Word or some other Word compatible readers that support those\n"
2387  "fields.\n"
2388  "\n"
2389  "Note: WordPad (write) and others do not support links.\n"
2390  "The default value is: NO.\n"
2391  "This tag requires that the tag GENERATE_RTF is set to YES.",
2392  FALSE
2393  );
2394  cb->addDependency("GENERATE_RTF");
2395  //----
2396  cs = cfg->addString(
2397  "RTF_STYLESHEET_FILE",
2398  "Load stylesheet definitions from file. Syntax is similar to doxygen's config\n"
2399  "file, i.e. a series of assignments. You only have to provide replacements,\n"
2400  "missing definitions are set to their default value.\n"
2401  "\n"
2402  "See also section \"Doxygen usage\" for information on how to generate the\n"
2403  "default style sheet that doxygen normally uses.\n"
2404  "This tag requires that the tag GENERATE_RTF is set to YES."
2405  );
2407  cs->addDependency("GENERATE_RTF");
2408  //----
2409  cs = cfg->addString(
2410  "RTF_EXTENSIONS_FILE",
2411  "Set optional variables used in the generation of an RTF document. Syntax is\n"
2412  "similar to doxygen's config file. A template extensions file can be generated\n"
2413  "using doxygen -e rtf extensionFile.\n"
2414  "This tag requires that the tag GENERATE_RTF is set to YES."
2415  );
2417  cs->addDependency("GENERATE_RTF");
2418  //----
2419  cb = cfg->addBool(
2420  "RTF_SOURCE_CODE",
2421  "If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code\n"
2422  "with syntax highlighting in the RTF output.\n"
2423  "\n"
2424  "Note that which sources are shown also depends on other settings such as\n"
2425  "SOURCE_BROWSER.\n"
2426  "The default value is: NO.\n"
2427  "This tag requires that the tag GENERATE_RTF is set to YES.",
2428  FALSE
2429  );
2430  cb->addDependency("GENERATE_RTF");
2431  //---------------------------------------------------------------------------
2432  cfg->addInfo("Man","Configuration options related to the man page output");
2433  //---------------------------------------------------------------------------
2434 
2435  //----
2436  cb = cfg->addBool(
2437  "GENERATE_MAN",
2438  "If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for\n"
2439  "classes and files.\n"
2440  "The default value is: NO.",
2441  FALSE
2442  );
2443  //----
2444  cs = cfg->addString(
2445  "MAN_OUTPUT",
2446  "The MAN_OUTPUT tag is used to specify where the man pages will be put. If a\n"
2447  "relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n"
2448  "it. A directory man3 will be created inside the directory specified by\n"
2449  "MAN_OUTPUT.\n"
2450  "The default directory is: man.\n"
2451  "This tag requires that the tag GENERATE_MAN is set to YES."
2452  );
2453  cs->setDefaultValue("man");
2455  cs->addDependency("GENERATE_MAN");
2456  //----
2457  cs = cfg->addString(
2458  "MAN_EXTENSION",
2459  "The MAN_EXTENSION tag determines the extension that is added to the generated\n"
2460  "man pages. In case the manual section does not start with a number, the number\n"
2461  "3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is\n"
2462  "optional.\n"
2463  "The default value is: .3.\n"
2464  "This tag requires that the tag GENERATE_MAN is set to YES."
2465  );
2466  cs->setDefaultValue(".3");
2467  cs->addDependency("GENERATE_MAN");
2468  //----
2469  cs = cfg->addString(
2470  "MAN_SUBDIR",
2471  "The MAN_SUBDIR tag determines the name of the directory created within\n"
2472  "MAN_OUTPUT in which the man pages are placed. If defaults to man followed by\n"
2473  "MAN_EXTENSION with the initial . removed.\n"
2474  "This tag requires that the tag GENERATE_MAN is set to YES."
2475  );
2476  cs->addDependency("GENERATE_MAN");
2477  //----
2478  cb = cfg->addBool(
2479  "MAN_LINKS",
2480  "If the MAN_LINKS tag is set to YES and doxygen generates man output, then it\n"
2481  "will generate one additional man file for each entity documented in the real\n"
2482  "man page(s). These additional files only source the real man page, but without\n"
2483  "them the man command would be unable to find the correct page.\n"
2484  "The default value is: NO.\n"
2485  "This tag requires that the tag GENERATE_MAN is set to YES.",
2486  FALSE
2487  );
2488  cb->addDependency("GENERATE_MAN");
2489  //---------------------------------------------------------------------------
2490  cfg->addInfo("XML","Configuration options related to the XML output");
2491  //---------------------------------------------------------------------------
2492 
2493  //----
2494  cb = cfg->addBool(
2495  "GENERATE_XML",
2496  "If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that\n"
2497  "captures the structure of the code including all documentation.\n"
2498  "The default value is: NO.",
2499  FALSE
2500  );
2501  //----
2502  cs = cfg->addString(
2503  "XML_OUTPUT",
2504  "The XML_OUTPUT tag is used to specify where the XML pages will be put. If a\n"
2505  "relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n"
2506  "it.\n"
2507  "The default directory is: xml.\n"
2508  "This tag requires that the tag GENERATE_XML is set to YES."
2509  );
2510  cs->setDefaultValue("xml");
2512  cs->addDependency("GENERATE_XML");
2513  //----
2514  cb = cfg->addBool(
2515  "XML_PROGRAMLISTING",
2516  "If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program\n"
2517  "listings (including syntax highlighting and cross-referencing information) to\n"
2518  "the XML output. Note that enabling this will significantly increase the size\n"
2519  "of the XML output.\n"
2520  "The default value is: YES.\n"
2521  "This tag requires that the tag GENERATE_XML is set to YES.",
2522  TRUE
2523  );
2524  cb->addDependency("GENERATE_XML");
2525  //---------------------------------------------------------------------------
2526  cfg->addInfo("Docbook","Configuration options related to the DOCBOOK output");
2527  //---------------------------------------------------------------------------
2528 
2529  //----
2530  cb = cfg->addBool(
2531  "GENERATE_DOCBOOK",
2532  "If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files\n"
2533  "that can be used to generate PDF.\n"
2534  "The default value is: NO.",
2535  FALSE
2536  );
2537  //----
2538  cs = cfg->addString(
2539  "DOCBOOK_OUTPUT",
2540  "The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.\n"
2541  "If a relative path is entered the value of OUTPUT_DIRECTORY will be put in\n"
2542  "front of it.\n"
2543  "The default directory is: docbook.\n"
2544  "This tag requires that the tag GENERATE_DOCBOOK is set to YES."
2545  );
2546  cs->setDefaultValue("docbook");
2548  cs->addDependency("GENERATE_DOCBOOK");
2549  //----
2550  cb = cfg->addBool(
2551  "DOCBOOK_PROGRAMLISTING",
2552  "If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the\n"
2553  "program listings (including syntax highlighting and cross-referencing\n"
2554  "information) to the DOCBOOK output. Note that enabling this will significantly\n"
2555  "increase the size of the DOCBOOK output.\n"
2556  "The default value is: NO.\n"
2557  "This tag requires that the tag GENERATE_DOCBOOK is set to YES.",
2558  FALSE
2559  );
2560  cb->addDependency("GENERATE_DOCBOOK");
2561  //---------------------------------------------------------------------------
2562  cfg->addInfo("AutoGen","Configuration options for the AutoGen Definitions output");
2563  //---------------------------------------------------------------------------
2564 
2565  //----
2566  cb = cfg->addBool(
2567  "GENERATE_AUTOGEN_DEF",
2568  "If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an\n"
2569  "AutoGen Definitions (see http://autogen.sf.net) file that captures the\n"
2570  "structure of the code including all documentation. Note that this feature is\n"
2571  "still experimental and incomplete at the moment.\n"
2572  "The default value is: NO.",
2573  FALSE
2574  );
2575  //---------------------------------------------------------------------------
2576  cfg->addInfo("PerlMod","Configuration options related to the Perl module output");
2577  //---------------------------------------------------------------------------
2578 
2579  //----
2580  cb = cfg->addBool(
2581  "GENERATE_PERLMOD",
2582  "If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module\n"
2583  "file that captures the structure of the code including all documentation.\n"
2584  "\n"
2585  "Note that this feature is still experimental and incomplete at the moment.\n"
2586  "The default value is: NO.",
2587  FALSE
2588  );
2589  //----
2590  cb = cfg->addBool(
2591  "PERLMOD_LATEX",
2592  "If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary\n"
2593  "Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI\n"
2594  "output from the Perl module output.\n"
2595  "The default value is: NO.\n"
2596  "This tag requires that the tag GENERATE_PERLMOD is set to YES.",
2597  FALSE
2598  );
2599  cb->addDependency("GENERATE_PERLMOD");
2600  //----
2601  cb = cfg->addBool(
2602  "PERLMOD_PRETTY",
2603  "If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely\n"
2604  "formatted so it can be parsed by a human reader. This is useful if you want to\n"
2605  "understand what is going on. On the other hand, if this tag is set to NO, the\n"
2606  "size of the Perl module output will be much smaller and Perl will parse it\n"
2607  "just the same.\n"
2608  "The default value is: YES.\n"
2609  "This tag requires that the tag GENERATE_PERLMOD is set to YES.",
2610  TRUE
2611  );
2612  cb->addDependency("GENERATE_PERLMOD");
2613  //----
2614  cs = cfg->addString(
2615  "PERLMOD_MAKEVAR_PREFIX",
2616  "The names of the make variables in the generated doxyrules.make file are\n"
2617  "prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful\n"
2618  "so different doxyrules.make files included by the same Makefile don't\n"
2619  "overwrite each other's variables.\n"
2620  "This tag requires that the tag GENERATE_PERLMOD is set to YES."
2621  );
2622  cs->addDependency("GENERATE_PERLMOD");
2623  //---------------------------------------------------------------------------
2624  cfg->addInfo("Preprocessor","Configuration options related to the preprocessor");
2625  //---------------------------------------------------------------------------
2626 
2627  //----
2628  cb = cfg->addBool(
2629  "ENABLE_PREPROCESSING",
2630  "If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all\n"
2631  "C-preprocessor directives found in the sources and include files.\n"
2632  "The default value is: YES.",
2633  TRUE
2634  );
2635  //----
2636  cb = cfg->addBool(
2637  "MACRO_EXPANSION",
2638  "If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names\n"
2639  "in the source code. If set to NO, only conditional compilation will be\n"
2640  "performed. Macro expansion can be done in a controlled way by setting\n"
2641  "EXPAND_ONLY_PREDEF to YES.\n"
2642  "The default value is: NO.\n"
2643  "This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
2644  FALSE
2645  );
2646  cb->addDependency("ENABLE_PREPROCESSING");
2647  //----
2648  cb = cfg->addBool(
2649  "EXPAND_ONLY_PREDEF",
2650  "If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then\n"
2651  "the macro expansion is limited to the macros specified with the PREDEFINED and\n"
2652  "EXPAND_AS_DEFINED tags.\n"
2653  "The default value is: NO.\n"
2654  "This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
2655  FALSE
2656  );
2657  cb->addDependency("ENABLE_PREPROCESSING");
2658  //----
2659  cb = cfg->addBool(
2660  "SEARCH_INCLUDES",
2661  "If the SEARCH_INCLUDES tag is set to YES, the include files in the\n"
2662  "INCLUDE_PATH will be searched if a #include is found.\n"
2663  "The default value is: YES.\n"
2664  "This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
2665  TRUE
2666  );
2667  cb->addDependency("ENABLE_PREPROCESSING");
2668  //----
2669  cl = cfg->addList(
2670  "INCLUDE_PATH",
2671  "The INCLUDE_PATH tag can be used to specify one or more directories that\n"
2672  "contain include files that are not input files but should be processed by the\n"
2673  "preprocessor.\n"
2674  "This tag requires that the tag SEARCH_INCLUDES is set to YES."
2675  );
2676  cl->addDependency("SEARCH_INCLUDES");
2678  //----
2679  cl = cfg->addList(
2680  "INCLUDE_FILE_PATTERNS",
2681  "You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard\n"
2682  "patterns (like *.h and *.hpp) to filter out the header-files in the\n"
2683  "directories. If left blank, the patterns specified with FILE_PATTERNS will be\n"
2684  "used.\n"
2685  "This tag requires that the tag ENABLE_PREPROCESSING is set to YES."
2686  );
2687  cl->addDependency("ENABLE_PREPROCESSING");
2688  //----
2689  cl = cfg->addList(
2690  "PREDEFINED",
2691  "The PREDEFINED tag can be used to specify one or more macro names that are\n"
2692  "defined before the preprocessor is started (similar to the -D option of e.g.\n"
2693  "gcc). The argument of the tag is a list of macros of the form: name or\n"
2694  "name=definition (no spaces). If the definition and the \"=\" are omitted, \"=1\"\n"
2695  "is assumed. To prevent a macro definition from being undefined via #undef or\n"
2696  "recursively expanded use the := operator instead of the = operator.\n"
2697  "This tag requires that the tag ENABLE_PREPROCESSING is set to YES."
2698  );
2699  cl->addDependency("ENABLE_PREPROCESSING");
2700  //----
2701  cl = cfg->addList(
2702  "EXPAND_AS_DEFINED",
2703  "If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this\n"
2704  "tag can be used to specify a list of macro names that should be expanded. The\n"
2705  "macro definition that is found in the sources will be used. Use the PREDEFINED\n"
2706  "tag if you want to use a different macro definition that overrules the\n"
2707  "definition found in the source code.\n"
2708  "This tag requires that the tag ENABLE_PREPROCESSING is set to YES."
2709  );
2710  cl->addDependency("ENABLE_PREPROCESSING");
2711  //----
2712  cb = cfg->addBool(
2713  "SKIP_FUNCTION_MACROS",
2714  "If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will\n"
2715  "remove all references to function-like macros that are alone on a line, have\n"
2716  "an all uppercase name, and do not end with a semicolon. Such function macros\n"
2717  "are typically used for boiler-plate code, and will confuse the parser if not\n"
2718  "removed.\n"
2719  "The default value is: YES.\n"
2720  "This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
2721  TRUE
2722  );
2723  cb->addDependency("ENABLE_PREPROCESSING");
2724  //---------------------------------------------------------------------------
2725  cfg->addInfo("External","Configuration options related to external references");
2726  //---------------------------------------------------------------------------
2727 
2728  //----
2729  cl = cfg->addList(
2730  "TAGFILES",
2731  "The TAGFILES tag can be used to specify one or more tag files. For each tag\n"
2732  "file the location of the external documentation should be added. The format of\n"
2733  "a tag file without this location is as follows:\n"
2734  "TAGFILES = file1 file2 ...\n"
2735  "Adding location for the tag files is done as follows:\n"
2736  "TAGFILES = file1=loc1 \"file2 = loc2\" ...\n"
2737  "where loc1 and loc2 can be relative or absolute paths or URLs. See the\n"
2738  "section \"Linking to external documentation\" for more information about the use\n"
2739  "of tag files.\n"
2740  "Note: Each tag file must have a unique name (where the name does NOT include\n"
2741  "the path). If a tag file is not located in the directory in which doxygen is\n"
2742  "run, you must also specify the path to the tagfile here."
2743  );
2745  //----
2746  cs = cfg->addString(
2747  "GENERATE_TAGFILE",
2748  "When a file name is specified after GENERATE_TAGFILE, doxygen will create a\n"
2749  "tag file that is based on the input files it reads. See section \"Linking to\n"
2750  "external documentation\" for more information about the usage of tag files."
2751  );
2753  //----
2754  cb = cfg->addBool(
2755  "ALLEXTERNALS",
2756  "If the ALLEXTERNALS tag is set to YES, all external class will be listed in\n"
2757  "the class index. If set to NO, only the inherited external classes will be\n"
2758  "listed.\n"
2759  "The default value is: NO.",
2760  FALSE
2761  );
2762  //----
2763  cb = cfg->addBool(
2764  "EXTERNAL_GROUPS",
2765  "If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed\n"
2766  "in the modules index. If set to NO, only the current project's groups will be\n"
2767  "listed.\n"
2768  "The default value is: YES.",
2769  TRUE
2770  );
2771  //----
2772  cb = cfg->addBool(
2773  "EXTERNAL_PAGES",
2774  "If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in\n"
2775  "the related pages index. If set to NO, only the current project's pages will\n"
2776  "be listed.\n"
2777  "The default value is: YES.",
2778  TRUE
2779  );
2780  //----
2781  cs = cfg->addString(
2782  "PERL_PATH",
2783  "The PERL_PATH should be the absolute path and name of the perl script\n"
2784  "interpreter (i.e. the result of 'which perl').\n"
2785  "The default file (with absolute path) is: /usr/bin/perl."
2786  );
2787  cs->setDefaultValue("/usr/bin/perl");
2789  //---------------------------------------------------------------------------
2790  cfg->addInfo("Dot","Configuration options related to the dot tool");
2791  //---------------------------------------------------------------------------
2792 
2793  //----
2794  cb = cfg->addBool(
2795  "CLASS_DIAGRAMS",
2796  "If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram\n"
2797  "(in HTML and LaTeX) for classes with base or super classes. Setting the tag to\n"
2798  "NO turns the diagrams off. Note that this option also works with HAVE_DOT\n"
2799  "disabled, but it is recommended to install and use dot, since it yields more\n"
2800  "powerful graphs.\n"
2801  "The default value is: YES.",
2802  TRUE
2803  );
2804  //----
2805  cs = cfg->addString(
2806  "MSCGEN_PATH",
2807  "You can define message sequence charts within doxygen comments using the \\msc\n"
2808  "command. Doxygen will then run the mscgen tool (see:\n"
2809  "http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the\n"
2810  "documentation. The MSCGEN_PATH tag allows you to specify the directory where\n"
2811  "the mscgen tool resides. If left empty the tool is assumed to be found in the\n"
2812  "default search path."
2813  );
2815  //----
2816  cs = cfg->addString(
2817  "DIA_PATH",
2818  "You can include diagrams made with dia in doxygen documentation. Doxygen will\n"
2819  "then run dia to produce the diagram and insert it in the documentation. The\n"
2820  "DIA_PATH tag allows you to specify the directory where the dia binary resides.\n"
2821  "If left empty dia is assumed to be found in the default search path."
2822  );
2824  //----
2825  cb = cfg->addBool(
2826  "HIDE_UNDOC_RELATIONS",
2827  "If set to YES the inheritance and collaboration graphs will hide inheritance\n"
2828  "and usage relations if the target is undocumented or is not a class.\n"
2829  "The default value is: YES.",
2830  TRUE
2831  );
2832  //----
2833  cb = cfg->addBool(
2834  "HAVE_DOT",
2835  "If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is\n"
2836  "available from the path. This tool is part of Graphviz (see:\n"
2837  "http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent\n"
2838  "Bell Labs. The other options in this section have no effect if this option is\n"
2839  "set to NO\n"
2840  "The default value is: NO.",
2841  FALSE
2842  );
2843  //----
2844  ci = cfg->addInt(
2845  "DOT_NUM_THREADS",
2846  "The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed\n"
2847  "to run in parallel. When set to 0 doxygen will base this on the number of\n"
2848  "processors available in the system. You can set it explicitly to a value\n"
2849  "larger than 0 to get control over the balance between CPU load and processing\n"
2850  "speed.\n"
2851  "Minimum value: 0, maximum value: 32, default value: 0.\n"
2852  "This tag requires that the tag HAVE_DOT is set to YES.",
2853  0,32,0
2854  );
2855  ci->addDependency("HAVE_DOT");
2856  //----
2857  cs = cfg->addString(
2858  "DOT_FONTNAME",
2859  "When you want a differently looking font in the dot files that doxygen\n"
2860  "generates you can specify the font name using DOT_FONTNAME. You need to make\n"
2861  "sure dot is able to find the font, which can be done by putting it in a\n"
2862  "standard location or by setting the DOTFONTPATH environment variable or by\n"
2863  "setting DOT_FONTPATH to the directory containing the font.\n"
2864  "The default value is: Helvetica.\n"
2865  "This tag requires that the tag HAVE_DOT is set to YES."
2866  );
2867  cs->setDefaultValue("Helvetica");
2868  cs->addDependency("HAVE_DOT");
2869  //----
2870  ci = cfg->addInt(
2871  "DOT_FONTSIZE",
2872  "The DOT_FONTSIZE tag can be used to set the size (in points) of the font of\n"
2873  "dot graphs.\n"
2874  "Minimum value: 4, maximum value: 24, default value: 10.\n"
2875  "This tag requires that the tag HAVE_DOT is set to YES.",
2876  4,24,10
2877  );
2878  ci->addDependency("HAVE_DOT");
2879  //----
2880  cs = cfg->addString(
2881  "DOT_FONTPATH",
2882  "By default doxygen will tell dot to use the default font as specified with\n"
2883  "DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set\n"
2884  "the path where dot can find it using this tag.\n"
2885  "This tag requires that the tag HAVE_DOT is set to YES."
2886  );
2888  cs->addDependency("HAVE_DOT");
2889  //----
2890  cb = cfg->addBool(
2891  "CLASS_GRAPH",
2892  "If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for\n"
2893  "each documented class showing the direct and indirect inheritance relations.\n"
2894  "Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.\n"
2895  "The default value is: YES.\n"
2896  "This tag requires that the tag HAVE_DOT is set to YES.",
2897  TRUE
2898  );
2899  cb->addDependency("HAVE_DOT");
2900  //----
2901  cb = cfg->addBool(
2902  "COLLABORATION_GRAPH",
2903  "If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a\n"
2904  "graph for each documented class showing the direct and indirect implementation\n"
2905  "dependencies (inheritance, containment, and class references variables) of the\n"
2906  "class with other documented classes.\n"
2907  "The default value is: YES.\n"
2908  "This tag requires that the tag HAVE_DOT is set to YES.",
2909  TRUE
2910  );
2911  cb->addDependency("HAVE_DOT");
2912  //----
2913  cb = cfg->addBool(
2914  "GROUP_GRAPHS",
2915  "If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for\n"
2916  "groups, showing the direct groups dependencies.\n"
2917  "The default value is: YES.\n"
2918  "This tag requires that the tag HAVE_DOT is set to YES.",
2919  TRUE
2920  );
2921  cb->addDependency("HAVE_DOT");
2922  //----
2923  cb = cfg->addBool(
2924  "UML_LOOK",
2925  "If the UML_LOOK tag is set to YES, doxygen will generate inheritance and\n"
2926  "collaboration diagrams in a style similar to the OMG's Unified Modeling\n"
2927  "Language.\n"
2928  "The default value is: NO.\n"
2929  "This tag requires that the tag HAVE_DOT is set to YES.",
2930  FALSE
2931  );
2932  cb->addDependency("HAVE_DOT");
2933  //----
2934  ci = cfg->addInt(
2935  "UML_LIMIT_NUM_FIELDS",
2936  "If the UML_LOOK tag is enabled, the fields and methods are shown inside the\n"
2937  "class node. If there are many fields or methods and many nodes the graph may\n"
2938  "become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the\n"
2939  "number of items for each type to make the size more manageable. Set this to 0\n"
2940  "for no limit. Note that the threshold may be exceeded by 50% before the limit\n"
2941  "is enforced. So when you set the threshold to 10, up to 15 fields may appear,\n"
2942  "but if the number exceeds 15, the total amount of fields shown is limited to\n"
2943  "10.\n"
2944  "Minimum value: 0, maximum value: 100, default value: 10.\n"
2945  "This tag requires that the tag HAVE_DOT is set to YES.",
2946  0,100,10
2947  );
2948  ci->addDependency("HAVE_DOT");
2949  //----
2950  cb = cfg->addBool(
2951  "TEMPLATE_RELATIONS",
2952  "If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and\n"
2953  "collaboration graphs will show the relations between templates and their\n"
2954  "instances.\n"
2955  "The default value is: NO.\n"
2956  "This tag requires that the tag HAVE_DOT is set to YES.",
2957  FALSE
2958  );
2959  cb->addDependency("HAVE_DOT");
2960  //----
2961  cb = cfg->addBool(
2962  "INCLUDE_GRAPH",
2963  "If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to\n"
2964  "YES then doxygen will generate a graph for each documented file showing the\n"
2965  "direct and indirect include dependencies of the file with other documented\n"
2966  "files.\n"
2967  "The default value is: YES.\n"
2968  "This tag requires that the tag HAVE_DOT is set to YES.",
2969  TRUE
2970  );
2971  cb->addDependency("HAVE_DOT");
2972  //----
2973  cb = cfg->addBool(
2974  "INCLUDED_BY_GRAPH",
2975  "If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are\n"
2976  "set to YES then doxygen will generate a graph for each documented file showing\n"
2977  "the direct and indirect include dependencies of the file with other documented\n"
2978  "files.\n"
2979  "The default value is: YES.\n"
2980  "This tag requires that the tag HAVE_DOT is set to YES.",
2981  TRUE
2982  );
2983  cb->addDependency("HAVE_DOT");
2984  //----
2985  cb = cfg->addBool(
2986  "CALL_GRAPH",
2987  "If the CALL_GRAPH tag is set to YES then doxygen will generate a call\n"
2988  "dependency graph for every global function or class method.\n"
2989  "\n"
2990  "Note that enabling this option will significantly increase the time of a run.\n"
2991  "So in most cases it will be better to enable call graphs for selected\n"
2992  "functions only using the \\callgraph command. Disabling a call graph can be\n"
2993  "accomplished by means of the command \\hidecallgraph.\n"
2994  "The default value is: NO.\n"
2995  "This tag requires that the tag HAVE_DOT is set to YES.",
2996  FALSE
2997  );
2998  cb->addDependency("HAVE_DOT");
2999  //----
3000  cb = cfg->addBool(
3001  "CALLER_GRAPH",
3002  "If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller\n"
3003  "dependency graph for every global function or class method.\n"
3004  "\n"
3005  "Note that enabling this option will significantly increase the time of a run.\n"
3006  "So in most cases it will be better to enable caller graphs for selected\n"
3007  "functions only using the \\callergraph command. Disabling a caller graph can be\n"
3008  "accomplished by means of the command \\hidecallergraph.\n"
3009  "The default value is: NO.\n"
3010  "This tag requires that the tag HAVE_DOT is set to YES.",
3011  FALSE
3012  );
3013  cb->addDependency("HAVE_DOT");
3014  //----
3015  cb = cfg->addBool(
3016  "GRAPHICAL_HIERARCHY",
3017  "If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical\n"
3018  "hierarchy of all classes instead of a textual one.\n"
3019  "The default value is: YES.\n"
3020  "This tag requires that the tag HAVE_DOT is set to YES.",
3021  TRUE
3022  );
3023  cb->addDependency("HAVE_DOT");
3024  //----
3025  cb = cfg->addBool(
3026  "DIRECTORY_GRAPH",
3027  "If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the\n"
3028  "dependencies a directory has on other directories in a graphical way. The\n"
3029  "dependency relations are determined by the #include relations between the\n"
3030  "files in the directories.\n"
3031  "The default value is: YES.\n"
3032  "This tag requires that the tag HAVE_DOT is set to YES.",
3033  TRUE
3034  );
3035  cb->addDependency("HAVE_DOT");
3036  //----
3037  ce = cfg->addEnum(
3038  "DOT_IMAGE_FORMAT",
3039  "The DOT_IMAGE_FORMAT tag can be used to set the image format of the images\n"
3040  "generated by dot. For an explanation of the image formats see the section\n"
3041  "output formats in the documentation of the dot tool (Graphviz (see:\n"
3042  "http://www.graphviz.org/)).\n"
3043  "Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order\n"
3044  "to make the SVG files visible in IE 9+ (other browsers do not have this\n"
3045  "requirement).\n"
3046  "Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,\n"
3047  "png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and\n"
3048  "png:gdiplus:gdiplus.\n"
3049  "The default value is: png.\n"
3050  "This tag requires that the tag HAVE_DOT is set to YES.",
3051  "png"
3052  );
3053  ce->addValue("png");
3054  ce->addValue("jpg");
3055  ce->addValue("gif");
3056  ce->addValue("svg");
3057  ce->addValue("png:gd");
3058  ce->addValue("png:gd:gd");
3059  ce->addValue("png:cairo");
3060  ce->addValue("png:cairo:gd");
3061  ce->addValue("png:cairo:cairo");
3062  ce->addValue("png:cairo:gdiplus");
3063  ce->addValue("png:gdiplus");
3064  ce->addValue("png:gdiplus:gdiplus");
3065  ce->addDependency("HAVE_DOT");
3066  //----
3067  cb = cfg->addBool(
3068  "INTERACTIVE_SVG",
3069  "If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to\n"
3070  "enable generation of interactive SVG images that allow zooming and panning.\n"
3071  "\n"
3072  "Note that this requires a modern browser other than Internet Explorer. Tested\n"
3073  "and working are Firefox, Chrome, Safari, and Opera.\n"
3074  "Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make\n"
3075  "the SVG files visible. Older versions of IE do not have SVG support.\n"
3076  "The default value is: NO.\n"
3077  "This tag requires that the tag HAVE_DOT is set to YES.",
3078  FALSE
3079  );
3080  cb->addDependency("HAVE_DOT");
3081  //----
3082  cs = cfg->addString(
3083  "DOT_PATH",
3084  "The DOT_PATH tag can be used to specify the path where the dot tool can be\n"
3085  "found. If left blank, it is assumed the dot tool can be found in the path.\n"
3086  "This tag requires that the tag HAVE_DOT is set to YES."
3087  );
3089  cs->addDependency("HAVE_DOT");
3090  //----
3091  cl = cfg->addList(
3092  "DOTFILE_DIRS",
3093  "The DOTFILE_DIRS tag can be used to specify one or more directories that\n"
3094  "contain dot files that are included in the documentation (see the \\dotfile\n"
3095  "command).\n"
3096  "This tag requires that the tag HAVE_DOT is set to YES."
3097  );
3098  cl->addDependency("HAVE_DOT");
3100  //----
3101  cl = cfg->addList(
3102  "MSCFILE_DIRS",
3103  "The MSCFILE_DIRS tag can be used to specify one or more directories that\n"
3104  "contain msc files that are included in the documentation (see the \\mscfile\n"
3105  "command)."
3106  );
3108  //----
3109  cl = cfg->addList(
3110  "DIAFILE_DIRS",
3111  "The DIAFILE_DIRS tag can be used to specify one or more directories that\n"
3112  "contain dia files that are included in the documentation (see the \\diafile\n"
3113  "command)."
3114  );
3116  //----
3117  cs = cfg->addString(
3118  "PLANTUML_JAR_PATH",
3119  "When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the\n"
3120  "path where java can find the plantuml.jar file. If left blank, it is assumed\n"
3121  "PlantUML is not used or called during a preprocessing step. Doxygen will\n"
3122  "generate a warning when it encounters a \\startuml command in this case and\n"
3123  "will not generate output for the diagram."
3124  );
3126  //----
3127  cl = cfg->addList(
3128  "PLANTUML_INCLUDE_PATH",
3129  "When using plantuml, the specified paths are searched for files specified by\n"
3130  "the !include statement in a plantuml block."
3131  );
3133  //----
3134  ci = cfg->addInt(
3135  "DOT_GRAPH_MAX_NODES",
3136  "The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes\n"
3137  "that will be shown in the graph. If the number of nodes in a graph becomes\n"
3138  "larger than this value, doxygen will truncate the graph, which is visualized\n"
3139  "by representing a node as a red box. Note that doxygen if the number of direct\n"
3140  "children of the root node in a graph is already larger than\n"
3141  "DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that\n"
3142  "the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.\n"
3143  "Minimum value: 0, maximum value: 10000, default value: 50.\n"
3144  "This tag requires that the tag HAVE_DOT is set to YES.",
3145  0,10000,50
3146  );
3147  ci->addDependency("HAVE_DOT");
3148  //----
3149  ci = cfg->addInt(
3150  "MAX_DOT_GRAPH_DEPTH",
3151  "The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs\n"
3152  "generated by dot. A depth value of 3 means that only nodes reachable from the\n"
3153  "root by following a path via at most 3 edges will be shown. Nodes that lay\n"
3154  "further from the root node will be omitted. Note that setting this option to 1\n"
3155  "or 2 may greatly reduce the computation time needed for large code bases. Also\n"
3156  "note that the size of a graph can be further restricted by\n"
3157  "DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.\n"
3158  "Minimum value: 0, maximum value: 1000, default value: 0.\n"
3159  "This tag requires that the tag HAVE_DOT is set to YES.",
3160  0,1000,0
3161  );
3162  ci->addDependency("HAVE_DOT");
3163  //----
3164  cb = cfg->addBool(
3165  "DOT_TRANSPARENT",
3166  "Set the DOT_TRANSPARENT tag to YES to generate images with a transparent\n"
3167  "background. This is disabled by default, because dot on Windows does not seem\n"
3168  "to support this out of the box.\n"
3169  "\n"
3170  "Warning: Depending on the platform used, enabling this option may lead to\n"
3171  "badly anti-aliased labels on the edges of a graph (i.e. they become hard to\n"
3172  "read).\n"
3173  "The default value is: NO.\n"
3174  "This tag requires that the tag HAVE_DOT is set to YES.",
3175  FALSE
3176  );
3177  cb->addDependency("HAVE_DOT");
3178  //----
3179  cb = cfg->addBool(
3180  "DOT_MULTI_TARGETS",
3181  "Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output\n"
3182  "files in one run (i.e. multiple -o and -T options on the command line). This\n"
3183  "makes dot run faster, but since only newer versions of dot (>1.8.10) support\n"
3184  "this, this feature is disabled by default.\n"
3185  "The default value is: NO.\n"
3186  "This tag requires that the tag HAVE_DOT is set to YES.",
3187  FALSE
3188  );
3189  cb->addDependency("HAVE_DOT");
3190  //----
3191  cb = cfg->addBool(
3192  "GENERATE_LEGEND",
3193  "If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page\n"
3194  "explaining the meaning of the various boxes and arrows in the dot generated\n"
3195  "graphs.\n"
3196  "The default value is: YES.\n"
3197  "This tag requires that the tag HAVE_DOT is set to YES.",
3198  TRUE
3199  );
3200  cb->addDependency("HAVE_DOT");
3201  //----
3202  cb = cfg->addBool(
3203  "DOT_CLEANUP",
3204  "If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot\n"
3205  "files that are used to generate the various graphs.\n"
3206  "The default value is: YES.\n"
3207  "This tag requires that the tag HAVE_DOT is set to YES.",
3208  TRUE
3209  );
3210  cb->addDependency("HAVE_DOT");
3211  //----
3212  cfg->addObsolete("USE_WINDOWS_ENCODING");
3213  //----
3214  cfg->addObsolete("DETAILS_AT_TOP");
3215  //----
3216  cfg->addObsolete("QTHELP_FILE");
3217  //----
3218  cfg->addObsolete("QTHELP_CONFIG");
3219  //----
3220  cfg->addObsolete("DOXYGEN2QTHELP_LOC");
3221  //----
3222  cfg->addObsolete("MAX_DOT_GRAPH_WIDTH");
3223  //----
3224  cfg->addObsolete("MAX_DOT_GRAPH_HEIGHT");
3225  //----
3226  cfg->addObsolete("CGI_NAME");
3227  //----
3228  cfg->addObsolete("CGI_URL");
3229  //----
3230  cfg->addObsolete("DOC_URL");
3231  //----
3232  cfg->addObsolete("DOC_ABSPATH");
3233  //----
3234  cfg->addObsolete("BIN_ABSPATH");
3235  //----
3236  cfg->addObsolete("EXT_DOC_PATHS");
3237  //----
3238  cfg->addObsolete("USE_INLINE_TREES");
3239  //----
3240  cfg->addObsolete("SHOW_DIRECTORIES");
3241  //----
3242  cfg->addObsolete("HTML_ALIGN_MEMBERS");
3243  //----
3244  cfg->addObsolete("SYMBOL_CACHE_SIZE");
3245  //----
3246  cfg->addObsolete("XML_SCHEMA");
3247  //----
3248  cfg->addObsolete("XML_DTD");
3249 }
void setWidgetType(WidgetType w)
Definition: config.h:123
const bool FALSE
Definition: qglobal.h:370
void addValue(const char *v)
Definition: config.h:122
QAsciiDict< Entry > cl
void setWidgetType(WidgetType w)
Definition: config.h:179
bool portable_fileSystemIsCaseSensitive()
Definition: portable.cpp:391
void addDependency(const char *dep)
Definition: config.h:70
void setDefaultValue(const char *v)
Definition: config.h:181
const char * cs
const bool TRUE
Definition: qglobal.h:371
void addValue(const char *v)
Definition: config.h:147