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