module Language.Drasil.Code.Imperative.Doxygen.Import (
makeDoxConfig, yes, no
) where
import Utils.Drasil (blank)
import GOOL.Drasil (GOOLState, headers, mainMod)
import Language.Drasil.Choices (Verbosity(..))
import Data.List (intersperse, nub)
import Data.Maybe (maybeToList)
import Control.Lens ((^.))
import Text.PrettyPrint.HughesPJ (Doc, (<+>), text, hcat, vcat)
import Utils.Drasil.Document ((+:+.))
type OptimizeChoice = Doc
type ProjName = String
yes, no, defaultValSentence :: Doc
yes :: Doc
yes = String -> Doc
text "YES"
no :: Doc
no = String -> Doc
text "NO"
defaultValSentence :: Doc
defaultValSentence = String -> Doc
text "# The default value is: "
verbosityToDoc :: Verbosity -> Doc
verbosityToDoc :: Verbosity -> Doc
verbosityToDoc Verbose = Doc
no
verbosityToDoc Quiet = Doc
yes
defNo, defYes :: Doc
defNo :: Doc
defNo = Doc
defaultValSentence Doc -> Doc -> Doc
+:+. Doc
no
defYes :: Doc
defYes = Doc
defaultValSentence Doc -> Doc -> Doc
+:+. Doc
yes
makeDoxConfig :: ProjName -> GOOLState -> OptimizeChoice -> Verbosity -> Doc
makeDoxConfig :: String -> GOOLState -> Doc -> Verbosity -> Doc
makeDoxConfig prog :: String
prog s :: GOOLState
s opt :: Doc
opt v :: Verbosity
v =
let fs :: [String]
fs = [String] -> [String]
forall a. Eq a => [a] -> [a]
nub (GOOLState
s GOOLState -> Getting [String] GOOLState [String] -> [String]
forall s a. s -> Getting a s a -> a
^. Getting [String] GOOLState [String]
Lens' GOOLState [String]
headers [String] -> [String] -> [String]
forall a. [a] -> [a] -> [a]
++ Maybe String -> [String]
forall a. Maybe a -> [a]
maybeToList (GOOLState
s GOOLState
-> Getting (Maybe String) GOOLState (Maybe String) -> Maybe String
forall s a. s -> Getting a s a -> a
^. Getting (Maybe String) GOOLState (Maybe String)
Lens' GOOLState (Maybe String)
mainMod))
in [Doc] -> Doc
vcat [
String -> Doc
text "# Doxyfile 1.8.15",
Doc
blank,
String -> Doc
text "# This file describes the settings to be used by the documentation system",
String -> Doc
text "# doxygen (www.doxygen.org) for a project.",
String -> Doc
text "#",
String -> Doc
text "# All text after a double hash (##) is considered a comment and is placed in",
String -> Doc
text "# front of the TAG it is preceding.",
String -> Doc
text "#",
String -> Doc
text "# All text after a single hash (#) is considered a comment and will be ignored.",
String -> Doc
text "# The format is:",
String -> Doc
text "# TAG = value [value, ...]",
String -> Doc
text "# For lists, items can also be appended using:",
String -> Doc
text "# TAG += value [value, ...]",
String -> Doc
text "# Values that contain spaces should be placed between quotes (\\\" \\\").",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Project related configuration options",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# This tag specifies the encoding used for all characters in the configuration",
String -> Doc
text "# file that follow. The default is UTF-8 which is also the encoding used for all",
String -> Doc
text "# text before the first occurrence of this tag. Doxygen uses libiconv (or the",
String -> Doc
text "# iconv built into libc) for the transcoding. See",
String -> Doc
text "# https://www.gnu.org/software/libiconv/ for the list of possible encodings.",
String -> Doc
text "# The default value is: UTF-8.",
Doc
blank,
String -> Doc
text "DOXYFILE_ENCODING = UTF-8",
Doc
blank,
String -> Doc
text "# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by",
String -> Doc
text "# double-quotes, unless you are using Doxywizard) that should identify the",
String -> Doc
text "# project for which the documentation is generated. This name is used in the",
String -> Doc
text "# title of most generated pages and in a few other places.",
String -> Doc
text "# The default value is: My Project.",
Doc
blank,
String -> Doc
text (String -> Doc) -> String -> Doc
forall a b. (a -> b) -> a -> b
$ "PROJECT_NAME = \"" String -> String -> String
forall a. [a] -> [a] -> [a]
++ String
prog String -> String -> String
forall a. [a] -> [a] -> [a]
++ "\"",
Doc
blank,
String -> Doc
text "# The PROJECT_NUMBER tag can be used to enter a project or revision number. This",
String -> Doc
text "# could be handy for archiving the generated documentation or if some version",
String -> Doc
text "# control system is used.",
Doc
blank,
String -> Doc
text "PROJECT_NUMBER =",
Doc
blank,
String -> Doc
text "# Using the PROJECT_BRIEF tag one can provide an optional one line description",
String -> Doc
text "# for a project that appears at the top of each page and should give viewer a",
String -> Doc
text "# quick idea about the purpose of the project. Keep the description short.",
Doc
blank,
String -> Doc
text "PROJECT_BRIEF =",
Doc
blank,
String -> Doc
text "# With the PROJECT_LOGO tag one can specify a logo or an icon that is included",
String -> Doc
text "# in the documentation. The maximum height of the logo should not exceed 55",
String -> Doc
text "# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy",
String -> Doc
text "# the logo to the output directory.",
Doc
blank,
String -> Doc
text "PROJECT_LOGO =",
Doc
blank,
String -> Doc
text "# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path",
String -> Doc
text "# into which the generated documentation will be written. If a relative path is",
String -> Doc
text "# entered, it will be relative to the location where doxygen was started. If",
String -> Doc
text "# left blank the current directory will be used.",
Doc
blank,
String -> Doc
text "OUTPUT_DIRECTORY =",
Doc
blank,
String -> Doc
text "# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-",
String -> Doc
text "# directories (in 2 levels) under the output directory of each output format and",
String -> Doc
text "# will distribute the generated files over these directories. Enabling this",
String -> Doc
text "# option can be useful when feeding doxygen a huge amount of source files, where",
String -> Doc
text "# putting all generated files in the same directory would otherwise causes",
String -> Doc
text "# performance problems for the file system.",
Doc
defNo,
Doc
blank,
String -> Doc
text "CREATE_SUBDIRS = NO",
Doc
blank,
String -> Doc
text "# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII",
String -> Doc
text "# characters to appear in the names of generated files. If set to NO, non-ASCII",
String -> Doc
text "# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode",
String -> Doc
text "# U+3044.",
Doc
defNo,
Doc
blank,
String -> Doc
text "ALLOW_UNICODE_NAMES = NO",
Doc
blank,
String -> Doc
text "# The OUTPUT_LANGUAGE tag is used to specify the language in which all",
String -> Doc
text "# documentation generated by doxygen is written. Doxygen will use this",
String -> Doc
text "# information to generate all constant output in the proper language.",
String -> Doc
text "# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,",
String -> Doc
text "# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),",
String -> Doc
text "# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,",
String -> Doc
text "# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),",
String -> Doc
text "# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,",
String -> Doc
text "# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,",
String -> Doc
text "# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,",
String -> Doc
text "# Ukrainian and Vietnamese.",
String -> Doc
text "# The default value is: English.",
Doc
blank,
String -> Doc
text "OUTPUT_LANGUAGE = English",
Doc
blank,
String -> Doc
text "# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all",
String -> Doc
text "# documentation generated by doxygen is written. Doxygen will use this",
String -> Doc
text "# information to generate all generated output in the proper direction.",
String -> Doc
text "# Possible values are: None, LTR, RTL and Context.",
String -> Doc
text "# The default value is: None.",
Doc
blank,
String -> Doc
text "OUTPUT_TEXT_DIRECTION = None",
Doc
blank,
String -> Doc
text "# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member",
String -> Doc
text "# descriptions after the members that are listed in the file and class",
String -> Doc
text "# documentation (similar to Javadoc). Set to NO to disable this.",
Doc
defYes,
Doc
blank,
String -> Doc
text "BRIEF_MEMBER_DESC = YES",
Doc
blank,
String -> Doc
text "# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief",
String -> Doc
text "# description of a member or function before the detailed description",
String -> Doc
text "#",
String -> Doc
text "# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the",
String -> Doc
text "# brief descriptions will be completely suppressed.",
Doc
defYes,
Doc
blank,
String -> Doc
text "REPEAT_BRIEF = YES",
Doc
blank,
String -> Doc
text "# This tag implements a quasi-intelligent brief description abbreviator that is",
String -> Doc
text "# used to form the text in various listings. Each string in this list, if found",
String -> Doc
text "# as the leading text of the brief description, will be stripped from the text",
String -> Doc
text "# and the result, after processing the whole list, is used as the annotated",
String -> Doc
text "# text. Otherwise, the brief description is used as-is. If left blank, the",
String -> Doc
text "# following values are used ($name is automatically replaced with the name of",
String -> Doc
text "# the entity):The $name class, The $name widget, The $name file, is, provides,",
String -> Doc
text "# specifies, contains, represents, a, an and the.",
Doc
blank,
String -> Doc
text "ABBREVIATE_BRIEF = \"The $name class\" \\",
String -> Doc
text " \"The $name widget\" \\",
String -> Doc
text " \"The $name file\" \\",
String -> Doc
text " is \\",
String -> Doc
text " provides \\",
String -> Doc
text " specifies \\",
String -> Doc
text " contains \\",
String -> Doc
text " represents \\",
String -> Doc
text " a \\",
String -> Doc
text " an \\",
String -> Doc
text " the",
Doc
blank,
String -> Doc
text "# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then",
String -> Doc
text "# doxygen will generate a detailed section even if there is only a brief",
String -> Doc
text "# description.",
Doc
defNo,
Doc
blank,
String -> Doc
text "ALWAYS_DETAILED_SEC = NO",
Doc
blank,
String -> Doc
text "# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all",
String -> Doc
text "# inherited members of a class in the documentation of that class as if those",
String -> Doc
text "# members were ordinary class members. Constructors, destructors and assignment",
String -> Doc
text "# operators of the base classes will not be shown.",
Doc
defNo,
Doc
blank,
String -> Doc
text "INLINE_INHERITED_MEMB = NO",
Doc
blank,
String -> Doc
text "# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path",
String -> Doc
text "# before files name in the file list and in the header files. If set to NO the",
String -> Doc
text "# shortest path that makes the file name unique will be used",
Doc
defYes,
Doc
blank,
String -> Doc
text "FULL_PATH_NAMES = YES",
Doc
blank,
String -> Doc
text "# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.",
String -> Doc
text "# Stripping is only done if one of the specified strings matches the left-hand",
String -> Doc
text "# part of the path. The tag can be used to show relative paths in the file list.",
String -> Doc
text "# If left blank the directory from which doxygen is run is used as the path to",
String -> Doc
text "# strip.",
String -> Doc
text "#",
String -> Doc
text "# Note that you can specify absolute paths here, but also relative paths, which",
String -> Doc
text "# will be relative from the directory where doxygen is started.",
String -> Doc
text "# This tag requires that the tag FULL_PATH_NAMES is set to YES.",
Doc
blank,
String -> Doc
text "STRIP_FROM_PATH =",
Doc
blank,
String -> Doc
text "# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the",
String -> Doc
text "# path mentioned in the documentation of a class, which tells the reader which",
String -> Doc
text "# header file to include in order to use a class. If left blank only the name of",
String -> Doc
text "# the header file containing the class definition is used. Otherwise one should",
String -> Doc
text "# specify the list of include paths that are normally passed to the compiler",
String -> Doc
text "# using the -I flag.",
Doc
blank,
String -> Doc
text "STRIP_FROM_INC_PATH =",
Doc
blank,
String -> Doc
text "# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but",
String -> Doc
text "# less readable) file names. This can be useful is your file systems doesn't",
String -> Doc
text "# support long names like on DOS, Mac, or CD-ROM.",
Doc
defNo,
Doc
blank,
String -> Doc
text "SHORT_NAMES = NO",
Doc
blank,
String -> Doc
text "# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the",
String -> Doc
text "# first line (until the first dot) of a Javadoc-style comment as the brief",
String -> Doc
text "# description. If set to NO, the Javadoc-style will behave just like regular Qt-",
String -> Doc
text "# style comments (thus requiring an explicit @brief command for a brief",
String -> Doc
text "# description.)",
Doc
defNo,
Doc
blank,
String -> Doc
text "JAVADOC_AUTOBRIEF = NO",
Doc
blank,
String -> Doc
text "# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first",
String -> Doc
text "# line (until the first dot) of a Qt-style comment as the brief description. If",
String -> Doc
text "# set to NO, the Qt-style will behave just like regular Qt-style comments (thus",
String -> Doc
text "# requiring an explicit \\brief command for a brief description.)",
Doc
defNo,
Doc
blank,
String -> Doc
text "QT_AUTOBRIEF = NO",
Doc
blank,
String -> Doc
text "# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a",
String -> Doc
text "# multi-line C++ special comment block (i.e. a block of //! or /// comments) as",
String -> Doc
text "# a brief description. This used to be the default behavior. The new default is",
String -> Doc
text "# to treat a multi-line C++ comment block as a detailed description. Set this",
String -> Doc
text "# tag to YES if you prefer the old behavior instead.",
String -> Doc
text "#",
String -> Doc
text "# Note that setting this tag to YES also means that rational rose comments are",
String -> Doc
text "# not recognized any more.",
Doc
defNo,
Doc
blank,
String -> Doc
text "MULTILINE_CPP_IS_BRIEF = NO",
Doc
blank,
String -> Doc
text "# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the",
String -> Doc
text "# documentation from any documented member that it re-implements.",
Doc
defYes,
Doc
blank,
String -> Doc
text "INHERIT_DOCS = YES",
Doc
blank,
String -> Doc
text "# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new",
String -> Doc
text "# page for each member. If set to NO, the documentation of a member will be part",
String -> Doc
text "# of the file/class/namespace that contains it.",
Doc
defNo,
Doc
blank,
String -> Doc
text "SEPARATE_MEMBER_PAGES = NO",
Doc
blank,
String -> Doc
text "# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen",
String -> Doc
text "# uses this value to replace tabs by spaces in code fragments.",
String -> Doc
text "# Minimum value: 1, maximum value: 16, default value: 4.",
Doc
blank,
String -> Doc
text "TAB_SIZE = 4",
Doc
blank,
String -> Doc
text "# This tag can be used to specify a number of aliases that act as commands in",
String -> Doc
text "# the documentation. An alias has the form:",
String -> Doc
text "# name=value",
String -> Doc
text "# For example adding",
String -> Doc
text "# \"sideeffect=@par Side Effects:\\n\"",
String -> Doc
text "# will allow you to put the command \\sideeffect (or @sideeffect) in the",
String -> Doc
text "# documentation, which will result in a user-defined paragraph with heading",
String -> Doc
text "# \"Side Effects:\". You can put \\n's in the value part of an alias to insert",
String -> Doc
text "# newlines (in the resulting output). You can put ^^ in the value part of an",
String -> Doc
text "# alias to insert a newline as if a physical newline was in the original file.",
String -> Doc
text "# When you need a literal { or } or , in the value part of an alias you have to",
String -> Doc
text "# escape them by means of a backslash (\\), this can lead to conflicts with the",
String -> Doc
text "# commands \\{ and \\} for these it is advised to use the version @{ and @} or use",
String -> Doc
text "# a double escape (\\\\{ and \\\\})",
Doc
blank,
String -> Doc
text "ALIASES =",
Doc
blank,
String -> Doc
text "# This tag can be used to specify a number of word-keyword mappings (TCL only).",
String -> Doc
text "# A mapping has the form \"name=value\". For example adding \"class=itcl::class\"",
String -> Doc
text "# will allow you to use the command class in the itcl::class meaning.",
Doc
blank,
String -> Doc
text "TCL_SUBST =",
Doc
blank,
String -> Doc
text "# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources",
String -> Doc
text "# only. Doxygen will then generate output that is more tailored for C. For",
String -> Doc
text "# instance, some of the names that are used will be different. The list of all",
String -> Doc
text "# members will be omitted, etc.",
Doc
defNo,
Doc
blank,
String -> Doc
text "OPTIMIZE_OUTPUT_FOR_C = NO",
Doc
blank,
String -> Doc
text "# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or",
String -> Doc
text "# Python sources only. Doxygen will then generate output that is more tailored",
String -> Doc
text "# for that language. For instance, namespaces will be presented as packages,",
String -> Doc
text "# qualified scopes will look different, etc.",
Doc
defNo,
Doc
blank,
String -> Doc
text "OPTIMIZE_OUTPUT_JAVA =" Doc -> Doc -> Doc
<+> Doc
opt,
Doc
blank,
String -> Doc
text "# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran",
String -> Doc
text "# sources. Doxygen will then generate output that is tailored for Fortran.",
Doc
defNo,
Doc
blank,
String -> Doc
text "OPTIMIZE_FOR_FORTRAN = NO",
Doc
blank,
String -> Doc
text "# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL",
String -> Doc
text "# sources. Doxygen will then generate output that is tailored for VHDL.",
Doc
defNo,
Doc
blank,
String -> Doc
text "OPTIMIZE_OUTPUT_VHDL = NO",
Doc
blank,
String -> Doc
text "# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice",
String -> Doc
text "# sources only. Doxygen will then generate output that is more tailored for that",
String -> Doc
text "# language. For instance, namespaces will be presented as modules, types will be",
String -> Doc
text "# separated into more groups, etc.",
Doc
defNo,
Doc
blank,
String -> Doc
text "OPTIMIZE_OUTPUT_SLICE = NO",
Doc
blank,
String -> Doc
text "# Doxygen selects the parser to use depending on the extension of the files it",
String -> Doc
text "# parses. With this tag you can assign which parser to use for a given",
String -> Doc
text "# extension. Doxygen has a built-in mapping, but you can override or extend it",
String -> Doc
text "# using this tag. The format is ext=language, where ext is a file extension, and",
String -> Doc
text "# language is one of the parsers supported by doxygen: IDL, Java, Javascript,",
String -> Doc
text "# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice,",
String -> Doc
text "# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran:",
String -> Doc
text "# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser",
String -> Doc
text "# tries to guess whether the code is fixed or free formatted code, this is the",
String -> Doc
text "# default for Fortran type files), VHDL, tcl. For instance to make doxygen treat",
String -> Doc
text "# .inc files as Fortran files (default is PHP), and .f files as C (default is",
String -> Doc
text "# Fortran), use: inc=Fortran f=C.",
String -> Doc
text "#",
String -> Doc
text "# Note: For files without extension you can use no_extension as a placeholder.",
String -> Doc
text "#",
String -> Doc
text "# Note that for custom extensions you also need to set FILE_PATTERNS otherwise",
String -> Doc
text "# the files are not read by doxygen.",
Doc
blank,
String -> Doc
text "EXTENSION_MAPPING =",
Doc
blank,
String -> Doc
text "# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments",
String -> Doc
text "# according to the Markdown format, which allows for more readable",
String -> Doc
text "# documentation. See https://daringfireball.net/projects/markdown/ for details.",
String -> Doc
text "# The output of markdown processing is further processed by doxygen, so you can",
String -> Doc
text "# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in",
String -> Doc
text "# case of backward compatibilities issues.",
Doc
defYes,
Doc
blank,
String -> Doc
text "MARKDOWN_SUPPORT = YES",
Doc
blank,
String -> Doc
text "# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up",
String -> Doc
text "# to that level are automatically included in the table of contents, even if",
String -> Doc
text "# they do not have an id attribute.",
String -> Doc
text "# Note: This feature currently applies only to Markdown headings.",
String -> Doc
text "# Minimum value: 0, maximum value: 99, default value: 0.",
String -> Doc
text "# This tag requires that the tag MARKDOWN_SUPPORT is set to YES.",
Doc
blank,
String -> Doc
text "TOC_INCLUDE_HEADINGS = 0",
Doc
blank,
String -> Doc
text "# When enabled doxygen tries to link words that correspond to documented",
String -> Doc
text "# classes, or namespaces to their corresponding documentation. Such a link can",
String -> Doc
text "# be prevented in individual cases by putting a % sign in front of the word or",
String -> Doc
text "# globally by setting AUTOLINK_SUPPORT to NO.",
Doc
defYes,
Doc
blank,
String -> Doc
text "AUTOLINK_SUPPORT = YES",
Doc
blank,
String -> Doc
text "# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want",
String -> Doc
text "# to include (a tag file for) the STL sources as input, then you should set this",
String -> Doc
text "# tag to YES in order to let doxygen match functions declarations and",
String -> Doc
text "# definitions whose arguments contain STL classes (e.g. func(std::string);",
String -> Doc
text "# versus func(std::string) {}). This also make the inheritance and collaboration",
String -> Doc
text "# diagrams that involve STL classes more complete and accurate.",
Doc
defNo,
Doc
blank,
String -> Doc
text "BUILTIN_STL_SUPPORT = NO",
Doc
blank,
String -> Doc
text "# If you use Microsoft's C++/CLI language, you should set this option to YES to",
String -> Doc
text "# enable parsing support.",
Doc
defNo,
Doc
blank,
String -> Doc
text "CPP_CLI_SUPPORT = NO",
Doc
blank,
String -> Doc
text "# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:",
String -> Doc
text "# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen",
String -> Doc
text "# will parse them like normal C++ but will assume all classes use public instead",
String -> Doc
text "# of private inheritance when no explicit protection keyword is present.",
Doc
defNo,
Doc
blank,
String -> Doc
text "SIP_SUPPORT = NO",
Doc
blank,
String -> Doc
text "# For Microsoft's IDL there are propget and propput attributes to indicate",
String -> Doc
text "# getter and setter methods for a property. Setting this option to YES will make",
String -> Doc
text "# doxygen to replace the get and set methods by a property in the documentation.",
String -> Doc
text "# This will only work if the methods are indeed getting or setting a simple",
String -> Doc
text "# type. If this is not the case, or you want to show the methods anyway, you",
String -> Doc
text "# should set this option to NO.",
Doc
defYes,
Doc
blank,
String -> Doc
text "IDL_PROPERTY_SUPPORT = YES",
Doc
blank,
String -> Doc
text "# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC",
String -> Doc
text "# tag is set to YES then doxygen will reuse the documentation of the first",
String -> Doc
text "# member in the group (if any) for the other members of the group. By default",
String -> Doc
text "# all members of a group must be documented explicitly.",
Doc
defNo,
Doc
blank,
String -> Doc
text "DISTRIBUTE_GROUP_DOC = NO",
Doc
blank,
String -> Doc
text "# If one adds a struct or class to a group and this option is enabled, then also",
String -> Doc
text "# any nested class or struct is added to the same group. By default this option",
String -> Doc
text "# is disabled and one has to add nested compounds explicitly via \\ingroup.",
Doc
defNo,
Doc
blank,
String -> Doc
text "GROUP_NESTED_COMPOUNDS = NO",
Doc
blank,
String -> Doc
text "# Set the SUBGROUPING tag to YES to allow class member groups of the same type",
String -> Doc
text "# (for instance a group of public functions) to be put as a subgroup of that",
String -> Doc
text "# type (e.g. under the Public Functions section). Set it to NO to prevent",
String -> Doc
text "# subgrouping. Alternatively, this can be done per class using the",
String -> Doc
text "# \\nosubgrouping command.",
Doc
defYes,
Doc
blank,
String -> Doc
text "SUBGROUPING = YES",
Doc
blank,
String -> Doc
text "# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions",
String -> Doc
text "# are shown inside the group in which they are included (e.g. using \\ingroup)",
String -> Doc
text "# instead of on a separate page (for HTML and Man pages) or section (for LaTeX",
String -> Doc
text "# and RTF).",
String -> Doc
text "#",
String -> Doc
text "# Note that this feature does not work in combination with",
String -> Doc
text "# SEPARATE_MEMBER_PAGES.",
Doc
defNo,
Doc
blank,
String -> Doc
text "INLINE_GROUPED_CLASSES = NO",
Doc
blank,
String -> Doc
text "# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions",
String -> Doc
text "# with only public data fields or simple typedef fields will be shown inline in",
String -> Doc
text "# the documentation of the scope in which they are defined (i.e. file,",
String -> Doc
text "# namespace, or group documentation), provided this scope is documented. If set",
String -> Doc
text "# to NO, structs, classes, and unions are shown on a separate page (for HTML and",
String -> Doc
text "# Man pages) or section (for LaTeX and RTF).",
Doc
defNo,
Doc
blank,
String -> Doc
text "INLINE_SIMPLE_STRUCTS = NO",
Doc
blank,
String -> Doc
text "# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or",
String -> Doc
text "# enum is documented as struct, union, or enum with the name of the typedef. So",
String -> Doc
text "# typedef struct TypeS {} TypeT, will appear in the documentation as a struct",
String -> Doc
text "# with name TypeT. When disabled the typedef will appear as a member of a file,",
String -> Doc
text "# namespace, or class. And the struct will be named TypeS. This can typically be",
String -> Doc
text "# useful for C code in case the coding convention dictates that all compound",
String -> Doc
text "# types are typedef'ed and only the typedef is referenced, never the tag name.",
Doc
defNo,
Doc
blank,
String -> Doc
text "TYPEDEF_HIDES_STRUCT = NO",
Doc
blank,
String -> Doc
text "# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This",
String -> Doc
text "# cache is used to resolve symbols given their name and scope. Since this can be",
String -> Doc
text "# an expensive process and often the same symbol appears multiple times in the",
String -> Doc
text "# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small",
String -> Doc
text "# doxygen will become slower. If the cache is too large, memory is wasted. The",
String -> Doc
text "# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range",
String -> Doc
text "# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536",
String -> Doc
text "# symbols. At the end of a run doxygen will report the cache usage and suggest",
String -> Doc
text "# the optimal cache size from a speed point of view.",
String -> Doc
text "# Minimum value: 0, maximum value: 9, default value: 0.",
Doc
blank,
String -> Doc
text "LOOKUP_CACHE_SIZE = 0",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Build related configuration options",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in",
String -> Doc
text "# documentation are documented, even if no documentation was available. Private",
String -> Doc
text "# class members and static file members will be hidden unless the",
String -> Doc
text "# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.",
String -> Doc
text "# Note: This will also disable the warnings about undocumented members that are",
String -> Doc
text "# normally produced when WARNINGS is set to YES.",
Doc
defNo,
Doc
blank,
String -> Doc
text "EXTRACT_ALL = NO",
Doc
blank,
String -> Doc
text "# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will",
String -> Doc
text "# be included in the documentation.",
Doc
defNo,
Doc
blank,
String -> Doc
text "EXTRACT_PRIVATE = NO",
Doc
blank,
String -> Doc
text "# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal",
String -> Doc
text "# scope will be included in the documentation.",
Doc
defNo,
Doc
blank,
String -> Doc
text "EXTRACT_PACKAGE = NO",
Doc
blank,
String -> Doc
text "# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be",
String -> Doc
text "# included in the documentation.",
Doc
defNo,
Doc
blank,
String -> Doc
text "EXTRACT_STATIC = NO",
Doc
blank,
String -> Doc
text "# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined",
String -> Doc
text "# locally in source files will be included in the documentation. If set to NO,",
String -> Doc
text "# only classes defined in header files are included. Does not have any effect",
String -> Doc
text "# for Java sources.",
Doc
defYes,
Doc
blank,
String -> Doc
text "EXTRACT_LOCAL_CLASSES = YES",
Doc
blank,
String -> Doc
text "# This flag is only useful for Objective-C code. If set to YES, local methods,",
String -> Doc
text "# which are defined in the implementation section but not in the interface are",
String -> Doc
text "# included in the documentation. If set to NO, only methods in the interface are",
String -> Doc
text "# included.",
Doc
defNo,
Doc
blank,
String -> Doc
text "EXTRACT_LOCAL_METHODS = NO",
Doc
blank,
String -> Doc
text "# If this flag is set to YES, the members of anonymous namespaces will be",
String -> Doc
text "# extracted and appear in the documentation as a namespace called",
String -> Doc
text "# 'anonymous_namespace{file}', where file will be replaced with the base name of",
String -> Doc
text "# the file that contains the anonymous namespace. By default anonymous namespace",
String -> Doc
text "# are hidden.",
Doc
defNo,
Doc
blank,
String -> Doc
text "EXTRACT_ANON_NSPACES = NO",
Doc
blank,
String -> Doc
text "# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all",
String -> Doc
text "# undocumented members inside documented classes or files. If set to NO these",
String -> Doc
text "# members will be included in the various overviews, but no documentation",
String -> Doc
text "# section is generated. This option has no effect if EXTRACT_ALL is enabled.",
Doc
defNo,
Doc
blank,
String -> Doc
text "HIDE_UNDOC_MEMBERS = NO",
Doc
blank,
String -> Doc
text "# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all",
String -> Doc
text "# undocumented classes that are normally visible in the class hierarchy. If set",
String -> Doc
text "# to NO, these classes will be included in the various overviews. This option",
String -> Doc
text "# has no effect if EXTRACT_ALL is enabled.",
Doc
defNo,
Doc
blank,
String -> Doc
text "HIDE_UNDOC_CLASSES = NO",
Doc
blank,
String -> Doc
text "# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend",
String -> Doc
text "# (class|struct|union) declarations. If set to NO, these declarations will be",
String -> Doc
text "# included in the documentation.",
Doc
defNo,
Doc
blank,
String -> Doc
text "HIDE_FRIEND_COMPOUNDS = NO",
Doc
blank,
String -> Doc
text "# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any",
String -> Doc
text "# documentation blocks found inside the body of a function. If set to NO, these",
String -> Doc
text "# blocks will be appended to the function's detailed documentation block.",
Doc
defNo,
Doc
blank,
String -> Doc
text "HIDE_IN_BODY_DOCS = NO",
Doc
blank,
String -> Doc
text "# The INTERNAL_DOCS tag determines if documentation that is typed after a",
String -> Doc
text "# \\internal command is included. If the tag is set to NO then the documentation",
String -> Doc
text "# will be excluded. Set it to YES to include the internal documentation.",
Doc
defNo,
Doc
blank,
String -> Doc
text "INTERNAL_DOCS = NO",
Doc
blank,
String -> Doc
text "# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file",
String -> Doc
text "# names in lower-case letters. If set to YES, upper-case letters are also",
String -> Doc
text "# allowed. This is useful if you have classes or files whose names only differ",
String -> Doc
text "# in case and if your file system supports case sensitive file names. Windows",
String -> Doc
text "# and Mac users are advised to set this option to NO.",
String -> Doc
text "# The default value is: system dependent.",
Doc
blank,
String -> Doc
text "CASE_SENSE_NAMES = NO",
Doc
blank,
String -> Doc
text "# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with",
String -> Doc
text "# their full class and namespace scopes in the documentation. If set to YES, the",
String -> Doc
text "# scope will be hidden.",
Doc
defNo,
Doc
blank,
String -> Doc
text "HIDE_SCOPE_NAMES = NO",
Doc
blank,
String -> Doc
text "# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will",
String -> Doc
text "# append additional text to a page's title, such as Class Reference. If set to",
String -> Doc
text "# YES the compound reference will be hidden.",
Doc
defNo,
Doc
blank,
String -> Doc
text "HIDE_COMPOUND_REFERENCE= NO",
Doc
blank,
String -> Doc
text "# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of",
String -> Doc
text "# the files that are included by a file in the documentation of that file.",
Doc
defYes,
Doc
blank,
String -> Doc
text "SHOW_INCLUDE_FILES = YES",
Doc
blank,
String -> Doc
text "# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each",
String -> Doc
text "# grouped member an include statement to the documentation, telling the reader",
String -> Doc
text "# which file to include in order to use the member.",
Doc
defNo,
Doc
blank,
String -> Doc
text "SHOW_GROUPED_MEMB_INC = NO",
Doc
blank,
String -> Doc
text "# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include",
String -> Doc
text "# files with double quotes in the documentation rather than with sharp brackets.",
Doc
defNo,
Doc
blank,
String -> Doc
text "FORCE_LOCAL_INCLUDES = NO",
Doc
blank,
String -> Doc
text "# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the",
String -> Doc
text "# documentation for inline members.",
Doc
defYes,
Doc
blank,
String -> Doc
text "INLINE_INFO = YES",
Doc
blank,
String -> Doc
text "# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the",
String -> Doc
text "# (detailed) documentation of file and class members alphabetically by member",
String -> Doc
text "# name. If set to NO, the members will appear in declaration order.",
Doc
defYes,
Doc
blank,
String -> Doc
text "SORT_MEMBER_DOCS = YES",
Doc
blank,
String -> Doc
text "# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief",
String -> Doc
text "# descriptions of file, namespace and class members alphabetically by member",
String -> Doc
text "# name. If set to NO, the members will appear in declaration order. Note that",
String -> Doc
text "# this will also influence the order of the classes in the class list.",
Doc
defNo,
Doc
blank,
String -> Doc
text "SORT_BRIEF_DOCS = NO",
Doc
blank,
String -> Doc
text "# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the",
String -> Doc
text "# (brief and detailed) documentation of class members so that constructors and",
String -> Doc
text "# destructors are listed first. If set to NO the constructors will appear in the",
String -> Doc
text "# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.",
String -> Doc
text "# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief",
String -> Doc
text "# member documentation.",
String -> Doc
text "# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting",
String -> Doc
text "# detailed member documentation.",
Doc
defNo,
Doc
blank,
String -> Doc
text "SORT_MEMBERS_CTORS_1ST = NO",
Doc
blank,
String -> Doc
text "# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy",
String -> Doc
text "# of group names into alphabetical order. If set to NO the group names will",
String -> Doc
text "# appear in their defined order.",
Doc
defNo,
Doc
blank,
String -> Doc
text "SORT_GROUP_NAMES = NO",
Doc
blank,
String -> Doc
text "# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by",
String -> Doc
text "# fully-qualified names, including namespaces. If set to NO, the class list will",
String -> Doc
text "# be sorted only by class name, not including the namespace part.",
String -> Doc
text "# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.",
String -> Doc
text "# Note: This option applies only to the class list, not to the alphabetical",
String -> Doc
text "# list.",
Doc
defNo,
Doc
blank,
String -> Doc
text "SORT_BY_SCOPE_NAME = NO",
Doc
blank,
String -> Doc
text "# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper",
String -> Doc
text "# type resolution of all parameters of a function it will reject a match between",
String -> Doc
text "# the prototype and the implementation of a member function even if there is",
String -> Doc
text "# only one candidate or it is obvious which candidate to choose by doing a",
String -> Doc
text "# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still",
String -> Doc
text "# accept a match between prototype and implementation in such cases.",
Doc
defNo,
Doc
blank,
String -> Doc
text "STRICT_PROTO_MATCHING = NO",
Doc
blank,
String -> Doc
text "# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo",
String -> Doc
text "# list. This list is created by putting \\todo commands in the documentation.",
Doc
defYes,
Doc
blank,
String -> Doc
text "GENERATE_TODOLIST = YES",
Doc
blank,
String -> Doc
text "# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test",
String -> Doc
text "# list. This list is created by putting \\test commands in the documentation.",
Doc
defYes,
Doc
blank,
String -> Doc
text "GENERATE_TESTLIST = YES",
Doc
blank,
String -> Doc
text "# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug",
String -> Doc
text "# list. This list is created by putting \\bug commands in the documentation.",
Doc
defYes,
Doc
blank,
String -> Doc
text "GENERATE_BUGLIST = YES",
Doc
blank,
String -> Doc
text "# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)",
String -> Doc
text "# the deprecated list. This list is created by putting \\deprecated commands in",
String -> Doc
text "# the documentation.",
Doc
defYes,
Doc
blank,
String -> Doc
text "GENERATE_DEPRECATEDLIST= YES",
Doc
blank,
String -> Doc
text "# The ENABLED_SECTIONS tag can be used to enable conditional documentation",
String -> Doc
text "# sections, marked by \\if <section_label> ... \\endif and \\cond <section_label>",
String -> Doc
text "# ... \\endcond blocks.",
Doc
blank,
String -> Doc
text "ENABLED_SECTIONS =",
Doc
blank,
String -> Doc
text "# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the",
String -> Doc
text "# initial value of a variable or macro / define can have for it to appear in the",
String -> Doc
text "# documentation. If the initializer consists of more lines than specified here",
String -> Doc
text "# it will be hidden. Use a value of 0 to hide initializers completely. The",
String -> Doc
text "# appearance of the value of individual variables and macros / defines can be",
String -> Doc
text "# controlled using \\showinitializer or \\hideinitializer command in the",
String -> Doc
text "# documentation regardless of this setting.",
String -> Doc
text "# Minimum value: 0, maximum value: 10000, default value: 30.",
Doc
blank,
String -> Doc
text "MAX_INITIALIZER_LINES = 30",
Doc
blank,
String -> Doc
text "# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at",
String -> Doc
text "# the bottom of the documentation of classes and structs. If set to YES, the",
String -> Doc
text "# list will mention the files that were used to generate the documentation.",
Doc
defYes,
Doc
blank,
String -> Doc
text "SHOW_USED_FILES = YES",
Doc
blank,
String -> Doc
text "# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This",
String -> Doc
text "# will remove the Files entry from the Quick Index and from the Folder Tree View",
String -> Doc
text "# (if specified).",
Doc
defYes,
Doc
blank,
String -> Doc
text "SHOW_FILES = YES",
Doc
blank,
String -> Doc
text "# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces",
String -> Doc
text "# page. This will remove the Namespaces entry from the Quick Index and from the",
String -> Doc
text "# Folder Tree View (if specified).",
Doc
defYes,
Doc
blank,
String -> Doc
text "SHOW_NAMESPACES = YES",
Doc
blank,
String -> Doc
text "# The FILE_VERSION_FILTER tag can be used to specify a program or script that",
String -> Doc
text "# doxygen should invoke to get the current version for each file (typically from",
String -> Doc
text "# the version control system). Doxygen will invoke the program by executing (via",
String -> Doc
text "# popen()) the command command input-file, where command is the value of the",
String -> Doc
text "# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided",
String -> Doc
text "# by doxygen. Whatever the program writes to standard output is used as the file",
String -> Doc
text "# version. For an example see the documentation.",
Doc
blank,
String -> Doc
text "FILE_VERSION_FILTER =",
Doc
blank,
String -> Doc
text "# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed",
String -> Doc
text "# by doxygen. The layout file controls the global structure of the generated",
String -> Doc
text "# output files in an output format independent way. To create the layout file",
String -> Doc
text "# that represents doxygen's defaults, run doxygen with the -l option. You can",
String -> Doc
text "# optionally specify a file name after the option, if omitted DoxygenLayout.xml",
String -> Doc
text "# will be used as the name of the layout file.",
String -> Doc
text "#",
String -> Doc
text "# Note that if you run doxygen from a directory containing a file called",
String -> Doc
text "# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE",
String -> Doc
text "# tag is left empty.",
Doc
blank,
String -> Doc
text "LAYOUT_FILE =",
Doc
blank,
String -> Doc
text "# The CITE_BIB_FILES tag can be used to specify one or more bib files containing",
String -> Doc
text "# the reference definitions. This must be a list of .bib files. The .bib",
String -> Doc
text "# extension is automatically appended if omitted. This requires the bibtex tool",
String -> Doc
text "# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info.",
String -> Doc
text "# For LaTeX the style of the bibliography can be controlled using",
String -> Doc
text "# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the",
String -> Doc
text "# search path. See also \\cite for info how to create references.",
Doc
blank,
String -> Doc
text "CITE_BIB_FILES =",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to warning and progress messages",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# The QUIET tag can be used to turn on/off the messages that are generated to",
String -> Doc
text "# standard output by doxygen. If QUIET is set to YES this implies that the",
String -> Doc
text "# messages are off.",
Doc
defNo,
Doc
blank,
String -> Doc
text "QUIET =" Doc -> Doc -> Doc
<+> Verbosity -> Doc
verbosityToDoc Verbosity
v,
Doc
blank,
String -> Doc
text "# The WARNINGS tag can be used to turn on/off the warning messages that are",
String -> Doc
text "# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES",
String -> Doc
text "# this implies that the warnings are on.",
String -> Doc
text "#",
String -> Doc
text "# Tip: Turn warnings on while writing the documentation.",
Doc
defYes,
Doc
blank,
String -> Doc
text "WARNINGS = YES",
Doc
blank,
String -> Doc
text "# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate",
String -> Doc
text "# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag",
String -> Doc
text "# will automatically be disabled.",
Doc
defYes,
Doc
blank,
String -> Doc
text "WARN_IF_UNDOCUMENTED = YES",
Doc
blank,
String -> Doc
text "# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for",
String -> Doc
text "# potential errors in the documentation, such as not documenting some parameters",
String -> Doc
text "# in a documented function, or documenting parameters that don't exist or using",
String -> Doc
text "# markup commands wrongly.",
Doc
defYes,
Doc
blank,
String -> Doc
text "WARN_IF_DOC_ERROR = YES",
Doc
blank,
String -> Doc
text "# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that",
String -> Doc
text "# are documented, but have no documentation for their parameters or return",
String -> Doc
text "# value. If set to NO, doxygen will only warn about wrong or incomplete",
String -> Doc
text "# parameter documentation, but not about the absence of documentation. If",
String -> Doc
text "# EXTRACT_ALL is set to YES then this flag will automatically be disabled.",
Doc
defNo,
Doc
blank,
String -> Doc
text "WARN_NO_PARAMDOC = NO",
Doc
blank,
String -> Doc
text "# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when",
String -> Doc
text "# a warning is encountered.",
Doc
defNo,
Doc
blank,
String -> Doc
text "WARN_AS_ERROR = NO",
Doc
blank,
String -> Doc
text "# The WARN_FORMAT tag determines the format of the warning messages that doxygen",
String -> Doc
text "# can produce. The string should contain the $file, $line, and $text tags, which",
String -> Doc
text "# will be replaced by the file and line number from which the warning originated",
String -> Doc
text "# and the warning text. Optionally the format may contain $version, which will",
String -> Doc
text "# be replaced by the version of the file (if it could be obtained via",
String -> Doc
text "# FILE_VERSION_FILTER)",
String -> Doc
text "# The default value is: $file:$line: $text.",
Doc
blank,
String -> Doc
text "WARN_FORMAT = \"$file:$line: $text\"",
Doc
blank,
String -> Doc
text "# The WARN_LOGFILE tag can be used to specify a file to which warning and error",
String -> Doc
text "# messages should be written. If left blank the output is written to standard",
String -> Doc
text "# error (stderr).",
Doc
blank,
String -> Doc
text "WARN_LOGFILE =",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the input files",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# The INPUT tag is used to specify the files and/or directories that contain",
String -> Doc
text "# documented source files. You may enter file names like myfile.cpp or",
String -> Doc
text "# directories like /usr/src/myproject. Separate the files or directories with",
String -> Doc
text "# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING",
String -> Doc
text "# Note: If this tag is empty the current directory is searched.",
Doc
blank,
String -> Doc
text "INPUT =" Doc -> Doc -> Doc
<+> [Doc] -> Doc
hcat ((String -> Doc) -> [String] -> [Doc]
forall a b. (a -> b) -> [a] -> [b]
map String -> Doc
text ([String] -> [Doc]) -> [String] -> [Doc]
forall a b. (a -> b) -> a -> b
$ String -> [String] -> [String]
forall a. a -> [a] -> [a]
intersperse " " [String]
fs),
Doc
blank,
String -> Doc
text "# This tag can be used to specify the character encoding of the source files",
String -> Doc
text "# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses",
String -> Doc
text "# libiconv (or the iconv built into libc) for the transcoding. See the libiconv",
String -> Doc
text "# documentation (see: https://www.gnu.org/software/libiconv/) for the list of",
String -> Doc
text "# possible encodings.",
String -> Doc
text "# The default value is: UTF-8.",
Doc
blank,
String -> Doc
text "INPUT_ENCODING = UTF-8",
Doc
blank,
String -> Doc
text "# If the value of the INPUT tag contains directories, you can use the",
String -> Doc
text "# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and",
String -> Doc
text "# *.h) to filter out the source-files in the directories.",
String -> Doc
text "#",
String -> Doc
text "# Note that for custom extensions or not directly supported extensions you also",
String -> Doc
text "# need to set EXTENSION_MAPPING for the extension otherwise the files are not",
String -> Doc
text "# read by doxygen.",
String -> Doc
text "#",
String -> Doc
text "# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,",
String -> Doc
text "# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,",
String -> Doc
text "# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,",
String -> Doc
text "# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,",
String -> Doc
text "# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice.",
Doc
blank,
String -> Doc
text "FILE_PATTERNS = *.c \\",
String -> Doc
text " *.cc \\",
String -> Doc
text " *.cxx \\",
String -> Doc
text " *.cpp \\",
String -> Doc
text " *.c++ \\",
String -> Doc
text " *.java \\",
String -> Doc
text " *.ii \\",
String -> Doc
text " *.ixx \\",
String -> Doc
text " *.ipp \\",
String -> Doc
text " *.i++ \\",
String -> Doc
text " *.inl \\",
String -> Doc
text " *.idl \\",
String -> Doc
text " *.ddl \\",
String -> Doc
text " *.odl \\",
String -> Doc
text " *.h \\",
String -> Doc
text " *.hh \\",
String -> Doc
text " *.hxx \\",
String -> Doc
text " *.hpp \\",
String -> Doc
text " *.h++ \\",
String -> Doc
text " *.cs \\",
String -> Doc
text " *.d \\",
String -> Doc
text " *.php \\",
String -> Doc
text " *.php4 \\",
String -> Doc
text " *.php5 \\",
String -> Doc
text " *.phtml \\",
String -> Doc
text " *.inc \\",
String -> Doc
text " *.m \\",
String -> Doc
text " *.markdown \\",
String -> Doc
text " *.md \\",
String -> Doc
text " *.mm \\",
String -> Doc
text " *.dox \\",
String -> Doc
text " *.py \\",
String -> Doc
text " *.pyw \\",
String -> Doc
text " *.f90 \\",
String -> Doc
text " *.f95 \\",
String -> Doc
text " *.f03 \\",
String -> Doc
text " *.f08 \\",
String -> Doc
text " *.f \\",
String -> Doc
text " *.for \\",
String -> Doc
text " *.tcl \\",
String -> Doc
text " *.vhd \\",
String -> Doc
text " *.vhdl \\",
String -> Doc
text " *.ucf \\",
String -> Doc
text " *.qsf \\",
String -> Doc
text " *.ice",
Doc
blank,
String -> Doc
text "# The RECURSIVE tag can be used to specify whether or not subdirectories should",
String -> Doc
text "# be searched for input files as well.",
Doc
defNo,
Doc
blank,
String -> Doc
text "RECURSIVE = NO",
Doc
blank,
String -> Doc
text "# The EXCLUDE tag can be used to specify files and/or directories that should be",
String -> Doc
text "# excluded from the INPUT source files. This way you can easily exclude a",
String -> Doc
text "# subdirectory from a directory tree whose root is specified with the INPUT tag.",
String -> Doc
text "#",
String -> Doc
text "# Note that relative paths are relative to the directory from which doxygen is",
String -> Doc
text "# run.",
Doc
blank,
String -> Doc
text "EXCLUDE =",
Doc
blank,
String -> Doc
text "# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or",
String -> Doc
text "# directories that are symbolic links (a Unix file system feature) are excluded",
String -> Doc
text "# from the input.",
Doc
defNo,
Doc
blank,
String -> Doc
text "EXCLUDE_SYMLINKS = NO",
Doc
blank,
String -> Doc
text "# If the value of the INPUT tag contains directories, you can use the",
String -> Doc
text "# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude",
String -> Doc
text "# certain files from those directories.",
String -> Doc
text "#",
String -> Doc
text "# Note that the wildcards are matched against the file with absolute path, so to",
String -> Doc
text "# exclude all test directories for example use the pattern */test/*",
Doc
blank,
String -> Doc
text "EXCLUDE_PATTERNS =",
Doc
blank,
String -> Doc
text "# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names",
String -> Doc
text "# (namespaces, classes, functions, etc.) that should be excluded from the",
String -> Doc
text "# output. The symbol name can be a fully qualified name, a word, or if the",
String -> Doc
text "# wildcard * is used, a substring. Examples: ANamespace, AClass,",
String -> Doc
text "# AClass::ANamespace, ANamespace::*Test",
String -> Doc
text "#",
String -> Doc
text "# Note that the wildcards are matched against the file with absolute path, so to",
String -> Doc
text "# exclude all test directories use the pattern */test/*",
Doc
blank,
String -> Doc
text "EXCLUDE_SYMBOLS =",
Doc
blank,
String -> Doc
text "# The EXAMPLE_PATH tag can be used to specify one or more files or directories",
String -> Doc
text "# that contain example code fragments that are included (see the \\include",
String -> Doc
text "# command).",
Doc
blank,
String -> Doc
text "EXAMPLE_PATH =",
Doc
blank,
String -> Doc
text "# If the value of the EXAMPLE_PATH tag contains directories, you can use the",
String -> Doc
text "# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and",
String -> Doc
text "# *.h) to filter out the source-files in the directories. If left blank all",
String -> Doc
text "# files are included.",
Doc
blank,
String -> Doc
text "EXAMPLE_PATTERNS = *",
Doc
blank,
String -> Doc
text "# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be",
String -> Doc
text "# searched for input files to be used with the \\include or \\dontinclude commands",
String -> Doc
text "# irrespective of the value of the RECURSIVE tag.",
Doc
defNo,
Doc
blank,
String -> Doc
text "EXAMPLE_RECURSIVE = NO",
Doc
blank,
String -> Doc
text "# The IMAGE_PATH tag can be used to specify one or more files or directories",
String -> Doc
text "# that contain images that are to be included in the documentation (see the",
String -> Doc
text "# \\image command).",
Doc
blank,
String -> Doc
text "IMAGE_PATH =",
Doc
blank,
String -> Doc
text "# The INPUT_FILTER tag can be used to specify a program that doxygen should",
String -> Doc
text "# invoke to filter for each input file. Doxygen will invoke the filter program",
String -> Doc
text "# by executing (via popen()) the command:",
String -> Doc
text "#",
String -> Doc
text "# <filter> <input-file>",
String -> Doc
text "#",
String -> Doc
text "# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the",
String -> Doc
text "# name of an input file. Doxygen will then use the output that the filter",
String -> Doc
text "# program writes to standard output. If FILTER_PATTERNS is specified, this tag",
String -> Doc
text "# will be ignored.",
String -> Doc
text "#",
String -> Doc
text "# Note that the filter must not add or remove lines; it is applied before the",
String -> Doc
text "# code is scanned, but not when the output code is generated. If lines are added",
String -> Doc
text "# or removed, the anchors will not be placed correctly.",
String -> Doc
text "#",
String -> Doc
text "# Note that for custom extensions or not directly supported extensions you also",
String -> Doc
text "# need to set EXTENSION_MAPPING for the extension otherwise the files are not",
String -> Doc
text "# properly processed by doxygen.",
Doc
blank,
String -> Doc
text "INPUT_FILTER =",
Doc
blank,
String -> Doc
text "# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern",
String -> Doc
text "# basis. Doxygen will compare the file name with each pattern and apply the",
String -> Doc
text "# filter if there is a match. The filters are a list of the form: pattern=filter",
String -> Doc
text "# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how",
String -> Doc
text "# filters are used. If the FILTER_PATTERNS tag is empty or if none of the",
String -> Doc
text "# patterns match the file name, INPUT_FILTER is applied.",
String -> Doc
text "#",
String -> Doc
text "# Note that for custom extensions or not directly supported extensions you also",
String -> Doc
text "# need to set EXTENSION_MAPPING for the extension otherwise the files are not",
String -> Doc
text "# properly processed by doxygen.",
Doc
blank,
String -> Doc
text "FILTER_PATTERNS =",
Doc
blank,
String -> Doc
text "# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using",
String -> Doc
text "# INPUT_FILTER) will also be used to filter the input files that are used for",
String -> Doc
text "# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).",
Doc
defNo,
Doc
blank,
String -> Doc
text "FILTER_SOURCE_FILES = NO",
Doc
blank,
String -> Doc
text "# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file",
String -> Doc
text "# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and",
String -> Doc
text "# it is also possible to disable source filtering for a specific pattern using",
String -> Doc
text "# *.ext= (so without naming a filter).",
String -> Doc
text "# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.",
Doc
blank,
String -> Doc
text "FILTER_SOURCE_PATTERNS =",
Doc
blank,
String -> Doc
text "# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that",
String -> Doc
text "# is part of the input, its contents will be placed on the main page",
String -> Doc
text "# (index.html). This can be useful if you have a project on for instance GitHub",
String -> Doc
text "# and want to reuse the introduction page also for the doxygen output.",
Doc
blank,
String -> Doc
text "USE_MDFILE_AS_MAINPAGE =",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to source browsing",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the SOURCE_BROWSER tag is set to YES then a list of source files will be",
String -> Doc
text "# generated. Documented entities will be cross-referenced with these sources.",
String -> Doc
text "#",
String -> Doc
text "# Note: To get rid of all source code in the generated output, make sure that",
String -> Doc
text "# also VERBATIM_HEADERS is set to NO.",
Doc
defNo,
Doc
blank,
String -> Doc
text "SOURCE_BROWSER = NO",
Doc
blank,
String -> Doc
text "# Setting the INLINE_SOURCES tag to YES will include the body of functions,",
String -> Doc
text "# classes and enums directly into the documentation.",
Doc
defNo,
Doc
blank,
String -> Doc
text "INLINE_SOURCES = NO",
Doc
blank,
String -> Doc
text "# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any",
String -> Doc
text "# special comment blocks from generated source code fragments. Normal C, C++ and",
String -> Doc
text "# Fortran comments will always remain visible.",
Doc
defYes,
Doc
blank,
String -> Doc
text "STRIP_CODE_COMMENTS = YES",
Doc
blank,
String -> Doc
text "# If the REFERENCED_BY_RELATION tag is set to YES then for each documented",
String -> Doc
text "# entity all documented functions referencing it will be listed.",
Doc
defNo,
Doc
blank,
String -> Doc
text "REFERENCED_BY_RELATION = NO",
Doc
blank,
String -> Doc
text "# If the REFERENCES_RELATION tag is set to YES then for each documented function",
String -> Doc
text "# all documented entities called/used by that function will be listed.",
Doc
defNo,
Doc
blank,
String -> Doc
text "REFERENCES_RELATION = NO",
Doc
blank,
String -> Doc
text "# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set",
String -> Doc
text "# to YES then the hyperlinks from functions in REFERENCES_RELATION and",
String -> Doc
text "# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will",
String -> Doc
text "# link to the documentation.",
Doc
defYes,
Doc
blank,
String -> Doc
text "REFERENCES_LINK_SOURCE = YES",
Doc
blank,
String -> Doc
text "# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the",
String -> Doc
text "# source code will show a tooltip with additional information such as prototype,",
String -> Doc
text "# brief description and links to the definition and documentation. Since this",
String -> Doc
text "# will make the HTML file larger and loading of large files a bit slower, you",
String -> Doc
text "# can opt to disable this feature.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag SOURCE_BROWSER is set to YES.",
Doc
blank,
String -> Doc
text "SOURCE_TOOLTIPS = YES",
Doc
blank,
String -> Doc
text "# If the USE_HTAGS tag is set to YES then the references to source code will",
String -> Doc
text "# point to the HTML generated by the htags(1) tool instead of doxygen built-in",
String -> Doc
text "# source browser. The htags tool is part of GNU's global source tagging system",
String -> Doc
text "# (see https://www.gnu.org/software/global/global.html). You will need version",
String -> Doc
text "# 4.8.6 or higher.",
String -> Doc
text "#",
String -> Doc
text "# To use it do the following:",
String -> Doc
text "# - Install the latest version of global",
String -> Doc
text "# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file",
String -> Doc
text "# - Make sure the INPUT points to the root of the source tree",
String -> Doc
text "# - Run doxygen as normal",
String -> Doc
text "#",
String -> Doc
text "# Doxygen will invoke htags (and that will in turn invoke gtags), so these",
String -> Doc
text "# tools must be available from the command line (i.e. in the search path).",
String -> Doc
text "#",
String -> Doc
text "# The result: instead of the source browser generated by doxygen, the links to",
String -> Doc
text "# source code will now point to the output of htags.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag SOURCE_BROWSER is set to YES.",
Doc
blank,
String -> Doc
text "USE_HTAGS = NO",
Doc
blank,
String -> Doc
text "# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a",
String -> Doc
text "# verbatim copy of the header file for each class for which an include is",
String -> Doc
text "# specified. Set to NO to disable this.",
String -> Doc
text "# See also: Section \\class.",
Doc
defYes,
Doc
blank,
String -> Doc
text "VERBATIM_HEADERS = YES",
Doc
blank,
String -> Doc
text "# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the",
String -> Doc
text "# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the",
String -> Doc
text "# cost of reduced performance. This can be particularly helpful with template",
String -> Doc
text "# rich C++ code for which doxygen's built-in parser lacks the necessary type",
String -> Doc
text "# information.",
String -> Doc
text "# Note: The availability of this option depends on whether or not doxygen was",
String -> Doc
text "# generated with the -Duse_libclang=ON option for CMake.",
Doc
defNo,
Doc
blank,
String -> Doc
text "CLANG_ASSISTED_PARSING = NO",
Doc
blank,
String -> Doc
text "# If clang assisted parsing is enabled you can provide the compiler with command",
String -> Doc
text "# line options that you would normally use when invoking the compiler. Note that",
String -> Doc
text "# the include paths will already be set by doxygen for the files and directories",
String -> Doc
text "# specified with INPUT and INCLUDE_PATH.",
String -> Doc
text "# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.",
Doc
blank,
String -> Doc
text "CLANG_OPTIONS =",
Doc
blank,
String -> Doc
text "# If clang assisted parsing is enabled you can provide the clang parser with the",
String -> Doc
text "# path to the compilation database (see:",
String -> Doc
text "# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) used when the files",
String -> Doc
text "# were built. This is equivalent to specifying the \"-p\" option to a clang tool,",
String -> Doc
text "# such as clang-check. These options will then be passed to the parser.",
String -> Doc
text "# Note: The availability of this option depends on whether or not doxygen was",
String -> Doc
text "# generated with the -Duse_libclang=ON option for CMake.",
Doc
blank,
String -> Doc
text "CLANG_DATABASE_PATH =",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the alphabetical class index",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all",
String -> Doc
text "# compounds will be generated. Enable this if the project contains a lot of",
String -> Doc
text "# classes, structs, unions or interfaces.",
Doc
defYes,
Doc
blank,
String -> Doc
text "ALPHABETICAL_INDEX = YES",
Doc
blank,
String -> Doc
text "# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in",
String -> Doc
text "# which the alphabetical index list will be split.",
String -> Doc
text "# Minimum value: 1, maximum value: 20, default value: 5.",
String -> Doc
text "# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.",
Doc
blank,
String -> Doc
text "COLS_IN_ALPHA_INDEX = 5",
Doc
blank,
String -> Doc
text "# In case all classes in a project start with a common prefix, all classes will",
String -> Doc
text "# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag",
String -> Doc
text "# can be used to specify a prefix (or a list of prefixes) that should be ignored",
String -> Doc
text "# while generating the index headers.",
String -> Doc
text "# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.",
Doc
blank,
String -> Doc
text "IGNORE_PREFIX =",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the HTML output",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output",
Doc
defYes,
Doc
blank,
String -> Doc
text "GENERATE_HTML = YES",
Doc
blank,
String -> Doc
text "# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a",
String -> Doc
text "# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of",
String -> Doc
text "# it.",
String -> Doc
text "# The default directory is: html.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_OUTPUT = html",
Doc
blank,
String -> Doc
text "# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each",
String -> Doc
text "# generated HTML page (for example: .htm, .php, .asp).",
String -> Doc
text "# The default value is: .html.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_FILE_EXTENSION = .html",
Doc
blank,
String -> Doc
text "# The HTML_HEADER tag can be used to specify a user-defined HTML header file for",
String -> Doc
text "# each generated HTML page. If the tag is left blank doxygen will generate a",
String -> Doc
text "# standard header.",
String -> Doc
text "#",
String -> Doc
text "# To get valid HTML the header file that includes any scripts and style sheets",
String -> Doc
text "# that doxygen needs, which is dependent on the configuration options used (e.g.",
String -> Doc
text "# the setting GENERATE_TREEVIEW). It is highly recommended to start with a",
String -> Doc
text "# default header using",
String -> Doc
text "# doxygen -w html new_header.html new_footer.html new_stylesheet.css",
String -> Doc
text "# YourConfigFile",
String -> Doc
text "# and then modify the file new_header.html. See also section \"Doxygen usage\"",
String -> Doc
text "# for information on how to generate the default header that doxygen normally",
String -> Doc
text "# uses.",
String -> Doc
text "# Note: The header is subject to change so you typically have to regenerate the",
String -> Doc
text "# default header when upgrading to a newer version of doxygen. For a description",
String -> Doc
text "# of the possible markers and block names see the documentation.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_HEADER =",
Doc
blank,
String -> Doc
text "# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each",
String -> Doc
text "# generated HTML page. If the tag is left blank doxygen will generate a standard",
String -> Doc
text "# footer. See HTML_HEADER for more information on how to generate a default",
String -> Doc
text "# footer and what special commands can be used inside the footer. See also",
String -> Doc
text "# section \"Doxygen usage\" for information on how to generate the default footer",
String -> Doc
text "# that doxygen normally uses.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_FOOTER =",
Doc
blank,
String -> Doc
text "# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style",
String -> Doc
text "# sheet that is used by each HTML page. It can be used to fine-tune the look of",
String -> Doc
text "# the HTML output. If left blank doxygen will generate a default style sheet.",
String -> Doc
text "# See also section \"Doxygen usage\" for information on how to generate the style",
String -> Doc
text "# sheet that doxygen normally uses.",
String -> Doc
text "# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as",
String -> Doc
text "# it is more robust and this tag (HTML_STYLESHEET) will in the future become",
String -> Doc
text "# obsolete.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_STYLESHEET =",
Doc
blank,
String -> Doc
text "# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined",
String -> Doc
text "# cascading style sheets that are included after the standard style sheets",
String -> Doc
text "# created by doxygen. Using this option one can overrule certain style aspects.",
String -> Doc
text "# This is preferred over using HTML_STYLESHEET since it does not replace the",
String -> Doc
text "# standard style sheet and is therefore more robust against future updates.",
String -> Doc
text "# Doxygen will copy the style sheet files to the output directory.",
String -> Doc
text "# Note: The order of the extra style sheet files is of importance (e.g. the last",
String -> Doc
text "# style sheet in the list overrules the setting of the previous ones in the",
String -> Doc
text "# list). For an example see the documentation.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_EXTRA_STYLESHEET =",
Doc
blank,
String -> Doc
text "# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or",
String -> Doc
text "# other source files which should be copied to the HTML output directory. Note",
String -> Doc
text "# that these files will be copied to the base HTML output directory. Use the",
String -> Doc
text "# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these",
String -> Doc
text "# files. In the HTML_STYLESHEET file, use the file name only. Also note that the",
String -> Doc
text "# files will be copied as-is; there are no commands or markers available.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_EXTRA_FILES =",
Doc
blank,
String -> Doc
text "# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen",
String -> Doc
text "# will adjust the colors in the style sheet and background images according to",
String -> Doc
text "# this color. Hue is specified as an angle on a colorwheel, see",
String -> Doc
text "# https://en.wikipedia.org/wiki/Hue for more information. For instance the value",
String -> Doc
text "# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300",
String -> Doc
text "# purple, and 360 is red again.",
String -> Doc
text "# Minimum value: 0, maximum value: 359, default value: 220.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_COLORSTYLE_HUE = 220",
Doc
blank,
String -> Doc
text "# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors",
String -> Doc
text "# in the HTML output. For a value of 0 the output will use grayscales only. A",
String -> Doc
text "# value of 255 will produce the most vivid colors.",
String -> Doc
text "# Minimum value: 0, maximum value: 255, default value: 100.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_COLORSTYLE_SAT = 100",
Doc
blank,
String -> Doc
text "# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the",
String -> Doc
text "# luminance component of the colors in the HTML output. Values below 100",
String -> Doc
text "# gradually make the output lighter, whereas values above 100 make the output",
String -> Doc
text "# darker. The value divided by 100 is the actual gamma applied, so 80 represents",
String -> Doc
text "# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not",
String -> Doc
text "# change the gamma.",
String -> Doc
text "# Minimum value: 40, maximum value: 240, default value: 80.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_COLORSTYLE_GAMMA = 80",
Doc
blank,
String -> Doc
text "# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML",
String -> Doc
text "# page will contain the date and time when the page was generated. Setting this",
String -> Doc
text "# to YES can help to show when doxygen was last run and thus if the",
String -> Doc
text "# documentation is up to date.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_TIMESTAMP = NO",
Doc
blank,
String -> Doc
text "# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML",
String -> Doc
text "# documentation will contain a main index with vertical navigation menus that",
String -> Doc
text "# are dynamically created via Javascript. If disabled, the navigation index will",
String -> Doc
text "# consists of multiple levels of tabs that are statically embedded in every HTML",
String -> Doc
text "# page. Disable this option to support browsers that do not have Javascript,",
String -> Doc
text "# like the Qt help browser.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_DYNAMIC_MENUS = YES",
Doc
blank,
String -> Doc
text "# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML",
String -> Doc
text "# documentation will contain sections that can be hidden and shown after the",
String -> Doc
text "# page has loaded.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_DYNAMIC_SECTIONS = NO",
Doc
blank,
String -> Doc
text "# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries",
String -> Doc
text "# shown in the various tree structured indices initially; the user can expand",
String -> Doc
text "# and collapse entries dynamically later on. Doxygen will expand the tree to",
String -> Doc
text "# such a level that at most the specified number of entries are visible (unless",
String -> Doc
text "# a fully collapsed tree already exceeds this amount). So setting the number of",
String -> Doc
text "# entries 1 will produce a full collapsed tree by default. 0 is a special value",
String -> Doc
text "# representing an infinite number of entries and will result in a full expanded",
String -> Doc
text "# tree by default.",
String -> Doc
text "# Minimum value: 0, maximum value: 9999, default value: 100.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "HTML_INDEX_NUM_ENTRIES = 100",
Doc
blank,
String -> Doc
text "# If the GENERATE_DOCSET tag is set to YES, additional index files will be",
String -> Doc
text "# generated that can be used as input for Apple's Xcode 3 integrated development",
String -> Doc
text "# environment (see: https://developer.apple.com/xcode/), introduced with OSX",
String -> Doc
text "# 10.5 (Leopard). To create a documentation set, doxygen will generate a",
String -> Doc
text "# Makefile in the HTML output directory. Running make will produce the docset in",
String -> Doc
text "# that directory and running make install will install the docset in",
String -> Doc
text "# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at",
String -> Doc
text "# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy",
String -> Doc
text "# genXcode/_index.html for more information.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "GENERATE_DOCSET = NO",
Doc
blank,
String -> Doc
text "# This tag determines the name of the docset feed. A documentation feed provides",
String -> Doc
text "# an umbrella under which multiple documentation sets from a single provider",
String -> Doc
text "# (such as a company or product suite) can be grouped.",
String -> Doc
text "# The default value is: Doxygen generated docs.",
String -> Doc
text "# This tag requires that the tag GENERATE_DOCSET is set to YES.",
Doc
blank,
String -> Doc
text "DOCSET_FEEDNAME = \"Doxygen generated docs\"",
Doc
blank,
String -> Doc
text "# This tag specifies a string that should uniquely identify the documentation",
String -> Doc
text "# set bundle. This should be a reverse domain-name style string, e.g.",
String -> Doc
text "# com.mycompany.MyDocSet. Doxygen will append .docset to the name.",
String -> Doc
text "# The default value is: org.doxygen.Project.",
String -> Doc
text "# This tag requires that the tag GENERATE_DOCSET is set to YES.",
Doc
blank,
String -> Doc
text "DOCSET_BUNDLE_ID = org.doxygen.Project",
Doc
blank,
String -> Doc
text "# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify",
String -> Doc
text "# the documentation publisher. This should be a reverse domain-name style",
String -> Doc
text "# string, e.g. com.mycompany.MyDocSet.documentation.",
String -> Doc
text "# The default value is: org.doxygen.Publisher.",
String -> Doc
text "# This tag requires that the tag GENERATE_DOCSET is set to YES.",
Doc
blank,
String -> Doc
text "DOCSET_PUBLISHER_ID = org.doxygen.Publisher",
Doc
blank,
String -> Doc
text "# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.",
String -> Doc
text "# The default value is: Publisher.",
String -> Doc
text "# This tag requires that the tag GENERATE_DOCSET is set to YES.",
Doc
blank,
String -> Doc
text "DOCSET_PUBLISHER_NAME = Publisher",
Doc
blank,
String -> Doc
text "# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three",
String -> Doc
text "# additional HTML index files: index.hhp, index.hhc, and index.hhk. The",
String -> Doc
text "# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop",
String -> Doc
text "# (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on",
String -> Doc
text "# Windows.",
String -> Doc
text "#",
String -> Doc
text "# The HTML Help Workshop contains a compiler that can convert all HTML output",
String -> Doc
text "# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML",
String -> Doc
text "# files are now used as the Windows 98 help format, and will replace the old",
String -> Doc
text "# Windows help format (.hlp) on all Windows platforms in the future. Compressed",
String -> Doc
text "# HTML files also contain an index, a table of contents, and you can search for",
String -> Doc
text "# words in the documentation. The HTML workshop also contains a viewer for",
String -> Doc
text "# compressed HTML files.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "GENERATE_HTMLHELP = NO",
Doc
blank,
String -> Doc
text "# The CHM_FILE tag can be used to specify the file name of the resulting .chm",
String -> Doc
text "# file. You can add a path in front of the file if the result should not be",
String -> Doc
text "# written to the html output directory.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTMLHELP is set to YES.",
Doc
blank,
String -> Doc
text "CHM_FILE =",
Doc
blank,
String -> Doc
text "# The HHC_LOCATION tag can be used to specify the location (absolute path",
String -> Doc
text "# including file name) of the HTML help compiler (hhc.exe). If non-empty,",
String -> Doc
text "# doxygen will try to run the HTML help compiler on the generated index.hhp.",
String -> Doc
text "# The file has to be specified with full path.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTMLHELP is set to YES.",
Doc
blank,
String -> Doc
text "HHC_LOCATION =",
Doc
blank,
String -> Doc
text "# The GENERATE_CHI flag controls if a separate .chi index file is generated",
String -> Doc
text "# (YES) or that it should be included in the master .chm file (NO).",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTMLHELP is set to YES.",
Doc
blank,
String -> Doc
text "GENERATE_CHI = NO",
Doc
blank,
String -> Doc
text "# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)",
String -> Doc
text "# and project file content.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTMLHELP is set to YES.",
Doc
blank,
String -> Doc
text "CHM_INDEX_ENCODING =",
Doc
blank,
String -> Doc
text "# The BINARY_TOC flag controls whether a binary table of contents is generated",
String -> Doc
text "# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it",
String -> Doc
text "# enables the Previous and Next buttons.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTMLHELP is set to YES.",
Doc
blank,
String -> Doc
text "BINARY_TOC = NO",
Doc
blank,
String -> Doc
text "# The TOC_EXPAND flag can be set to YES to add extra items for group members to",
String -> Doc
text "# the table of contents of the HTML help documentation and to the tree view.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTMLHELP is set to YES.",
Doc
blank,
String -> Doc
text "TOC_EXPAND = NO",
Doc
blank,
String -> Doc
text "# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and",
String -> Doc
text "# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that",
String -> Doc
text "# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help",
String -> Doc
text "# (.qch) of the generated HTML documentation.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "GENERATE_QHP = NO",
Doc
blank,
String -> Doc
text "# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify",
String -> Doc
text "# the file name of the resulting .qch file. The path specified is relative to",
String -> Doc
text "# the HTML output folder.",
String -> Doc
text "# This tag requires that the tag GENERATE_QHP is set to YES.",
Doc
blank,
String -> Doc
text "QCH_FILE =",
Doc
blank,
String -> Doc
text "# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help",
String -> Doc
text "# Project output. For more information please see Qt Help Project / Namespace",
String -> Doc
text "# (see: http://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).",
String -> Doc
text "# The default value is: org.doxygen.Project.",
String -> Doc
text "# This tag requires that the tag GENERATE_QHP is set to YES.",
Doc
blank,
String -> Doc
text "QHP_NAMESPACE = org.doxygen.Project",
Doc
blank,
String -> Doc
text "# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt",
String -> Doc
text "# Help Project output. For more information please see Qt Help Project / Virtual",
String -> Doc
text "# Folders (see: http://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-",
String -> Doc
text "# folders).",
String -> Doc
text "# The default value is: doc.",
String -> Doc
text "# This tag requires that the tag GENERATE_QHP is set to YES.",
Doc
blank,
String -> Doc
text "QHP_VIRTUAL_FOLDER = doc",
Doc
blank,
String -> Doc
text "# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom",
String -> Doc
text "# filter to add. For more information please see Qt Help Project / Custom",
String -> Doc
text "# Filters (see: http://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-",
String -> Doc
text "# filters).",
String -> Doc
text "# This tag requires that the tag GENERATE_QHP is set to YES.",
Doc
blank,
String -> Doc
text "QHP_CUST_FILTER_NAME =",
Doc
blank,
String -> Doc
text "# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the",
String -> Doc
text "# custom filter to add. For more information please see Qt Help Project / Custom",
String -> Doc
text "# Filters (see: http://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-",
String -> Doc
text "# filters).",
String -> Doc
text "# This tag requires that the tag GENERATE_QHP is set to YES.",
Doc
blank,
String -> Doc
text "QHP_CUST_FILTER_ATTRS =",
Doc
blank,
String -> Doc
text "# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this",
String -> Doc
text "# project's filter section matches. Qt Help Project / Filter Attributes (see:",
String -> Doc
text "# http://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes).",
String -> Doc
text "# This tag requires that the tag GENERATE_QHP is set to YES.",
Doc
blank,
String -> Doc
text "QHP_SECT_FILTER_ATTRS =",
Doc
blank,
String -> Doc
text "# The QHG_LOCATION tag can be used to specify the location of Qt's",
String -> Doc
text "# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the",
String -> Doc
text "# generated .qhp file.",
String -> Doc
text "# This tag requires that the tag GENERATE_QHP is set to YES.",
Doc
blank,
String -> Doc
text "QHG_LOCATION =",
Doc
blank,
String -> Doc
text "# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be",
String -> Doc
text "# generated, together with the HTML files, they form an Eclipse help plugin. To",
String -> Doc
text "# install this plugin and make it available under the help contents menu in",
String -> Doc
text "# Eclipse, the contents of the directory containing the HTML and XML files needs",
String -> Doc
text "# to be copied into the plugins directory of eclipse. The name of the directory",
String -> Doc
text "# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.",
String -> Doc
text "# After copying Eclipse needs to be restarted before the help appears.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "GENERATE_ECLIPSEHELP = NO",
Doc
blank,
String -> Doc
text "# A unique identifier for the Eclipse help plugin. When installing the plugin",
String -> Doc
text "# the directory name containing the HTML and XML files should also have this",
String -> Doc
text "# name. Each documentation set should have its own identifier.",
String -> Doc
text "# The default value is: org.doxygen.Project.",
String -> Doc
text "# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.",
Doc
blank,
String -> Doc
text "ECLIPSE_DOC_ID = org.doxygen.Project",
Doc
blank,
String -> Doc
text "# If you want full control over the layout of the generated HTML pages it might",
String -> Doc
text "# be necessary to disable the index and replace it with your own. The",
String -> Doc
text "# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top",
String -> Doc
text "# of each HTML page. A value of NO enables the index and the value YES disables",
String -> Doc
text "# it. Since the tabs in the index contain the same information as the navigation",
String -> Doc
text "# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "DISABLE_INDEX = NO",
Doc
blank,
String -> Doc
text "# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index",
String -> Doc
text "# structure should be generated to display hierarchical information. If the tag",
String -> Doc
text "# value is set to YES, a side panel will be generated containing a tree-like",
String -> Doc
text "# index structure (just like the one that is generated for HTML Help). For this",
String -> Doc
text "# to work a browser that supports JavaScript, DHTML, CSS and frames is required",
String -> Doc
text "# (i.e. any modern browser). Windows users are probably better off using the",
String -> Doc
text "# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can",
String -> Doc
text "# further fine-tune the look of the index. As an example, the default style",
String -> Doc
text "# sheet generated by doxygen has an example that shows how to put an image at",
String -> Doc
text "# the root of the tree instead of the PROJECT_NAME. Since the tree basically has",
String -> Doc
text "# the same information as the tab index, you could consider setting",
String -> Doc
text "# DISABLE_INDEX to YES when enabling this option.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "GENERATE_TREEVIEW = NO",
Doc
blank,
String -> Doc
text "# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that",
String -> Doc
text "# doxygen will group on one line in the generated HTML documentation.",
String -> Doc
text "#",
String -> Doc
text "# Note that a value of 0 will completely suppress the enum values from appearing",
String -> Doc
text "# in the overview section.",
String -> Doc
text "# Minimum value: 0, maximum value: 20, default value: 4.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "ENUM_VALUES_PER_LINE = 4",
Doc
blank,
String -> Doc
text "# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used",
String -> Doc
text "# to set the initial width (in pixels) of the frame in which the tree is shown.",
String -> Doc
text "# Minimum value: 0, maximum value: 1500, default value: 250.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "TREEVIEW_WIDTH = 250",
Doc
blank,
String -> Doc
text "# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to",
String -> Doc
text "# external symbols imported via tag files in a separate window.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "EXT_LINKS_IN_WINDOW = NO",
Doc
blank,
String -> Doc
text "# Use this tag to change the font size of LaTeX formulas included as images in",
String -> Doc
text "# the HTML documentation. When you change the font size after a successful",
String -> Doc
text "# doxygen run you need to manually remove any form_*.png images from the HTML",
String -> Doc
text "# output directory to force them to be regenerated.",
String -> Doc
text "# Minimum value: 8, maximum value: 50, default value: 10.",
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "FORMULA_FONTSIZE = 10",
Doc
blank,
String -> Doc
text "# Use the FORMULA_TRANSPARENT tag to determine whether or not the images",
String -> Doc
text "# generated for formulas are transparent PNGs. Transparent PNGs are not",
String -> Doc
text "# supported properly for IE 6.0, but are supported on all modern browsers.",
String -> Doc
text "#",
String -> Doc
text "# Note that when changing this option you need to delete any form_*.png files in",
String -> Doc
text "# the HTML output directory before the changes have effect.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "FORMULA_TRANSPARENT = YES",
Doc
blank,
String -> Doc
text "# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see",
String -> Doc
text "# https://www.mathjax.org) which uses client side Javascript for the rendering",
String -> Doc
text "# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX",
String -> Doc
text "# installed or if you want to formulas look prettier in the HTML output. When",
String -> Doc
text "# enabled you may also need to install MathJax separately and configure the path",
String -> Doc
text "# to it using the MATHJAX_RELPATH option.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "USE_MATHJAX = NO",
Doc
blank,
String -> Doc
text "# When MathJax is enabled you can set the default output format to be used for",
String -> Doc
text "# the MathJax output. See the MathJax site (see:",
String -> Doc
text "# http://docs.mathjax.org/en/latest/output.html) for more details.",
String -> Doc
text "# Possible values are: HTML-CSS (which is slower, but has the best",
String -> Doc
text "# compatibility), NativeMML (i.e. MathML) and SVG.",
String -> Doc
text "# The default value is: HTML-CSS.",
String -> Doc
text "# This tag requires that the tag USE_MATHJAX is set to YES.",
Doc
blank,
String -> Doc
text "MATHJAX_FORMAT = HTML-CSS",
Doc
blank,
String -> Doc
text "# When MathJax is enabled you need to specify the location relative to the HTML",
String -> Doc
text "# output directory using the MATHJAX_RELPATH option. The destination directory",
String -> Doc
text "# should contain the MathJax.js script. For instance, if the mathjax directory",
String -> Doc
text "# is located at the same level as the HTML output directory, then",
String -> Doc
text "# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax",
String -> Doc
text "# Content Delivery Network so you can quickly see the result without installing",
String -> Doc
text "# MathJax. However, it is strongly recommended to install a local copy of",
String -> Doc
text "# MathJax from https://www.mathjax.org before deployment.",
String -> Doc
text "# The default value is: https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/.",
String -> Doc
text "# This tag requires that the tag USE_MATHJAX is set to YES.",
Doc
blank,
String -> Doc
text "MATHJAX_RELPATH = https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/",
Doc
blank,
String -> Doc
text "# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax",
String -> Doc
text "# extension names that should be enabled during MathJax rendering. For example",
String -> Doc
text "# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols",
String -> Doc
text "# This tag requires that the tag USE_MATHJAX is set to YES.",
Doc
blank,
String -> Doc
text "MATHJAX_EXTENSIONS =",
Doc
blank,
String -> Doc
text "# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces",
String -> Doc
text "# of code that will be used on startup of the MathJax code. See the MathJax site",
String -> Doc
text "# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an",
String -> Doc
text "# example see the documentation.",
String -> Doc
text "# This tag requires that the tag USE_MATHJAX is set to YES.",
Doc
blank,
String -> Doc
text "MATHJAX_CODEFILE =",
Doc
blank,
String -> Doc
text "# When the SEARCHENGINE tag is enabled doxygen will generate a search box for",
String -> Doc
text "# the HTML output. The underlying search engine uses javascript and DHTML and",
String -> Doc
text "# should work on any modern browser. Note that when using HTML help",
String -> Doc
text "# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)",
String -> Doc
text "# there is already a search function so this one should typically be disabled.",
String -> Doc
text "# For large projects the javascript based search engine can be slow, then",
String -> Doc
text "# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to",
String -> Doc
text "# search using the keyboard; to jump to the search box use <access key> + S",
String -> Doc
text "# (what the <access key> is depends on the OS and browser, but it is typically",
String -> Doc
text "# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down",
String -> Doc
text "# key> to jump into the search results window, the results can be navigated",
String -> Doc
text "# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel",
String -> Doc
text "# the search. The filter options can be selected when the cursor is inside the",
String -> Doc
text "# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>",
String -> Doc
text "# to select a filter and <Enter> or <escape> to activate or cancel the filter",
String -> Doc
text "# option.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag GENERATE_HTML is set to YES.",
Doc
blank,
String -> Doc
text "SEARCHENGINE = YES",
Doc
blank,
String -> Doc
text "# When the SERVER_BASED_SEARCH tag is enabled the search engine will be",
String -> Doc
text "# implemented using a web server instead of a web client using Javascript. There",
String -> Doc
text "# are two flavors of web server based searching depending on the EXTERNAL_SEARCH",
String -> Doc
text "# setting. When disabled, doxygen will generate a PHP script for searching and",
String -> Doc
text "# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing",
String -> Doc
text "# and searching needs to be provided by external tools. See the section",
String -> Doc
text "# \"External Indexing and Searching\" for details.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag SEARCHENGINE is set to YES.",
Doc
blank,
String -> Doc
text "SERVER_BASED_SEARCH = NO",
Doc
blank,
String -> Doc
text "# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP",
String -> Doc
text "# script for searching. Instead the search results are written to an XML file",
String -> Doc
text "# which needs to be processed by an external indexer. Doxygen will invoke an",
String -> Doc
text "# external search engine pointed to by the SEARCHENGINE_URL option to obtain the",
String -> Doc
text "# search results.",
String -> Doc
text "#",
String -> Doc
text "# Doxygen ships with an example indexer (doxyindexer) and search engine",
String -> Doc
text "# (doxysearch.cgi) which are based on the open source search engine library",
String -> Doc
text "# Xapian (see: https://xapian.org/).",
String -> Doc
text "#",
String -> Doc
text "# See the section \"External Indexing and Searching\" for details.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag SEARCHENGINE is set to YES.",
Doc
blank,
String -> Doc
text "EXTERNAL_SEARCH = NO",
Doc
blank,
String -> Doc
text "# The SEARCHENGINE_URL should point to a search engine hosted by a web server",
String -> Doc
text "# which will return the search results when EXTERNAL_SEARCH is enabled.",
String -> Doc
text "#",
String -> Doc
text "# Doxygen ships with an example indexer (doxyindexer) and search engine",
String -> Doc
text "# (doxysearch.cgi) which are based on the open source search engine library",
String -> Doc
text "# Xapian (see: https://xapian.org/). See the section \"External Indexing and",
String -> Doc
text "# Searching\" for details.",
String -> Doc
text "# This tag requires that the tag SEARCHENGINE is set to YES.",
Doc
blank,
String -> Doc
text "SEARCHENGINE_URL =",
Doc
blank,
String -> Doc
text "# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed",
String -> Doc
text "# search data is written to a file for indexing by an external tool. With the",
String -> Doc
text "# SEARCHDATA_FILE tag the name of this file can be specified.",
String -> Doc
text "# The default file is: searchdata.xml.",
String -> Doc
text "# This tag requires that the tag SEARCHENGINE is set to YES.",
Doc
blank,
String -> Doc
text "SEARCHDATA_FILE = searchdata.xml",
Doc
blank,
String -> Doc
text "# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the",
String -> Doc
text "# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is",
String -> Doc
text "# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple",
String -> Doc
text "# projects and redirect the results back to the right project.",
String -> Doc
text "# This tag requires that the tag SEARCHENGINE is set to YES.",
Doc
blank,
String -> Doc
text "EXTERNAL_SEARCH_ID =",
Doc
blank,
String -> Doc
text "# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen",
String -> Doc
text "# projects other than the one defined by this configuration file, but that are",
String -> Doc
text "# all added to the same external search index. Each project needs to have a",
String -> Doc
text "# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of",
String -> Doc
text "# to a relative location where the documentation can be found. The format is:",
String -> Doc
text "# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...",
String -> Doc
text "# This tag requires that the tag SEARCHENGINE is set to YES.",
Doc
blank,
String -> Doc
text "EXTRA_SEARCH_MAPPINGS =",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the LaTeX output",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.",
Doc
defYes,
Doc
blank,
String -> Doc
text "GENERATE_LATEX = YES",
Doc
blank,
String -> Doc
text "# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a",
String -> Doc
text "# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of",
String -> Doc
text "# it.",
String -> Doc
text "# The default directory is: latex.",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_OUTPUT = latex",
Doc
blank,
String -> Doc
text "# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be",
String -> Doc
text "# invoked.",
String -> Doc
text "#",
String -> Doc
text "# Note that when not enabling USE_PDFLATEX the default is latex when enabling",
String -> Doc
text "# USE_PDFLATEX the default is pdflatex and when in the later case latex is",
String -> Doc
text "# chosen this is overwritten by pdflatex. For specific output languages the",
String -> Doc
text "# default can have been set differently, this depends on the implementation of",
String -> Doc
text "# the output language.",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_CMD_NAME =",
Doc
blank,
String -> Doc
text "# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate",
String -> Doc
text "# index for LaTeX.",
String -> Doc
text "# Note: This tag is used in the Makefile / make.bat.",
String -> Doc
text "# See also: LATEX_MAKEINDEX_CMD for the part in the generated output file",
String -> Doc
text "# (.tex).",
String -> Doc
text "# The default file is: makeindex.",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "MAKEINDEX_CMD_NAME = makeindex",
Doc
blank,
String -> Doc
text "# The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to",
String -> Doc
text "# generate index for LaTeX.",
String -> Doc
text "# Note: This tag is used in the generated output file (.tex).",
String -> Doc
text "# See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat.",
String -> Doc
text "# The default value is: \\makeindex.",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_MAKEINDEX_CMD = \\makeindex",
Doc
blank,
String -> Doc
text "# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX",
String -> Doc
text "# documents. This may be useful for small projects and may help to save some",
String -> Doc
text "# trees in general.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "COMPACT_LATEX = NO",
Doc
blank,
String -> Doc
text "# The PAPER_TYPE tag can be used to set the paper type that is used by the",
String -> Doc
text "# printer.",
String -> Doc
text "# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x",
String -> Doc
text "# 14 inches) and executive (7.25 x 10.5 inches).",
String -> Doc
text "# The default value is: a4.",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "PAPER_TYPE = a4",
Doc
blank,
String -> Doc
text "# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names",
String -> Doc
text "# that should be included in the LaTeX output. The package can be specified just",
String -> Doc
text "# by its name or with the correct syntax as to be used with the LaTeX",
String -> Doc
text "# \\usepackage command. To get the times font for instance you can specify :",
String -> Doc
text "# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}",
String -> Doc
text "# To use the option intlimits with the amsmath package you can specify:",
String -> Doc
text "# EXTRA_PACKAGES=[intlimits]{amsmath}",
String -> Doc
text "# If left blank no extra packages will be included.",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "EXTRA_PACKAGES =",
Doc
blank,
String -> Doc
text "# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the",
String -> Doc
text "# generated LaTeX document. The header should contain everything until the first",
String -> Doc
text "# chapter. If it is left blank doxygen will generate a standard header. See",
String -> Doc
text "# section \"Doxygen usage\" for information on how to let doxygen write the",
String -> Doc
text "# default header to a separate file.",
String -> Doc
text "#",
String -> Doc
text "# Note: Only use a user-defined header if you know what you are doing! The",
String -> Doc
text "# following commands have a special meaning inside the header: $title,",
String -> Doc
text "# $datetime, $date, $doxygenversion, $projectname, $projectnumber,",
String -> Doc
text "# $projectbrief, $projectlogo. Doxygen will replace $title with the empty",
String -> Doc
text "# string, for the replacement values of the other commands the user is referred",
String -> Doc
text "# to HTML_HEADER.",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_HEADER =",
Doc
blank,
String -> Doc
text "# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the",
String -> Doc
text "# generated LaTeX document. The footer should contain everything after the last",
String -> Doc
text "# chapter. If it is left blank doxygen will generate a standard footer. See",
String -> Doc
text "# LATEX_HEADER for more information on how to generate a default footer and what",
String -> Doc
text "# special commands can be used inside the footer.",
String -> Doc
text "#",
String -> Doc
text "# Note: Only use a user-defined footer if you know what you are doing!",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_FOOTER =",
Doc
blank,
String -> Doc
text "# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined",
String -> Doc
text "# LaTeX style sheets that are included after the standard style sheets created",
String -> Doc
text "# by doxygen. Using this option one can overrule certain style aspects. Doxygen",
String -> Doc
text "# will copy the style sheet files to the output directory.",
String -> Doc
text "# Note: The order of the extra style sheet files is of importance (e.g. the last",
String -> Doc
text "# style sheet in the list overrules the setting of the previous ones in the",
String -> Doc
text "# list).",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_EXTRA_STYLESHEET =",
Doc
blank,
String -> Doc
text "# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or",
String -> Doc
text "# other source files which should be copied to the LATEX_OUTPUT output",
String -> Doc
text "# directory. Note that the files will be copied as-is; there are no commands or",
String -> Doc
text "# markers available.",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_EXTRA_FILES =",
Doc
blank,
String -> Doc
text "# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is",
String -> Doc
text "# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will",
String -> Doc
text "# contain links (just like the HTML output) instead of page references. This",
String -> Doc
text "# makes the output suitable for online browsing using a PDF viewer.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "PDF_HYPERLINKS = YES",
Doc
blank,
String -> Doc
text "# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate",
String -> Doc
text "# the PDF file directly from the LaTeX files. Set this option to YES, to get a",
String -> Doc
text "# higher quality PDF documentation.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "USE_PDFLATEX = YES",
Doc
blank,
String -> Doc
text "# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode",
String -> Doc
text "# command to the generated LaTeX files. This will instruct LaTeX to keep running",
String -> Doc
text "# if errors occur, instead of asking the user for help. This option is also used",
String -> Doc
text "# when generating formulas in HTML.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_BATCHMODE = NO",
Doc
blank,
String -> Doc
text "# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the",
String -> Doc
text "# index chapters (such as File Index, Compound Index, etc.) in the output.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_HIDE_INDICES = NO",
Doc
blank,
String -> Doc
text "# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source",
String -> Doc
text "# code with syntax highlighting in the LaTeX output.",
String -> Doc
text "#",
String -> Doc
text "# Note that which sources are shown also depends on other settings such as",
String -> Doc
text "# SOURCE_BROWSER.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_SOURCE_CODE = NO",
Doc
blank,
String -> Doc
text "# The LATEX_BIB_STYLE tag can be used to specify the style to use for the",
String -> Doc
text "# bibliography, e.g. plainnat, or ieeetr. See",
String -> Doc
text "# https://en.wikipedia.org/wiki/BibTeX and \\cite for more info.",
String -> Doc
text "# The default value is: plain.",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_BIB_STYLE = plain",
Doc
blank,
String -> Doc
text "# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated",
String -> Doc
text "# page will contain the date and time when the page was generated. Setting this",
String -> Doc
text "# to NO can help when comparing the output of multiple runs.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_TIMESTAMP = NO",
Doc
blank,
String -> Doc
text "# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute)",
String -> Doc
text "# path from which the emoji images will be read. If a relative path is entered,",
String -> Doc
text "# it will be relative to the LATEX_OUTPUT directory. If left blank the",
String -> Doc
text "# LATEX_OUTPUT directory will be used.",
String -> Doc
text "# This tag requires that the tag GENERATE_LATEX is set to YES.",
Doc
blank,
String -> Doc
text "LATEX_EMOJI_DIRECTORY =",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the RTF output",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The",
String -> Doc
text "# RTF output is optimized for Word 97 and may not look too pretty with other RTF",
String -> Doc
text "# readers/editors.",
Doc
defNo,
Doc
blank,
String -> Doc
text "GENERATE_RTF = NO",
Doc
blank,
String -> Doc
text "# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a",
String -> Doc
text "# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of",
String -> Doc
text "# it.",
String -> Doc
text "# The default directory is: rtf.",
String -> Doc
text "# This tag requires that the tag GENERATE_RTF is set to YES.",
Doc
blank,
String -> Doc
text "RTF_OUTPUT = rtf",
Doc
blank,
String -> Doc
text "# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF",
String -> Doc
text "# documents. This may be useful for small projects and may help to save some",
String -> Doc
text "# trees in general.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_RTF is set to YES.",
Doc
blank,
String -> Doc
text "COMPACT_RTF = NO",
Doc
blank,
String -> Doc
text "# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will",
String -> Doc
text "# contain hyperlink fields. The RTF file will contain links (just like the HTML",
String -> Doc
text "# output) instead of page references. This makes the output suitable for online",
String -> Doc
text "# browsing using Word or some other Word compatible readers that support those",
String -> Doc
text "# fields.",
String -> Doc
text "#",
String -> Doc
text "# Note: WordPad (write) and others do not support links.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_RTF is set to YES.",
Doc
blank,
String -> Doc
text "RTF_HYPERLINKS = NO",
Doc
blank,
String -> Doc
text "# Load stylesheet definitions from file. Syntax is similar to doxygen's",
String -> Doc
text "# configuration file, i.e. a series of assignments. You only have to provide",
String -> Doc
text "# replacements, missing definitions are set to their default value.",
String -> Doc
text "#",
String -> Doc
text "# See also section \"Doxygen usage\" for information on how to generate the",
String -> Doc
text "# default style sheet that doxygen normally uses.",
String -> Doc
text "# This tag requires that the tag GENERATE_RTF is set to YES.",
Doc
blank,
String -> Doc
text "RTF_STYLESHEET_FILE =",
Doc
blank,
String -> Doc
text "# Set optional variables used in the generation of an RTF document. Syntax is",
String -> Doc
text "# similar to doxygen's configuration file. A template extensions file can be",
String -> Doc
text "# generated using doxygen -e rtf extensionFile.",
String -> Doc
text "# This tag requires that the tag GENERATE_RTF is set to YES.",
Doc
blank,
String -> Doc
text "RTF_EXTENSIONS_FILE =",
Doc
blank,
String -> Doc
text "# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code",
String -> Doc
text "# with syntax highlighting in the RTF output.",
String -> Doc
text "#",
String -> Doc
text "# Note that which sources are shown also depends on other settings such as",
String -> Doc
text "# SOURCE_BROWSER.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_RTF is set to YES.",
Doc
blank,
String -> Doc
text "RTF_SOURCE_CODE = NO",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the man page output",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for",
String -> Doc
text "# classes and files.",
Doc
defNo,
Doc
blank,
String -> Doc
text "GENERATE_MAN = NO",
Doc
blank,
String -> Doc
text "# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a",
String -> Doc
text "# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of",
String -> Doc
text "# it. A directory man3 will be created inside the directory specified by",
String -> Doc
text "# MAN_OUTPUT.",
String -> Doc
text "# The default directory is: man.",
String -> Doc
text "# This tag requires that the tag GENERATE_MAN is set to YES.",
Doc
blank,
String -> Doc
text "MAN_OUTPUT = man",
Doc
blank,
String -> Doc
text "# The MAN_EXTENSION tag determines the extension that is added to the generated",
String -> Doc
text "# man pages. In case the manual section does not start with a number, the number",
String -> Doc
text "# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is",
String -> Doc
text "# optional.",
String -> Doc
text "# The default value is: .3.",
String -> Doc
text "# This tag requires that the tag GENERATE_MAN is set to YES.",
Doc
blank,
String -> Doc
text "MAN_EXTENSION = .3",
Doc
blank,
String -> Doc
text "# The MAN_SUBDIR tag determines the name of the directory created within",
String -> Doc
text "# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by",
String -> Doc
text "# MAN_EXTENSION with the initial . removed.",
String -> Doc
text "# This tag requires that the tag GENERATE_MAN is set to YES.",
Doc
blank,
String -> Doc
text "MAN_SUBDIR =",
Doc
blank,
String -> Doc
text "# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it",
String -> Doc
text "# will generate one additional man file for each entity documented in the real",
String -> Doc
text "# man page(s). These additional files only source the real man page, but without",
String -> Doc
text "# them the man command would be unable to find the correct page.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_MAN is set to YES.",
Doc
blank,
String -> Doc
text "MAN_LINKS = NO",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the XML output",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that",
String -> Doc
text "# captures the structure of the code including all documentation.",
Doc
defNo,
Doc
blank,
String -> Doc
text "GENERATE_XML = NO",
Doc
blank,
String -> Doc
text "# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a",
String -> Doc
text "# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of",
String -> Doc
text "# it.",
String -> Doc
text "# The default directory is: xml.",
String -> Doc
text "# This tag requires that the tag GENERATE_XML is set to YES.",
Doc
blank,
String -> Doc
text "XML_OUTPUT = xml",
Doc
blank,
String -> Doc
text "# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program",
String -> Doc
text "# listings (including syntax highlighting and cross-referencing information) to",
String -> Doc
text "# the XML output. Note that enabling this will significantly increase the size",
String -> Doc
text "# of the XML output.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag GENERATE_XML is set to YES.",
Doc
blank,
String -> Doc
text "XML_PROGRAMLISTING = YES",
Doc
blank,
String -> Doc
text "# If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include",
String -> Doc
text "# namespace members in file scope as well, matching the HTML output.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_XML is set to YES.",
Doc
blank,
String -> Doc
text "XML_NS_MEMB_FILE_SCOPE = NO",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the DOCBOOK output",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files",
String -> Doc
text "# that can be used to generate PDF.",
Doc
defNo,
Doc
blank,
String -> Doc
text "GENERATE_DOCBOOK = NO",
Doc
blank,
String -> Doc
text "# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.",
String -> Doc
text "# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in",
String -> Doc
text "# front of it.",
String -> Doc
text "# The default directory is: docbook.",
String -> Doc
text "# This tag requires that the tag GENERATE_DOCBOOK is set to YES.",
Doc
blank,
String -> Doc
text "DOCBOOK_OUTPUT = docbook",
Doc
blank,
String -> Doc
text "# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the",
String -> Doc
text "# program listings (including syntax highlighting and cross-referencing",
String -> Doc
text "# information) to the DOCBOOK output. Note that enabling this will significantly",
String -> Doc
text "# increase the size of the DOCBOOK output.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_DOCBOOK is set to YES.",
Doc
blank,
String -> Doc
text "DOCBOOK_PROGRAMLISTING = NO",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options for the AutoGen Definitions output",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an",
String -> Doc
text "# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures",
String -> Doc
text "# the structure of the code including all documentation. Note that this feature",
String -> Doc
text "# is still experimental and incomplete at the moment.",
Doc
defNo,
Doc
blank,
String -> Doc
text "GENERATE_AUTOGEN_DEF = NO",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the Perl module output",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module",
String -> Doc
text "# file that captures the structure of the code including all documentation.",
String -> Doc
text "#",
String -> Doc
text "# Note that this feature is still experimental and incomplete at the moment.",
Doc
defNo,
Doc
blank,
String -> Doc
text "GENERATE_PERLMOD = NO",
Doc
blank,
String -> Doc
text "# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary",
String -> Doc
text "# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI",
String -> Doc
text "# output from the Perl module output.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag GENERATE_PERLMOD is set to YES.",
Doc
blank,
String -> Doc
text "PERLMOD_LATEX = NO",
Doc
blank,
String -> Doc
text "# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely",
String -> Doc
text "# formatted so it can be parsed by a human reader. This is useful if you want to",
String -> Doc
text "# understand what is going on. On the other hand, if this tag is set to NO, the",
String -> Doc
text "# size of the Perl module output will be much smaller and Perl will parse it",
String -> Doc
text "# just the same.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag GENERATE_PERLMOD is set to YES.",
Doc
blank,
String -> Doc
text "PERLMOD_PRETTY = YES",
Doc
blank,
String -> Doc
text "# The names of the make variables in the generated doxyrules.make file are",
String -> Doc
text "# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful",
String -> Doc
text "# so different doxyrules.make files included by the same Makefile don't",
String -> Doc
text "# overwrite each other's variables.",
String -> Doc
text "# This tag requires that the tag GENERATE_PERLMOD is set to YES.",
Doc
blank,
String -> Doc
text "PERLMOD_MAKEVAR_PREFIX =",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the preprocessor",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all",
String -> Doc
text "# C-preprocessor directives found in the sources and include files.",
Doc
defYes,
Doc
blank,
String -> Doc
text "ENABLE_PREPROCESSING = YES",
Doc
blank,
String -> Doc
text "# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names",
String -> Doc
text "# in the source code. If set to NO, only conditional compilation will be",
String -> Doc
text "# performed. Macro expansion can be done in a controlled way by setting",
String -> Doc
text "# EXPAND_ONLY_PREDEF to YES.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
Doc
blank,
String -> Doc
text "MACRO_EXPANSION = NO",
Doc
blank,
String -> Doc
text "# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then",
String -> Doc
text "# the macro expansion is limited to the macros specified with the PREDEFINED and",
String -> Doc
text "# EXPAND_AS_DEFINED tags.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
Doc
blank,
String -> Doc
text "EXPAND_ONLY_PREDEF = NO",
Doc
blank,
String -> Doc
text "# If the SEARCH_INCLUDES tag is set to YES, the include files in the",
String -> Doc
text "# INCLUDE_PATH will be searched if a #include is found.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
Doc
blank,
String -> Doc
text "SEARCH_INCLUDES = YES",
Doc
blank,
String -> Doc
text "# The INCLUDE_PATH tag can be used to specify one or more directories that",
String -> Doc
text "# contain include files that are not input files but should be processed by the",
String -> Doc
text "# preprocessor.",
String -> Doc
text "# This tag requires that the tag SEARCH_INCLUDES is set to YES.",
Doc
blank,
String -> Doc
text "INCLUDE_PATH =",
Doc
blank,
String -> Doc
text "# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard",
String -> Doc
text "# patterns (like *.h and *.hpp) to filter out the header-files in the",
String -> Doc
text "# directories. If left blank, the patterns specified with FILE_PATTERNS will be",
String -> Doc
text "# used.",
String -> Doc
text "# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
Doc
blank,
String -> Doc
text "INCLUDE_FILE_PATTERNS =",
Doc
blank,
String -> Doc
text "# The PREDEFINED tag can be used to specify one or more macro names that are",
String -> Doc
text "# defined before the preprocessor is started (similar to the -D option of e.g.",
String -> Doc
text "# gcc). The argument of the tag is a list of macros of the form: name or",
String -> Doc
text "# name=definition (no spaces). If the definition and the \"=\" are omitted, \"=1\"",
String -> Doc
text "# is assumed. To prevent a macro definition from being undefined via #undef or",
String -> Doc
text "# recursively expanded use the := operator instead of the = operator.",
String -> Doc
text "# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
Doc
blank,
String -> Doc
text "PREDEFINED =",
Doc
blank,
String -> Doc
text "# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this",
String -> Doc
text "# tag can be used to specify a list of macro names that should be expanded. The",
String -> Doc
text "# macro definition that is found in the sources will be used. Use the PREDEFINED",
String -> Doc
text "# tag if you want to use a different macro definition that overrules the",
String -> Doc
text "# definition found in the source code.",
String -> Doc
text "# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
Doc
blank,
String -> Doc
text "EXPAND_AS_DEFINED =",
Doc
blank,
String -> Doc
text "# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will",
String -> Doc
text "# remove all references to function-like macros that are alone on a line, have",
String -> Doc
text "# an all uppercase name, and do not end with a semicolon. Such function macros",
String -> Doc
text "# are typically used for boiler-plate code, and will confuse the parser if not",
String -> Doc
text "# removed.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.",
Doc
blank,
String -> Doc
text "SKIP_FUNCTION_MACROS = YES",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to external references",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# The TAGFILES tag can be used to specify one or more tag files. For each tag",
String -> Doc
text "# file the location of the external documentation should be added. The format of",
String -> Doc
text "# a tag file without this location is as follows:",
String -> Doc
text "# TAGFILES = file1 file2 ...",
String -> Doc
text "# Adding location for the tag files is done as follows:",
String -> Doc
text "# TAGFILES = file1=loc1 \"file2 = loc2\" ...",
String -> Doc
text "# where loc1 and loc2 can be relative or absolute paths or URLs. See the",
String -> Doc
text "# section \"Linking to external documentation\" for more information about the use",
String -> Doc
text "# of tag files.",
String -> Doc
text "# Note: Each tag file must have a unique name (where the name does NOT include",
String -> Doc
text "# the path). If a tag file is not located in the directory in which doxygen is",
String -> Doc
text "# run, you must also specify the path to the tagfile here.",
Doc
blank,
String -> Doc
text "TAGFILES =",
Doc
blank,
String -> Doc
text "# When a file name is specified after GENERATE_TAGFILE, doxygen will create a",
String -> Doc
text "# tag file that is based on the input files it reads. See section \"Linking to",
String -> Doc
text "# external documentation\" for more information about the usage of tag files.",
Doc
blank,
String -> Doc
text "GENERATE_TAGFILE =",
Doc
blank,
String -> Doc
text "# If the ALLEXTERNALS tag is set to YES, all external class will be listed in",
String -> Doc
text "# the class index. If set to NO, only the inherited external classes will be",
String -> Doc
text "# listed.",
Doc
defNo,
Doc
blank,
String -> Doc
text "ALLEXTERNALS = NO",
Doc
blank,
String -> Doc
text "# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed",
String -> Doc
text "# in the modules index. If set to NO, only the current project's groups will be",
String -> Doc
text "# listed.",
Doc
defYes,
Doc
blank,
String -> Doc
text "EXTERNAL_GROUPS = YES",
Doc
blank,
String -> Doc
text "# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in",
String -> Doc
text "# the related pages index. If set to NO, only the current project's pages will",
String -> Doc
text "# be listed.",
Doc
defYes,
Doc
blank,
String -> Doc
text "EXTERNAL_PAGES = YES",
Doc
blank,
String -> Doc
text "# The PERL_PATH should be the absolute path and name of the perl script",
String -> Doc
text "# interpreter (i.e. the result of 'which perl').",
String -> Doc
text "# The default file (with absolute path) is: /usr/bin/perl.",
Doc
blank,
String -> Doc
text "PERL_PATH = /usr/bin/perl",
Doc
blank,
String -> Doc
text "#---------------------------------------------------------------------------",
String -> Doc
text "# Configuration options related to the dot tool",
String -> Doc
text "#---------------------------------------------------------------------------",
Doc
blank,
String -> Doc
text "# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram",
String -> Doc
text "# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to",
String -> Doc
text "# NO turns the diagrams off. Note that this option also works with HAVE_DOT",
String -> Doc
text "# disabled, but it is recommended to install and use dot, since it yields more",
String -> Doc
text "# powerful graphs.",
Doc
defYes,
Doc
blank,
String -> Doc
text "CLASS_DIAGRAMS = YES",
Doc
blank,
String -> Doc
text "# You can define message sequence charts within doxygen comments using the \\msc",
String -> Doc
text "# command. Doxygen will then run the mscgen tool (see:",
String -> Doc
text "# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the",
String -> Doc
text "# documentation. The MSCGEN_PATH tag allows you to specify the directory where",
String -> Doc
text "# the mscgen tool resides. If left empty the tool is assumed to be found in the",
String -> Doc
text "# default search path.",
Doc
blank,
String -> Doc
text "MSCGEN_PATH =",
Doc
blank,
String -> Doc
text "# You can include diagrams made with dia in doxygen documentation. Doxygen will",
String -> Doc
text "# then run dia to produce the diagram and insert it in the documentation. The",
String -> Doc
text "# DIA_PATH tag allows you to specify the directory where the dia binary resides.",
String -> Doc
text "# If left empty dia is assumed to be found in the default search path.",
Doc
blank,
String -> Doc
text "DIA_PATH =",
Doc
blank,
String -> Doc
text "# If set to YES the inheritance and collaboration graphs will hide inheritance",
String -> Doc
text "# and usage relations if the target is undocumented or is not a class.",
Doc
defYes,
Doc
blank,
String -> Doc
text "HIDE_UNDOC_RELATIONS = YES",
Doc
blank,
String -> Doc
text "# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is",
String -> Doc
text "# available from the path. This tool is part of Graphviz (see:",
String -> Doc
text "# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent",
String -> Doc
text "# Bell Labs. The other options in this section have no effect if this option is",
String -> Doc
text "# set to NO",
Doc
defNo,
Doc
blank,
String -> Doc
text "HAVE_DOT = NO",
Doc
blank,
String -> Doc
text "# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed",
String -> Doc
text "# to run in parallel. When set to 0 doxygen will base this on the number of",
String -> Doc
text "# processors available in the system. You can set it explicitly to a value",
String -> Doc
text "# larger than 0 to get control over the balance between CPU load and processing",
String -> Doc
text "# speed.",
String -> Doc
text "# Minimum value: 0, maximum value: 32, default value: 0.",
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOT_NUM_THREADS = 0",
Doc
blank,
String -> Doc
text "# When you want a differently looking font in the dot files that doxygen",
String -> Doc
text "# generates you can specify the font name using DOT_FONTNAME. You need to make",
String -> Doc
text "# sure dot is able to find the font, which can be done by putting it in a",
String -> Doc
text "# standard location or by setting the DOTFONTPATH environment variable or by",
String -> Doc
text "# setting DOT_FONTPATH to the directory containing the font.",
String -> Doc
text "# The default value is: Helvetica.",
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOT_FONTNAME = Helvetica",
Doc
blank,
String -> Doc
text "# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of",
String -> Doc
text "# dot graphs.",
String -> Doc
text "# Minimum value: 4, maximum value: 24, default value: 10.",
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOT_FONTSIZE = 10",
Doc
blank,
String -> Doc
text "# By default doxygen will tell dot to use the default font as specified with",
String -> Doc
text "# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set",
String -> Doc
text "# the path where dot can find it using this tag.",
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOT_FONTPATH =",
Doc
blank,
String -> Doc
text "# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for",
String -> Doc
text "# each documented class showing the direct and indirect inheritance relations.",
String -> Doc
text "# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "CLASS_GRAPH = YES",
Doc
blank,
String -> Doc
text "# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a",
String -> Doc
text "# graph for each documented class showing the direct and indirect implementation",
String -> Doc
text "# dependencies (inheritance, containment, and class references variables) of the",
String -> Doc
text "# class with other documented classes.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "COLLABORATION_GRAPH = YES",
Doc
blank,
String -> Doc
text "# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for",
String -> Doc
text "# groups, showing the direct groups dependencies.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "GROUP_GRAPHS = YES",
Doc
blank,
String -> Doc
text "# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and",
String -> Doc
text "# collaboration diagrams in a style similar to the OMG's Unified Modeling",
String -> Doc
text "# Language.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "UML_LOOK = NO",
Doc
blank,
String -> Doc
text "# If the UML_LOOK tag is enabled, the fields and methods are shown inside the",
String -> Doc
text "# class node. If there are many fields or methods and many nodes the graph may",
String -> Doc
text "# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the",
String -> Doc
text "# number of items for each type to make the size more manageable. Set this to 0",
String -> Doc
text "# for no limit. Note that the threshold may be exceeded by 50% before the limit",
String -> Doc
text "# is enforced. So when you set the threshold to 10, up to 15 fields may appear,",
String -> Doc
text "# but if the number exceeds 15, the total amount of fields shown is limited to",
String -> Doc
text "# 10.",
String -> Doc
text "# Minimum value: 0, maximum value: 100, default value: 10.",
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "UML_LIMIT_NUM_FIELDS = 10",
Doc
blank,
String -> Doc
text "# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and",
String -> Doc
text "# collaboration graphs will show the relations between templates and their",
String -> Doc
text "# instances.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "TEMPLATE_RELATIONS = NO",
Doc
blank,
String -> Doc
text "# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to",
String -> Doc
text "# YES then doxygen will generate a graph for each documented file showing the",
String -> Doc
text "# direct and indirect include dependencies of the file with other documented",
String -> Doc
text "# files.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "INCLUDE_GRAPH = YES",
Doc
blank,
String -> Doc
text "# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are",
String -> Doc
text "# set to YES then doxygen will generate a graph for each documented file showing",
String -> Doc
text "# the direct and indirect include dependencies of the file with other documented",
String -> Doc
text "# files.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "INCLUDED_BY_GRAPH = YES",
Doc
blank,
String -> Doc
text "# If the CALL_GRAPH tag is set to YES then doxygen will generate a call",
String -> Doc
text "# dependency graph for every global function or class method.",
String -> Doc
text "#",
String -> Doc
text "# Note that enabling this option will significantly increase the time of a run.",
String -> Doc
text "# So in most cases it will be better to enable call graphs for selected",
String -> Doc
text "# functions only using the \\callgraph command. Disabling a call graph can be",
String -> Doc
text "# accomplished by means of the command \\hidecallgraph.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "CALL_GRAPH = NO",
Doc
blank,
String -> Doc
text "# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller",
String -> Doc
text "# dependency graph for every global function or class method.",
String -> Doc
text "#",
String -> Doc
text "# Note that enabling this option will significantly increase the time of a run.",
String -> Doc
text "# So in most cases it will be better to enable caller graphs for selected",
String -> Doc
text "# functions only using the \\callergraph command. Disabling a caller graph can be",
String -> Doc
text "# accomplished by means of the command \\hidecallergraph.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "CALLER_GRAPH = NO",
Doc
blank,
String -> Doc
text "# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical",
String -> Doc
text "# hierarchy of all classes instead of a textual one.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "GRAPHICAL_HIERARCHY = YES",
Doc
blank,
String -> Doc
text "# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the",
String -> Doc
text "# dependencies a directory has on other directories in a graphical way. The",
String -> Doc
text "# dependency relations are determined by the #include relations between the",
String -> Doc
text "# files in the directories.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DIRECTORY_GRAPH = YES",
Doc
blank,
String -> Doc
text "# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images",
String -> Doc
text "# generated by dot. For an explanation of the image formats see the section",
String -> Doc
text "# output formats in the documentation of the dot tool (Graphviz (see:",
String -> Doc
text "# http://www.graphviz.org/)).",
String -> Doc
text "# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order",
String -> Doc
text "# to make the SVG files visible in IE 9+ (other browsers do not have this",
String -> Doc
text "# requirement).",
String -> Doc
text "# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,",
String -> Doc
text "# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and",
String -> Doc
text "# png:gdiplus:gdiplus.",
String -> Doc
text "# The default value is: png.",
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOT_IMAGE_FORMAT = png",
Doc
blank,
String -> Doc
text "# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to",
String -> Doc
text "# enable generation of interactive SVG images that allow zooming and panning.",
String -> Doc
text "#",
String -> Doc
text "# Note that this requires a modern browser other than Internet Explorer. Tested",
String -> Doc
text "# and working are Firefox, Chrome, Safari, and Opera.",
String -> Doc
text "# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make",
String -> Doc
text "# the SVG files visible. Older versions of IE do not have SVG support.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "INTERACTIVE_SVG = NO",
Doc
blank,
String -> Doc
text "# The DOT_PATH tag can be used to specify the path where the dot tool can be",
String -> Doc
text "# found. If left blank, it is assumed the dot tool can be found in the path.",
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOT_PATH =",
Doc
blank,
String -> Doc
text "# The DOTFILE_DIRS tag can be used to specify one or more directories that",
String -> Doc
text "# contain dot files that are included in the documentation (see the \\dotfile",
String -> Doc
text "# command).",
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOTFILE_DIRS =",
Doc
blank,
String -> Doc
text "# The MSCFILE_DIRS tag can be used to specify one or more directories that",
String -> Doc
text "# contain msc files that are included in the documentation (see the \\mscfile",
String -> Doc
text "# command).",
Doc
blank,
String -> Doc
text "MSCFILE_DIRS =",
Doc
blank,
String -> Doc
text "# The DIAFILE_DIRS tag can be used to specify one or more directories that",
String -> Doc
text "# contain dia files that are included in the documentation (see the \\diafile",
String -> Doc
text "# command).",
Doc
blank,
String -> Doc
text "DIAFILE_DIRS =",
Doc
blank,
String -> Doc
text "# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the",
String -> Doc
text "# path where java can find the plantuml.jar file. If left blank, it is assumed",
String -> Doc
text "# PlantUML is not used or called during a preprocessing step. Doxygen will",
String -> Doc
text "# generate a warning when it encounters a \\startuml command in this case and",
String -> Doc
text "# will not generate output for the diagram.",
Doc
blank,
String -> Doc
text "PLANTUML_JAR_PATH =",
Doc
blank,
String -> Doc
text "# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a",
String -> Doc
text "# configuration file for plantuml.",
Doc
blank,
String -> Doc
text "PLANTUML_CFG_FILE =",
Doc
blank,
String -> Doc
text "# When using plantuml, the specified paths are searched for files specified by",
String -> Doc
text "# the !include statement in a plantuml block.",
Doc
blank,
String -> Doc
text "PLANTUML_INCLUDE_PATH =",
Doc
blank,
String -> Doc
text "# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes",
String -> Doc
text "# that will be shown in the graph. If the number of nodes in a graph becomes",
String -> Doc
text "# larger than this value, doxygen will truncate the graph, which is visualized",
String -> Doc
text "# by representing a node as a red box. Note that doxygen if the number of direct",
String -> Doc
text "# children of the root node in a graph is already larger than",
String -> Doc
text "# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that",
String -> Doc
text "# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.",
String -> Doc
text "# Minimum value: 0, maximum value: 10000, default value: 50.",
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOT_GRAPH_MAX_NODES = 50",
Doc
blank,
String -> Doc
text "# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs",
String -> Doc
text "# generated by dot. A depth value of 3 means that only nodes reachable from the",
String -> Doc
text "# root by following a path via at most 3 edges will be shown. Nodes that lay",
String -> Doc
text "# further from the root node will be omitted. Note that setting this option to 1",
String -> Doc
text "# or 2 may greatly reduce the computation time needed for large code bases. Also",
String -> Doc
text "# note that the size of a graph can be further restricted by",
String -> Doc
text "# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.",
String -> Doc
text "# Minimum value: 0, maximum value: 1000, default value: 0.",
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "MAX_DOT_GRAPH_DEPTH = 0",
Doc
blank,
String -> Doc
text "# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent",
String -> Doc
text "# background. This is disabled by default, because dot on Windows does not seem",
String -> Doc
text "# to support this out of the box.",
String -> Doc
text "#",
String -> Doc
text "# Warning: Depending on the platform used, enabling this option may lead to",
String -> Doc
text "# badly anti-aliased labels on the edges of a graph (i.e. they become hard to",
String -> Doc
text "# read).",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOT_TRANSPARENT = NO",
Doc
blank,
String -> Doc
text "# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output",
String -> Doc
text "# files in one run (i.e. multiple -o and -T options on the command line). This",
String -> Doc
text "# makes dot run faster, but since only newer versions of dot (>1.8.10) support",
String -> Doc
text "# this, this feature is disabled by default.",
Doc
defNo,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOT_MULTI_TARGETS = NO",
Doc
blank,
String -> Doc
text "# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page",
String -> Doc
text "# explaining the meaning of the various boxes and arrows in the dot generated",
String -> Doc
text "# graphs.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "GENERATE_LEGEND = YES",
Doc
blank,
String -> Doc
text "# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot",
String -> Doc
text "# files that are used to generate the various graphs.",
Doc
defYes,
String -> Doc
text "# This tag requires that the tag HAVE_DOT is set to YES.",
Doc
blank,
String -> Doc
text "DOT_CLEANUP = YES"]