The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2737 lines
120KB

  1. # Doxyfile 1.9.6
  2. # This file describes the settings to be used by the documentation system
  3. # doxygen (www.doxygen.org) for a project.
  4. #
  5. # All text after a double hash (##) is considered a comment and is placed in
  6. # front of the TAG it is preceding.
  7. #
  8. # All text after a single hash (#) is considered a comment and will be ignored.
  9. # The format is:
  10. # TAG = value [value, ...]
  11. # For lists, items can also be appended using:
  12. # TAG += value [value, ...]
  13. # Values that contain spaces should be placed between quotes (\" \").
  14. #
  15. # Note:
  16. #
  17. # Use doxygen to compare the used configuration file with the template
  18. # configuration file:
  19. # doxygen -x [configFile]
  20. # Use doxygen to compare the used configuration file with the template
  21. # configuration file without replacing the environment variables or CMake type
  22. # replacement variables:
  23. # doxygen -x_noenv [configFile]
  24. #---------------------------------------------------------------------------
  25. # Project related configuration options
  26. #---------------------------------------------------------------------------
  27. # This tag specifies the encoding used for all characters in the configuration
  28. # file that follow. The default is UTF-8 which is also the encoding used for all
  29. # text before the first occurrence of this tag. Doxygen uses libiconv (or the
  30. # iconv built into libc) for the transcoding. See
  31. # https://www.gnu.org/software/libiconv/ for the list of possible encodings.
  32. # The default value is: UTF-8.
  33. DOXYFILE_ENCODING = UTF-8
  34. # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
  35. # double-quotes, unless you are using Doxywizard) that should identify the
  36. # project for which the documentation is generated. This name is used in the
  37. # title of most generated pages and in a few other places.
  38. # The default value is: My Project.
  39. PROJECT_NAME = JUCE
  40. # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
  41. # could be handy for archiving the generated documentation or if some version
  42. # control system is used.
  43. PROJECT_NUMBER =
  44. # Using the PROJECT_BRIEF tag one can provide an optional one line description
  45. # for a project that appears at the top of each page and should give viewer a
  46. # quick idea about the purpose of the project. Keep the description short.
  47. PROJECT_BRIEF =
  48. # With the PROJECT_LOGO tag one can specify a logo or an icon that is included
  49. # in the documentation. The maximum height of the logo should not exceed 55
  50. # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
  51. # the logo to the output directory.
  52. PROJECT_LOGO =
  53. # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
  54. # into which the generated documentation will be written. If a relative path is
  55. # entered, it will be relative to the location where doxygen was started. If
  56. # left blank the current directory will be used.
  57. OUTPUT_DIRECTORY =
  58. # If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096
  59. # sub-directories (in 2 levels) under the output directory of each output format
  60. # and will distribute the generated files over these directories. Enabling this
  61. # option can be useful when feeding doxygen a huge amount of source files, where
  62. # putting all generated files in the same directory would otherwise causes
  63. # performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to
  64. # control the number of sub-directories.
  65. # The default value is: NO.
  66. CREATE_SUBDIRS = NO
  67. # Controls the number of sub-directories that will be created when
  68. # CREATE_SUBDIRS tag is set to YES. Level 0 represents 16 directories, and every
  69. # level increment doubles the number of directories, resulting in 4096
  70. # directories at level 8 which is the default and also the maximum value. The
  71. # sub-directories are organized in 2 levels, the first level always has a fixed
  72. # number of 16 directories.
  73. # Minimum value: 0, maximum value: 8, default value: 8.
  74. # This tag requires that the tag CREATE_SUBDIRS is set to YES.
  75. CREATE_SUBDIRS_LEVEL = 8
  76. # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
  77. # characters to appear in the names of generated files. If set to NO, non-ASCII
  78. # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
  79. # U+3044.
  80. # The default value is: NO.
  81. ALLOW_UNICODE_NAMES = NO
  82. # The OUTPUT_LANGUAGE tag is used to specify the language in which all
  83. # documentation generated by doxygen is written. Doxygen will use this
  84. # information to generate all constant output in the proper language.
  85. # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Bulgarian,
  86. # Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, English
  87. # (United States), Esperanto, Farsi (Persian), Finnish, French, German, Greek,
  88. # Hindi, Hungarian, Indonesian, Italian, Japanese, Japanese-en (Japanese with
  89. # English messages), Korean, Korean-en (Korean with English messages), Latvian,
  90. # Lithuanian, Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese,
  91. # Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish,
  92. # Swedish, Turkish, Ukrainian and Vietnamese.
  93. # The default value is: English.
  94. OUTPUT_LANGUAGE = English
  95. # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
  96. # descriptions after the members that are listed in the file and class
  97. # documentation (similar to Javadoc). Set to NO to disable this.
  98. # The default value is: YES.
  99. BRIEF_MEMBER_DESC = YES
  100. # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
  101. # description of a member or function before the detailed description
  102. #
  103. # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
  104. # brief descriptions will be completely suppressed.
  105. # The default value is: YES.
  106. REPEAT_BRIEF = YES
  107. # This tag implements a quasi-intelligent brief description abbreviator that is
  108. # used to form the text in various listings. Each string in this list, if found
  109. # as the leading text of the brief description, will be stripped from the text
  110. # and the result, after processing the whole list, is used as the annotated
  111. # text. Otherwise, the brief description is used as-is. If left blank, the
  112. # following values are used ($name is automatically replaced with the name of
  113. # the entity):The $name class, The $name widget, The $name file, is, provides,
  114. # specifies, contains, represents, a, an and the.
  115. ABBREVIATE_BRIEF =
  116. # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
  117. # doxygen will generate a detailed section even if there is only a brief
  118. # description.
  119. # The default value is: NO.
  120. ALWAYS_DETAILED_SEC = NO
  121. # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
  122. # inherited members of a class in the documentation of that class as if those
  123. # members were ordinary class members. Constructors, destructors and assignment
  124. # operators of the base classes will not be shown.
  125. # The default value is: NO.
  126. INLINE_INHERITED_MEMB = NO
  127. # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
  128. # before files name in the file list and in the header files. If set to NO the
  129. # shortest path that makes the file name unique will be used
  130. # The default value is: YES.
  131. FULL_PATH_NAMES = NO
  132. # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
  133. # Stripping is only done if one of the specified strings matches the left-hand
  134. # part of the path. The tag can be used to show relative paths in the file list.
  135. # If left blank the directory from which doxygen is run is used as the path to
  136. # strip.
  137. #
  138. # Note that you can specify absolute paths here, but also relative paths, which
  139. # will be relative from the directory where doxygen is started.
  140. # This tag requires that the tag FULL_PATH_NAMES is set to YES.
  141. STRIP_FROM_PATH =
  142. # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
  143. # path mentioned in the documentation of a class, which tells the reader which
  144. # header file to include in order to use a class. If left blank only the name of
  145. # the header file containing the class definition is used. Otherwise one should
  146. # specify the list of include paths that are normally passed to the compiler
  147. # using the -I flag.
  148. STRIP_FROM_INC_PATH =
  149. # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
  150. # less readable) file names. This can be useful is your file systems doesn't
  151. # support long names like on DOS, Mac, or CD-ROM.
  152. # The default value is: NO.
  153. SHORT_NAMES = NO
  154. # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
  155. # first line (until the first dot) of a Javadoc-style comment as the brief
  156. # description. If set to NO, the Javadoc-style will behave just like regular Qt-
  157. # style comments (thus requiring an explicit @brief command for a brief
  158. # description.)
  159. # The default value is: NO.
  160. JAVADOC_AUTOBRIEF = YES
  161. # If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line
  162. # such as
  163. # /***************
  164. # as being the beginning of a Javadoc-style comment "banner". If set to NO, the
  165. # Javadoc-style will behave just like regular comments and it will not be
  166. # interpreted by doxygen.
  167. # The default value is: NO.
  168. JAVADOC_BANNER = NO
  169. # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
  170. # line (until the first dot) of a Qt-style comment as the brief description. If
  171. # set to NO, the Qt-style will behave just like regular Qt-style comments (thus
  172. # requiring an explicit \brief command for a brief description.)
  173. # The default value is: NO.
  174. QT_AUTOBRIEF = NO
  175. # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
  176. # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
  177. # a brief description. This used to be the default behavior. The new default is
  178. # to treat a multi-line C++ comment block as a detailed description. Set this
  179. # tag to YES if you prefer the old behavior instead.
  180. #
  181. # Note that setting this tag to YES also means that rational rose comments are
  182. # not recognized any more.
  183. # The default value is: NO.
  184. MULTILINE_CPP_IS_BRIEF = NO
  185. # By default Python docstrings are displayed as preformatted text and doxygen's
  186. # special commands cannot be used. By setting PYTHON_DOCSTRING to NO the
  187. # doxygen's special commands can be used and the contents of the docstring
  188. # documentation blocks is shown as doxygen documentation.
  189. # The default value is: YES.
  190. PYTHON_DOCSTRING = YES
  191. # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
  192. # documentation from any documented member that it re-implements.
  193. # The default value is: YES.
  194. INHERIT_DOCS = YES
  195. # If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
  196. # page for each member. If set to NO, the documentation of a member will be part
  197. # of the file/class/namespace that contains it.
  198. # The default value is: NO.
  199. SEPARATE_MEMBER_PAGES = NO
  200. # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
  201. # uses this value to replace tabs by spaces in code fragments.
  202. # Minimum value: 1, maximum value: 16, default value: 4.
  203. TAB_SIZE = 4
  204. # This tag can be used to specify a number of aliases that act as commands in
  205. # the documentation. An alias has the form:
  206. # name=value
  207. # For example adding
  208. # "sideeffect=@par Side Effects:^^"
  209. # will allow you to put the command \sideeffect (or @sideeffect) in the
  210. # documentation, which will result in a user-defined paragraph with heading
  211. # "Side Effects:". Note that you cannot put \n's in the value part of an alias
  212. # to insert newlines (in the resulting output). You can put ^^ in the value part
  213. # of an alias to insert a newline as if a physical newline was in the original
  214. # file. When you need a literal { or } or , in the value part of an alias you
  215. # have to escape them by means of a backslash (\), this can lead to conflicts
  216. # with the commands \{ and \} for these it is advised to use the version @{ and
  217. # @} or use a double escape (\\{ and \\})
  218. ALIASES = "tags{1}=" \
  219. "topictag{1}=\1" \
  220. "box{1}=<dl class=\"section attention\"><dt>\1</dt><dd>" \
  221. "endbox=</dd></dl>" \
  222. "c_void=@s_code{void}" \
  223. "c_bool=@s_code{bool}" \
  224. "c_char=@s_code{char}" \
  225. "c_float=@s_code{float}" \
  226. "c_double=@s_code{double}" \
  227. "c_int=@s_code{int}" \
  228. "c_nullptr=@s_code{nullptr}" \
  229. "c_for=@s_code{for()}" \
  230. "c_if=@s_code{if()}" \
  231. "c_ifelse=@s_code{if..else}" \
  232. "c_while=@s_code{while()}" \
  233. "c_true=@s_code{true}" \
  234. "c_false=@s_code{false}" \
  235. "c_enum=@s_code{enum}" \
  236. "c_switch=@s_code{switch..case}" \
  237. "c_static=@s_code{static}" \
  238. "c_new=@s_code{new}" \
  239. "c_typedef=@s_code{typedef}"
  240. # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
  241. # only. Doxygen will then generate output that is more tailored for C. For
  242. # instance, some of the names that are used will be different. The list of all
  243. # members will be omitted, etc.
  244. # The default value is: NO.
  245. OPTIMIZE_OUTPUT_FOR_C = NO
  246. # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
  247. # Python sources only. Doxygen will then generate output that is more tailored
  248. # for that language. For instance, namespaces will be presented as packages,
  249. # qualified scopes will look different, etc.
  250. # The default value is: NO.
  251. OPTIMIZE_OUTPUT_JAVA = NO
  252. # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
  253. # sources. Doxygen will then generate output that is tailored for Fortran.
  254. # The default value is: NO.
  255. OPTIMIZE_FOR_FORTRAN = NO
  256. # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
  257. # sources. Doxygen will then generate output that is tailored for VHDL.
  258. # The default value is: NO.
  259. OPTIMIZE_OUTPUT_VHDL = NO
  260. # Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice
  261. # sources only. Doxygen will then generate output that is more tailored for that
  262. # language. For instance, namespaces will be presented as modules, types will be
  263. # separated into more groups, etc.
  264. # The default value is: NO.
  265. OPTIMIZE_OUTPUT_SLICE = NO
  266. # Doxygen selects the parser to use depending on the extension of the files it
  267. # parses. With this tag you can assign which parser to use for a given
  268. # extension. Doxygen has a built-in mapping, but you can override or extend it
  269. # using this tag. The format is ext=language, where ext is a file extension, and
  270. # language is one of the parsers supported by doxygen: IDL, Java, JavaScript,
  271. # Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice,
  272. # VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran:
  273. # FortranFree, unknown formatted Fortran: Fortran. In the later case the parser
  274. # tries to guess whether the code is fixed or free formatted code, this is the
  275. # default for Fortran type files). For instance to make doxygen treat .inc files
  276. # as Fortran files (default is PHP), and .f files as C (default is Fortran),
  277. # use: inc=Fortran f=C.
  278. #
  279. # Note: For files without extension you can use no_extension as a placeholder.
  280. #
  281. # Note that for custom extensions you also need to set FILE_PATTERNS otherwise
  282. # the files are not read by doxygen. When specifying no_extension you should add
  283. # * to the FILE_PATTERNS.
  284. #
  285. # Note see also the list of default file extension mappings.
  286. EXTENSION_MAPPING = txt=md
  287. # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
  288. # according to the Markdown format, which allows for more readable
  289. # documentation. See https://daringfireball.net/projects/markdown/ for details.
  290. # The output of markdown processing is further processed by doxygen, so you can
  291. # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
  292. # case of backward compatibilities issues.
  293. # The default value is: YES.
  294. MARKDOWN_SUPPORT = YES
  295. # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
  296. # to that level are automatically included in the table of contents, even if
  297. # they do not have an id attribute.
  298. # Note: This feature currently applies only to Markdown headings.
  299. # Minimum value: 0, maximum value: 99, default value: 5.
  300. # This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
  301. TOC_INCLUDE_HEADINGS = 0
  302. # When enabled doxygen tries to link words that correspond to documented
  303. # classes, or namespaces to their corresponding documentation. Such a link can
  304. # be prevented in individual cases by putting a % sign in front of the word or
  305. # globally by setting AUTOLINK_SUPPORT to NO.
  306. # The default value is: YES.
  307. AUTOLINK_SUPPORT = YES
  308. # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
  309. # to include (a tag file for) the STL sources as input, then you should set this
  310. # tag to YES in order to let doxygen match functions declarations and
  311. # definitions whose arguments contain STL classes (e.g. func(std::string);
  312. # versus func(std::string) {}). This also make the inheritance and collaboration
  313. # diagrams that involve STL classes more complete and accurate.
  314. # The default value is: NO.
  315. BUILTIN_STL_SUPPORT = YES
  316. # If you use Microsoft's C++/CLI language, you should set this option to YES to
  317. # enable parsing support.
  318. # The default value is: NO.
  319. CPP_CLI_SUPPORT = NO
  320. # Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
  321. # https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen
  322. # will parse them like normal C++ but will assume all classes use public instead
  323. # of private inheritance when no explicit protection keyword is present.
  324. # The default value is: NO.
  325. SIP_SUPPORT = NO
  326. # For Microsoft's IDL there are propget and propput attributes to indicate
  327. # getter and setter methods for a property. Setting this option to YES will make
  328. # doxygen to replace the get and set methods by a property in the documentation.
  329. # This will only work if the methods are indeed getting or setting a simple
  330. # type. If this is not the case, or you want to show the methods anyway, you
  331. # should set this option to NO.
  332. # The default value is: YES.
  333. IDL_PROPERTY_SUPPORT = YES
  334. # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
  335. # tag is set to YES then doxygen will reuse the documentation of the first
  336. # member in the group (if any) for the other members of the group. By default
  337. # all members of a group must be documented explicitly.
  338. # The default value is: NO.
  339. DISTRIBUTE_GROUP_DOC = NO
  340. # If one adds a struct or class to a group and this option is enabled, then also
  341. # any nested class or struct is added to the same group. By default this option
  342. # is disabled and one has to add nested compounds explicitly via \ingroup.
  343. # The default value is: NO.
  344. GROUP_NESTED_COMPOUNDS = YES
  345. # Set the SUBGROUPING tag to YES to allow class member groups of the same type
  346. # (for instance a group of public functions) to be put as a subgroup of that
  347. # type (e.g. under the Public Functions section). Set it to NO to prevent
  348. # subgrouping. Alternatively, this can be done per class using the
  349. # \nosubgrouping command.
  350. # The default value is: YES.
  351. SUBGROUPING = YES
  352. # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
  353. # are shown inside the group in which they are included (e.g. using \ingroup)
  354. # instead of on a separate page (for HTML and Man pages) or section (for LaTeX
  355. # and RTF).
  356. #
  357. # Note that this feature does not work in combination with
  358. # SEPARATE_MEMBER_PAGES.
  359. # The default value is: NO.
  360. INLINE_GROUPED_CLASSES = NO
  361. # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
  362. # with only public data fields or simple typedef fields will be shown inline in
  363. # the documentation of the scope in which they are defined (i.e. file,
  364. # namespace, or group documentation), provided this scope is documented. If set
  365. # to NO, structs, classes, and unions are shown on a separate page (for HTML and
  366. # Man pages) or section (for LaTeX and RTF).
  367. # The default value is: NO.
  368. INLINE_SIMPLE_STRUCTS = NO
  369. # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
  370. # enum is documented as struct, union, or enum with the name of the typedef. So
  371. # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
  372. # with name TypeT. When disabled the typedef will appear as a member of a file,
  373. # namespace, or class. And the struct will be named TypeS. This can typically be
  374. # useful for C code in case the coding convention dictates that all compound
  375. # types are typedef'ed and only the typedef is referenced, never the tag name.
  376. # The default value is: NO.
  377. TYPEDEF_HIDES_STRUCT = NO
  378. # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
  379. # cache is used to resolve symbols given their name and scope. Since this can be
  380. # an expensive process and often the same symbol appears multiple times in the
  381. # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
  382. # doxygen will become slower. If the cache is too large, memory is wasted. The
  383. # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
  384. # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
  385. # symbols. At the end of a run doxygen will report the cache usage and suggest
  386. # the optimal cache size from a speed point of view.
  387. # Minimum value: 0, maximum value: 9, default value: 0.
  388. LOOKUP_CACHE_SIZE = 0
  389. # The NUM_PROC_THREADS specifies the number of threads doxygen is allowed to use
  390. # during processing. When set to 0 doxygen will based this on the number of
  391. # cores available in the system. You can set it explicitly to a value larger
  392. # than 0 to get more control over the balance between CPU load and processing
  393. # speed. At this moment only the input processing can be done using multiple
  394. # threads. Since this is still an experimental feature the default is set to 1,
  395. # which effectively disables parallel processing. Please report any issues you
  396. # encounter. Generating dot graphs in parallel is controlled by the
  397. # DOT_NUM_THREADS setting.
  398. # Minimum value: 0, maximum value: 32, default value: 1.
  399. NUM_PROC_THREADS = 1
  400. #---------------------------------------------------------------------------
  401. # Build related configuration options
  402. #---------------------------------------------------------------------------
  403. # If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
  404. # documentation are documented, even if no documentation was available. Private
  405. # class members and static file members will be hidden unless the
  406. # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
  407. # Note: This will also disable the warnings about undocumented members that are
  408. # normally produced when WARNINGS is set to YES.
  409. # The default value is: NO.
  410. EXTRACT_ALL = YES
  411. # If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
  412. # be included in the documentation.
  413. # The default value is: NO.
  414. EXTRACT_PRIVATE = NO
  415. # If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual
  416. # methods of a class will be included in the documentation.
  417. # The default value is: NO.
  418. EXTRACT_PRIV_VIRTUAL = NO
  419. # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
  420. # scope will be included in the documentation.
  421. # The default value is: NO.
  422. EXTRACT_PACKAGE = NO
  423. # If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
  424. # included in the documentation.
  425. # The default value is: NO.
  426. EXTRACT_STATIC = NO
  427. # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
  428. # locally in source files will be included in the documentation. If set to NO,
  429. # only classes defined in header files are included. Does not have any effect
  430. # for Java sources.
  431. # The default value is: YES.
  432. EXTRACT_LOCAL_CLASSES = NO
  433. # This flag is only useful for Objective-C code. If set to YES, local methods,
  434. # which are defined in the implementation section but not in the interface are
  435. # included in the documentation. If set to NO, only methods in the interface are
  436. # included.
  437. # The default value is: NO.
  438. EXTRACT_LOCAL_METHODS = NO
  439. # If this flag is set to YES, the members of anonymous namespaces will be
  440. # extracted and appear in the documentation as a namespace called
  441. # 'anonymous_namespace{file}', where file will be replaced with the base name of
  442. # the file that contains the anonymous namespace. By default anonymous namespace
  443. # are hidden.
  444. # The default value is: NO.
  445. EXTRACT_ANON_NSPACES = NO
  446. # If this flag is set to YES, the name of an unnamed parameter in a declaration
  447. # will be determined by the corresponding definition. By default unnamed
  448. # parameters remain unnamed in the output.
  449. # The default value is: YES.
  450. RESOLVE_UNNAMED_PARAMS = YES
  451. # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
  452. # undocumented members inside documented classes or files. If set to NO these
  453. # members will be included in the various overviews, but no documentation
  454. # section is generated. This option has no effect if EXTRACT_ALL is enabled.
  455. # The default value is: NO.
  456. HIDE_UNDOC_MEMBERS = NO
  457. # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
  458. # undocumented classes that are normally visible in the class hierarchy. If set
  459. # to NO, these classes will be included in the various overviews. This option
  460. # will also hide undocumented C++ concepts if enabled. This option has no effect
  461. # if EXTRACT_ALL is enabled.
  462. # The default value is: NO.
  463. HIDE_UNDOC_CLASSES = YES
  464. # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
  465. # declarations. If set to NO, these declarations will be included in the
  466. # documentation.
  467. # The default value is: NO.
  468. HIDE_FRIEND_COMPOUNDS = YES
  469. # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
  470. # documentation blocks found inside the body of a function. If set to NO, these
  471. # blocks will be appended to the function's detailed documentation block.
  472. # The default value is: NO.
  473. HIDE_IN_BODY_DOCS = YES
  474. # The INTERNAL_DOCS tag determines if documentation that is typed after a
  475. # \internal command is included. If the tag is set to NO then the documentation
  476. # will be excluded. Set it to YES to include the internal documentation.
  477. # The default value is: NO.
  478. INTERNAL_DOCS = YES
  479. # With the correct setting of option CASE_SENSE_NAMES doxygen will better be
  480. # able to match the capabilities of the underlying filesystem. In case the
  481. # filesystem is case sensitive (i.e. it supports files in the same directory
  482. # whose names only differ in casing), the option must be set to YES to properly
  483. # deal with such files in case they appear in the input. For filesystems that
  484. # are not case sensitive the option should be set to NO to properly deal with
  485. # output files written for symbols that only differ in casing, such as for two
  486. # classes, one named CLASS and the other named Class, and to also support
  487. # references to files without having to specify the exact matching casing. On
  488. # Windows (including Cygwin) and MacOS, users should typically set this option
  489. # to NO, whereas on Linux or other Unix flavors it should typically be set to
  490. # YES.
  491. # Possible values are: SYSTEM, NO and YES.
  492. # The default value is: SYSTEM.
  493. CASE_SENSE_NAMES = YES
  494. # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
  495. # their full class and namespace scopes in the documentation. If set to YES, the
  496. # scope will be hidden.
  497. # The default value is: NO.
  498. HIDE_SCOPE_NAMES = NO
  499. # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
  500. # append additional text to a page's title, such as Class Reference. If set to
  501. # YES the compound reference will be hidden.
  502. # The default value is: NO.
  503. HIDE_COMPOUND_REFERENCE= NO
  504. # If the SHOW_HEADERFILE tag is set to YES then the documentation for a class
  505. # will show which file needs to be included to use the class.
  506. # The default value is: YES.
  507. SHOW_HEADERFILE = YES
  508. # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
  509. # the files that are included by a file in the documentation of that file.
  510. # The default value is: YES.
  511. SHOW_INCLUDE_FILES = NO
  512. # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
  513. # grouped member an include statement to the documentation, telling the reader
  514. # which file to include in order to use the member.
  515. # The default value is: NO.
  516. SHOW_GROUPED_MEMB_INC = NO
  517. # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
  518. # files with double quotes in the documentation rather than with sharp brackets.
  519. # The default value is: NO.
  520. FORCE_LOCAL_INCLUDES = NO
  521. # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
  522. # documentation for inline members.
  523. # The default value is: YES.
  524. INLINE_INFO = NO
  525. # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
  526. # (detailed) documentation of file and class members alphabetically by member
  527. # name. If set to NO, the members will appear in declaration order.
  528. # The default value is: YES.
  529. SORT_MEMBER_DOCS = NO
  530. # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
  531. # descriptions of file, namespace and class members alphabetically by member
  532. # name. If set to NO, the members will appear in declaration order. Note that
  533. # this will also influence the order of the classes in the class list.
  534. # The default value is: NO.
  535. SORT_BRIEF_DOCS = NO
  536. # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
  537. # (brief and detailed) documentation of class members so that constructors and
  538. # destructors are listed first. If set to NO the constructors will appear in the
  539. # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
  540. # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
  541. # member documentation.
  542. # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
  543. # detailed member documentation.
  544. # The default value is: NO.
  545. SORT_MEMBERS_CTORS_1ST = NO
  546. # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
  547. # of group names into alphabetical order. If set to NO the group names will
  548. # appear in their defined order.
  549. # The default value is: NO.
  550. SORT_GROUP_NAMES = YES
  551. # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
  552. # fully-qualified names, including namespaces. If set to NO, the class list will
  553. # be sorted only by class name, not including the namespace part.
  554. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
  555. # Note: This option applies only to the class list, not to the alphabetical
  556. # list.
  557. # The default value is: NO.
  558. SORT_BY_SCOPE_NAME = NO
  559. # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
  560. # type resolution of all parameters of a function it will reject a match between
  561. # the prototype and the implementation of a member function even if there is
  562. # only one candidate or it is obvious which candidate to choose by doing a
  563. # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
  564. # accept a match between prototype and implementation in such cases.
  565. # The default value is: NO.
  566. STRICT_PROTO_MATCHING = NO
  567. # The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
  568. # list. This list is created by putting \todo commands in the documentation.
  569. # The default value is: YES.
  570. GENERATE_TODOLIST = NO
  571. # The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
  572. # list. This list is created by putting \test commands in the documentation.
  573. # The default value is: YES.
  574. GENERATE_TESTLIST = NO
  575. # The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
  576. # list. This list is created by putting \bug commands in the documentation.
  577. # The default value is: YES.
  578. GENERATE_BUGLIST = NO
  579. # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
  580. # the deprecated list. This list is created by putting \deprecated commands in
  581. # the documentation.
  582. # The default value is: YES.
  583. GENERATE_DEPRECATEDLIST= YES
  584. # The ENABLED_SECTIONS tag can be used to enable conditional documentation
  585. # sections, marked by \if <section_label> ... \endif and \cond <section_label>
  586. # ... \endcond blocks.
  587. ENABLED_SECTIONS =
  588. # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
  589. # initial value of a variable or macro / define can have for it to appear in the
  590. # documentation. If the initializer consists of more lines than specified here
  591. # it will be hidden. Use a value of 0 to hide initializers completely. The
  592. # appearance of the value of individual variables and macros / defines can be
  593. # controlled using \showinitializer or \hideinitializer command in the
  594. # documentation regardless of this setting.
  595. # Minimum value: 0, maximum value: 10000, default value: 30.
  596. MAX_INITIALIZER_LINES = 32
  597. # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
  598. # the bottom of the documentation of classes and structs. If set to YES, the
  599. # list will mention the files that were used to generate the documentation.
  600. # The default value is: YES.
  601. SHOW_USED_FILES = YES
  602. # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
  603. # will remove the Files entry from the Quick Index and from the Folder Tree View
  604. # (if specified).
  605. # The default value is: YES.
  606. SHOW_FILES = YES
  607. # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
  608. # page. This will remove the Namespaces entry from the Quick Index and from the
  609. # Folder Tree View (if specified).
  610. # The default value is: YES.
  611. SHOW_NAMESPACES = NO
  612. # The FILE_VERSION_FILTER tag can be used to specify a program or script that
  613. # doxygen should invoke to get the current version for each file (typically from
  614. # the version control system). Doxygen will invoke the program by executing (via
  615. # popen()) the command command input-file, where command is the value of the
  616. # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
  617. # by doxygen. Whatever the program writes to standard output is used as the file
  618. # version. For an example see the documentation.
  619. FILE_VERSION_FILTER =
  620. # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
  621. # by doxygen. The layout file controls the global structure of the generated
  622. # output files in an output format independent way. To create the layout file
  623. # that represents doxygen's defaults, run doxygen with the -l option. You can
  624. # optionally specify a file name after the option, if omitted DoxygenLayout.xml
  625. # will be used as the name of the layout file. See also section "Changing the
  626. # layout of pages" for information.
  627. #
  628. # Note that if you run doxygen from a directory containing a file called
  629. # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
  630. # tag is left empty.
  631. LAYOUT_FILE =
  632. # The CITE_BIB_FILES tag can be used to specify one or more bib files containing
  633. # the reference definitions. This must be a list of .bib files. The .bib
  634. # extension is automatically appended if omitted. This requires the bibtex tool
  635. # to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info.
  636. # For LaTeX the style of the bibliography can be controlled using
  637. # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
  638. # search path. See also \cite for info how to create references.
  639. CITE_BIB_FILES =
  640. #---------------------------------------------------------------------------
  641. # Configuration options related to warning and progress messages
  642. #---------------------------------------------------------------------------
  643. # The QUIET tag can be used to turn on/off the messages that are generated to
  644. # standard output by doxygen. If QUIET is set to YES this implies that the
  645. # messages are off.
  646. # The default value is: NO.
  647. QUIET = YES
  648. # The WARNINGS tag can be used to turn on/off the warning messages that are
  649. # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
  650. # this implies that the warnings are on.
  651. #
  652. # Tip: Turn warnings on while writing the documentation.
  653. # The default value is: YES.
  654. WARNINGS = YES
  655. # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
  656. # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
  657. # will automatically be disabled.
  658. # The default value is: YES.
  659. WARN_IF_UNDOCUMENTED = YES
  660. # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
  661. # potential errors in the documentation, such as documenting some parameters in
  662. # a documented function twice, or documenting parameters that don't exist or
  663. # using markup commands wrongly.
  664. # The default value is: YES.
  665. WARN_IF_DOC_ERROR = YES
  666. # If WARN_IF_INCOMPLETE_DOC is set to YES, doxygen will warn about incomplete
  667. # function parameter documentation. If set to NO, doxygen will accept that some
  668. # parameters have no documentation without warning.
  669. # The default value is: YES.
  670. WARN_IF_INCOMPLETE_DOC = YES
  671. # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
  672. # are documented, but have no documentation for their parameters or return
  673. # value. If set to NO, doxygen will only warn about wrong parameter
  674. # documentation, but not about the absence of documentation. If EXTRACT_ALL is
  675. # set to YES then this flag will automatically be disabled. See also
  676. # WARN_IF_INCOMPLETE_DOC
  677. # The default value is: NO.
  678. WARN_NO_PARAMDOC = NO
  679. # If WARN_IF_UNDOC_ENUM_VAL option is set to YES, doxygen will warn about
  680. # undocumented enumeration values. If set to NO, doxygen will accept
  681. # undocumented enumeration values. If EXTRACT_ALL is set to YES then this flag
  682. # will automatically be disabled.
  683. # The default value is: NO.
  684. WARN_IF_UNDOC_ENUM_VAL = NO
  685. # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
  686. # a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS
  687. # then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but
  688. # at the end of the doxygen process doxygen will return with a non-zero status.
  689. # Possible values are: NO, YES and FAIL_ON_WARNINGS.
  690. # The default value is: NO.
  691. WARN_AS_ERROR = NO
  692. # The WARN_FORMAT tag determines the format of the warning messages that doxygen
  693. # can produce. The string should contain the $file, $line, and $text tags, which
  694. # will be replaced by the file and line number from which the warning originated
  695. # and the warning text. Optionally the format may contain $version, which will
  696. # be replaced by the version of the file (if it could be obtained via
  697. # FILE_VERSION_FILTER)
  698. # See also: WARN_LINE_FORMAT
  699. # The default value is: $file:$line: $text.
  700. WARN_FORMAT = "$file:$line: $text"
  701. # In the $text part of the WARN_FORMAT command it is possible that a reference
  702. # to a more specific place is given. To make it easier to jump to this place
  703. # (outside of doxygen) the user can define a custom "cut" / "paste" string.
  704. # Example:
  705. # WARN_LINE_FORMAT = "'vi $file +$line'"
  706. # See also: WARN_FORMAT
  707. # The default value is: at line $line of file $file.
  708. WARN_LINE_FORMAT = "at line $line of file $file"
  709. # The WARN_LOGFILE tag can be used to specify a file to which warning and error
  710. # messages should be written. If left blank the output is written to standard
  711. # error (stderr). In case the file specified cannot be opened for writing the
  712. # warning and error messages are written to standard error. When as file - is
  713. # specified the warning and error messages are written to standard output
  714. # (stdout).
  715. WARN_LOGFILE =
  716. #---------------------------------------------------------------------------
  717. # Configuration options related to the input files
  718. #---------------------------------------------------------------------------
  719. # The INPUT tag is used to specify the files and/or directories that contain
  720. # documented source files. You may enter file names like myfile.cpp or
  721. # directories like /usr/src/myproject. Separate the files or directories with
  722. # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
  723. # Note: If this tag is empty the current directory is searched.
  724. INPUT = build \
  725. "build/JUCE Module Format.md" \
  726. "build/CMake API.md"
  727. # This tag can be used to specify the character encoding of the source files
  728. # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
  729. # libiconv (or the iconv built into libc) for the transcoding. See the libiconv
  730. # documentation (see:
  731. # https://www.gnu.org/software/libiconv/) for the list of possible encodings.
  732. # See also: INPUT_FILE_ENCODING
  733. # The default value is: UTF-8.
  734. INPUT_ENCODING = UTF-8
  735. # This tag can be used to specify the character encoding of the source files
  736. # that doxygen parses The INPUT_FILE_ENCODING tag can be used to specify
  737. # character encoding on a per file pattern basis. Doxygen will compare the file
  738. # name with each pattern and apply the encoding instead of the default
  739. # INPUT_ENCODING) if there is a match. The character encodings are a list of the
  740. # form: pattern=encoding (like *.php=ISO-8859-1). See cfg_input_encoding
  741. # "INPUT_ENCODING" for further information on supported encodings.
  742. INPUT_FILE_ENCODING =
  743. # If the value of the INPUT tag contains directories, you can use the
  744. # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
  745. # *.h) to filter out the source-files in the directories.
  746. #
  747. # Note that for custom extensions or not directly supported extensions you also
  748. # need to set EXTENSION_MAPPING for the extension otherwise the files are not
  749. # read by doxygen.
  750. #
  751. # Note the list of default checked file patterns might differ from the list of
  752. # default file extension mappings.
  753. #
  754. # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
  755. # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
  756. # *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php, *.php4, *.php5, *.phtml,
  757. # *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C
  758. # comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd,
  759. # *.vhdl, *.ucf, *.qsf and *.ice.
  760. FILE_PATTERNS = juce_*.h \
  761. juce_*.dox
  762. # The RECURSIVE tag can be used to specify whether or not subdirectories should
  763. # be searched for input files as well.
  764. # The default value is: NO.
  765. RECURSIVE = YES
  766. # The EXCLUDE tag can be used to specify files and/or directories that should be
  767. # excluded from the INPUT source files. This way you can easily exclude a
  768. # subdirectory from a directory tree whose root is specified with the INPUT tag.
  769. #
  770. # Note that relative paths are relative to the directory from which doxygen is
  771. # run.
  772. EXCLUDE = build/juce_graphics/image_formats \
  773. build/juce_core/zip/zlib \
  774. build/juce_audio_formats/codecs/flac \
  775. build/juce_audio_formats/codecs/oggvorbis \
  776. build/juce_audio_devices/native \
  777. build/juce_audio_plugin_client/AU/AudioUnitSDK \
  778. build/juce_browser_plugin_client/juce_browser_plugin.h \
  779. build/juce_core/native \
  780. build/juce_events/native \
  781. build/juce_graphics/native \
  782. build/juce_gui_basics/native \
  783. build/juce_gui_extra/native \
  784. build/juce_opengl/native \
  785. build/juce_video/native \
  786. build/juce_dsp/native
  787. # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
  788. # directories that are symbolic links (a Unix file system feature) are excluded
  789. # from the input.
  790. # The default value is: NO.
  791. EXCLUDE_SYMLINKS = YES
  792. # If the value of the INPUT tag contains directories, you can use the
  793. # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
  794. # certain files from those directories.
  795. #
  796. # Note that the wildcards are matched against the file with absolute path, so to
  797. # exclude all test directories for example use the pattern */test/*
  798. EXCLUDE_PATTERNS = juce_GIFLoader* \
  799. juce_JPEGLoader* \
  800. juce_PNGLoader* \
  801. juce_FlacHeader.h
  802. # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
  803. # (namespaces, classes, functions, etc.) that should be excluded from the
  804. # output. The symbol name can be a fully qualified name, a word, or if the
  805. # wildcard * is used, a substring. Examples: ANamespace, AClass,
  806. # ANamespace::AClass, ANamespace::*Test
  807. #
  808. # Note that the wildcards are matched against the file with absolute path, so to
  809. # exclude all test directories use the pattern */test/*
  810. EXCLUDE_SYMBOLS =
  811. # The EXAMPLE_PATH tag can be used to specify one or more files or directories
  812. # that contain example code fragments that are included (see the \include
  813. # command).
  814. EXAMPLE_PATH =
  815. # If the value of the EXAMPLE_PATH tag contains directories, you can use the
  816. # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
  817. # *.h) to filter out the source-files in the directories. If left blank all
  818. # files are included.
  819. EXAMPLE_PATTERNS =
  820. # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
  821. # searched for input files to be used with the \include or \dontinclude commands
  822. # irrespective of the value of the RECURSIVE tag.
  823. # The default value is: NO.
  824. EXAMPLE_RECURSIVE = YES
  825. # The IMAGE_PATH tag can be used to specify one or more files or directories
  826. # that contain images that are to be included in the documentation (see the
  827. # \image command).
  828. IMAGE_PATH =
  829. # The INPUT_FILTER tag can be used to specify a program that doxygen should
  830. # invoke to filter for each input file. Doxygen will invoke the filter program
  831. # by executing (via popen()) the command:
  832. #
  833. # <filter> <input-file>
  834. #
  835. # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
  836. # name of an input file. Doxygen will then use the output that the filter
  837. # program writes to standard output. If FILTER_PATTERNS is specified, this tag
  838. # will be ignored.
  839. #
  840. # Note that the filter must not add or remove lines; it is applied before the
  841. # code is scanned, but not when the output code is generated. If lines are added
  842. # or removed, the anchors will not be placed correctly.
  843. #
  844. # Note that doxygen will use the data processed and written to standard output
  845. # for further processing, therefore nothing else, like debug statements or used
  846. # commands (so in case of a Windows batch file always use @echo OFF), should be
  847. # written to standard output.
  848. #
  849. # Note that for custom extensions or not directly supported extensions you also
  850. # need to set EXTENSION_MAPPING for the extension otherwise the files are not
  851. # properly processed by doxygen.
  852. INPUT_FILTER =
  853. # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
  854. # basis. Doxygen will compare the file name with each pattern and apply the
  855. # filter if there is a match. The filters are a list of the form: pattern=filter
  856. # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
  857. # filters are used. If the FILTER_PATTERNS tag is empty or if none of the
  858. # patterns match the file name, INPUT_FILTER is applied.
  859. #
  860. # Note that for custom extensions or not directly supported extensions you also
  861. # need to set EXTENSION_MAPPING for the extension otherwise the files are not
  862. # properly processed by doxygen.
  863. FILTER_PATTERNS =
  864. # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
  865. # INPUT_FILTER) will also be used to filter the input files that are used for
  866. # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
  867. # The default value is: NO.
  868. FILTER_SOURCE_FILES = YES
  869. # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
  870. # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
  871. # it is also possible to disable source filtering for a specific pattern using
  872. # *.ext= (so without naming a filter).
  873. # This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
  874. FILTER_SOURCE_PATTERNS =
  875. # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
  876. # is part of the input, its contents will be placed on the main page
  877. # (index.html). This can be useful if you have a project on for instance GitHub
  878. # and want to reuse the introduction page also for the doxygen output.
  879. USE_MDFILE_AS_MAINPAGE =
  880. # The Fortran standard specifies that for fixed formatted Fortran code all
  881. # characters from position 72 are to be considered as comment. A common
  882. # extension is to allow longer lines before the automatic comment starts. The
  883. # setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can
  884. # be processed before the automatic comment starts.
  885. # Minimum value: 7, maximum value: 10000, default value: 72.
  886. FORTRAN_COMMENT_AFTER = 72
  887. #---------------------------------------------------------------------------
  888. # Configuration options related to source browsing
  889. #---------------------------------------------------------------------------
  890. # If the SOURCE_BROWSER tag is set to YES then a list of source files will be
  891. # generated. Documented entities will be cross-referenced with these sources.
  892. #
  893. # Note: To get rid of all source code in the generated output, make sure that
  894. # also VERBATIM_HEADERS is set to NO.
  895. # The default value is: NO.
  896. SOURCE_BROWSER = NO
  897. # Setting the INLINE_SOURCES tag to YES will include the body of functions,
  898. # classes and enums directly into the documentation.
  899. # The default value is: NO.
  900. INLINE_SOURCES = NO
  901. # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
  902. # special comment blocks from generated source code fragments. Normal C, C++ and
  903. # Fortran comments will always remain visible.
  904. # The default value is: YES.
  905. STRIP_CODE_COMMENTS = YES
  906. # If the REFERENCED_BY_RELATION tag is set to YES then for each documented
  907. # entity all documented functions referencing it will be listed.
  908. # The default value is: NO.
  909. REFERENCED_BY_RELATION = YES
  910. # If the REFERENCES_RELATION tag is set to YES then for each documented function
  911. # all documented entities called/used by that function will be listed.
  912. # The default value is: NO.
  913. REFERENCES_RELATION = YES
  914. # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
  915. # to YES then the hyperlinks from functions in REFERENCES_RELATION and
  916. # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
  917. # link to the documentation.
  918. # The default value is: YES.
  919. REFERENCES_LINK_SOURCE = YES
  920. # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
  921. # source code will show a tooltip with additional information such as prototype,
  922. # brief description and links to the definition and documentation. Since this
  923. # will make the HTML file larger and loading of large files a bit slower, you
  924. # can opt to disable this feature.
  925. # The default value is: YES.
  926. # This tag requires that the tag SOURCE_BROWSER is set to YES.
  927. SOURCE_TOOLTIPS = YES
  928. # If the USE_HTAGS tag is set to YES then the references to source code will
  929. # point to the HTML generated by the htags(1) tool instead of doxygen built-in
  930. # source browser. The htags tool is part of GNU's global source tagging system
  931. # (see https://www.gnu.org/software/global/global.html). You will need version
  932. # 4.8.6 or higher.
  933. #
  934. # To use it do the following:
  935. # - Install the latest version of global
  936. # - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file
  937. # - Make sure the INPUT points to the root of the source tree
  938. # - Run doxygen as normal
  939. #
  940. # Doxygen will invoke htags (and that will in turn invoke gtags), so these
  941. # tools must be available from the command line (i.e. in the search path).
  942. #
  943. # The result: instead of the source browser generated by doxygen, the links to
  944. # source code will now point to the output of htags.
  945. # The default value is: NO.
  946. # This tag requires that the tag SOURCE_BROWSER is set to YES.
  947. USE_HTAGS = NO
  948. # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
  949. # verbatim copy of the header file for each class for which an include is
  950. # specified. Set to NO to disable this.
  951. # See also: Section \class.
  952. # The default value is: YES.
  953. VERBATIM_HEADERS = NO
  954. #---------------------------------------------------------------------------
  955. # Configuration options related to the alphabetical class index
  956. #---------------------------------------------------------------------------
  957. # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
  958. # compounds will be generated. Enable this if the project contains a lot of
  959. # classes, structs, unions or interfaces.
  960. # The default value is: YES.
  961. ALPHABETICAL_INDEX = YES
  962. # The IGNORE_PREFIX tag can be used to specify a prefix (or a list of prefixes)
  963. # that should be ignored while generating the index headers. The IGNORE_PREFIX
  964. # tag works for classes, function and member names. The entity will be placed in
  965. # the alphabetical list under the first letter of the entity name that remains
  966. # after removing the prefix.
  967. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
  968. IGNORE_PREFIX =
  969. #---------------------------------------------------------------------------
  970. # Configuration options related to the HTML output
  971. #---------------------------------------------------------------------------
  972. # If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
  973. # The default value is: YES.
  974. GENERATE_HTML = YES
  975. # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
  976. # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
  977. # it.
  978. # The default directory is: html.
  979. # This tag requires that the tag GENERATE_HTML is set to YES.
  980. HTML_OUTPUT = doc
  981. # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
  982. # generated HTML page (for example: .htm, .php, .asp).
  983. # The default value is: .html.
  984. # This tag requires that the tag GENERATE_HTML is set to YES.
  985. HTML_FILE_EXTENSION = .html
  986. # The HTML_HEADER tag can be used to specify a user-defined HTML header file for
  987. # each generated HTML page. If the tag is left blank doxygen will generate a
  988. # standard header.
  989. #
  990. # To get valid HTML the header file that includes any scripts and style sheets
  991. # that doxygen needs, which is dependent on the configuration options used (e.g.
  992. # the setting GENERATE_TREEVIEW). It is highly recommended to start with a
  993. # default header using
  994. # doxygen -w html new_header.html new_footer.html new_stylesheet.css
  995. # YourConfigFile
  996. # and then modify the file new_header.html. See also section "Doxygen usage"
  997. # for information on how to generate the default header that doxygen normally
  998. # uses.
  999. # Note: The header is subject to change so you typically have to regenerate the
  1000. # default header when upgrading to a newer version of doxygen. For a description
  1001. # of the possible markers and block names see the documentation.
  1002. # This tag requires that the tag GENERATE_HTML is set to YES.
  1003. HTML_HEADER =
  1004. # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
  1005. # generated HTML page. If the tag is left blank doxygen will generate a standard
  1006. # footer. See HTML_HEADER for more information on how to generate a default
  1007. # footer and what special commands can be used inside the footer. See also
  1008. # section "Doxygen usage" for information on how to generate the default footer
  1009. # that doxygen normally uses.
  1010. # This tag requires that the tag GENERATE_HTML is set to YES.
  1011. HTML_FOOTER =
  1012. # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
  1013. # sheet that is used by each HTML page. It can be used to fine-tune the look of
  1014. # the HTML output. If left blank doxygen will generate a default style sheet.
  1015. # See also section "Doxygen usage" for information on how to generate the style
  1016. # sheet that doxygen normally uses.
  1017. # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
  1018. # it is more robust and this tag (HTML_STYLESHEET) will in the future become
  1019. # obsolete.
  1020. # This tag requires that the tag GENERATE_HTML is set to YES.
  1021. HTML_STYLESHEET =
  1022. # The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
  1023. # cascading style sheets that are included after the standard style sheets
  1024. # created by doxygen. Using this option one can overrule certain style aspects.
  1025. # This is preferred over using HTML_STYLESHEET since it does not replace the
  1026. # standard style sheet and is therefore more robust against future updates.
  1027. # Doxygen will copy the style sheet files to the output directory.
  1028. # Note: The order of the extra style sheet files is of importance (e.g. the last
  1029. # style sheet in the list overrules the setting of the previous ones in the
  1030. # list).
  1031. # Note: Since the styling of scrollbars can currently not be overruled in
  1032. # Webkit/Chromium, the styling will be left out of the default doxygen.css if
  1033. # one or more extra stylesheets have been specified. So if scrollbar
  1034. # customization is desired it has to be added explicitly. For an example see the
  1035. # documentation.
  1036. # This tag requires that the tag GENERATE_HTML is set to YES.
  1037. HTML_EXTRA_STYLESHEET =
  1038. # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
  1039. # other source files which should be copied to the HTML output directory. Note
  1040. # that these files will be copied to the base HTML output directory. Use the
  1041. # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
  1042. # files. In the HTML_STYLESHEET file, use the file name only. Also note that the
  1043. # files will be copied as-is; there are no commands or markers available.
  1044. # This tag requires that the tag GENERATE_HTML is set to YES.
  1045. HTML_EXTRA_FILES =
  1046. # The HTML_COLORSTYLE tag can be used to specify if the generated HTML output
  1047. # should be rendered with a dark or light theme.
  1048. # Possible values are: LIGHT always generate light mode output, DARK always
  1049. # generate dark mode output, AUTO_LIGHT automatically set the mode according to
  1050. # the user preference, use light mode if no preference is set (the default),
  1051. # AUTO_DARK automatically set the mode according to the user preference, use
  1052. # dark mode if no preference is set and TOGGLE allow to user to switch between
  1053. # light and dark mode via a button.
  1054. # The default value is: AUTO_LIGHT.
  1055. # This tag requires that the tag GENERATE_HTML is set to YES.
  1056. HTML_COLORSTYLE = AUTO_LIGHT
  1057. # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
  1058. # will adjust the colors in the style sheet and background images according to
  1059. # this color. Hue is specified as an angle on a color-wheel, see
  1060. # https://en.wikipedia.org/wiki/Hue for more information. For instance the value
  1061. # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
  1062. # purple, and 360 is red again.
  1063. # Minimum value: 0, maximum value: 359, default value: 220.
  1064. # This tag requires that the tag GENERATE_HTML is set to YES.
  1065. HTML_COLORSTYLE_HUE = 220
  1066. # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
  1067. # in the HTML output. For a value of 0 the output will use gray-scales only. A
  1068. # value of 255 will produce the most vivid colors.
  1069. # Minimum value: 0, maximum value: 255, default value: 100.
  1070. # This tag requires that the tag GENERATE_HTML is set to YES.
  1071. HTML_COLORSTYLE_SAT = 100
  1072. # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
  1073. # luminance component of the colors in the HTML output. Values below 100
  1074. # gradually make the output lighter, whereas values above 100 make the output
  1075. # darker. The value divided by 100 is the actual gamma applied, so 80 represents
  1076. # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
  1077. # change the gamma.
  1078. # Minimum value: 40, maximum value: 240, default value: 80.
  1079. # This tag requires that the tag GENERATE_HTML is set to YES.
  1080. HTML_COLORSTYLE_GAMMA = 80
  1081. # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
  1082. # page will contain the date and time when the page was generated. Setting this
  1083. # to YES can help to show when doxygen was last run and thus if the
  1084. # documentation is up to date.
  1085. # The default value is: NO.
  1086. # This tag requires that the tag GENERATE_HTML is set to YES.
  1087. HTML_TIMESTAMP = YES
  1088. # If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
  1089. # documentation will contain a main index with vertical navigation menus that
  1090. # are dynamically created via JavaScript. If disabled, the navigation index will
  1091. # consists of multiple levels of tabs that are statically embedded in every HTML
  1092. # page. Disable this option to support browsers that do not have JavaScript,
  1093. # like the Qt help browser.
  1094. # The default value is: YES.
  1095. # This tag requires that the tag GENERATE_HTML is set to YES.
  1096. HTML_DYNAMIC_MENUS = NO
  1097. # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
  1098. # documentation will contain sections that can be hidden and shown after the
  1099. # page has loaded.
  1100. # The default value is: NO.
  1101. # This tag requires that the tag GENERATE_HTML is set to YES.
  1102. HTML_DYNAMIC_SECTIONS = NO
  1103. # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
  1104. # shown in the various tree structured indices initially; the user can expand
  1105. # and collapse entries dynamically later on. Doxygen will expand the tree to
  1106. # such a level that at most the specified number of entries are visible (unless
  1107. # a fully collapsed tree already exceeds this amount). So setting the number of
  1108. # entries 1 will produce a full collapsed tree by default. 0 is a special value
  1109. # representing an infinite number of entries and will result in a full expanded
  1110. # tree by default.
  1111. # Minimum value: 0, maximum value: 9999, default value: 100.
  1112. # This tag requires that the tag GENERATE_HTML is set to YES.
  1113. HTML_INDEX_NUM_ENTRIES = 32
  1114. # If the GENERATE_DOCSET tag is set to YES, additional index files will be
  1115. # generated that can be used as input for Apple's Xcode 3 integrated development
  1116. # environment (see:
  1117. # https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To
  1118. # create a documentation set, doxygen will generate a Makefile in the HTML
  1119. # output directory. Running make will produce the docset in that directory and
  1120. # running make install will install the docset in
  1121. # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
  1122. # startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy
  1123. # genXcode/_index.html for more information.
  1124. # The default value is: NO.
  1125. # This tag requires that the tag GENERATE_HTML is set to YES.
  1126. GENERATE_DOCSET = NO
  1127. # This tag determines the name of the docset feed. A documentation feed provides
  1128. # an umbrella under which multiple documentation sets from a single provider
  1129. # (such as a company or product suite) can be grouped.
  1130. # The default value is: Doxygen generated docs.
  1131. # This tag requires that the tag GENERATE_DOCSET is set to YES.
  1132. DOCSET_FEEDNAME = "Doxygen generated docs"
  1133. # This tag determines the URL of the docset feed. A documentation feed provides
  1134. # an umbrella under which multiple documentation sets from a single provider
  1135. # (such as a company or product suite) can be grouped.
  1136. # This tag requires that the tag GENERATE_DOCSET is set to YES.
  1137. DOCSET_FEEDURL =
  1138. # This tag specifies a string that should uniquely identify the documentation
  1139. # set bundle. This should be a reverse domain-name style string, e.g.
  1140. # com.mycompany.MyDocSet. Doxygen will append .docset to the name.
  1141. # The default value is: org.doxygen.Project.
  1142. # This tag requires that the tag GENERATE_DOCSET is set to YES.
  1143. DOCSET_BUNDLE_ID = org.doxygen.Project
  1144. # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
  1145. # the documentation publisher. This should be a reverse domain-name style
  1146. # string, e.g. com.mycompany.MyDocSet.documentation.
  1147. # The default value is: org.doxygen.Publisher.
  1148. # This tag requires that the tag GENERATE_DOCSET is set to YES.
  1149. DOCSET_PUBLISHER_ID = org.doxygen.Publisher
  1150. # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
  1151. # The default value is: Publisher.
  1152. # This tag requires that the tag GENERATE_DOCSET is set to YES.
  1153. DOCSET_PUBLISHER_NAME = Publisher
  1154. # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
  1155. # additional HTML index files: index.hhp, index.hhc, and index.hhk. The
  1156. # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
  1157. # on Windows. In the beginning of 2021 Microsoft took the original page, with
  1158. # a.o. the download links, offline the HTML help workshop was already many years
  1159. # in maintenance mode). You can download the HTML help workshop from the web
  1160. # archives at Installation executable (see:
  1161. # http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo
  1162. # ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe).
  1163. #
  1164. # The HTML Help Workshop contains a compiler that can convert all HTML output
  1165. # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
  1166. # files are now used as the Windows 98 help format, and will replace the old
  1167. # Windows help format (.hlp) on all Windows platforms in the future. Compressed
  1168. # HTML files also contain an index, a table of contents, and you can search for
  1169. # words in the documentation. The HTML workshop also contains a viewer for
  1170. # compressed HTML files.
  1171. # The default value is: NO.
  1172. # This tag requires that the tag GENERATE_HTML is set to YES.
  1173. GENERATE_HTMLHELP = NO
  1174. # The CHM_FILE tag can be used to specify the file name of the resulting .chm
  1175. # file. You can add a path in front of the file if the result should not be
  1176. # written to the html output directory.
  1177. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  1178. CHM_FILE =
  1179. # The HHC_LOCATION tag can be used to specify the location (absolute path
  1180. # including file name) of the HTML help compiler (hhc.exe). If non-empty,
  1181. # doxygen will try to run the HTML help compiler on the generated index.hhp.
  1182. # The file has to be specified with full path.
  1183. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  1184. HHC_LOCATION =
  1185. # The GENERATE_CHI flag controls if a separate .chi index file is generated
  1186. # (YES) or that it should be included in the main .chm file (NO).
  1187. # The default value is: NO.
  1188. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  1189. GENERATE_CHI = NO
  1190. # The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
  1191. # and project file content.
  1192. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  1193. CHM_INDEX_ENCODING =
  1194. # The BINARY_TOC flag controls whether a binary table of contents is generated
  1195. # (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
  1196. # enables the Previous and Next buttons.
  1197. # The default value is: NO.
  1198. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  1199. BINARY_TOC = NO
  1200. # The TOC_EXPAND flag can be set to YES to add extra items for group members to
  1201. # the table of contents of the HTML help documentation and to the tree view.
  1202. # The default value is: NO.
  1203. # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
  1204. TOC_EXPAND = NO
  1205. # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
  1206. # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
  1207. # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
  1208. # (.qch) of the generated HTML documentation.
  1209. # The default value is: NO.
  1210. # This tag requires that the tag GENERATE_HTML is set to YES.
  1211. GENERATE_QHP = NO
  1212. # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
  1213. # the file name of the resulting .qch file. The path specified is relative to
  1214. # the HTML output folder.
  1215. # This tag requires that the tag GENERATE_QHP is set to YES.
  1216. QCH_FILE =
  1217. # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
  1218. # Project output. For more information please see Qt Help Project / Namespace
  1219. # (see:
  1220. # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
  1221. # The default value is: org.doxygen.Project.
  1222. # This tag requires that the tag GENERATE_QHP is set to YES.
  1223. QHP_NAMESPACE = org.doxygen.Project
  1224. # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
  1225. # Help Project output. For more information please see Qt Help Project / Virtual
  1226. # Folders (see:
  1227. # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders).
  1228. # The default value is: doc.
  1229. # This tag requires that the tag GENERATE_QHP is set to YES.
  1230. QHP_VIRTUAL_FOLDER = doc
  1231. # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
  1232. # filter to add. For more information please see Qt Help Project / Custom
  1233. # Filters (see:
  1234. # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
  1235. # This tag requires that the tag GENERATE_QHP is set to YES.
  1236. QHP_CUST_FILTER_NAME =
  1237. # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
  1238. # custom filter to add. For more information please see Qt Help Project / Custom
  1239. # Filters (see:
  1240. # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
  1241. # This tag requires that the tag GENERATE_QHP is set to YES.
  1242. QHP_CUST_FILTER_ATTRS =
  1243. # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
  1244. # project's filter section matches. Qt Help Project / Filter Attributes (see:
  1245. # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes).
  1246. # This tag requires that the tag GENERATE_QHP is set to YES.
  1247. QHP_SECT_FILTER_ATTRS =
  1248. # The QHG_LOCATION tag can be used to specify the location (absolute path
  1249. # including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to
  1250. # run qhelpgenerator on the generated .qhp file.
  1251. # This tag requires that the tag GENERATE_QHP is set to YES.
  1252. QHG_LOCATION =
  1253. # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
  1254. # generated, together with the HTML files, they form an Eclipse help plugin. To
  1255. # install this plugin and make it available under the help contents menu in
  1256. # Eclipse, the contents of the directory containing the HTML and XML files needs
  1257. # to be copied into the plugins directory of eclipse. The name of the directory
  1258. # within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
  1259. # After copying Eclipse needs to be restarted before the help appears.
  1260. # The default value is: NO.
  1261. # This tag requires that the tag GENERATE_HTML is set to YES.
  1262. GENERATE_ECLIPSEHELP = NO
  1263. # A unique identifier for the Eclipse help plugin. When installing the plugin
  1264. # the directory name containing the HTML and XML files should also have this
  1265. # name. Each documentation set should have its own identifier.
  1266. # The default value is: org.doxygen.Project.
  1267. # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
  1268. ECLIPSE_DOC_ID = org.doxygen.Project
  1269. # If you want full control over the layout of the generated HTML pages it might
  1270. # be necessary to disable the index and replace it with your own. The
  1271. # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
  1272. # of each HTML page. A value of NO enables the index and the value YES disables
  1273. # it. Since the tabs in the index contain the same information as the navigation
  1274. # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
  1275. # The default value is: NO.
  1276. # This tag requires that the tag GENERATE_HTML is set to YES.
  1277. DISABLE_INDEX = NO
  1278. # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
  1279. # structure should be generated to display hierarchical information. If the tag
  1280. # value is set to YES, a side panel will be generated containing a tree-like
  1281. # index structure (just like the one that is generated for HTML Help). For this
  1282. # to work a browser that supports JavaScript, DHTML, CSS and frames is required
  1283. # (i.e. any modern browser). Windows users are probably better off using the
  1284. # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
  1285. # further fine tune the look of the index (see "Fine-tuning the output"). As an
  1286. # example, the default style sheet generated by doxygen has an example that
  1287. # shows how to put an image at the root of the tree instead of the PROJECT_NAME.
  1288. # Since the tree basically has the same information as the tab index, you could
  1289. # consider setting DISABLE_INDEX to YES when enabling this option.
  1290. # The default value is: NO.
  1291. # This tag requires that the tag GENERATE_HTML is set to YES.
  1292. GENERATE_TREEVIEW = NO
  1293. # When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the
  1294. # FULL_SIDEBAR option determines if the side bar is limited to only the treeview
  1295. # area (value NO) or if it should extend to the full height of the window (value
  1296. # YES). Setting this to YES gives a layout similar to
  1297. # https://docs.readthedocs.io with more room for contents, but less room for the
  1298. # project logo, title, and description. If either GENERATE_TREEVIEW or
  1299. # DISABLE_INDEX is set to NO, this option has no effect.
  1300. # The default value is: NO.
  1301. # This tag requires that the tag GENERATE_HTML is set to YES.
  1302. FULL_SIDEBAR = NO
  1303. # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
  1304. # doxygen will group on one line in the generated HTML documentation.
  1305. #
  1306. # Note that a value of 0 will completely suppress the enum values from appearing
  1307. # in the overview section.
  1308. # Minimum value: 0, maximum value: 20, default value: 4.
  1309. # This tag requires that the tag GENERATE_HTML is set to YES.
  1310. ENUM_VALUES_PER_LINE = 4
  1311. # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
  1312. # to set the initial width (in pixels) of the frame in which the tree is shown.
  1313. # Minimum value: 0, maximum value: 1500, default value: 250.
  1314. # This tag requires that the tag GENERATE_HTML is set to YES.
  1315. TREEVIEW_WIDTH = 320
  1316. # If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to
  1317. # external symbols imported via tag files in a separate window.
  1318. # The default value is: NO.
  1319. # This tag requires that the tag GENERATE_HTML is set to YES.
  1320. EXT_LINKS_IN_WINDOW = NO
  1321. # If the OBFUSCATE_EMAILS tag is set to YES, doxygen will obfuscate email
  1322. # addresses.
  1323. # The default value is: YES.
  1324. # This tag requires that the tag GENERATE_HTML is set to YES.
  1325. OBFUSCATE_EMAILS = YES
  1326. # If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg
  1327. # tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see
  1328. # https://inkscape.org) to generate formulas as SVG images instead of PNGs for
  1329. # the HTML output. These images will generally look nicer at scaled resolutions.
  1330. # Possible values are: png (the default) and svg (looks nicer but requires the
  1331. # pdf2svg or inkscape tool).
  1332. # The default value is: png.
  1333. # This tag requires that the tag GENERATE_HTML is set to YES.
  1334. HTML_FORMULA_FORMAT = png
  1335. # Use this tag to change the font size of LaTeX formulas included as images in
  1336. # the HTML documentation. When you change the font size after a successful
  1337. # doxygen run you need to manually remove any form_*.png images from the HTML
  1338. # output directory to force them to be regenerated.
  1339. # Minimum value: 8, maximum value: 50, default value: 10.
  1340. # This tag requires that the tag GENERATE_HTML is set to YES.
  1341. FORMULA_FONTSIZE = 10
  1342. # The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands
  1343. # to create new LaTeX commands to be used in formulas as building blocks. See
  1344. # the section "Including formulas" for details.
  1345. FORMULA_MACROFILE =
  1346. # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
  1347. # https://www.mathjax.org) which uses client side JavaScript for the rendering
  1348. # instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
  1349. # installed or if you want to formulas look prettier in the HTML output. When
  1350. # enabled you may also need to install MathJax separately and configure the path
  1351. # to it using the MATHJAX_RELPATH option.
  1352. # The default value is: NO.
  1353. # This tag requires that the tag GENERATE_HTML is set to YES.
  1354. USE_MATHJAX = NO
  1355. # With MATHJAX_VERSION it is possible to specify the MathJax version to be used.
  1356. # Note that the different versions of MathJax have different requirements with
  1357. # regards to the different settings, so it is possible that also other MathJax
  1358. # settings have to be changed when switching between the different MathJax
  1359. # versions.
  1360. # Possible values are: MathJax_2 and MathJax_3.
  1361. # The default value is: MathJax_2.
  1362. # This tag requires that the tag USE_MATHJAX is set to YES.
  1363. MATHJAX_VERSION = MathJax_2
  1364. # When MathJax is enabled you can set the default output format to be used for
  1365. # the MathJax output. For more details about the output format see MathJax
  1366. # version 2 (see:
  1367. # http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3
  1368. # (see:
  1369. # http://docs.mathjax.org/en/latest/web/components/output.html).
  1370. # Possible values are: HTML-CSS (which is slower, but has the best
  1371. # compatibility. This is the name for Mathjax version 2, for MathJax version 3
  1372. # this will be translated into chtml), NativeMML (i.e. MathML. Only supported
  1373. # for NathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This
  1374. # is the name for Mathjax version 3, for MathJax version 2 this will be
  1375. # translated into HTML-CSS) and SVG.
  1376. # The default value is: HTML-CSS.
  1377. # This tag requires that the tag USE_MATHJAX is set to YES.
  1378. MATHJAX_FORMAT = HTML-CSS
  1379. # When MathJax is enabled you need to specify the location relative to the HTML
  1380. # output directory using the MATHJAX_RELPATH option. The destination directory
  1381. # should contain the MathJax.js script. For instance, if the mathjax directory
  1382. # is located at the same level as the HTML output directory, then
  1383. # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
  1384. # Content Delivery Network so you can quickly see the result without installing
  1385. # MathJax. However, it is strongly recommended to install a local copy of
  1386. # MathJax from https://www.mathjax.org before deployment. The default value is:
  1387. # - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2
  1388. # - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3
  1389. # This tag requires that the tag USE_MATHJAX is set to YES.
  1390. MATHJAX_RELPATH = http://www.mathjax.org/mathjax
  1391. # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
  1392. # extension names that should be enabled during MathJax rendering. For example
  1393. # for MathJax version 2 (see
  1394. # https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions):
  1395. # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
  1396. # For example for MathJax version 3 (see
  1397. # http://docs.mathjax.org/en/latest/input/tex/extensions/index.html):
  1398. # MATHJAX_EXTENSIONS = ams
  1399. # This tag requires that the tag USE_MATHJAX is set to YES.
  1400. MATHJAX_EXTENSIONS =
  1401. # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
  1402. # of code that will be used on startup of the MathJax code. See the MathJax site
  1403. # (see:
  1404. # http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an
  1405. # example see the documentation.
  1406. # This tag requires that the tag USE_MATHJAX is set to YES.
  1407. MATHJAX_CODEFILE =
  1408. # When the SEARCHENGINE tag is enabled doxygen will generate a search box for
  1409. # the HTML output. The underlying search engine uses javascript and DHTML and
  1410. # should work on any modern browser. Note that when using HTML help
  1411. # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
  1412. # there is already a search function so this one should typically be disabled.
  1413. # For large projects the javascript based search engine can be slow, then
  1414. # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
  1415. # search using the keyboard; to jump to the search box use <access key> + S
  1416. # (what the <access key> is depends on the OS and browser, but it is typically
  1417. # <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
  1418. # key> to jump into the search results window, the results can be navigated
  1419. # using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
  1420. # the search. The filter options can be selected when the cursor is inside the
  1421. # search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
  1422. # to select a filter and <Enter> or <escape> to activate or cancel the filter
  1423. # option.
  1424. # The default value is: YES.
  1425. # This tag requires that the tag GENERATE_HTML is set to YES.
  1426. SEARCHENGINE = YES
  1427. # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
  1428. # implemented using a web server instead of a web client using JavaScript. There
  1429. # are two flavors of web server based searching depending on the EXTERNAL_SEARCH
  1430. # setting. When disabled, doxygen will generate a PHP script for searching and
  1431. # an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
  1432. # and searching needs to be provided by external tools. See the section
  1433. # "External Indexing and Searching" for details.
  1434. # The default value is: NO.
  1435. # This tag requires that the tag SEARCHENGINE is set to YES.
  1436. SERVER_BASED_SEARCH = NO
  1437. # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
  1438. # script for searching. Instead the search results are written to an XML file
  1439. # which needs to be processed by an external indexer. Doxygen will invoke an
  1440. # external search engine pointed to by the SEARCHENGINE_URL option to obtain the
  1441. # search results.
  1442. #
  1443. # Doxygen ships with an example indexer (doxyindexer) and search engine
  1444. # (doxysearch.cgi) which are based on the open source search engine library
  1445. # Xapian (see:
  1446. # https://xapian.org/).
  1447. #
  1448. # See the section "External Indexing and Searching" for details.
  1449. # The default value is: NO.
  1450. # This tag requires that the tag SEARCHENGINE is set to YES.
  1451. EXTERNAL_SEARCH = NO
  1452. # The SEARCHENGINE_URL should point to a search engine hosted by a web server
  1453. # which will return the search results when EXTERNAL_SEARCH is enabled.
  1454. #
  1455. # Doxygen ships with an example indexer (doxyindexer) and search engine
  1456. # (doxysearch.cgi) which are based on the open source search engine library
  1457. # Xapian (see:
  1458. # https://xapian.org/). See the section "External Indexing and Searching" for
  1459. # details.
  1460. # This tag requires that the tag SEARCHENGINE is set to YES.
  1461. SEARCHENGINE_URL =
  1462. # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
  1463. # search data is written to a file for indexing by an external tool. With the
  1464. # SEARCHDATA_FILE tag the name of this file can be specified.
  1465. # The default file is: searchdata.xml.
  1466. # This tag requires that the tag SEARCHENGINE is set to YES.
  1467. SEARCHDATA_FILE = searchdata.xml
  1468. # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
  1469. # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
  1470. # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
  1471. # projects and redirect the results back to the right project.
  1472. # This tag requires that the tag SEARCHENGINE is set to YES.
  1473. EXTERNAL_SEARCH_ID =
  1474. # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
  1475. # projects other than the one defined by this configuration file, but that are
  1476. # all added to the same external search index. Each project needs to have a
  1477. # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
  1478. # to a relative location where the documentation can be found. The format is:
  1479. # EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
  1480. # This tag requires that the tag SEARCHENGINE is set to YES.
  1481. EXTRA_SEARCH_MAPPINGS =
  1482. #---------------------------------------------------------------------------
  1483. # Configuration options related to the LaTeX output
  1484. #---------------------------------------------------------------------------
  1485. # If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
  1486. # The default value is: YES.
  1487. GENERATE_LATEX = NO
  1488. # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
  1489. # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
  1490. # it.
  1491. # The default directory is: latex.
  1492. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1493. LATEX_OUTPUT = latex
  1494. # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
  1495. # invoked.
  1496. #
  1497. # Note that when not enabling USE_PDFLATEX the default is latex when enabling
  1498. # USE_PDFLATEX the default is pdflatex and when in the later case latex is
  1499. # chosen this is overwritten by pdflatex. For specific output languages the
  1500. # default can have been set differently, this depends on the implementation of
  1501. # the output language.
  1502. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1503. LATEX_CMD_NAME = latex
  1504. # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
  1505. # index for LaTeX.
  1506. # Note: This tag is used in the Makefile / make.bat.
  1507. # See also: LATEX_MAKEINDEX_CMD for the part in the generated output file
  1508. # (.tex).
  1509. # The default file is: makeindex.
  1510. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1511. MAKEINDEX_CMD_NAME = makeindex
  1512. # The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to
  1513. # generate index for LaTeX. In case there is no backslash (\) as first character
  1514. # it will be automatically added in the LaTeX code.
  1515. # Note: This tag is used in the generated output file (.tex).
  1516. # See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat.
  1517. # The default value is: makeindex.
  1518. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1519. LATEX_MAKEINDEX_CMD = makeindex
  1520. # If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
  1521. # documents. This may be useful for small projects and may help to save some
  1522. # trees in general.
  1523. # The default value is: NO.
  1524. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1525. COMPACT_LATEX = NO
  1526. # The PAPER_TYPE tag can be used to set the paper type that is used by the
  1527. # printer.
  1528. # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
  1529. # 14 inches) and executive (7.25 x 10.5 inches).
  1530. # The default value is: a4.
  1531. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1532. PAPER_TYPE = a4
  1533. # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
  1534. # that should be included in the LaTeX output. The package can be specified just
  1535. # by its name or with the correct syntax as to be used with the LaTeX
  1536. # \usepackage command. To get the times font for instance you can specify :
  1537. # EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
  1538. # To use the option intlimits with the amsmath package you can specify:
  1539. # EXTRA_PACKAGES=[intlimits]{amsmath}
  1540. # If left blank no extra packages will be included.
  1541. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1542. EXTRA_PACKAGES =
  1543. # The LATEX_HEADER tag can be used to specify a user-defined LaTeX header for
  1544. # the generated LaTeX document. The header should contain everything until the
  1545. # first chapter. If it is left blank doxygen will generate a standard header. It
  1546. # is highly recommended to start with a default header using
  1547. # doxygen -w latex new_header.tex new_footer.tex new_stylesheet.sty
  1548. # and then modify the file new_header.tex. See also section "Doxygen usage" for
  1549. # information on how to generate the default header that doxygen normally uses.
  1550. #
  1551. # Note: Only use a user-defined header if you know what you are doing!
  1552. # Note: The header is subject to change so you typically have to regenerate the
  1553. # default header when upgrading to a newer version of doxygen. The following
  1554. # commands have a special meaning inside the header (and footer): For a
  1555. # description of the possible markers and block names see the documentation.
  1556. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1557. LATEX_HEADER =
  1558. # The LATEX_FOOTER tag can be used to specify a user-defined LaTeX footer for
  1559. # the generated LaTeX document. The footer should contain everything after the
  1560. # last chapter. If it is left blank doxygen will generate a standard footer. See
  1561. # LATEX_HEADER for more information on how to generate a default footer and what
  1562. # special commands can be used inside the footer. See also section "Doxygen
  1563. # usage" for information on how to generate the default footer that doxygen
  1564. # normally uses. Note: Only use a user-defined footer if you know what you are
  1565. # doing!
  1566. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1567. LATEX_FOOTER =
  1568. # The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
  1569. # LaTeX style sheets that are included after the standard style sheets created
  1570. # by doxygen. Using this option one can overrule certain style aspects. Doxygen
  1571. # will copy the style sheet files to the output directory.
  1572. # Note: The order of the extra style sheet files is of importance (e.g. the last
  1573. # style sheet in the list overrules the setting of the previous ones in the
  1574. # list).
  1575. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1576. LATEX_EXTRA_STYLESHEET =
  1577. # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
  1578. # other source files which should be copied to the LATEX_OUTPUT output
  1579. # directory. Note that the files will be copied as-is; there are no commands or
  1580. # markers available.
  1581. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1582. LATEX_EXTRA_FILES =
  1583. # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
  1584. # prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
  1585. # contain links (just like the HTML output) instead of page references. This
  1586. # makes the output suitable for online browsing using a PDF viewer.
  1587. # The default value is: YES.
  1588. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1589. PDF_HYPERLINKS = NO
  1590. # If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as
  1591. # specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX
  1592. # files. Set this option to YES, to get a higher quality PDF documentation.
  1593. #
  1594. # See also section LATEX_CMD_NAME for selecting the engine.
  1595. # The default value is: YES.
  1596. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1597. USE_PDFLATEX = NO
  1598. # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
  1599. # command to the generated LaTeX files. This will instruct LaTeX to keep running
  1600. # if errors occur, instead of asking the user for help.
  1601. # The default value is: NO.
  1602. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1603. LATEX_BATCHMODE = NO
  1604. # If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
  1605. # index chapters (such as File Index, Compound Index, etc.) in the output.
  1606. # The default value is: NO.
  1607. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1608. LATEX_HIDE_INDICES = NO
  1609. # The LATEX_BIB_STYLE tag can be used to specify the style to use for the
  1610. # bibliography, e.g. plainnat, or ieeetr. See
  1611. # https://en.wikipedia.org/wiki/BibTeX and \cite for more info.
  1612. # The default value is: plain.
  1613. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1614. LATEX_BIB_STYLE = plain
  1615. # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
  1616. # page will contain the date and time when the page was generated. Setting this
  1617. # to NO can help when comparing the output of multiple runs.
  1618. # The default value is: NO.
  1619. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1620. LATEX_TIMESTAMP = NO
  1621. # The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute)
  1622. # path from which the emoji images will be read. If a relative path is entered,
  1623. # it will be relative to the LATEX_OUTPUT directory. If left blank the
  1624. # LATEX_OUTPUT directory will be used.
  1625. # This tag requires that the tag GENERATE_LATEX is set to YES.
  1626. LATEX_EMOJI_DIRECTORY =
  1627. #---------------------------------------------------------------------------
  1628. # Configuration options related to the RTF output
  1629. #---------------------------------------------------------------------------
  1630. # If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
  1631. # RTF output is optimized for Word 97 and may not look too pretty with other RTF
  1632. # readers/editors.
  1633. # The default value is: NO.
  1634. GENERATE_RTF = NO
  1635. # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
  1636. # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
  1637. # it.
  1638. # The default directory is: rtf.
  1639. # This tag requires that the tag GENERATE_RTF is set to YES.
  1640. RTF_OUTPUT = rtf
  1641. # If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
  1642. # documents. This may be useful for small projects and may help to save some
  1643. # trees in general.
  1644. # The default value is: NO.
  1645. # This tag requires that the tag GENERATE_RTF is set to YES.
  1646. COMPACT_RTF = NO
  1647. # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
  1648. # contain hyperlink fields. The RTF file will contain links (just like the HTML
  1649. # output) instead of page references. This makes the output suitable for online
  1650. # browsing using Word or some other Word compatible readers that support those
  1651. # fields.
  1652. #
  1653. # Note: WordPad (write) and others do not support links.
  1654. # The default value is: NO.
  1655. # This tag requires that the tag GENERATE_RTF is set to YES.
  1656. RTF_HYPERLINKS = NO
  1657. # Load stylesheet definitions from file. Syntax is similar to doxygen's
  1658. # configuration file, i.e. a series of assignments. You only have to provide
  1659. # replacements, missing definitions are set to their default value.
  1660. #
  1661. # See also section "Doxygen usage" for information on how to generate the
  1662. # default style sheet that doxygen normally uses.
  1663. # This tag requires that the tag GENERATE_RTF is set to YES.
  1664. RTF_STYLESHEET_FILE =
  1665. # Set optional variables used in the generation of an RTF document. Syntax is
  1666. # similar to doxygen's configuration file. A template extensions file can be
  1667. # generated using doxygen -e rtf extensionFile.
  1668. # This tag requires that the tag GENERATE_RTF is set to YES.
  1669. RTF_EXTENSIONS_FILE =
  1670. #---------------------------------------------------------------------------
  1671. # Configuration options related to the man page output
  1672. #---------------------------------------------------------------------------
  1673. # If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
  1674. # classes and files.
  1675. # The default value is: NO.
  1676. GENERATE_MAN = NO
  1677. # The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
  1678. # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
  1679. # it. A directory man3 will be created inside the directory specified by
  1680. # MAN_OUTPUT.
  1681. # The default directory is: man.
  1682. # This tag requires that the tag GENERATE_MAN is set to YES.
  1683. MAN_OUTPUT = man
  1684. # The MAN_EXTENSION tag determines the extension that is added to the generated
  1685. # man pages. In case the manual section does not start with a number, the number
  1686. # 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
  1687. # optional.
  1688. # The default value is: .3.
  1689. # This tag requires that the tag GENERATE_MAN is set to YES.
  1690. MAN_EXTENSION = .3
  1691. # The MAN_SUBDIR tag determines the name of the directory created within
  1692. # MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
  1693. # MAN_EXTENSION with the initial . removed.
  1694. # This tag requires that the tag GENERATE_MAN is set to YES.
  1695. MAN_SUBDIR =
  1696. # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
  1697. # will generate one additional man file for each entity documented in the real
  1698. # man page(s). These additional files only source the real man page, but without
  1699. # them the man command would be unable to find the correct page.
  1700. # The default value is: NO.
  1701. # This tag requires that the tag GENERATE_MAN is set to YES.
  1702. MAN_LINKS = NO
  1703. #---------------------------------------------------------------------------
  1704. # Configuration options related to the XML output
  1705. #---------------------------------------------------------------------------
  1706. # If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that
  1707. # captures the structure of the code including all documentation.
  1708. # The default value is: NO.
  1709. GENERATE_XML = NO
  1710. # The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
  1711. # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
  1712. # it.
  1713. # The default directory is: xml.
  1714. # This tag requires that the tag GENERATE_XML is set to YES.
  1715. XML_OUTPUT = xml
  1716. # If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
  1717. # listings (including syntax highlighting and cross-referencing information) to
  1718. # the XML output. Note that enabling this will significantly increase the size
  1719. # of the XML output.
  1720. # The default value is: YES.
  1721. # This tag requires that the tag GENERATE_XML is set to YES.
  1722. XML_PROGRAMLISTING = YES
  1723. # If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include
  1724. # namespace members in file scope as well, matching the HTML output.
  1725. # The default value is: NO.
  1726. # This tag requires that the tag GENERATE_XML is set to YES.
  1727. XML_NS_MEMB_FILE_SCOPE = NO
  1728. #---------------------------------------------------------------------------
  1729. # Configuration options related to the DOCBOOK output
  1730. #---------------------------------------------------------------------------
  1731. # If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files
  1732. # that can be used to generate PDF.
  1733. # The default value is: NO.
  1734. GENERATE_DOCBOOK = NO
  1735. # The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
  1736. # If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
  1737. # front of it.
  1738. # The default directory is: docbook.
  1739. # This tag requires that the tag GENERATE_DOCBOOK is set to YES.
  1740. DOCBOOK_OUTPUT = docbook
  1741. #---------------------------------------------------------------------------
  1742. # Configuration options for the AutoGen Definitions output
  1743. #---------------------------------------------------------------------------
  1744. # If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an
  1745. # AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures
  1746. # the structure of the code including all documentation. Note that this feature
  1747. # is still experimental and incomplete at the moment.
  1748. # The default value is: NO.
  1749. GENERATE_AUTOGEN_DEF = NO
  1750. #---------------------------------------------------------------------------
  1751. # Configuration options related to the Perl module output
  1752. #---------------------------------------------------------------------------
  1753. # If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module
  1754. # file that captures the structure of the code including all documentation.
  1755. #
  1756. # Note that this feature is still experimental and incomplete at the moment.
  1757. # The default value is: NO.
  1758. GENERATE_PERLMOD = NO
  1759. # If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
  1760. # Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
  1761. # output from the Perl module output.
  1762. # The default value is: NO.
  1763. # This tag requires that the tag GENERATE_PERLMOD is set to YES.
  1764. PERLMOD_LATEX = NO
  1765. # If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
  1766. # formatted so it can be parsed by a human reader. This is useful if you want to
  1767. # understand what is going on. On the other hand, if this tag is set to NO, the
  1768. # size of the Perl module output will be much smaller and Perl will parse it
  1769. # just the same.
  1770. # The default value is: YES.
  1771. # This tag requires that the tag GENERATE_PERLMOD is set to YES.
  1772. PERLMOD_PRETTY = YES
  1773. # The names of the make variables in the generated doxyrules.make file are
  1774. # prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
  1775. # so different doxyrules.make files included by the same Makefile don't
  1776. # overwrite each other's variables.
  1777. # This tag requires that the tag GENERATE_PERLMOD is set to YES.
  1778. PERLMOD_MAKEVAR_PREFIX =
  1779. #---------------------------------------------------------------------------
  1780. # Configuration options related to the preprocessor
  1781. #---------------------------------------------------------------------------
  1782. # If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all
  1783. # C-preprocessor directives found in the sources and include files.
  1784. # The default value is: YES.
  1785. ENABLE_PREPROCESSING = YES
  1786. # If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
  1787. # in the source code. If set to NO, only conditional compilation will be
  1788. # performed. Macro expansion can be done in a controlled way by setting
  1789. # EXPAND_ONLY_PREDEF to YES.
  1790. # The default value is: NO.
  1791. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1792. MACRO_EXPANSION = NO
  1793. # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
  1794. # the macro expansion is limited to the macros specified with the PREDEFINED and
  1795. # EXPAND_AS_DEFINED tags.
  1796. # The default value is: NO.
  1797. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1798. EXPAND_ONLY_PREDEF = NO
  1799. # If the SEARCH_INCLUDES tag is set to YES, the include files in the
  1800. # INCLUDE_PATH will be searched if a #include is found.
  1801. # The default value is: YES.
  1802. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1803. SEARCH_INCLUDES = YES
  1804. # The INCLUDE_PATH tag can be used to specify one or more directories that
  1805. # contain include files that are not input files but should be processed by the
  1806. # preprocessor. Note that the INCLUDE_PATH is not recursive, so the setting of
  1807. # RECURSIVE has no effect here.
  1808. # This tag requires that the tag SEARCH_INCLUDES is set to YES.
  1809. INCLUDE_PATH =
  1810. # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
  1811. # patterns (like *.h and *.hpp) to filter out the header-files in the
  1812. # directories. If left blank, the patterns specified with FILE_PATTERNS will be
  1813. # used.
  1814. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1815. INCLUDE_FILE_PATTERNS =
  1816. # The PREDEFINED tag can be used to specify one or more macro names that are
  1817. # defined before the preprocessor is started (similar to the -D option of e.g.
  1818. # gcc). The argument of the tag is a list of macros of the form: name or
  1819. # name=definition (no spaces). If the definition and the "=" are omitted, "=1"
  1820. # is assumed. To prevent a macro definition from being undefined via #undef or
  1821. # recursively expanded use the := operator instead of the = operator.
  1822. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1823. PREDEFINED = WIN32=1 \
  1824. JUCE_WIN32=1 \
  1825. JUCE_MAC=1 \
  1826. JUCE_IOS=1 \
  1827. JUCE_ANDROID=1 \
  1828. JUCE_LINUX=1 \
  1829. DOXYGEN=1 \
  1830. JUCE_COMPILER_SUPPORTS_NOEXCEPT=1 \
  1831. JUCE_COMPILER_SUPPORTS_NULLPTR=1 \
  1832. JUCE_COMPILER_SUPPORTS_MOVE_SEMANTICS=1 \
  1833. JUCE_COMPILER_SUPPORTS_INITIALIZER_LISTS=1 \
  1834. JUCE_COMPILER_SUPPORTS_VARIADIC_TEMPLATES=1 \
  1835. JUCE_COMPILER_SUPPORTS_OVERRIDE_AND_FINAL=1 \
  1836. JUCE_COMPILER_SUPPORTS_LAMBDAS=1 \
  1837. JUCE_MODAL_LOOPS_PERMITTED=1
  1838. # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
  1839. # tag can be used to specify a list of macro names that should be expanded. The
  1840. # macro definition that is found in the sources will be used. Use the PREDEFINED
  1841. # tag if you want to use a different macro definition that overrules the
  1842. # definition found in the source code.
  1843. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1844. EXPAND_AS_DEFINED =
  1845. # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
  1846. # remove all references to function-like macros that are alone on a line, have
  1847. # an all uppercase name, and do not end with a semicolon. Such function macros
  1848. # are typically used for boiler-plate code, and will confuse the parser if not
  1849. # removed.
  1850. # The default value is: YES.
  1851. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
  1852. SKIP_FUNCTION_MACROS = YES
  1853. #---------------------------------------------------------------------------
  1854. # Configuration options related to external references
  1855. #---------------------------------------------------------------------------
  1856. # The TAGFILES tag can be used to specify one or more tag files. For each tag
  1857. # file the location of the external documentation should be added. The format of
  1858. # a tag file without this location is as follows:
  1859. # TAGFILES = file1 file2 ...
  1860. # Adding location for the tag files is done as follows:
  1861. # TAGFILES = file1=loc1 "file2 = loc2" ...
  1862. # where loc1 and loc2 can be relative or absolute paths or URLs. See the
  1863. # section "Linking to external documentation" for more information about the use
  1864. # of tag files.
  1865. # Note: Each tag file must have a unique name (where the name does NOT include
  1866. # the path). If a tag file is not located in the directory in which doxygen is
  1867. # run, you must also specify the path to the tagfile here.
  1868. TAGFILES =
  1869. # When a file name is specified after GENERATE_TAGFILE, doxygen will create a
  1870. # tag file that is based on the input files it reads. See section "Linking to
  1871. # external documentation" for more information about the usage of tag files.
  1872. GENERATE_TAGFILE = doc/juce.tag
  1873. # If the ALLEXTERNALS tag is set to YES, all external class will be listed in
  1874. # the class index. If set to NO, only the inherited external classes will be
  1875. # listed.
  1876. # The default value is: NO.
  1877. ALLEXTERNALS = NO
  1878. # If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed
  1879. # in the modules index. If set to NO, only the current project's groups will be
  1880. # listed.
  1881. # The default value is: YES.
  1882. EXTERNAL_GROUPS = YES
  1883. # If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in
  1884. # the related pages index. If set to NO, only the current project's pages will
  1885. # be listed.
  1886. # The default value is: YES.
  1887. EXTERNAL_PAGES = YES
  1888. #---------------------------------------------------------------------------
  1889. # Configuration options related to the dot tool
  1890. #---------------------------------------------------------------------------
  1891. # You can include diagrams made with dia in doxygen documentation. Doxygen will
  1892. # then run dia to produce the diagram and insert it in the documentation. The
  1893. # DIA_PATH tag allows you to specify the directory where the dia binary resides.
  1894. # If left empty dia is assumed to be found in the default search path.
  1895. DIA_PATH =
  1896. # If set to YES the inheritance and collaboration graphs will hide inheritance
  1897. # and usage relations if the target is undocumented or is not a class.
  1898. # The default value is: YES.
  1899. HIDE_UNDOC_RELATIONS = YES
  1900. # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
  1901. # available from the path. This tool is part of Graphviz (see:
  1902. # http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
  1903. # Bell Labs. The other options in this section have no effect if this option is
  1904. # set to NO
  1905. # The default value is: NO.
  1906. HAVE_DOT = YES
  1907. # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
  1908. # to run in parallel. When set to 0 doxygen will base this on the number of
  1909. # processors available in the system. You can set it explicitly to a value
  1910. # larger than 0 to get control over the balance between CPU load and processing
  1911. # speed.
  1912. # Minimum value: 0, maximum value: 32, default value: 0.
  1913. # This tag requires that the tag HAVE_DOT is set to YES.
  1914. DOT_NUM_THREADS = 0
  1915. # DOT_COMMON_ATTR is common attributes for nodes, edges and labels of
  1916. # subgraphs. When you want a differently looking font in the dot files that
  1917. # doxygen generates you can specify fontname, fontcolor and fontsize attributes.
  1918. # For details please see <a href=https://graphviz.org/doc/info/attrs.html>Node,
  1919. # Edge and Graph Attributes specification</a> You need to make sure dot is able
  1920. # to find the font, which can be done by putting it in a standard location or by
  1921. # setting the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the
  1922. # directory containing the font. Default graphviz fontsize is 14.
  1923. # The default value is: fontname=Helvetica,fontsize=10.
  1924. # This tag requires that the tag HAVE_DOT is set to YES.
  1925. DOT_COMMON_ATTR = "fontname=Helvetica,fontsize=10"
  1926. # DOT_EDGE_ATTR is concatenated with DOT_COMMON_ATTR. For elegant style you can
  1927. # add 'arrowhead=open, arrowtail=open, arrowsize=0.5'. <a
  1928. # href=https://graphviz.org/doc/info/arrows.html>Complete documentation about
  1929. # arrows shapes.</a>
  1930. # The default value is: labelfontname=Helvetica,labelfontsize=10.
  1931. # This tag requires that the tag HAVE_DOT is set to YES.
  1932. DOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=10"
  1933. # DOT_NODE_ATTR is concatenated with DOT_COMMON_ATTR. For view without boxes
  1934. # around nodes set 'shape=plain' or 'shape=plaintext' <a
  1935. # href=https://www.graphviz.org/doc/info/shapes.html>Shapes specification</a>
  1936. # The default value is: shape=box,height=0.2,width=0.4.
  1937. # This tag requires that the tag HAVE_DOT is set to YES.
  1938. DOT_NODE_ATTR = "shape=box,height=0.2,width=0.4"
  1939. # You can set the path where dot can find font specified with fontname in
  1940. # DOT_COMMON_ATTR and others dot attributes.
  1941. # This tag requires that the tag HAVE_DOT is set to YES.
  1942. DOT_FONTPATH =
  1943. # If the CLASS_GRAPH tag is set to YES (or GRAPH) then doxygen will generate a
  1944. # graph for each documented class showing the direct and indirect inheritance
  1945. # relations. In case HAVE_DOT is set as well dot will be used to draw the graph,
  1946. # otherwise the built-in generator will be used. If the CLASS_GRAPH tag is set
  1947. # to TEXT the direct and indirect inheritance relations will be shown as texts /
  1948. # links.
  1949. # Possible values are: NO, YES, TEXT and GRAPH.
  1950. # The default value is: YES.
  1951. CLASS_GRAPH = YES
  1952. # If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
  1953. # graph for each documented class showing the direct and indirect implementation
  1954. # dependencies (inheritance, containment, and class references variables) of the
  1955. # class with other documented classes.
  1956. # The default value is: YES.
  1957. # This tag requires that the tag HAVE_DOT is set to YES.
  1958. COLLABORATION_GRAPH = NO
  1959. # If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
  1960. # groups, showing the direct groups dependencies. See also the chapter Grouping
  1961. # in the manual.
  1962. # The default value is: YES.
  1963. # This tag requires that the tag HAVE_DOT is set to YES.
  1964. GROUP_GRAPHS = NO
  1965. # If the UML_LOOK tag is set to YES, doxygen will generate inheritance and
  1966. # collaboration diagrams in a style similar to the OMG's Unified Modeling
  1967. # Language.
  1968. # The default value is: NO.
  1969. # This tag requires that the tag HAVE_DOT is set to YES.
  1970. UML_LOOK = NO
  1971. # If the UML_LOOK tag is enabled, the fields and methods are shown inside the
  1972. # class node. If there are many fields or methods and many nodes the graph may
  1973. # become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
  1974. # number of items for each type to make the size more manageable. Set this to 0
  1975. # for no limit. Note that the threshold may be exceeded by 50% before the limit
  1976. # is enforced. So when you set the threshold to 10, up to 15 fields may appear,
  1977. # but if the number exceeds 15, the total amount of fields shown is limited to
  1978. # 10.
  1979. # Minimum value: 0, maximum value: 100, default value: 10.
  1980. # This tag requires that the tag UML_LOOK is set to YES.
  1981. UML_LIMIT_NUM_FIELDS = 10
  1982. # If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and
  1983. # methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS
  1984. # tag is set to YES, doxygen will add type and arguments for attributes and
  1985. # methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen
  1986. # will not generate fields with class member information in the UML graphs. The
  1987. # class diagrams will look similar to the default class diagrams but using UML
  1988. # notation for the relationships.
  1989. # Possible values are: NO, YES and NONE.
  1990. # The default value is: NO.
  1991. # This tag requires that the tag UML_LOOK is set to YES.
  1992. DOT_UML_DETAILS = NO
  1993. # The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters
  1994. # to display on a single line. If the actual line length exceeds this threshold
  1995. # significantly it will wrapped across multiple lines. Some heuristics are apply
  1996. # to avoid ugly line breaks.
  1997. # Minimum value: 0, maximum value: 1000, default value: 17.
  1998. # This tag requires that the tag HAVE_DOT is set to YES.
  1999. DOT_WRAP_THRESHOLD = 17
  2000. # If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
  2001. # collaboration graphs will show the relations between templates and their
  2002. # instances.
  2003. # The default value is: NO.
  2004. # This tag requires that the tag HAVE_DOT is set to YES.
  2005. TEMPLATE_RELATIONS = NO
  2006. # If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
  2007. # YES then doxygen will generate a graph for each documented file showing the
  2008. # direct and indirect include dependencies of the file with other documented
  2009. # files.
  2010. # The default value is: YES.
  2011. # This tag requires that the tag HAVE_DOT is set to YES.
  2012. INCLUDE_GRAPH = NO
  2013. # If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
  2014. # set to YES then doxygen will generate a graph for each documented file showing
  2015. # the direct and indirect include dependencies of the file with other documented
  2016. # files.
  2017. # The default value is: YES.
  2018. # This tag requires that the tag HAVE_DOT is set to YES.
  2019. INCLUDED_BY_GRAPH = NO
  2020. # If the CALL_GRAPH tag is set to YES then doxygen will generate a call
  2021. # dependency graph for every global function or class method.
  2022. #
  2023. # Note that enabling this option will significantly increase the time of a run.
  2024. # So in most cases it will be better to enable call graphs for selected
  2025. # functions only using the \callgraph command. Disabling a call graph can be
  2026. # accomplished by means of the command \hidecallgraph.
  2027. # The default value is: NO.
  2028. # This tag requires that the tag HAVE_DOT is set to YES.
  2029. CALL_GRAPH = NO
  2030. # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
  2031. # dependency graph for every global function or class method.
  2032. #
  2033. # Note that enabling this option will significantly increase the time of a run.
  2034. # So in most cases it will be better to enable caller graphs for selected
  2035. # functions only using the \callergraph command. Disabling a caller graph can be
  2036. # accomplished by means of the command \hidecallergraph.
  2037. # The default value is: NO.
  2038. # This tag requires that the tag HAVE_DOT is set to YES.
  2039. CALLER_GRAPH = NO
  2040. # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
  2041. # hierarchy of all classes instead of a textual one.
  2042. # The default value is: YES.
  2043. # This tag requires that the tag HAVE_DOT is set to YES.
  2044. GRAPHICAL_HIERARCHY = NO
  2045. # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
  2046. # dependencies a directory has on other directories in a graphical way. The
  2047. # dependency relations are determined by the #include relations between the
  2048. # files in the directories.
  2049. # The default value is: YES.
  2050. # This tag requires that the tag HAVE_DOT is set to YES.
  2051. DIRECTORY_GRAPH = NO
  2052. # The DIR_GRAPH_MAX_DEPTH tag can be used to limit the maximum number of levels
  2053. # of child directories generated in directory dependency graphs by dot.
  2054. # Minimum value: 1, maximum value: 25, default value: 1.
  2055. # This tag requires that the tag DIRECTORY_GRAPH is set to YES.
  2056. DIR_GRAPH_MAX_DEPTH = 1
  2057. # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
  2058. # generated by dot. For an explanation of the image formats see the section
  2059. # output formats in the documentation of the dot tool (Graphviz (see:
  2060. # http://www.graphviz.org/)).
  2061. # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
  2062. # to make the SVG files visible in IE 9+ (other browsers do not have this
  2063. # requirement).
  2064. # Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
  2065. # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
  2066. # png:gdiplus:gdiplus.
  2067. # The default value is: png.
  2068. # This tag requires that the tag HAVE_DOT is set to YES.
  2069. DOT_IMAGE_FORMAT = svg
  2070. # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
  2071. # enable generation of interactive SVG images that allow zooming and panning.
  2072. #
  2073. # Note that this requires a modern browser other than Internet Explorer. Tested
  2074. # and working are Firefox, Chrome, Safari, and Opera.
  2075. # Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
  2076. # the SVG files visible. Older versions of IE do not have SVG support.
  2077. # The default value is: NO.
  2078. # This tag requires that the tag HAVE_DOT is set to YES.
  2079. INTERACTIVE_SVG = NO
  2080. # The DOT_PATH tag can be used to specify the path where the dot tool can be
  2081. # found. If left blank, it is assumed the dot tool can be found in the path.
  2082. # This tag requires that the tag HAVE_DOT is set to YES.
  2083. DOT_PATH =
  2084. # The DOTFILE_DIRS tag can be used to specify one or more directories that
  2085. # contain dot files that are included in the documentation (see the \dotfile
  2086. # command).
  2087. # This tag requires that the tag HAVE_DOT is set to YES.
  2088. DOTFILE_DIRS =
  2089. # The MSCFILE_DIRS tag can be used to specify one or more directories that
  2090. # contain msc files that are included in the documentation (see the \mscfile
  2091. # command).
  2092. MSCFILE_DIRS =
  2093. # The DIAFILE_DIRS tag can be used to specify one or more directories that
  2094. # contain dia files that are included in the documentation (see the \diafile
  2095. # command).
  2096. DIAFILE_DIRS =
  2097. # When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the
  2098. # path where java can find the plantuml.jar file or to the filename of jar file
  2099. # to be used. If left blank, it is assumed PlantUML is not used or called during
  2100. # a preprocessing step. Doxygen will generate a warning when it encounters a
  2101. # \startuml command in this case and will not generate output for the diagram.
  2102. PLANTUML_JAR_PATH =
  2103. # When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a
  2104. # configuration file for plantuml.
  2105. PLANTUML_CFG_FILE =
  2106. # When using plantuml, the specified paths are searched for files specified by
  2107. # the !include statement in a plantuml block.
  2108. PLANTUML_INCLUDE_PATH =
  2109. # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
  2110. # that will be shown in the graph. If the number of nodes in a graph becomes
  2111. # larger than this value, doxygen will truncate the graph, which is visualized
  2112. # by representing a node as a red box. Note that doxygen if the number of direct
  2113. # children of the root node in a graph is already larger than
  2114. # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
  2115. # the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
  2116. # Minimum value: 0, maximum value: 10000, default value: 50.
  2117. # This tag requires that the tag HAVE_DOT is set to YES.
  2118. DOT_GRAPH_MAX_NODES = 50
  2119. # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
  2120. # generated by dot. A depth value of 3 means that only nodes reachable from the
  2121. # root by following a path via at most 3 edges will be shown. Nodes that lay
  2122. # further from the root node will be omitted. Note that setting this option to 1
  2123. # or 2 may greatly reduce the computation time needed for large code bases. Also
  2124. # note that the size of a graph can be further restricted by
  2125. # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
  2126. # Minimum value: 0, maximum value: 1000, default value: 0.
  2127. # This tag requires that the tag HAVE_DOT is set to YES.
  2128. MAX_DOT_GRAPH_DEPTH = 0
  2129. # Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
  2130. # files in one run (i.e. multiple -o and -T options on the command line). This
  2131. # makes dot run faster, but since only newer versions of dot (>1.8.10) support
  2132. # this, this feature is disabled by default.
  2133. # The default value is: NO.
  2134. # This tag requires that the tag HAVE_DOT is set to YES.
  2135. DOT_MULTI_TARGETS = NO
  2136. # If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
  2137. # explaining the meaning of the various boxes and arrows in the dot generated
  2138. # graphs.
  2139. # Note: This tag requires that UML_LOOK isn't set, i.e. the doxygen internal
  2140. # graphical representation for inheritance and collaboration diagrams is used.
  2141. # The default value is: YES.
  2142. # This tag requires that the tag HAVE_DOT is set to YES.
  2143. GENERATE_LEGEND = NO
  2144. # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate
  2145. # files that are used to generate the various graphs.
  2146. #
  2147. # Note: This setting is not only used for dot files but also for msc temporary
  2148. # files.
  2149. # The default value is: YES.
  2150. DOT_CLEANUP = YES