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.

2789 lines
123KB

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