aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/eina/doc/Doxyfile.in
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/eina/doc/Doxyfile.in')
-rw-r--r--libraries/eina/doc/Doxyfile.in1531
1 files changed, 935 insertions, 596 deletions
diff --git a/libraries/eina/doc/Doxyfile.in b/libraries/eina/doc/Doxyfile.in
index 5843161..97b0bf9 100644
--- a/libraries/eina/doc/Doxyfile.in
+++ b/libraries/eina/doc/Doxyfile.in
@@ -1,224 +1,240 @@
1# Doxyfile 1.5.5 1# Doxyfile 1.7.3
2 2
3# This file describes the settings to be used by the documentation system 3# This file describes the settings to be used by the documentation system
4# doxygen (www.doxygen.org) for a project 4# doxygen (www.doxygen.org) for a project.
5# 5#
6# All text after a hash (#) is considered a comment and will be ignored 6# All text after a hash (#) is considered a comment and will be ignored.
7# The format is: 7# The format is:
8# TAG = value [value, ...] 8# TAG = value [value, ...]
9# For lists items can also be appended using: 9# For lists items can also be appended using:
10# TAG += value [value, ...] 10# TAG += value [value, ...]
11# Values that contain spaces should be placed between quotes (" ") 11# Values that contain spaces should be placed between quotes (" ").
12 12
13#--------------------------------------------------------------------------- 13#---------------------------------------------------------------------------
14# Project related configuration options 14# Project related configuration options
15#--------------------------------------------------------------------------- 15#---------------------------------------------------------------------------
16 16
17# This tag specifies the encoding used for all characters in the config file 17# This tag specifies the encoding used for all characters in the config file
18# that follow. The default is UTF-8 which is also the encoding used for all 18# that follow. The default is UTF-8 which is also the encoding used for all
19# text before the first occurrence of this tag. Doxygen uses libiconv (or the 19# text before the first occurrence of this tag. Doxygen uses libiconv (or the
20# iconv built into libc) for the transcoding. See 20# iconv built into libc) for the transcoding. See
21# http://www.gnu.org/software/libiconv for the list of possible encodings. 21# http://www.gnu.org/software/libiconv for the list of possible encodings.
22 22
23DOXYFILE_ENCODING = UTF-8 23DOXYFILE_ENCODING = UTF-8
24 24
25# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 25# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
26# by quotes) that should identify the project. 26# by quotes) that should identify the project.
27 27
28PROJECT_NAME = Eina 28PROJECT_NAME = Eina
29 29
30# The PROJECT_NUMBER tag can be used to enter a project or revision number. 30# The PROJECT_NUMBER tag can be used to enter a project or revision number.
31# This could be handy for archiving the generated documentation or 31# This could be handy for archiving the generated documentation or
32# if some version control system is used. 32# if some version control system is used.
33 33
34PROJECT_NUMBER = @PACKAGE_VERSION@ 34PROJECT_NUMBER = @PACKAGE_VERSION@
35 35
36# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 36# Using the PROJECT_BRIEF tag one can provide an optional one line description for a project that appears at the top of each page and should give viewer a quick idea about the purpose of the project. Keep the description short.
37# base path where the generated documentation will be put. 37
38# If a relative path is entered, it will be relative to the location 38PROJECT_BRIEF =
39
40# With the PROJECT_LOGO tag one can specify an logo or icon that is
41# included in the documentation. The maximum height of the logo should not
42# exceed 55 pixels and the maximum width should not exceed 200 pixels.
43# Doxygen will copy the logo to the output directory.
44
45PROJECT_LOGO =
46
47# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
48# base path where the generated documentation will be put.
49# If a relative path is entered, it will be relative to the location
39# where doxygen was started. If left blank the current directory will be used. 50# where doxygen was started. If left blank the current directory will be used.
40 51
41OUTPUT_DIRECTORY = . 52OUTPUT_DIRECTORY = .
42 53
43# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 54# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
44# 4096 sub-directories (in 2 levels) under the output directory of each output 55# 4096 sub-directories (in 2 levels) under the output directory of each output
45# format and will distribute the generated files over these directories. 56# format and will distribute the generated files over these directories.
46# Enabling this option can be useful when feeding doxygen a huge amount of 57# Enabling this option can be useful when feeding doxygen a huge amount of
47# source files, where putting all generated files in the same directory would 58# source files, where putting all generated files in the same directory would
48# otherwise cause performance problems for the file system. 59# otherwise cause performance problems for the file system.
49 60
50CREATE_SUBDIRS = NO 61CREATE_SUBDIRS = NO
51 62
52# The OUTPUT_LANGUAGE tag is used to specify the language in which all 63# The OUTPUT_LANGUAGE tag is used to specify the language in which all
53# documentation generated by doxygen is written. Doxygen will use this 64# documentation generated by doxygen is written. Doxygen will use this
54# information to generate all constant output in the proper language. 65# information to generate all constant output in the proper language.
55# The default language is English, other supported languages are: 66# The default language is English, other supported languages are:
56# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 67# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
57# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, 68# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German,
58# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), 69# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English
59# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, 70# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian,
60# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, 71# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak,
61# and Ukrainian. 72# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese.
62 73
63OUTPUT_LANGUAGE = English 74OUTPUT_LANGUAGE = English
64 75
65# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 76# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
66# include brief member descriptions after the members that are listed in 77# include brief member descriptions after the members that are listed in
67# the file and class documentation (similar to JavaDoc). 78# the file and class documentation (similar to JavaDoc).
68# Set to NO to disable this. 79# Set to NO to disable this.
69 80
70BRIEF_MEMBER_DESC = YES 81BRIEF_MEMBER_DESC = YES
71 82
72# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 83# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
73# the brief description of a member or function before the detailed description. 84# the brief description of a member or function before the detailed description.
74# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 85# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
75# brief descriptions will be completely suppressed. 86# brief descriptions will be completely suppressed.
76 87
77REPEAT_BRIEF = YES 88REPEAT_BRIEF = YES
78 89
79# This tag implements a quasi-intelligent brief description abbreviator 90# This tag implements a quasi-intelligent brief description abbreviator
80# that is used to form the text in various listings. Each string 91# that is used to form the text in various listings. Each string
81# in this list, if found as the leading text of the brief description, will be 92# in this list, if found as the leading text of the brief description, will be
82# stripped from the text and the result after processing the whole list, is 93# stripped from the text and the result after processing the whole list, is
83# used as the annotated text. Otherwise, the brief description is used as-is. 94# used as the annotated text. Otherwise, the brief description is used as-is.
84# If left blank, the following values are used ("$name" is automatically 95# If left blank, the following values are used ("$name" is automatically
85# replaced with the name of the entity): "The $name class" "The $name widget" 96# replaced with the name of the entity): "The $name class" "The $name widget"
86# "The $name file" "is" "provides" "specifies" "contains" 97# "The $name file" "is" "provides" "specifies" "contains"
87# "represents" "a" "an" "the" 98# "represents" "a" "an" "the"
88 99
89ABBREVIATE_BRIEF = 100ABBREVIATE_BRIEF =
90 101
91# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 102# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
92# Doxygen will generate a detailed section even if there is only a brief 103# Doxygen will generate a detailed section even if there is only a brief
93# description. 104# description.
94 105
95ALWAYS_DETAILED_SEC = NO 106ALWAYS_DETAILED_SEC = NO
96 107
97# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 108# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
98# inherited members of a class in the documentation of that class as if those 109# inherited members of a class in the documentation of that class as if those
99# members were ordinary class members. Constructors, destructors and assignment 110# members were ordinary class members. Constructors, destructors and assignment
100# operators of the base classes will not be shown. 111# operators of the base classes will not be shown.
101 112
102INLINE_INHERITED_MEMB = NO 113INLINE_INHERITED_MEMB = NO
103 114
104# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 115# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
105# path before files name in the file list and in the header files. If set 116# path before files name in the file list and in the header files. If set
106# to NO the shortest path that makes the file name unique will be used. 117# to NO the shortest path that makes the file name unique will be used.
107 118
108FULL_PATH_NAMES = NO 119FULL_PATH_NAMES = NO
109 120
110# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 121# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
111# can be used to strip a user-defined part of the path. Stripping is 122# can be used to strip a user-defined part of the path. Stripping is
112# only done if one of the specified strings matches the left-hand part of 123# only done if one of the specified strings matches the left-hand part of
113# the path. The tag can be used to show relative paths in the file list. 124# the path. The tag can be used to show relative paths in the file list.
114# If left blank the directory from which doxygen is run is used as the 125# If left blank the directory from which doxygen is run is used as the
115# path to strip. 126# path to strip.
116 127
117STRIP_FROM_PATH = 128STRIP_FROM_PATH =
118 129
119# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 130# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
120# the path mentioned in the documentation of a class, which tells 131# the path mentioned in the documentation of a class, which tells
121# the reader which header file to include in order to use a class. 132# the reader which header file to include in order to use a class.
122# If left blank only the name of the header file containing the class 133# If left blank only the name of the header file containing the class
123# definition is used. Otherwise one should specify the include paths that 134# definition is used. Otherwise one should specify the include paths that
124# are normally passed to the compiler using the -I flag. 135# are normally passed to the compiler using the -I flag.
125 136
126STRIP_FROM_INC_PATH = 137STRIP_FROM_INC_PATH =
127 138
128# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 139# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
129# (but less readable) file names. This can be useful is your file systems 140# (but less readable) file names. This can be useful if your file system
130# doesn't support long names like on DOS, Mac, or CD-ROM. 141# doesn't support long names like on DOS, Mac, or CD-ROM.
131 142
132SHORT_NAMES = NO 143SHORT_NAMES = NO
133 144
134# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 145# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
135# will interpret the first line (until the first dot) of a JavaDoc-style 146# will interpret the first line (until the first dot) of a JavaDoc-style
136# comment as the brief description. If set to NO, the JavaDoc 147# comment as the brief description. If set to NO, the JavaDoc
137# comments will behave just like regular Qt-style comments 148# comments will behave just like regular Qt-style comments
138# (thus requiring an explicit @brief command for a brief description.) 149# (thus requiring an explicit @brief command for a brief description.)
139 150
140JAVADOC_AUTOBRIEF = YES 151JAVADOC_AUTOBRIEF = YES
141 152
142# If the QT_AUTOBRIEF tag is set to YES then Doxygen will 153# If the QT_AUTOBRIEF tag is set to YES then Doxygen will
143# interpret the first line (until the first dot) of a Qt-style 154# interpret the first line (until the first dot) of a Qt-style
144# comment as the brief description. If set to NO, the comments 155# comment as the brief description. If set to NO, the comments
145# will behave just like regular Qt-style comments (thus requiring 156# will behave just like regular Qt-style comments (thus requiring
146# an explicit \brief command for a brief description.) 157# an explicit \brief command for a brief description.)
147 158
148QT_AUTOBRIEF = NO 159QT_AUTOBRIEF = NO
149 160
150# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 161# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
151# treat a multi-line C++ special comment block (i.e. a block of //! or /// 162# treat a multi-line C++ special comment block (i.e. a block of //! or ///
152# comments) as a brief description. This used to be the default behaviour. 163# comments) as a brief description. This used to be the default behaviour.
153# The new default is to treat a multi-line C++ comment block as a detailed 164# The new default is to treat a multi-line C++ comment block as a detailed
154# description. Set this tag to YES if you prefer the old behaviour instead. 165# description. Set this tag to YES if you prefer the old behaviour instead.
155 166
156MULTILINE_CPP_IS_BRIEF = NO 167MULTILINE_CPP_IS_BRIEF = NO
157 168
158# If the DETAILS_AT_TOP tag is set to YES then Doxygen 169# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
159# will output the detailed description near the top, like JavaDoc. 170# member inherits the documentation from any documented member that it
160# If set to NO, the detailed description appears after the member
161# documentation.
162
163DETAILS_AT_TOP = NO
164
165# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
166# member inherits the documentation from any documented member that it
167# re-implements. 171# re-implements.
168 172
169INHERIT_DOCS = YES 173INHERIT_DOCS = YES
170 174
171# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 175# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
172# a new page for each member. If set to NO, the documentation of a member will 176# a new page for each member. If set to NO, the documentation of a member will
173# be part of the file/class/namespace that contains it. 177# be part of the file/class/namespace that contains it.
174 178
175SEPARATE_MEMBER_PAGES = NO 179SEPARATE_MEMBER_PAGES = NO
176 180
177# The TAB_SIZE tag can be used to set the number of spaces in a tab. 181# The TAB_SIZE tag can be used to set the number of spaces in a tab.
178# Doxygen uses this value to replace tabs by spaces in code fragments. 182# Doxygen uses this value to replace tabs by spaces in code fragments.
179 183
180TAB_SIZE = 8 184TAB_SIZE = 8
181 185
182# This tag can be used to specify a number of aliases that acts 186# This tag can be used to specify a number of aliases that acts
183# as commands in the documentation. An alias has the form "name=value". 187# as commands in the documentation. An alias has the form "name=value".
184# For example adding "sideeffect=\par Side Effects:\n" will allow you to 188# For example adding "sideeffect=\par Side Effects:\n" will allow you to
185# put the command \sideeffect (or @sideeffect) in the documentation, which 189# put the command \sideeffect (or @sideeffect) in the documentation, which
186# will result in a user-defined paragraph with heading "Side Effects:". 190# will result in a user-defined paragraph with heading "Side Effects:".
187# You can put \n's in the value part of an alias to insert newlines. 191# You can put \n's in the value part of an alias to insert newlines.
188 192
189ALIASES = 193ALIASES =
190 194
191# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 195# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
192# sources only. Doxygen will then generate output that is more tailored for C. 196# sources only. Doxygen will then generate output that is more tailored for C.
193# For instance, some of the names that are used will be different. The list 197# For instance, some of the names that are used will be different. The list
194# of all members will be omitted, etc. 198# of all members will be omitted, etc.
195 199
196OPTIMIZE_OUTPUT_FOR_C = YES 200OPTIMIZE_OUTPUT_FOR_C = YES
197 201
198# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 202# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
199# sources only. Doxygen will then generate output that is more tailored for 203# sources only. Doxygen will then generate output that is more tailored for
200# Java. For instance, namespaces will be presented as packages, qualified 204# Java. For instance, namespaces will be presented as packages, qualified
201# scopes will look different, etc. 205# scopes will look different, etc.
202 206
203OPTIMIZE_OUTPUT_JAVA = NO 207OPTIMIZE_OUTPUT_JAVA = NO
204 208
205# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 209# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
206# sources only. Doxygen will then generate output that is more tailored for 210# sources only. Doxygen will then generate output that is more tailored for
207# Fortran. 211# Fortran.
208 212
209OPTIMIZE_FOR_FORTRAN = NO 213OPTIMIZE_FOR_FORTRAN = NO
210 214
211# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 215# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
212# sources. Doxygen will then generate output that is tailored for 216# sources. Doxygen will then generate output that is tailored for
213# VHDL. 217# VHDL.
214 218
215OPTIMIZE_OUTPUT_VHDL = NO 219OPTIMIZE_OUTPUT_VHDL = NO
216 220
217# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 221# Doxygen selects the parser to use depending on the extension of the files it
218# to include (a tag file for) the STL sources as input, then you should 222# parses. With this tag you can assign which parser to use for a given extension.
219# set this tag to YES in order to let doxygen match functions declarations and 223# Doxygen has a built-in mapping, but you can override or extend it using this
220# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 224# tag. The format is ext=language, where ext is a file extension, and language
221# func(std::string) {}). This also make the inheritance and collaboration 225# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C,
226# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make
227# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C
228# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions
229# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen.
230
231EXTENSION_MAPPING =
232
233# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
234# to include (a tag file for) the STL sources as input, then you should
235# set this tag to YES in order to let doxygen match functions declarations and
236# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
237# func(std::string) {}). This also makes the inheritance and collaboration
222# diagrams that involve STL classes more complete and accurate. 238# diagrams that involve STL classes more complete and accurate.
223 239
224BUILTIN_STL_SUPPORT = NO 240BUILTIN_STL_SUPPORT = NO
@@ -228,425 +244,510 @@ BUILTIN_STL_SUPPORT = NO
228 244
229CPP_CLI_SUPPORT = NO 245CPP_CLI_SUPPORT = NO
230 246
231# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. 247# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
232# Doxygen will parse them like normal C++ but will assume all classes use public 248# Doxygen will parse them like normal C++ but will assume all classes use public
233# instead of private inheritance when no explicit protection keyword is present. 249# instead of private inheritance when no explicit protection keyword is present.
234 250
235SIP_SUPPORT = NO 251SIP_SUPPORT = NO
236 252
237# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 253# For Microsoft's IDL there are propget and propput attributes to indicate getter
238# tag is set to YES, then doxygen will reuse the documentation of the first 254# and setter methods for a property. Setting this option to YES (the default)
239# member in the group (if any) for the other members of the group. By default 255# will make doxygen replace the get and set methods by a property in the
256# documentation. This will only work if the methods are indeed getting or
257# setting a simple type. If this is not the case, or you want to show the
258# methods anyway, you should set this option to NO.
259
260IDL_PROPERTY_SUPPORT = YES
261
262# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
263# tag is set to YES, then doxygen will reuse the documentation of the first
264# member in the group (if any) for the other members of the group. By default
240# all members of a group must be documented explicitly. 265# all members of a group must be documented explicitly.
241 266
242DISTRIBUTE_GROUP_DOC = NO 267DISTRIBUTE_GROUP_DOC = NO
243 268
244# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 269# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
245# the same type (for instance a group of public functions) to be put as a 270# the same type (for instance a group of public functions) to be put as a
246# subgroup of that type (e.g. under the Public Functions section). Set it to 271# subgroup of that type (e.g. under the Public Functions section). Set it to
247# NO to prevent subgrouping. Alternatively, this can be done per class using 272# NO to prevent subgrouping. Alternatively, this can be done per class using
248# the \nosubgrouping command. 273# the \nosubgrouping command.
249 274
250SUBGROUPING = YES 275SUBGROUPING = YES
251 276
252# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum 277# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
253# is documented as struct, union, or enum with the name of the typedef. So 278# is documented as struct, union, or enum with the name of the typedef. So
254# typedef struct TypeS {} TypeT, will appear in the documentation as a struct 279# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
255# with name TypeT. When disabled the typedef will appear as a member of a file, 280# with name TypeT. When disabled the typedef will appear as a member of a file,
256# namespace, or class. And the struct will be named TypeS. This can typically 281# namespace, or class. And the struct will be named TypeS. This can typically
257# be useful for C code in case the coding convention dictates that all compound 282# be useful for C code in case the coding convention dictates that all compound
258# types are typedef'ed and only the typedef is referenced, never the tag name. 283# types are typedef'ed and only the typedef is referenced, never the tag name.
259 284
260TYPEDEF_HIDES_STRUCT = NO 285TYPEDEF_HIDES_STRUCT = NO
261 286
287# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to
288# determine which symbols to keep in memory and which to flush to disk.
289# When the cache is full, less often used symbols will be written to disk.
290# For small to medium size projects (<1000 input files) the default value is
291# probably good enough. For larger projects a too small cache size can cause
292# doxygen to be busy swapping symbols to and from disk most of the time
293# causing a significant performance penalty.
294# If the system has enough physical memory increasing the cache will improve the
295# performance by keeping more symbols in memory. Note that the value works on
296# a logarithmic scale so increasing the size by one will roughly double the
297# memory usage. The cache size is given by this formula:
298# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
299# corresponding to a cache size of 2^16 = 65536 symbols
300
301SYMBOL_CACHE_SIZE = 0
302
262#--------------------------------------------------------------------------- 303#---------------------------------------------------------------------------
263# Build related configuration options 304# Build related configuration options
264#--------------------------------------------------------------------------- 305#---------------------------------------------------------------------------
265 306
266# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 307# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
267# documentation are documented, even if no documentation was available. 308# documentation are documented, even if no documentation was available.
268# Private class members and static file members will be hidden unless 309# Private class members and static file members will be hidden unless
269# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 310# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
270 311
271EXTRACT_ALL = NO 312EXTRACT_ALL = NO
272 313
273# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 314# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
274# will be included in the documentation. 315# will be included in the documentation.
275 316
276EXTRACT_PRIVATE = NO 317EXTRACT_PRIVATE = NO
277 318
278# If the EXTRACT_STATIC tag is set to YES all static members of a file 319# If the EXTRACT_STATIC tag is set to YES all static members of a file
279# will be included in the documentation. 320# will be included in the documentation.
280 321
281EXTRACT_STATIC = YES 322EXTRACT_STATIC = YES
282 323
283# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 324# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
284# defined locally in source files will be included in the documentation. 325# defined locally in source files will be included in the documentation.
285# If set to NO only classes defined in header files are included. 326# If set to NO only classes defined in header files are included.
286 327
287EXTRACT_LOCAL_CLASSES = NO 328EXTRACT_LOCAL_CLASSES = NO
288 329
289# This flag is only useful for Objective-C code. When set to YES local 330# This flag is only useful for Objective-C code. When set to YES local
290# methods, which are defined in the implementation section but not in 331# methods, which are defined in the implementation section but not in
291# the interface are included in the documentation. 332# the interface are included in the documentation.
292# If set to NO (the default) only methods in the interface are included. 333# If set to NO (the default) only methods in the interface are included.
293 334
294EXTRACT_LOCAL_METHODS = NO 335EXTRACT_LOCAL_METHODS = NO
295 336
296# If this flag is set to YES, the members of anonymous namespaces will be 337# If this flag is set to YES, the members of anonymous namespaces will be
297# extracted and appear in the documentation as a namespace called 338# extracted and appear in the documentation as a namespace called
298# 'anonymous_namespace{file}', where file will be replaced with the base 339# 'anonymous_namespace{file}', where file will be replaced with the base
299# name of the file that contains the anonymous namespace. By default 340# name of the file that contains the anonymous namespace. By default
300# anonymous namespace are hidden. 341# anonymous namespaces are hidden.
301 342
302EXTRACT_ANON_NSPACES = NO 343EXTRACT_ANON_NSPACES = NO
303 344
304# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 345# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
305# undocumented members of documented classes, files or namespaces. 346# undocumented members of documented classes, files or namespaces.
306# If set to NO (the default) these members will be included in the 347# If set to NO (the default) these members will be included in the
307# various overviews, but no documentation section is generated. 348# various overviews, but no documentation section is generated.
308# This option has no effect if EXTRACT_ALL is enabled. 349# This option has no effect if EXTRACT_ALL is enabled.
309 350
310HIDE_UNDOC_MEMBERS = NO 351HIDE_UNDOC_MEMBERS = NO
311 352
312# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 353# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
313# undocumented classes that are normally visible in the class hierarchy. 354# undocumented classes that are normally visible in the class hierarchy.
314# If set to NO (the default) these classes will be included in the various 355# If set to NO (the default) these classes will be included in the various
315# overviews. This option has no effect if EXTRACT_ALL is enabled. 356# overviews. This option has no effect if EXTRACT_ALL is enabled.
316 357
317HIDE_UNDOC_CLASSES = NO 358HIDE_UNDOC_CLASSES = NO
318 359
319# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 360# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
320# friend (class|struct|union) declarations. 361# friend (class|struct|union) declarations.
321# If set to NO (the default) these declarations will be included in the 362# If set to NO (the default) these declarations will be included in the
322# documentation. 363# documentation.
323 364
324HIDE_FRIEND_COMPOUNDS = NO 365HIDE_FRIEND_COMPOUNDS = NO
325 366
326# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 367# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
327# documentation blocks found inside the body of a function. 368# documentation blocks found inside the body of a function.
328# If set to NO (the default) these blocks will be appended to the 369# If set to NO (the default) these blocks will be appended to the
329# function's detailed documentation block. 370# function's detailed documentation block.
330 371
331HIDE_IN_BODY_DOCS = NO 372HIDE_IN_BODY_DOCS = NO
332 373
333# The INTERNAL_DOCS tag determines if documentation 374# The INTERNAL_DOCS tag determines if documentation
334# that is typed after a \internal command is included. If the tag is set 375# that is typed after a \internal command is included. If the tag is set
335# to NO (the default) then the documentation will be excluded. 376# to NO (the default) then the documentation will be excluded.
336# Set it to YES to include the internal documentation. 377# Set it to YES to include the internal documentation.
337 378
338INTERNAL_DOCS = NO 379INTERNAL_DOCS = NO
339 380
340# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 381# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
341# file names in lower-case letters. If set to YES upper-case letters are also 382# file names in lower-case letters. If set to YES upper-case letters are also
342# allowed. This is useful if you have classes or files whose names only differ 383# allowed. This is useful if you have classes or files whose names only differ
343# in case and if your file system supports case sensitive file names. Windows 384# in case and if your file system supports case sensitive file names. Windows
344# and Mac users are advised to set this option to NO. 385# and Mac users are advised to set this option to NO.
345 386
346CASE_SENSE_NAMES = YES 387CASE_SENSE_NAMES = YES
347 388
348# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 389# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
349# will show members with their full class and namespace scopes in the 390# will show members with their full class and namespace scopes in the
350# documentation. If set to YES the scope will be hidden. 391# documentation. If set to YES the scope will be hidden.
351 392
352HIDE_SCOPE_NAMES = NO 393HIDE_SCOPE_NAMES = NO
353 394
354# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 395# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
355# will put a list of the files that are included by a file in the documentation 396# will put a list of the files that are included by a file in the documentation
356# of that file. 397# of that file.
357 398
358SHOW_INCLUDE_FILES = NO 399SHOW_INCLUDE_FILES = NO
359 400
360# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 401# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen
402# will list include files with double quotes in the documentation
403# rather than with sharp brackets.
404
405FORCE_LOCAL_INCLUDES = NO
406
407# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
361# is inserted in the documentation for inline members. 408# is inserted in the documentation for inline members.
362 409
363INLINE_INFO = YES 410INLINE_INFO = YES
364 411
365# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 412# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
366# will sort the (detailed) documentation of file and class members 413# will sort the (detailed) documentation of file and class members
367# alphabetically by member name. If set to NO the members will appear in 414# alphabetically by member name. If set to NO the members will appear in
368# declaration order. 415# declaration order.
369 416
370SORT_MEMBER_DOCS = NO 417SORT_MEMBER_DOCS = NO
371 418
372# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 419# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
373# brief documentation of file, namespace and class members alphabetically 420# brief documentation of file, namespace and class members alphabetically
374# by member name. If set to NO (the default) the members will appear in 421# by member name. If set to NO (the default) the members will appear in
375# declaration order. 422# declaration order.
376 423
377SORT_BRIEF_DOCS = NO 424SORT_BRIEF_DOCS = NO
378 425
379# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the 426# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen
380# hierarchy of group names into alphabetical order. If set to NO (the default) 427# will sort the (brief and detailed) documentation of class members so that
428# constructors and destructors are listed first. If set to NO (the default)
429# the constructors will appear in the respective orders defined by
430# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS.
431# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO
432# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO.
433
434SORT_MEMBERS_CTORS_1ST = NO
435
436# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
437# hierarchy of group names into alphabetical order. If set to NO (the default)
381# the group names will appear in their defined order. 438# the group names will appear in their defined order.
382 439
383SORT_GROUP_NAMES = NO 440SORT_GROUP_NAMES = NO
384 441
385# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 442# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
386# sorted by fully-qualified names, including namespaces. If set to 443# sorted by fully-qualified names, including namespaces. If set to
387# NO (the default), the class list will be sorted only by class name, 444# NO (the default), the class list will be sorted only by class name,
388# not including the namespace part. 445# not including the namespace part.
389# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 446# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
390# Note: This option applies only to the class list, not to the 447# Note: This option applies only to the class list, not to the
391# alphabetical list. 448# alphabetical list.
392 449
393SORT_BY_SCOPE_NAME = NO 450SORT_BY_SCOPE_NAME = NO
394 451
395# The GENERATE_TODOLIST tag can be used to enable (YES) or 452# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper type resolution of all parameters of a function it will reject a
396# disable (NO) the todo list. This list is created by putting \todo 453# match between the prototype and the implementation of a member function even if there is only one candidate or it is obvious which candidate to choose by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen
454# will still accept a match between prototype and implementation in such cases.
455
456STRICT_PROTO_MATCHING = NO
457
458# The GENERATE_TODOLIST tag can be used to enable (YES) or
459# disable (NO) the todo list. This list is created by putting \todo
397# commands in the documentation. 460# commands in the documentation.
398 461
399GENERATE_TODOLIST = YES 462GENERATE_TODOLIST = YES
400 463
401# The GENERATE_TESTLIST tag can be used to enable (YES) or 464# The GENERATE_TESTLIST tag can be used to enable (YES) or
402# disable (NO) the test list. This list is created by putting \test 465# disable (NO) the test list. This list is created by putting \test
403# commands in the documentation. 466# commands in the documentation.
404 467
405GENERATE_TESTLIST = YES 468GENERATE_TESTLIST = YES
406 469
407# The GENERATE_BUGLIST tag can be used to enable (YES) or 470# The GENERATE_BUGLIST tag can be used to enable (YES) or
408# disable (NO) the bug list. This list is created by putting \bug 471# disable (NO) the bug list. This list is created by putting \bug
409# commands in the documentation. 472# commands in the documentation.
410 473
411GENERATE_BUGLIST = YES 474GENERATE_BUGLIST = YES
412 475
413# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 476# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
414# disable (NO) the deprecated list. This list is created by putting 477# disable (NO) the deprecated list. This list is created by putting
415# \deprecated commands in the documentation. 478# \deprecated commands in the documentation.
416 479
417GENERATE_DEPRECATEDLIST= YES 480GENERATE_DEPRECATEDLIST= YES
418 481
419# The ENABLED_SECTIONS tag can be used to enable conditional 482# The ENABLED_SECTIONS tag can be used to enable conditional
420# documentation sections, marked by \if sectionname ... \endif. 483# documentation sections, marked by \if sectionname ... \endif.
421 484
422ENABLED_SECTIONS = 485ENABLED_SECTIONS =
423 486
424# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 487# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
425# the initial value of a variable or define consists of for it to appear in 488# the initial value of a variable or macro consists of for it to appear in
426# the documentation. If the initializer consists of more lines than specified 489# the documentation. If the initializer consists of more lines than specified
427# here it will be hidden. Use a value of 0 to hide initializers completely. 490# here it will be hidden. Use a value of 0 to hide initializers completely.
428# The appearance of the initializer of individual variables and defines in the 491# The appearance of the initializer of individual variables and macros in the
429# documentation can be controlled using \showinitializer or \hideinitializer 492# documentation can be controlled using \showinitializer or \hideinitializer
430# command in the documentation regardless of this setting. 493# command in the documentation regardless of this setting.
431 494
432MAX_INITIALIZER_LINES = 30 495MAX_INITIALIZER_LINES = 30
433 496
434# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 497# Set the SHOW_USED_FILES tag to NO to disable the list of files generated
435# at the bottom of the documentation of classes and structs. If set to YES the 498# at the bottom of the documentation of classes and structs. If set to YES the
436# list will mention the files that were used to generate the documentation. 499# list will mention the files that were used to generate the documentation.
437 500
438SHOW_USED_FILES = NO 501SHOW_USED_FILES = NO
439 502
440# If the sources in your project are distributed over multiple directories 503# If the sources in your project are distributed over multiple directories
441# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 504# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
442# in the documentation. The default is NO. 505# in the documentation. The default is NO.
443 506
444SHOW_DIRECTORIES = NO 507SHOW_DIRECTORIES = NO
445 508
446# The FILE_VERSION_FILTER tag can be used to specify a program or script that 509# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
447# doxygen should invoke to get the current version for each file (typically from 510# This will remove the Files entry from the Quick Index and from the
448# the version control system). Doxygen will invoke the program by executing (via 511# Folder Tree View (if specified). The default is YES.
449# popen()) the command <command> <input-file>, where <command> is the value of 512
450# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 513SHOW_FILES = YES
451# provided by doxygen. Whatever the program writes to standard output 514
515# Set the SHOW_NAMESPACES tag to NO to disable the generation of the
516# Namespaces page.
517# This will remove the Namespaces entry from the Quick Index
518# and from the Folder Tree View (if specified). The default is YES.
519
520SHOW_NAMESPACES = YES
521
522# The FILE_VERSION_FILTER tag can be used to specify a program or script that
523# doxygen should invoke to get the current version for each file (typically from
524# the version control system). Doxygen will invoke the program by executing (via
525# popen()) the command <command> <input-file>, where <command> is the value of
526# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
527# provided by doxygen. Whatever the program writes to standard output
452# is used as the file version. See the manual for examples. 528# is used as the file version. See the manual for examples.
453 529
454FILE_VERSION_FILTER = 530FILE_VERSION_FILTER =
531
532# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
533# by doxygen. The layout file controls the global structure of the generated
534# output files in an output format independent way. The create the layout file
535# that represents doxygen's defaults, run doxygen with the -l option.
536# You can optionally specify a file name after the option, if omitted
537# DoxygenLayout.xml will be used as the name of the layout file.
538
539LAYOUT_FILE =
455 540
456#--------------------------------------------------------------------------- 541#---------------------------------------------------------------------------
457# configuration options related to warning and progress messages 542# configuration options related to warning and progress messages
458#--------------------------------------------------------------------------- 543#---------------------------------------------------------------------------
459 544
460# The QUIET tag can be used to turn on/off the messages that are generated 545# The QUIET tag can be used to turn on/off the messages that are generated
461# by doxygen. Possible values are YES and NO. If left blank NO is used. 546# by doxygen. Possible values are YES and NO. If left blank NO is used.
462 547
463QUIET = NO 548QUIET = NO
464 549
465# The WARNINGS tag can be used to turn on/off the warning messages that are 550# The WARNINGS tag can be used to turn on/off the warning messages that are
466# generated by doxygen. Possible values are YES and NO. If left blank 551# generated by doxygen. Possible values are YES and NO. If left blank
467# NO is used. 552# NO is used.
468 553
469WARNINGS = YES 554WARNINGS = YES
470 555
471# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 556# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
472# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 557# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
473# automatically be disabled. 558# automatically be disabled.
474 559
475WARN_IF_UNDOCUMENTED = YES 560WARN_IF_UNDOCUMENTED = YES
476 561
477# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 562# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
478# potential errors in the documentation, such as not documenting some 563# potential errors in the documentation, such as not documenting some
479# parameters in a documented function, or documenting parameters that 564# parameters in a documented function, or documenting parameters that
480# don't exist or using markup commands wrongly. 565# don't exist or using markup commands wrongly.
481 566
482WARN_IF_DOC_ERROR = YES 567WARN_IF_DOC_ERROR = YES
483 568
484# This WARN_NO_PARAMDOC option can be abled to get warnings for 569# The WARN_NO_PARAMDOC option can be enabled to get warnings for
485# functions that are documented, but have no documentation for their parameters 570# functions that are documented, but have no documentation for their parameters
486# or return value. If set to NO (the default) doxygen will only warn about 571# or return value. If set to NO (the default) doxygen will only warn about
487# wrong or incomplete parameter documentation, but not about the absence of 572# wrong or incomplete parameter documentation, but not about the absence of
488# documentation. 573# documentation.
489 574
490WARN_NO_PARAMDOC = YES 575WARN_NO_PARAMDOC = YES
491 576
492# The WARN_FORMAT tag determines the format of the warning messages that 577# The WARN_FORMAT tag determines the format of the warning messages that
493# doxygen can produce. The string should contain the $file, $line, and $text 578# doxygen can produce. The string should contain the $file, $line, and $text
494# tags, which will be replaced by the file and line number from which the 579# tags, which will be replaced by the file and line number from which the
495# warning originated and the warning text. Optionally the format may contain 580# warning originated and the warning text. Optionally the format may contain
496# $version, which will be replaced by the version of the file (if it could 581# $version, which will be replaced by the version of the file (if it could
497# be obtained via FILE_VERSION_FILTER) 582# be obtained via FILE_VERSION_FILTER)
498 583
499WARN_FORMAT = "$file:$line: $text" 584WARN_FORMAT = "$file:$line: $text"
500 585
501# The WARN_LOGFILE tag can be used to specify a file to which warning 586# The WARN_LOGFILE tag can be used to specify a file to which warning
502# and error messages should be written. If left blank the output is written 587# and error messages should be written. If left blank the output is written
503# to stderr. 588# to stderr.
504 589
505WARN_LOGFILE = 590WARN_LOGFILE =
506 591
507#--------------------------------------------------------------------------- 592#---------------------------------------------------------------------------
508# configuration options related to the input files 593# configuration options related to the input files
509#--------------------------------------------------------------------------- 594#---------------------------------------------------------------------------
510 595
511# The INPUT tag can be used to specify the files and/or directories that contain 596# The INPUT tag can be used to specify the files and/or directories that contain
512# documented source files. You may enter file names like "myfile.cpp" or 597# documented source files. You may enter file names like "myfile.cpp" or
513# directories like "/usr/src/myproject". Separate the files or directories 598# directories like "/usr/src/myproject". Separate the files or directories
514# with spaces. 599# with spaces.
515 600
516INPUT = @top_srcdir@/src/include @top_srcdir@/src/lib 601INPUT = @top_srcdir@/src/include \
602 @top_srcdir@/src/lib
517 603
518# This tag can be used to specify the character encoding of the source files 604# This tag can be used to specify the character encoding of the source files
519# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is 605# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
520# also the default input encoding. Doxygen uses libiconv (or the iconv built 606# also the default input encoding. Doxygen uses libiconv (or the iconv built
521# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for 607# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
522# the list of possible encodings. 608# the list of possible encodings.
523 609
524INPUT_ENCODING = UTF-8 610INPUT_ENCODING = UTF-8
525 611
526# If the value of the INPUT tag contains directories, you can use the 612# If the value of the INPUT tag contains directories, you can use the
527# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 613# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
528# and *.h) to filter out the source-files in the directories. If left 614# and *.h) to filter out the source-files in the directories. If left
529# blank the following patterns are tested: 615# blank the following patterns are tested:
530# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 616# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh
531# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 617# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py
618# *.f90 *.f *.for *.vhd *.vhdl
532 619
533FILE_PATTERNS = *.c *.h *.x 620FILE_PATTERNS = *.c \
621 *.h \
622 *.x
534 623
535# The RECURSIVE tag can be used to turn specify whether or not subdirectories 624# The RECURSIVE tag can be used to turn specify whether or not subdirectories
536# should be searched for input files as well. Possible values are YES and NO. 625# should be searched for input files as well. Possible values are YES and NO.
537# If left blank NO is used. 626# If left blank NO is used.
538 627
539RECURSIVE = YES 628RECURSIVE = YES
540 629
541# The EXCLUDE tag can be used to specify files and/or directories that should 630# The EXCLUDE tag can be used to specify files and/or directories that should
542# excluded from the INPUT source files. This way you can easily exclude a 631# excluded from the INPUT source files. This way you can easily exclude a
543# subdirectory from a directory tree whose root is specified with the INPUT tag. 632# subdirectory from a directory tree whose root is specified with the INPUT tag.
544 633
545EXCLUDE = @top_srcdir@/src/lib/eina_amalgamation.c 634EXCLUDE = @top_builddir@/src/lib/eina_amalgamation.c
546 635
547# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 636# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
548# directories that are symbolic links (a Unix filesystem feature) are excluded 637# directories that are symbolic links (a Unix file system feature) are excluded
549# from the input. 638# from the input.
550 639
551EXCLUDE_SYMLINKS = NO 640EXCLUDE_SYMLINKS = NO
552 641
553# If the value of the INPUT tag contains directories, you can use the 642# If the value of the INPUT tag contains directories, you can use the
554# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 643# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
555# certain files from those directories. Note that the wildcards are matched 644# certain files from those directories. Note that the wildcards are matched
556# against the file with absolute path, so to exclude all test directories 645# against the file with absolute path, so to exclude all test directories
557# for example use the pattern */test/* 646# for example use the pattern */test/*
558 647
559EXCLUDE_PATTERNS = 648EXCLUDE_PATTERNS =
560 649
561# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 650# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
562# (namespaces, classes, functions, etc.) that should be excluded from the 651# (namespaces, classes, functions, etc.) that should be excluded from the
563# output. The symbol name can be a fully qualified name, a word, or if the 652# output. The symbol name can be a fully qualified name, a word, or if the
564# wildcard * is used, a substring. Examples: ANamespace, AClass, 653# wildcard * is used, a substring. Examples: ANamespace, AClass,
565# AClass::ANamespace, ANamespace::*Test 654# AClass::ANamespace, ANamespace::*Test
566 655
567EXCLUDE_SYMBOLS = 656EXCLUDE_SYMBOLS =
568 657
569# The EXAMPLE_PATH tag can be used to specify one or more files or 658# The EXAMPLE_PATH tag can be used to specify one or more files or
570# directories that contain example code fragments that are included (see 659# directories that contain example code fragments that are included (see
571# the \include command). 660# the \include command).
572 661
573EXAMPLE_PATH = @top_srcdir@/src/examples 662EXAMPLE_PATH = @top_srcdir@/src/examples
574 663
575# If the value of the EXAMPLE_PATH tag contains directories, you can use the 664# If the value of the EXAMPLE_PATH tag contains directories, you can use the
576# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 665# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
577# and *.h) to filter out the source-files in the directories. If left 666# and *.h) to filter out the source-files in the directories. If left
578# blank all files are included. 667# blank all files are included.
579 668
580EXAMPLE_PATTERNS = *.c,*.h,*.x 669EXAMPLE_PATTERNS = *.c,*.h,*.x
581 670
582# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 671# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
583# searched for input files to be used with the \include or \dontinclude 672# searched for input files to be used with the \include or \dontinclude
584# commands irrespective of the value of the RECURSIVE tag. 673# commands irrespective of the value of the RECURSIVE tag.
585# Possible values are YES and NO. If left blank NO is used. 674# Possible values are YES and NO. If left blank NO is used.
586 675
587EXAMPLE_RECURSIVE = NO 676EXAMPLE_RECURSIVE = NO
588 677
589# The IMAGE_PATH tag can be used to specify one or more files or 678# The IMAGE_PATH tag can be used to specify one or more files or
590# directories that contain image that are included in the documentation (see 679# directories that contain image that are included in the documentation (see
591# the \image command). 680# the \image command).
592 681
593IMAGE_PATH = doc/img doc/benchmark 682IMAGE_PATH = @top_srcdir@/doc/img \
683 @top_srcdir@/doc/benchmark
594 684
595# The INPUT_FILTER tag can be used to specify a program that doxygen should 685# The INPUT_FILTER tag can be used to specify a program that doxygen should
596# invoke to filter for each input file. Doxygen will invoke the filter program 686# invoke to filter for each input file. Doxygen will invoke the filter program
597# by executing (via popen()) the command <filter> <input-file>, where <filter> 687# by executing (via popen()) the command <filter> <input-file>, where <filter>
598# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 688# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
599# input file. Doxygen will then use the output that the filter program writes 689# input file. Doxygen will then use the output that the filter program writes
600# to standard output. If FILTER_PATTERNS is specified, this tag will be 690# to standard output.
691# If FILTER_PATTERNS is specified, this tag will be
601# ignored. 692# ignored.
602 693
603INPUT_FILTER = 694INPUT_FILTER =
604 695
605# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 696# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
606# basis. Doxygen will compare the file name with each pattern and apply the 697# basis.
607# filter if there is a match. The filters are a list of the form: 698# Doxygen will compare the file name with each pattern and apply the
608# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 699# filter if there is a match.
609# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 700# The filters are a list of the form:
610# is applied to all files. 701# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
702# info on how filters are used. If FILTER_PATTERNS is empty or if
703# non of the patterns match the file name, INPUT_FILTER is applied.
611 704
612FILTER_PATTERNS = 705FILTER_PATTERNS =
613 706
614# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 707# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
615# INPUT_FILTER) will be used to filter the input files when producing source 708# INPUT_FILTER) will be used to filter the input files when producing source
616# files to browse (i.e. when SOURCE_BROWSER is set to YES). 709# files to browse (i.e. when SOURCE_BROWSER is set to YES).
617 710
618FILTER_SOURCE_FILES = NO 711FILTER_SOURCE_FILES = NO
619 712
713# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
714# pattern. A pattern will override the setting for FILTER_PATTERN (if any)
715# and it is also possible to disable source filtering for a specific pattern
716# using *.ext= (so without naming a filter). This option only has effect when
717# FILTER_SOURCE_FILES is enabled.
718
719FILTER_SOURCE_PATTERNS =
720
620#--------------------------------------------------------------------------- 721#---------------------------------------------------------------------------
621# configuration options related to source browsing 722# configuration options related to source browsing
622#--------------------------------------------------------------------------- 723#---------------------------------------------------------------------------
623 724
624# If the SOURCE_BROWSER tag is set to YES then a list of source files will 725# If the SOURCE_BROWSER tag is set to YES then a list of source files will
625# be generated. Documented entities will be cross-referenced with these sources. 726# be generated. Documented entities will be cross-referenced with these sources.
626# Note: To get rid of all source code in the generated output, make sure also 727# Note: To get rid of all source code in the generated output, make sure also
627# VERBATIM_HEADERS is set to NO. 728# VERBATIM_HEADERS is set to NO.
628 729
629SOURCE_BROWSER = NO 730SOURCE_BROWSER = NO
630 731
631# Setting the INLINE_SOURCES tag to YES will include the body 732# Setting the INLINE_SOURCES tag to YES will include the body
632# of functions and classes directly in the documentation. 733# of functions and classes directly in the documentation.
633 734
634INLINE_SOURCES = NO 735INLINE_SOURCES = NO
635 736
636# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 737# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
637# doxygen to hide any special comment blocks from generated source code 738# doxygen to hide any special comment blocks from generated source code
638# fragments. Normal C and C++ comments will always remain visible. 739# fragments. Normal C and C++ comments will always remain visible.
639 740
640STRIP_CODE_COMMENTS = YES 741STRIP_CODE_COMMENTS = YES
641 742
642# If the REFERENCED_BY_RELATION tag is set to YES (the default) 743# If the REFERENCED_BY_RELATION tag is set to YES
643# then for each documented function all documented 744# then for each documented function all documented
644# functions referencing it will be listed. 745# functions referencing it will be listed.
645 746
646REFERENCED_BY_RELATION = YES 747REFERENCED_BY_RELATION = YES
647 748
648# If the REFERENCES_RELATION tag is set to YES (the default) 749# If the REFERENCES_RELATION tag is set to YES
649# then for each documented function all documented entities 750# then for each documented function all documented entities
650# called/used by that function will be listed. 751# called/used by that function will be listed.
651 752
652REFERENCES_RELATION = YES 753REFERENCES_RELATION = YES
@@ -654,20 +755,21 @@ REFERENCES_RELATION = YES
654# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 755# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
655# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 756# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
656# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 757# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
657# link to the source code. Otherwise they will link to the documentstion. 758# link to the source code.
759# Otherwise they will link to the documentation.
658 760
659REFERENCES_LINK_SOURCE = YES 761REFERENCES_LINK_SOURCE = YES
660 762
661# If the USE_HTAGS tag is set to YES then the references to source code 763# If the USE_HTAGS tag is set to YES then the references to source code
662# will point to the HTML generated by the htags(1) tool instead of doxygen 764# will point to the HTML generated by the htags(1) tool instead of doxygen
663# built-in source browser. The htags tool is part of GNU's global source 765# built-in source browser. The htags tool is part of GNU's global source
664# tagging system (see http://www.gnu.org/software/global/global.html). You 766# tagging system (see http://www.gnu.org/software/global/global.html). You
665# will need version 4.8.6 or higher. 767# will need version 4.8.6 or higher.
666 768
667USE_HTAGS = NO 769USE_HTAGS = NO
668 770
669# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 771# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
670# will generate a verbatim copy of the header file for each class for 772# will generate a verbatim copy of the header file for each class for
671# which an include is specified. Set to NO to disable this. 773# which an include is specified. Set to NO to disable this.
672 774
673VERBATIM_HEADERS = NO 775VERBATIM_HEADERS = NO
@@ -676,312 +778,513 @@ VERBATIM_HEADERS = NO
676# configuration options related to the alphabetical class index 778# configuration options related to the alphabetical class index
677#--------------------------------------------------------------------------- 779#---------------------------------------------------------------------------
678 780
679# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 781# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
680# of all compounds will be generated. Enable this if the project 782# of all compounds will be generated. Enable this if the project
681# contains a lot of classes, structs, unions or interfaces. 783# contains a lot of classes, structs, unions or interfaces.
682 784
683ALPHABETICAL_INDEX = YES 785ALPHABETICAL_INDEX = YES
684 786
685# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 787# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
686# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 788# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
687# in which this list will be split (can be a number in the range [1..20]) 789# in which this list will be split (can be a number in the range [1..20])
688 790
689COLS_IN_ALPHA_INDEX = 2 791COLS_IN_ALPHA_INDEX = 2
690 792
691# In case all classes in a project start with a common prefix, all 793# In case all classes in a project start with a common prefix, all
692# classes will be put under the same header in the alphabetical index. 794# classes will be put under the same header in the alphabetical index.
693# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 795# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
694# should be ignored while generating the index headers. 796# should be ignored while generating the index headers.
695 797
696IGNORE_PREFIX = 798IGNORE_PREFIX = eina_ \
799 _eina_ \
800 Eina_ \
801 _Eina_ \
802 EINA_ \
803 _EINA_
697 804
698#--------------------------------------------------------------------------- 805#---------------------------------------------------------------------------
699# configuration options related to the HTML output 806# configuration options related to the HTML output
700#--------------------------------------------------------------------------- 807#---------------------------------------------------------------------------
701 808
702# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 809# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
703# generate HTML output. 810# generate HTML output.
704 811
705GENERATE_HTML = YES 812GENERATE_HTML = YES
706 813
707# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 814# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
708# If a relative path is entered the value of OUTPUT_DIRECTORY will be 815# If a relative path is entered the value of OUTPUT_DIRECTORY will be
709# put in front of it. If left blank `html' will be used as the default path. 816# put in front of it. If left blank `html' will be used as the default path.
710 817
711HTML_OUTPUT = html 818HTML_OUTPUT = html
712 819
713# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 820# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
714# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 821# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
715# doxygen will generate files with .html extension. 822# doxygen will generate files with .html extension.
716 823
717HTML_FILE_EXTENSION = .html 824HTML_FILE_EXTENSION = .html
718 825
719# The HTML_HEADER tag can be used to specify a personal HTML header for 826# The HTML_HEADER tag can be used to specify a personal HTML header for
720# each generated HTML page. If it is left blank doxygen will generate a 827# each generated HTML page. If it is left blank doxygen will generate a
721# standard header. 828# standard header.
722 829
723HTML_HEADER = @srcdir@/head.html 830HTML_HEADER = @srcdir@/head.html
724 831
725# The HTML_FOOTER tag can be used to specify a personal HTML footer for 832# The HTML_FOOTER tag can be used to specify a personal HTML footer for
726# each generated HTML page. If it is left blank doxygen will generate a 833# each generated HTML page. If it is left blank doxygen will generate a
727# standard footer. 834# standard footer.
728 835
729HTML_FOOTER = @srcdir@/foot.html 836HTML_FOOTER = @srcdir@/foot.html
730 837
731# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 838# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
732# style sheet that is used by each HTML page. It can be used to 839# style sheet that is used by each HTML page. It can be used to
733# fine-tune the look of the HTML output. If the tag is left blank doxygen 840# fine-tune the look of the HTML output. If the tag is left blank doxygen
734# will generate a default style sheet. Note that doxygen will try to copy 841# will generate a default style sheet. Note that doxygen will try to copy
735# the style sheet file to the HTML output directory, so don't put your own 842# the style sheet file to the HTML output directory, so don't put your own
736# stylesheet in the HTML output directory as well, or it will be erased! 843# stylesheet in the HTML output directory as well, or it will be erased!
737 844
738HTML_STYLESHEET = @srcdir@/e.css 845HTML_STYLESHEET = @srcdir@/e.css
739 846
740# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 847# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output.
741# files or namespaces will be aligned in HTML using tables. If set to 848# Doxygen will adjust the colors in the stylesheet and background images
849# according to this color. Hue is specified as an angle on a colorwheel,
850# see http://en.wikipedia.org/wiki/Hue for more information.
851# For instance the value 0 represents red, 60 is yellow, 120 is green,
852# 180 is cyan, 240 is blue, 300 purple, and 360 is red again.
853# The allowed range is 0 to 359.
854
855HTML_COLORSTYLE_HUE = 220
856
857# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of
858# the colors in the HTML output. For a value of 0 the output will use
859# grayscales only. A value of 255 will produce the most vivid colors.
860
861HTML_COLORSTYLE_SAT = 100
862
863# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to
864# the luminance component of the colors in the HTML output. Values below
865# 100 gradually make the output lighter, whereas values above 100 make
866# the output darker. The value divided by 100 is the actual gamma applied,
867# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2,
868# and 100 does not change the gamma.
869
870HTML_COLORSTYLE_GAMMA = 80
871
872# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
873# page will contain the date and time when the page was generated. Setting
874# this to NO can help when comparing the output of multiple runs.
875
876HTML_TIMESTAMP = YES
877
878# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
879# files or namespaces will be aligned in HTML using tables. If set to
742# NO a bullet list will be used. 880# NO a bullet list will be used.
743 881
744HTML_ALIGN_MEMBERS = YES 882HTML_ALIGN_MEMBERS = YES
745 883
746# If the GENERATE_HTMLHELP tag is set to YES, additional index files 884# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
747# will be generated that can be used as input for tools like the 885# documentation will contain sections that can be hidden and shown after the
748# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) 886# page has loaded. For this to work a browser that supports
749# of the generated HTML documentation. 887# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
888# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
750 889
751GENERATE_HTMLHELP = NO 890HTML_DYNAMIC_SECTIONS = YES
752 891
753# If the GENERATE_DOCSET tag is set to YES, additional index files 892# If the GENERATE_DOCSET tag is set to YES, additional index files
754# will be generated that can be used as input for Apple's Xcode 3 893# will be generated that can be used as input for Apple's Xcode 3
755# integrated development environment, introduced with OSX 10.5 (Leopard). 894# integrated development environment, introduced with OSX 10.5 (Leopard).
756# To create a documentation set, doxygen will generate a Makefile in the 895# To create a documentation set, doxygen will generate a Makefile in the
757# HTML output directory. Running make will produce the docset in that 896# HTML output directory. Running make will produce the docset in that
758# directory and running "make install" will install the docset in 897# directory and running "make install" will install the docset in
759# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find 898# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
760# it at startup. 899# it at startup.
900# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html
901# for more information.
761 902
762GENERATE_DOCSET = NO 903GENERATE_DOCSET = YES
763 904
764# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the 905# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
765# feed. A documentation feed provides an umbrella under which multiple 906# feed. A documentation feed provides an umbrella under which multiple
766# documentation sets from a single provider (such as a company or product suite) 907# documentation sets from a single provider (such as a company or product suite)
767# can be grouped. 908# can be grouped.
768 909
769DOCSET_FEEDNAME = "Doxygen generated docs" 910DOCSET_FEEDNAME = "Doxygen generated docs"
770 911
771# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that 912# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
772# should uniquely identify the documentation set bundle. This should be a 913# should uniquely identify the documentation set bundle. This should be a
773# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen 914# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
774# will append .docset to the name. 915# will append .docset to the name.
775 916
776DOCSET_BUNDLE_ID = org.enlightenment.Eina 917DOCSET_BUNDLE_ID = org.enlightenment.Eina
777 918
778# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 919# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify
779# documentation will contain sections that can be hidden and shown after the 920# the documentation publisher. This should be a reverse domain-name style
780# page has loaded. For this to work a browser that supports 921# string, e.g. com.mycompany.MyDocSet.documentation.
781# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
782# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
783 922
784HTML_DYNAMIC_SECTIONS = NO 923DOCSET_PUBLISHER_ID = org.enlightenment.Eina
785 924
786# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 925# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.
787# be used to specify the file name of the resulting .chm file. You 926
788# can add a path in front of the file if the result should not be 927DOCSET_PUBLISHER_NAME = Enlightenment
928
929# If the GENERATE_HTMLHELP tag is set to YES, additional index files
930# will be generated that can be used as input for tools like the
931# Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
932# of the generated HTML documentation.
933
934GENERATE_HTMLHELP = YES
935
936# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
937# be used to specify the file name of the resulting .chm file. You
938# can add a path in front of the file if the result should not be
789# written to the html output directory. 939# written to the html output directory.
790 940
791CHM_FILE = 941CHM_FILE =
792 942
793# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 943# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
794# be used to specify the location (absolute path including file name) of 944# be used to specify the location (absolute path including file name) of
795# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 945# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
796# the HTML help compiler on the generated index.hhp. 946# the HTML help compiler on the generated index.hhp.
797 947
798HHC_LOCATION = 948HHC_LOCATION =
799 949
800# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 950# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
801# controls if a separate .chi index file is generated (YES) or that 951# controls if a separate .chi index file is generated (YES) or that
802# it should be included in the master .chm file (NO). 952# it should be included in the master .chm file (NO).
803 953
804GENERATE_CHI = NO 954GENERATE_CHI = NO
805 955
806# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 956# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING
807# controls whether a binary table of contents is generated (YES) or a 957# is used to encode HtmlHelp index (hhk), content (hhc) and project file
958# content.
959
960CHM_INDEX_ENCODING =
961
962# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
963# controls whether a binary table of contents is generated (YES) or a
808# normal table of contents (NO) in the .chm file. 964# normal table of contents (NO) in the .chm file.
809 965
810BINARY_TOC = NO 966BINARY_TOC = NO
811 967
812# The TOC_EXPAND flag can be set to YES to add extra items for group members 968# The TOC_EXPAND flag can be set to YES to add extra items for group members
813# to the contents of the HTML help documentation and to the tree view. 969# to the contents of the HTML help documentation and to the tree view.
814 970
815TOC_EXPAND = NO 971TOC_EXPAND = NO
816 972
817# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 973# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
818# top of each HTML page. The value NO (the default) enables the index and 974# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated
975# that can be used as input for Qt's qhelpgenerator to generate a
976# Qt Compressed Help (.qch) of the generated HTML documentation.
977
978GENERATE_QHP = NO
979
980# If the QHG_LOCATION tag is specified, the QCH_FILE tag can
981# be used to specify the file name of the resulting .qch file.
982# The path specified is relative to the HTML output folder.
983
984QCH_FILE =
985
986# The QHP_NAMESPACE tag specifies the namespace to use when generating
987# Qt Help Project output. For more information please see
988# http://doc.trolltech.com/qthelpproject.html#namespace
989
990QHP_NAMESPACE = org.enlightenment.Eina
991
992# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating
993# Qt Help Project output. For more information please see
994# http://doc.trolltech.com/qthelpproject.html#virtual-folders
995
996QHP_VIRTUAL_FOLDER = doc
997
998# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to
999# add. For more information please see
1000# http://doc.trolltech.com/qthelpproject.html#custom-filters
1001
1002QHP_CUST_FILTER_NAME =
1003
1004# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the
1005# custom filter to add. For more information please see
1006# <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters">
1007# Qt Help Project / Custom Filters</a>.
1008
1009QHP_CUST_FILTER_ATTRS =
1010
1011# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
1012# project's
1013# filter section matches.
1014# <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes">
1015# Qt Help Project / Filter Attributes</a>.
1016
1017QHP_SECT_FILTER_ATTRS =
1018
1019# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can
1020# be used to specify the location of Qt's qhelpgenerator.
1021# If non-empty doxygen will try to run qhelpgenerator on the generated
1022# .qhp file.
1023
1024QHG_LOCATION =
1025
1026# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files
1027# will be generated, which together with the HTML files, form an Eclipse help
1028# plugin. To install this plugin and make it available under the help contents
1029# menu in Eclipse, the contents of the directory containing the HTML and XML
1030# files needs to be copied into the plugins directory of eclipse. The name of
1031# the directory within the plugins directory should be the same as
1032# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before
1033# the help appears.
1034
1035GENERATE_ECLIPSEHELP = NO
1036
1037# A unique identifier for the eclipse help plugin. When installing the plugin
1038# the directory name containing the HTML and XML files should also have
1039# this name.
1040
1041ECLIPSE_DOC_ID = org.enlightenment.Eina
1042
1043# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
1044# top of each HTML page. The value NO (the default) enables the index and
819# the value YES disables it. 1045# the value YES disables it.
820 1046
821DISABLE_INDEX = YES 1047DISABLE_INDEX = YES
822 1048
823# This tag can be used to set the number of enum values (range [1..20]) 1049# This tag can be used to set the number of enum values (range [0,1..20])
824# that doxygen will group on one line in the generated HTML documentation. 1050# that doxygen will group on one line in the generated HTML documentation.
1051# Note that a value of 0 will completely suppress the enum values from appearing in the overview section.
825 1052
826ENUM_VALUES_PER_LINE = 1 1053ENUM_VALUES_PER_LINE = 1
827 1054
828# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 1055# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
829# generated containing a tree-like index structure (just like the one that 1056# structure should be generated to display hierarchical information.
830# is generated for HTML Help). For this to work a browser that supports 1057# If the tag value is set to YES, a side panel will be generated
831# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 1058# containing a tree-like index structure (just like the one that
832# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 1059# is generated for HTML Help). For this to work a browser that supports
833# probably better off using the HTML help feature. 1060# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser).
1061# Windows users are probably better off using the HTML help feature.
834 1062
835GENERATE_TREEVIEW = NO 1063GENERATE_TREEVIEW = NO
836 1064
837# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 1065# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
838# used to set the initial width (in pixels) of the frame in which the tree 1066# and Class Hierarchy pages using a tree view instead of an ordered list.
1067
1068USE_INLINE_TREES = NO
1069
1070# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
1071# used to set the initial width (in pixels) of the frame in which the tree
839# is shown. 1072# is shown.
840 1073
841TREEVIEW_WIDTH = 250 1074TREEVIEW_WIDTH = 250
842 1075
1076# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open
1077# links to external symbols imported via tag files in a separate window.
1078
1079EXT_LINKS_IN_WINDOW = NO
1080
1081# Use this tag to change the font size of Latex formulas included
1082# as images in the HTML documentation. The default is 10. Note that
1083# when you change the font size after a successful doxygen run you need
1084# to manually remove any form_*.png images from the HTML output directory
1085# to force them to be regenerated.
1086
1087FORMULA_FONTSIZE = 10
1088
1089# Use the FORMULA_TRANPARENT tag to determine whether or not the images
1090# generated for formulas are transparent PNGs. Transparent PNGs are
1091# not supported properly for IE 6.0, but are supported on all modern browsers.
1092# Note that when changing this option you need to delete any form_*.png files
1093# in the HTML output before the changes have effect.
1094
1095FORMULA_TRANSPARENT = YES
1096
1097# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax
1098# (see http://www.mathjax.org) which uses client side Javascript for the
1099# rendering instead of using prerendered bitmaps. Use this if you do not
1100# have LaTeX installed or if you want to formulas look prettier in the HTML
1101# output. When enabled you also need to install MathJax separately and
1102# configure the path to it using the MATHJAX_RELPATH option.
1103
1104USE_MATHJAX = NO
1105
1106# When MathJax is enabled you need to specify the location relative to the
1107# HTML output directory using the MATHJAX_RELPATH option. The destination
1108# directory should contain the MathJax.js script. For instance, if the mathjax
1109# directory is located at the same level as the HTML output directory, then
1110# MATHJAX_RELPATH should be ../mathjax. The default value points to the mathjax.org site, so you can quickly see the result without installing
1111# MathJax, but it is strongly recommended to install a local copy of MathJax
1112# before deployment.
1113
1114MATHJAX_RELPATH = http://www.mathjax.org/mathjax
1115
1116# When the SEARCHENGINE tag is enabled doxygen will generate a search box
1117# for the HTML output. The underlying search engine uses javascript
1118# and DHTML and should work on any modern browser. Note that when using
1119# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets
1120# (GENERATE_DOCSET) there is already a search function so this one should
1121# typically be disabled. For large projects the javascript based search engine
1122# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
1123
1124SEARCHENGINE = NO
1125
1126# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
1127# implemented using a PHP enabled web server instead of at the web client
1128# using Javascript. Doxygen will generate the search PHP script and index
1129# file to put on the web server. The advantage of the server
1130# based approach is that it scales better to large projects and allows
1131# full text search. The disadvantages are that it is more difficult to setup
1132# and does not have live searching capabilities.
1133
1134SERVER_BASED_SEARCH = NO
1135
843#--------------------------------------------------------------------------- 1136#---------------------------------------------------------------------------
844# configuration options related to the LaTeX output 1137# configuration options related to the LaTeX output
845#--------------------------------------------------------------------------- 1138#---------------------------------------------------------------------------
846 1139
847# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 1140# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
848# generate Latex output. 1141# generate Latex output.
849 1142
850GENERATE_LATEX = YES 1143GENERATE_LATEX = YES
851 1144
852# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 1145# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
853# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1146# If a relative path is entered the value of OUTPUT_DIRECTORY will be
854# put in front of it. If left blank `latex' will be used as the default path. 1147# put in front of it. If left blank `latex' will be used as the default path.
855 1148
856LATEX_OUTPUT = latex 1149LATEX_OUTPUT = latex
857 1150
858# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 1151# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
859# invoked. If left blank `latex' will be used as the default command name. 1152# invoked. If left blank `latex' will be used as the default command name.
1153# Note that when enabling USE_PDFLATEX this option is only used for
1154# generating bitmaps for formulas in the HTML output, but not in the
1155# Makefile that is written to the output directory.
860 1156
861LATEX_CMD_NAME = latex 1157LATEX_CMD_NAME = latex
862 1158
863# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 1159# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
864# generate index for LaTeX. If left blank `makeindex' will be used as the 1160# generate index for LaTeX. If left blank `makeindex' will be used as the
865# default command name. 1161# default command name.
866 1162
867MAKEINDEX_CMD_NAME = makeindex 1163MAKEINDEX_CMD_NAME = makeindex
868 1164
869# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 1165# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
870# LaTeX documents. This may be useful for small projects and may help to 1166# LaTeX documents. This may be useful for small projects and may help to
871# save some trees in general. 1167# save some trees in general.
872 1168
873COMPACT_LATEX = NO 1169COMPACT_LATEX = NO
874 1170
875# The PAPER_TYPE tag can be used to set the paper type that is used 1171# The PAPER_TYPE tag can be used to set the paper type that is used
876# by the printer. Possible values are: a4, a4wide, letter, legal and 1172# by the printer. Possible values are: a4, letter, legal and
877# executive. If left blank a4wide will be used. 1173# executive. If left blank a4wide will be used.
878 1174
879PAPER_TYPE = a4wide 1175PAPER_TYPE = a4wide
880 1176
881# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 1177# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
882# packages that should be included in the LaTeX output. 1178# packages that should be included in the LaTeX output.
883 1179
884EXTRA_PACKAGES = 1180EXTRA_PACKAGES =
885 1181
886# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 1182# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
887# the generated latex document. The header should contain everything until 1183# the generated latex document. The header should contain everything until
888# the first chapter. If it is left blank doxygen will generate a 1184# the first chapter. If it is left blank doxygen will generate a
889# standard header. Notice: only use this tag if you know what you are doing! 1185# standard header. Notice: only use this tag if you know what you are doing!
890 1186
891LATEX_HEADER = 1187LATEX_HEADER =
892 1188
893# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 1189# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
894# is prepared for conversion to pdf (using ps2pdf). The pdf file will 1190# is prepared for conversion to pdf (using ps2pdf). The pdf file will
895# contain links (just like the HTML output) instead of page references 1191# contain links (just like the HTML output) instead of page references
896# This makes the output suitable for online browsing using a pdf viewer. 1192# This makes the output suitable for online browsing using a pdf viewer.
897 1193
898PDF_HYPERLINKS = YES 1194PDF_HYPERLINKS = YES
899 1195
900# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 1196# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
901# plain latex in the generated Makefile. Set this option to YES to get a 1197# plain latex in the generated Makefile. Set this option to YES to get a
902# higher quality PDF documentation. 1198# higher quality PDF documentation.
903 1199
904USE_PDFLATEX = NO 1200USE_PDFLATEX = YES
905 1201
906# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 1202# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
907# command to the generated LaTeX files. This will instruct LaTeX to keep 1203# command to the generated LaTeX files. This will instruct LaTeX to keep
908# running if errors occur, instead of asking the user for help. 1204# running if errors occur, instead of asking the user for help.
909# This option is also used when generating formulas in HTML. 1205# This option is also used when generating formulas in HTML.
910 1206
911LATEX_BATCHMODE = NO 1207LATEX_BATCHMODE = NO
912 1208
913# If LATEX_HIDE_INDICES is set to YES then doxygen will not 1209# If LATEX_HIDE_INDICES is set to YES then doxygen will not
914# include the index chapters (such as File Index, Compound Index, etc.) 1210# include the index chapters (such as File Index, Compound Index, etc.)
915# in the output. 1211# in the output.
916 1212
917LATEX_HIDE_INDICES = NO 1213LATEX_HIDE_INDICES = NO
918 1214
1215# If LATEX_SOURCE_CODE is set to YES then doxygen will include
1216# source code with syntax highlighting in the LaTeX output.
1217# Note that which sources are shown also depends on other settings
1218# such as SOURCE_BROWSER.
1219
1220LATEX_SOURCE_CODE = NO
1221
919#--------------------------------------------------------------------------- 1222#---------------------------------------------------------------------------
920# configuration options related to the RTF output 1223# configuration options related to the RTF output
921#--------------------------------------------------------------------------- 1224#---------------------------------------------------------------------------
922 1225
923# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 1226# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
924# The RTF output is optimized for Word 97 and may not look very pretty with 1227# The RTF output is optimized for Word 97 and may not look very pretty with
925# other RTF readers or editors. 1228# other RTF readers or editors.
926 1229
927GENERATE_RTF = NO 1230GENERATE_RTF = NO
928 1231
929# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 1232# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
930# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1233# If a relative path is entered the value of OUTPUT_DIRECTORY will be
931# put in front of it. If left blank `rtf' will be used as the default path. 1234# put in front of it. If left blank `rtf' will be used as the default path.
932 1235
933RTF_OUTPUT = rtf 1236RTF_OUTPUT = rtf
934 1237
935# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 1238# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
936# RTF documents. This may be useful for small projects and may help to 1239# RTF documents. This may be useful for small projects and may help to
937# save some trees in general. 1240# save some trees in general.
938 1241
939COMPACT_RTF = NO 1242COMPACT_RTF = NO
940 1243
941# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 1244# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
942# will contain hyperlink fields. The RTF file will 1245# will contain hyperlink fields. The RTF file will
943# contain links (just like the HTML output) instead of page references. 1246# contain links (just like the HTML output) instead of page references.
944# This makes the output suitable for online browsing using WORD or other 1247# This makes the output suitable for online browsing using WORD or other
945# programs which support those fields. 1248# programs which support those fields.
946# Note: wordpad (write) and others do not support links. 1249# Note: wordpad (write) and others do not support links.
947 1250
948RTF_HYPERLINKS = NO 1251RTF_HYPERLINKS = NO
949 1252
950# Load stylesheet definitions from file. Syntax is similar to doxygen's 1253# Load stylesheet definitions from file. Syntax is similar to doxygen's
951# config file, i.e. a series of assignments. You only have to provide 1254# config file, i.e. a series of assignments. You only have to provide
952# replacements, missing definitions are set to their default value. 1255# replacements, missing definitions are set to their default value.
953 1256
954RTF_STYLESHEET_FILE = 1257RTF_STYLESHEET_FILE =
955 1258
956# Set optional variables used in the generation of an rtf document. 1259# Set optional variables used in the generation of an rtf document.
957# Syntax is similar to doxygen's config file. 1260# Syntax is similar to doxygen's config file.
958 1261
959RTF_EXTENSIONS_FILE = 1262RTF_EXTENSIONS_FILE =
960 1263
961#--------------------------------------------------------------------------- 1264#---------------------------------------------------------------------------
962# configuration options related to the man page output 1265# configuration options related to the man page output
963#--------------------------------------------------------------------------- 1266#---------------------------------------------------------------------------
964 1267
965# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 1268# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
966# generate man pages 1269# generate man pages
967 1270
968GENERATE_MAN = YES 1271GENERATE_MAN = YES
969 1272
970# The MAN_OUTPUT tag is used to specify where the man pages will be put. 1273# The MAN_OUTPUT tag is used to specify where the man pages will be put.
971# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1274# If a relative path is entered the value of OUTPUT_DIRECTORY will be
972# put in front of it. If left blank `man' will be used as the default path. 1275# put in front of it. If left blank `man' will be used as the default path.
973 1276
974MAN_OUTPUT = man 1277MAN_OUTPUT = man
975 1278
976# The MAN_EXTENSION tag determines the extension that is added to 1279# The MAN_EXTENSION tag determines the extension that is added to
977# the generated man pages (default is the subroutine's section .3) 1280# the generated man pages (default is the subroutine's section .3)
978 1281
979MAN_EXTENSION = .3 1282MAN_EXTENSION = .3
980 1283
981# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 1284# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
982# then it will generate one additional man file for each entity 1285# then it will generate one additional man file for each entity
983# documented in the real man page(s). These additional files 1286# documented in the real man page(s). These additional files
984# only source the real man page, but without them the man command 1287# only source the real man page, but without them the man command
985# would be unable to find the correct page. The default is NO. 1288# would be unable to find the correct page. The default is NO.
986 1289
987MAN_LINKS = YES 1290MAN_LINKS = YES
@@ -990,33 +1293,33 @@ MAN_LINKS = YES
990# configuration options related to the XML output 1293# configuration options related to the XML output
991#--------------------------------------------------------------------------- 1294#---------------------------------------------------------------------------
992 1295
993# If the GENERATE_XML tag is set to YES Doxygen will 1296# If the GENERATE_XML tag is set to YES Doxygen will
994# generate an XML file that captures the structure of 1297# generate an XML file that captures the structure of
995# the code including all documentation. 1298# the code including all documentation.
996 1299
997GENERATE_XML = NO 1300GENERATE_XML = NO
998 1301
999# The XML_OUTPUT tag is used to specify where the XML pages will be put. 1302# The XML_OUTPUT tag is used to specify where the XML pages will be put.
1000# If a relative path is entered the value of OUTPUT_DIRECTORY will be 1303# If a relative path is entered the value of OUTPUT_DIRECTORY will be
1001# put in front of it. If left blank `xml' will be used as the default path. 1304# put in front of it. If left blank `xml' will be used as the default path.
1002 1305
1003XML_OUTPUT = xml 1306XML_OUTPUT = xml
1004 1307
1005# The XML_SCHEMA tag can be used to specify an XML schema, 1308# The XML_SCHEMA tag can be used to specify an XML schema,
1006# which can be used by a validating XML parser to check the 1309# which can be used by a validating XML parser to check the
1007# syntax of the XML files. 1310# syntax of the XML files.
1008 1311
1009XML_SCHEMA = 1312XML_SCHEMA =
1010 1313
1011# The XML_DTD tag can be used to specify an XML DTD, 1314# The XML_DTD tag can be used to specify an XML DTD,
1012# which can be used by a validating XML parser to check the 1315# which can be used by a validating XML parser to check the
1013# syntax of the XML files. 1316# syntax of the XML files.
1014 1317
1015XML_DTD = 1318XML_DTD =
1016 1319
1017# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 1320# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
1018# dump the program listings (including syntax highlighting 1321# dump the program listings (including syntax highlighting
1019# and cross-referencing information) to the XML output. Note that 1322# and cross-referencing information) to the XML output. Note that
1020# enabling this will significantly increase the size of the XML output. 1323# enabling this will significantly increase the size of the XML output.
1021 1324
1022XML_PROGRAMLISTING = YES 1325XML_PROGRAMLISTING = YES
@@ -1025,10 +1328,10 @@ XML_PROGRAMLISTING = YES
1025# configuration options for the AutoGen Definitions output 1328# configuration options for the AutoGen Definitions output
1026#--------------------------------------------------------------------------- 1329#---------------------------------------------------------------------------
1027 1330
1028# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 1331# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
1029# generate an AutoGen Definitions (see autogen.sf.net) file 1332# generate an AutoGen Definitions (see autogen.sf.net) file
1030# that captures the structure of the code including all 1333# that captures the structure of the code including all
1031# documentation. Note that this feature is still experimental 1334# documentation. Note that this feature is still experimental
1032# and incomplete at the moment. 1335# and incomplete at the moment.
1033 1336
1034GENERATE_AUTOGEN_DEF = NO 1337GENERATE_AUTOGEN_DEF = NO
@@ -1037,320 +1340,356 @@ GENERATE_AUTOGEN_DEF = NO
1037# configuration options related to the Perl module output 1340# configuration options related to the Perl module output
1038#--------------------------------------------------------------------------- 1341#---------------------------------------------------------------------------
1039 1342
1040# If the GENERATE_PERLMOD tag is set to YES Doxygen will 1343# If the GENERATE_PERLMOD tag is set to YES Doxygen will
1041# generate a Perl module file that captures the structure of 1344# generate a Perl module file that captures the structure of
1042# the code including all documentation. Note that this 1345# the code including all documentation. Note that this
1043# feature is still experimental and incomplete at the 1346# feature is still experimental and incomplete at the
1044# moment. 1347# moment.
1045 1348
1046GENERATE_PERLMOD = NO 1349GENERATE_PERLMOD = NO
1047 1350
1048# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 1351# If the PERLMOD_LATEX tag is set to YES Doxygen will generate
1049# the necessary Makefile rules, Perl scripts and LaTeX code to be able 1352# the necessary Makefile rules, Perl scripts and LaTeX code to be able
1050# to generate PDF and DVI output from the Perl module output. 1353# to generate PDF and DVI output from the Perl module output.
1051 1354
1052PERLMOD_LATEX = NO 1355PERLMOD_LATEX = NO
1053 1356
1054# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 1357# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
1055# nicely formatted so it can be parsed by a human reader. This is useful 1358# nicely formatted so it can be parsed by a human reader.
1056# if you want to understand what is going on. On the other hand, if this 1359# This is useful
1057# tag is set to NO the size of the Perl module output will be much smaller 1360# if you want to understand what is going on.
1361# On the other hand, if this
1362# tag is set to NO the size of the Perl module output will be much smaller
1058# and Perl will parse it just the same. 1363# and Perl will parse it just the same.
1059 1364
1060PERLMOD_PRETTY = YES 1365PERLMOD_PRETTY = YES
1061 1366
1062# The names of the make variables in the generated doxyrules.make file 1367# The names of the make variables in the generated doxyrules.make file
1063# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 1368# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
1064# This is useful so different doxyrules.make files included by the same 1369# This is useful so different doxyrules.make files included by the same
1065# Makefile don't overwrite each other's variables. 1370# Makefile don't overwrite each other's variables.
1066 1371
1067PERLMOD_MAKEVAR_PREFIX = 1372PERLMOD_MAKEVAR_PREFIX =
1068 1373
1069#--------------------------------------------------------------------------- 1374#---------------------------------------------------------------------------
1070# Configuration options related to the preprocessor 1375# Configuration options related to the preprocessor
1071#--------------------------------------------------------------------------- 1376#---------------------------------------------------------------------------
1072 1377
1073# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 1378# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
1074# evaluate all C-preprocessor directives found in the sources and include 1379# evaluate all C-preprocessor directives found in the sources and include
1075# files. 1380# files.
1076 1381
1077ENABLE_PREPROCESSING = YES 1382ENABLE_PREPROCESSING = YES
1078 1383
1079# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 1384# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
1080# names in the source code. If set to NO (the default) only conditional 1385# names in the source code. If set to NO (the default) only conditional
1081# compilation will be performed. Macro expansion can be done in a controlled 1386# compilation will be performed. Macro expansion can be done in a controlled
1082# way by setting EXPAND_ONLY_PREDEF to YES. 1387# way by setting EXPAND_ONLY_PREDEF to YES.
1083 1388
1084MACRO_EXPANSION = YES 1389MACRO_EXPANSION = YES
1085 1390
1086# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 1391# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
1087# then the macro expansion is limited to the macros specified with the 1392# then the macro expansion is limited to the macros specified with the
1088# PREDEFINED and EXPAND_AS_DEFINED tags. 1393# PREDEFINED and EXPAND_AS_DEFINED tags.
1089 1394
1090EXPAND_ONLY_PREDEF = YES 1395EXPAND_ONLY_PREDEF = YES
1091 1396
1092# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 1397# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
1093# in the INCLUDE_PATH (see below) will be search if a #include is found. 1398# in the INCLUDE_PATH (see below) will be search if a #include is found.
1094 1399
1095SEARCH_INCLUDES = NO 1400SEARCH_INCLUDES = NO
1096 1401
1097# The INCLUDE_PATH tag can be used to specify one or more directories that 1402# The INCLUDE_PATH tag can be used to specify one or more directories that
1098# contain include files that are not input files but should be processed by 1403# contain include files that are not input files but should be processed by
1099# the preprocessor. 1404# the preprocessor.
1100 1405
1101INCLUDE_PATH = 1406INCLUDE_PATH =
1102 1407
1103# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 1408# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
1104# patterns (like *.h and *.hpp) to filter out the header-files in the 1409# patterns (like *.h and *.hpp) to filter out the header-files in the
1105# directories. If left blank, the patterns specified with FILE_PATTERNS will 1410# directories. If left blank, the patterns specified with FILE_PATTERNS will
1106# be used. 1411# be used.
1107 1412
1108INCLUDE_FILE_PATTERNS = 1413INCLUDE_FILE_PATTERNS =
1109 1414
1110# The PREDEFINED tag can be used to specify one or more macro names that 1415# The PREDEFINED tag can be used to specify one or more macro names that
1111# are defined before the preprocessor is started (similar to the -D option of 1416# are defined before the preprocessor is started (similar to the -D option of
1112# gcc). The argument of the tag is a list of macros of the form: name 1417# gcc). The argument of the tag is a list of macros of the form: name
1113# or name=definition (no spaces). If the definition and the = are 1418# or name=definition (no spaces). If the definition and the = are
1114# omitted =1 is assumed. To prevent a macro definition from being 1419# omitted =1 is assumed. To prevent a macro definition from being
1115# undefined via #undef or recursively expanded use the := operator 1420# undefined via #undef or recursively expanded use the := operator
1116# instead of the = operator. 1421# instead of the = operator.
1117 1422
1118PREDEFINED = EINA_MAGIC_DEBUG __UNUSED__= EINA_ARG_NONNULL()= EINA_MALLOC= EINA_WARN_UNUSED_RESULT= EAPI= 1423PREDEFINED = EINA_MAGIC_DEBUG \
1424 __UNUSED__= \
1425 EINA_ARG_NONNULL()= \
1426 EINA_MALLOC= \
1427 EINA_WARN_UNUSED_RESULT= \
1428 EAPI= \
1429 EINA_PURE= \
1430 EINA_CONST=
1119 1431
1120# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 1432# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
1121# this tag can be used to specify a list of macro names that should be expanded. 1433# this tag can be used to specify a list of macro names that should be expanded.
1122# The macro definition that is found in the sources will be used. 1434# The macro definition that is found in the sources will be used.
1123# Use the PREDEFINED tag if you want to use a different macro definition. 1435# Use the PREDEFINED tag if you want to use a different macro definition that overrules the definition found in the source code.
1124 1436
1125EXPAND_AS_DEFINED = 1437EXPAND_AS_DEFINED =
1126 1438
1127# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 1439# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
1128# doxygen's preprocessor will remove all function-like macros that are alone 1440# doxygen's preprocessor will remove all references to function-like macros
1129# on a line, have an all uppercase name, and do not end with a semicolon. Such 1441# that are alone on a line, have an all uppercase name, and do not end with a
1130# function macros are typically used for boiler-plate code, and will confuse 1442# semicolon, because these will confuse the parser if not removed.
1131# the parser if not removed.
1132 1443
1133SKIP_FUNCTION_MACROS = YES 1444SKIP_FUNCTION_MACROS = YES
1134 1445
1135#--------------------------------------------------------------------------- 1446#---------------------------------------------------------------------------
1136# Configuration::additions related to external references 1447# Configuration::additions related to external references
1137#--------------------------------------------------------------------------- 1448#---------------------------------------------------------------------------
1138 1449
1139# The TAGFILES option can be used to specify one or more tagfiles. 1450# The TAGFILES option can be used to specify one or more tagfiles.
1140# Optionally an initial location of the external documentation 1451# Optionally an initial location of the external documentation
1141# can be added for each tagfile. The format of a tag file without 1452# can be added for each tagfile. The format of a tag file without
1142# this location is as follows: 1453# this location is as follows:
1143# TAGFILES = file1 file2 ... 1454#
1144# Adding location for the tag files is done as follows: 1455# TAGFILES = file1 file2 ...
1145# TAGFILES = file1=loc1 "file2 = loc2" ... 1456# Adding location for the tag files is done as follows:
1146# where "loc1" and "loc2" can be relative or absolute paths or 1457#
1147# URLs. If a location is present for each tag, the installdox tool 1458# TAGFILES = file1=loc1 "file2 = loc2" ...
1459# where "loc1" and "loc2" can be relative or absolute paths or
1460# URLs. If a location is present for each tag, the installdox tool
1148# does not have to be run to correct the links. 1461# does not have to be run to correct the links.
1149# Note that each tag file must have a unique name 1462# Note that each tag file must have a unique name
1150# (where the name does NOT include the path) 1463# (where the name does NOT include the path)
1151# If a tag file is not located in the directory in which doxygen 1464# If a tag file is not located in the directory in which doxygen
1152# is run, you must also specify the path to the tagfile here. 1465# is run, you must also specify the path to the tagfile here.
1153 1466
1154TAGFILES = 1467TAGFILES =
1155 1468
1156# When a file name is specified after GENERATE_TAGFILE, doxygen will create 1469# When a file name is specified after GENERATE_TAGFILE, doxygen will create
1157# a tag file that is based on the input files it reads. 1470# a tag file that is based on the input files it reads.
1158 1471
1159GENERATE_TAGFILE = 1472GENERATE_TAGFILE =
1160 1473
1161# If the ALLEXTERNALS tag is set to YES all external classes will be listed 1474# If the ALLEXTERNALS tag is set to YES all external classes will be listed
1162# in the class index. If set to NO only the inherited external classes 1475# in the class index. If set to NO only the inherited external classes
1163# will be listed. 1476# will be listed.
1164 1477
1165ALLEXTERNALS = NO 1478ALLEXTERNALS = NO
1166 1479
1167# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 1480# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
1168# in the modules index. If set to NO, only the current project's groups will 1481# in the modules index. If set to NO, only the current project's groups will
1169# be listed. 1482# be listed.
1170 1483
1171EXTERNAL_GROUPS = YES 1484EXTERNAL_GROUPS = YES
1172 1485
1173# The PERL_PATH should be the absolute path and name of the perl script 1486# The PERL_PATH should be the absolute path and name of the perl script
1174# interpreter (i.e. the result of `which perl'). 1487# interpreter (i.e. the result of `which perl').
1175 1488
1176PERL_PATH = /usr/bin/perl 1489PERL_PATH = /usr/bin/perl
1177 1490
1178#--------------------------------------------------------------------------- 1491#---------------------------------------------------------------------------
1179# Configuration options related to the dot tool 1492# Configuration options related to the dot tool
1180#--------------------------------------------------------------------------- 1493#---------------------------------------------------------------------------
1181 1494
1182# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1495# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
1183# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 1496# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
1184# or super classes. Setting the tag to NO turns the diagrams off. Note that 1497# or super classes. Setting the tag to NO turns the diagrams off. Note that
1185# this option is superseded by the HAVE_DOT option below. This is only a 1498# this option also works with HAVE_DOT disabled, but it is recommended to
1186# fallback. It is recommended to install and use dot, since it yields more 1499# install and use dot, since it yields more powerful graphs.
1187# powerful graphs.
1188 1500
1189CLASS_DIAGRAMS = NO 1501CLASS_DIAGRAMS = NO
1190 1502
1191# You can define message sequence charts within doxygen comments using the \msc 1503# You can define message sequence charts within doxygen comments using the \msc
1192# command. Doxygen will then run the mscgen tool (see 1504# command. Doxygen will then run the mscgen tool (see
1193# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the 1505# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
1194# documentation. The MSCGEN_PATH tag allows you to specify the directory where 1506# documentation. The MSCGEN_PATH tag allows you to specify the directory where
1195# the mscgen tool resides. If left empty the tool is assumed to be found in the 1507# the mscgen tool resides. If left empty the tool is assumed to be found in the
1196# default search path. 1508# default search path.
1197 1509
1198MSCGEN_PATH = 1510MSCGEN_PATH =
1199 1511
1200# If set to YES, the inheritance and collaboration graphs will hide 1512# If set to YES, the inheritance and collaboration graphs will hide
1201# inheritance and usage relations if the target is undocumented 1513# inheritance and usage relations if the target is undocumented
1202# or is not a class. 1514# or is not a class.
1203 1515
1204HIDE_UNDOC_RELATIONS = YES 1516HIDE_UNDOC_RELATIONS = YES
1205 1517
1206# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 1518# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
1207# available from the path. This tool is part of Graphviz, a graph visualization 1519# available from the path. This tool is part of Graphviz, a graph visualization
1208# toolkit from AT&T and Lucent Bell Labs. The other options in this section 1520# toolkit from AT&T and Lucent Bell Labs. The other options in this section
1209# have no effect if this option is set to NO (the default) 1521# have no effect if this option is set to NO (the default)
1210 1522
1211HAVE_DOT = NO 1523HAVE_DOT = NO
1212 1524
1213# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1525# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
1214# will generate a graph for each documented class showing the direct and 1526# allowed to run in parallel. When set to 0 (the default) doxygen will
1215# indirect inheritance relations. Setting this tag to YES will force the 1527# base this on the number of processors available in the system. You can set it
1528# explicitly to a value larger than 0 to get control over the balance
1529# between CPU load and processing speed.
1530
1531DOT_NUM_THREADS = 0
1532
1533# By default doxygen will write a font called Helvetica to the output
1534# directory and reference it in all dot files that doxygen generates.
1535# When you want a differently looking font you can specify the font name
1536# using DOT_FONTNAME. You need to make sure dot is able to find the font,
1537# which can be done by putting it in a standard location or by setting the
1538# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory
1539# containing the font.
1540
1541DOT_FONTNAME = Helvetica
1542
1543# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs.
1544# The default size is 10pt.
1545
1546DOT_FONTSIZE = 10
1547
1548# By default doxygen will tell dot to use the output directory to look for the
1549# FreeSans.ttf font (which doxygen will put there itself). If you specify a
1550# different font using DOT_FONTNAME you can set the path where dot
1551# can find it using this tag.
1552
1553DOT_FONTPATH =
1554
1555# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
1556# will generate a graph for each documented class showing the direct and
1557# indirect inheritance relations. Setting this tag to YES will force the
1216# the CLASS_DIAGRAMS tag to NO. 1558# the CLASS_DIAGRAMS tag to NO.
1217 1559
1218CLASS_GRAPH = NO 1560CLASS_GRAPH = NO
1219 1561
1220# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 1562# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
1221# will generate a graph for each documented class showing the direct and 1563# will generate a graph for each documented class showing the direct and
1222# indirect implementation dependencies (inheritance, containment, and 1564# indirect implementation dependencies (inheritance, containment, and
1223# class references variables) of the class with other documented classes. 1565# class references variables) of the class with other documented classes.
1224 1566
1225COLLABORATION_GRAPH = NO 1567COLLABORATION_GRAPH = NO
1226 1568
1227# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 1569# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
1228# will generate a graph for groups, showing the direct groups dependencies 1570# will generate a graph for groups, showing the direct groups dependencies
1229 1571
1230GROUP_GRAPHS = YES 1572GROUP_GRAPHS = YES
1231 1573
1232# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1574# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
1233# collaboration diagrams in a style similar to the OMG's Unified Modeling 1575# collaboration diagrams in a style similar to the OMG's Unified Modeling
1234# Language. 1576# Language.
1235 1577
1236UML_LOOK = NO 1578UML_LOOK = NO
1237 1579
1238# If set to YES, the inheritance and collaboration graphs will show the 1580# If set to YES, the inheritance and collaboration graphs will show the
1239# relations between templates and their instances. 1581# relations between templates and their instances.
1240 1582
1241TEMPLATE_RELATIONS = NO 1583TEMPLATE_RELATIONS = NO
1242 1584
1243# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 1585# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
1244# tags are set to YES then doxygen will generate a graph for each documented 1586# tags are set to YES then doxygen will generate a graph for each documented
1245# file showing the direct and indirect include dependencies of the file with 1587# file showing the direct and indirect include dependencies of the file with
1246# other documented files. 1588# other documented files.
1247 1589
1248INCLUDE_GRAPH = NO 1590INCLUDE_GRAPH = NO
1249 1591
1250# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 1592# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
1251# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 1593# HAVE_DOT tags are set to YES then doxygen will generate a graph for each
1252# documented header file showing the documented files that directly or 1594# documented header file showing the documented files that directly or
1253# indirectly include this file. 1595# indirectly include this file.
1254 1596
1255INCLUDED_BY_GRAPH = NO 1597INCLUDED_BY_GRAPH = NO
1256 1598
1257# If the CALL_GRAPH and HAVE_DOT options are set to YES then 1599# If the CALL_GRAPH and HAVE_DOT options are set to YES then
1258# doxygen will generate a call dependency graph for every global function 1600# doxygen will generate a call dependency graph for every global function
1259# or class method. Note that enabling this option will significantly increase 1601# or class method. Note that enabling this option will significantly increase
1260# the time of a run. So in most cases it will be better to enable call graphs 1602# the time of a run. So in most cases it will be better to enable call graphs
1261# for selected functions only using the \callgraph command. 1603# for selected functions only using the \callgraph command.
1262 1604
1263CALL_GRAPH = NO 1605CALL_GRAPH = NO
1264 1606
1265# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then 1607# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
1266# doxygen will generate a caller dependency graph for every global function 1608# doxygen will generate a caller dependency graph for every global function
1267# or class method. Note that enabling this option will significantly increase 1609# or class method. Note that enabling this option will significantly increase
1268# the time of a run. So in most cases it will be better to enable caller 1610# the time of a run. So in most cases it will be better to enable caller
1269# graphs for selected functions only using the \callergraph command. 1611# graphs for selected functions only using the \callergraph command.
1270 1612
1271CALLER_GRAPH = NO 1613CALLER_GRAPH = NO
1272 1614
1273# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1615# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
1274# will graphical hierarchy of all classes instead of a textual one. 1616# will generate a graphical hierarchy of all classes instead of a textual one.
1275 1617
1276GRAPHICAL_HIERARCHY = NO 1618GRAPHICAL_HIERARCHY = NO
1277 1619
1278# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 1620# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
1279# then doxygen will show the dependencies a directory has on other directories 1621# then doxygen will show the dependencies a directory has on other directories
1280# in a graphical way. The dependency relations are determined by the #include 1622# in a graphical way. The dependency relations are determined by the #include
1281# relations between the files in the directories. 1623# relations between the files in the directories.
1282 1624
1283DIRECTORY_GRAPH = YES 1625DIRECTORY_GRAPH = YES
1284 1626
1285# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1627# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
1286# generated by dot. Possible values are png, jpg, or gif 1628# generated by dot. Possible values are png, svg, gif or svg.
1287# If left blank png will be used. 1629# If left blank png will be used.
1288 1630
1289DOT_IMAGE_FORMAT = png 1631DOT_IMAGE_FORMAT = png
1290 1632
1291# The tag DOT_PATH can be used to specify the path where the dot tool can be 1633# The tag DOT_PATH can be used to specify the path where the dot tool can be
1292# found. If left blank, it is assumed the dot tool can be found in the path. 1634# found. If left blank, it is assumed the dot tool can be found in the path.
1293 1635
1294DOT_PATH = 1636DOT_PATH =
1295 1637
1296# The DOTFILE_DIRS tag can be used to specify one or more directories that 1638# The DOTFILE_DIRS tag can be used to specify one or more directories that
1297# contain dot files that are included in the documentation (see the 1639# contain dot files that are included in the documentation (see the
1298# \dotfile command). 1640# \dotfile command).
1299 1641
1300DOTFILE_DIRS = 1642DOTFILE_DIRS =
1643
1644# The MSCFILE_DIRS tag can be used to specify one or more directories that
1645# contain msc files that are included in the documentation (see the
1646# \mscfile command).
1647
1648MSCFILE_DIRS =
1301 1649
1302# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of 1650# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
1303# nodes that will be shown in the graph. If the number of nodes in a graph 1651# nodes that will be shown in the graph. If the number of nodes in a graph
1304# becomes larger than this value, doxygen will truncate the graph, which is 1652# becomes larger than this value, doxygen will truncate the graph, which is
1305# visualized by representing a node as a red box. Note that doxygen if the 1653# visualized by representing a node as a red box. Note that doxygen if the
1306# number of direct children of the root node in a graph is already larger than 1654# number of direct children of the root node in a graph is already larger than
1307# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note 1655# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
1308# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 1656# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
1309 1657
1310DOT_GRAPH_MAX_NODES = 50 1658DOT_GRAPH_MAX_NODES = 50
1311 1659
1312# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1660# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
1313# graphs generated by dot. A depth value of 3 means that only nodes reachable 1661# graphs generated by dot. A depth value of 3 means that only nodes reachable
1314# from the root by following a path via at most 3 edges will be shown. Nodes 1662# from the root by following a path via at most 3 edges will be shown. Nodes
1315# that lay further from the root node will be omitted. Note that setting this 1663# that lay further from the root node will be omitted. Note that setting this
1316# option to 1 or 2 may greatly reduce the computation time needed for large 1664# option to 1 or 2 may greatly reduce the computation time needed for large
1317# code bases. Also note that the size of a graph can be further restricted by 1665# code bases. Also note that the size of a graph can be further restricted by
1318# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 1666# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
1319 1667
1320MAX_DOT_GRAPH_DEPTH = 0 1668MAX_DOT_GRAPH_DEPTH = 0
1321 1669
1322# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 1670# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
1323# background. This is enabled by default, which results in a transparent 1671# background. This is disabled by default, because dot on Windows does not
1324# background. Warning: Depending on the platform used, enabling this option 1672# seem to support this out of the box. Warning: Depending on the platform used,
1325# may lead to badly anti-aliased labels on the edges of a graph (i.e. they 1673# enabling this option may lead to badly anti-aliased labels on the edges of
1326# become hard to read). 1674# a graph (i.e. they become hard to read).
1327 1675
1328DOT_TRANSPARENT = YES 1676DOT_TRANSPARENT = YES
1329 1677
1330# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 1678# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
1331# files in one run (i.e. multiple -o and -T options on the command line). This 1679# files in one run (i.e. multiple -o and -T options on the command line). This
1332# makes dot run faster, but since only newer versions of dot (>1.8.10) 1680# makes dot run faster, but since only newer versions of dot (>1.8.10)
1333# support this, this feature is disabled by default. 1681# support this, this feature is disabled by default.
1334 1682
1335DOT_MULTI_TARGETS = NO 1683DOT_MULTI_TARGETS = NO
1336 1684
1337# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1685# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
1338# generate a legend page explaining the meaning of the various boxes and 1686# generate a legend page explaining the meaning of the various boxes and
1339# arrows in the dot generated graphs. 1687# arrows in the dot generated graphs.
1340 1688
1341GENERATE_LEGEND = YES 1689GENERATE_LEGEND = YES
1342 1690
1343# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1691# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
1344# remove the intermediate dot files that are used to generate 1692# remove the intermediate dot files that are used to generate
1345# the various graphs. 1693# the various graphs.
1346 1694
1347DOT_CLEANUP = YES 1695DOT_CLEANUP = YES
1348
1349#---------------------------------------------------------------------------
1350# Configuration::additions related to the search engine
1351#---------------------------------------------------------------------------
1352
1353# The SEARCHENGINE tag specifies whether or not a search engine should be
1354# used. If set to NO the values of all tags below this one will be ignored.
1355
1356SEARCHENGINE = NO