VirtualBox

Changeset 18538 in vbox


Ignore:
Timestamp:
Mar 30, 2009 12:40:40 PM (15 years ago)
Author:
vboxsync
Message:

docs: do as doxygen suggested and run "doxygen -u" to update these files.
This mostly adds new knobs, reformats long lists and corrects comments.
I needed to remove a gazillion of spaces at EOL after the update as well.
As far as I can see, the HTML docs still look good and are browsable.

Location:
trunk/src/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/Doxyfile.Main

    r11848 r18538  
    1 # Doxyfile 1.3.7
     1# Doxyfile 1.5.6
    22
    33# This file describes the settings to be used by the documentation system
     
    1515#---------------------------------------------------------------------------
    1616
     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
     19# text before the first occurrence of this tag. Doxygen uses libiconv (or the
     20# iconv built into libc) for the transcoding. See
     21# http://www.gnu.org/software/libiconv for the list of possible encodings.
     22
     23DOXYFILE_ENCODING      = UTF-8
     24
    1725# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
    1826# by quotes) that should identify the project.
     
    3442
    3543# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
    36 # 2 levels of 10 sub-directories under the output directory of each output
     44# 4096 sub-directories (in 2 levels) under the output directory of each output
    3745# format and will distribute the generated files over these directories.
    38 # Enabling this option can be useful when feeding doxygen a huge amount of source
    39 # files, where putting all generated files in the same directory would otherwise
    40 # cause performance problems for the file system.
     46# 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
     48# otherwise cause performance problems for the file system.
    4149
    4250CREATE_SUBDIRS         = NO
     
    4654# information to generate all constant output in the proper language.
    4755# The default language is English, other supported languages are:
    48 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch,
    49 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en
    50 # (Japanese with English messages), Korean, Korean-en, Norwegian, Polish, Portuguese,
    51 # Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
     56# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
     57# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek,
     58# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages),
     59# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish,
     60# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish,
     61# and Ukrainian.
    5262
    5363OUTPUT_LANGUAGE        = English
    54 
    55 # This tag can be used to specify the encoding used in the generated output.
    56 # The encoding is not always determined by the language that is chosen,
    57 # but also whether or not the output is meant for Windows or non-Windows users.
    58 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
    59 # forces the Windows encoding (this is the default for the Windows binary),
    60 # whereas setting the tag to NO uses a Unix-style encoding (the default for
    61 # all platforms other than Windows).
    62 
    63 USE_WINDOWS_ENCODING   = YES
    6464
    6565# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
     
    8080# that is used to form the text in various listings. Each string
    8181# 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 used
    83 # as the annotated text. Otherwise, the brief description is used as-is. If left
    84 # blank, the following values are used ("$name" is automatically replaced with the
    85 # name of the entity): "The $name class" "The $name widget" "The $name file"
    86 # "is" "provides" "specifies" "contains" "represents" "a" "an" "the"
    87 
    88 ABBREVIATE_BRIEF       = "The $name class" "The $name interface" "is" "provides" "represents" "a" "an" "the"
     82# 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.
     84# 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"
     86# "The $name file" "is" "provides" "specifies" "contains"
     87# "represents" "a" "an" "the"
     88
     89ABBREVIATE_BRIEF       = "The $name class" \
     90                         "The $name interface" \
     91                         "is" \
     92                         "provides" \
     93                         "represents" \
     94                         "a" \
     95                         "an" \
     96                         "the"
    8997
    9098# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
     
    94102ALWAYS_DETAILED_SEC    = NO
    95103
    96 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited
    97 # members of a class in the documentation of that class as if those members were
    98 # ordinary class members. Constructors, destructors and assignment operators of
    99 # the base classes will not be shown.
     104# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
     105# inherited members of a class in the documentation of that class as if those
     106# members were ordinary class members. Constructors, destructors and assignment
     107# operators of the base classes will not be shown.
    100108
    101109INLINE_INHERITED_MEMB  = NO
     
    134142# will interpret the first line (until the first dot) of a JavaDoc-style
    135143# comment as the brief description. If set to NO, the JavaDoc
    136 # comments will behave just like the Qt-style comments (thus requiring an
    137 # explicit @brief command for a brief description.
     144# comments will behave just like regular Qt-style comments
     145# (thus requiring an explicit @brief command for a brief description.)
    138146
    139147JAVADOC_AUTOBRIEF      = YES
     148
     149# If the QT_AUTOBRIEF tag is set to YES then Doxygen will
     150# interpret the first line (until the first dot) of a Qt-style
     151# comment as the brief description. If set to NO, the comments
     152# will behave just like regular Qt-style comments (thus requiring
     153# an explicit \brief command for a brief description.)
     154
     155QT_AUTOBRIEF           = NO
    140156
    141157# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
     
    160176INHERIT_DOCS           = YES
    161177
    162 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
    163 # tag is set to YES, then doxygen will reuse the documentation of the first
    164 # member in the group (if any) for the other members of the group. By default
    165 # all members of a group must be documented explicitly.
    166 
    167 DISTRIBUTE_GROUP_DOC   = NO
     178# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
     179# a new page for each member. If set to NO, the documentation of a member will
     180# be part of the file/class/namespace that contains it.
     181
     182SEPARATE_MEMBER_PAGES  = NO
    168183
    169184# The TAB_SIZE tag can be used to set the number of spaces in a tab.
     
    181196ALIASES                =
    182197
    183 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
    184 # only. Doxygen will then generate output that is more tailored for C.
     198# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
     199# sources only. Doxygen will then generate output that is more tailored for C.
    185200# For instance, some of the names that are used will be different. The list
    186201# of all members will be omitted, etc.
     
    188203OPTIMIZE_OUTPUT_FOR_C  = NO
    189204
    190 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
    191 # only. Doxygen will then generate output that is more tailored for Java.
    192 # For instance, namespaces will be presented as packages, qualified scopes
    193 # will look different, etc.
     205# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java
     206# sources only. Doxygen will then generate output that is more tailored for
     207# Java. For instance, namespaces will be presented as packages, qualified
     208# scopes will look different, etc.
    194209
    195210OPTIMIZE_OUTPUT_JAVA   = NO
     211
     212# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
     213# sources only. Doxygen will then generate output that is more tailored for
     214# Fortran.
     215
     216OPTIMIZE_FOR_FORTRAN   = NO
     217
     218# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
     219# sources. Doxygen will then generate output that is tailored for
     220# VHDL.
     221
     222OPTIMIZE_OUTPUT_VHDL   = NO
     223
     224# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
     225# to include (a tag file for) the STL sources as input, then you should
     226# set this tag to YES in order to let doxygen match functions declarations and
     227# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
     228# func(std::string) {}). This also make the inheritance and collaboration
     229# diagrams that involve STL classes more complete and accurate.
     230
     231BUILTIN_STL_SUPPORT    = NO
     232
     233# If you use Microsoft's C++/CLI language, you should set this option to YES to
     234# enable parsing support.
     235
     236CPP_CLI_SUPPORT        = NO
     237
     238# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
     239# Doxygen will parse them like normal C++ but will assume all classes use public
     240# instead of private inheritance when no explicit protection keyword is present.
     241
     242SIP_SUPPORT            = NO
     243
     244# For Microsoft's IDL there are propget and propput attributes to indicate getter
     245# and setter methods for a property. Setting this option to YES (the default)
     246# will make doxygen to replace the get and set methods by a property in the
     247# documentation. This will only work if the methods are indeed getting or
     248# setting a simple type. If this is not the case, or you want to show the
     249# methods anyway, you should set this option to NO.
     250
     251IDL_PROPERTY_SUPPORT   = YES
     252
     253# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
     254# tag is set to YES, then doxygen will reuse the documentation of the first
     255# member in the group (if any) for the other members of the group. By default
     256# all members of a group must be documented explicitly.
     257
     258DISTRIBUTE_GROUP_DOC   = NO
    196259
    197260# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
     
    203266SUBGROUPING            = YES
    204267
     268# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
     269# is documented as struct, union, or enum with the name of the typedef. So
     270# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
     271# with name TypeT. When disabled the typedef will appear as a member of a file,
     272# namespace, or class. And the struct will be named TypeS. This can typically
     273# be useful for C code in case the coding convention dictates that all compound
     274# types are typedef'ed and only the typedef is referenced, never the tag name.
     275
     276TYPEDEF_HIDES_STRUCT   = NO
     277
    205278#---------------------------------------------------------------------------
    206279# Build related configuration options
     
    236309
    237310EXTRACT_LOCAL_METHODS  = NO
     311
     312# If this flag is set to YES, the members of anonymous namespaces will be
     313# extracted and appear in the documentation as a namespace called
     314# 'anonymous_namespace{file}', where file will be replaced with the base
     315# name of the file that contains the anonymous namespace. By default
     316# anonymous namespace are hidden.
     317
     318EXTRACT_ANON_NSPACES   = NO
    238319
    239320# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
     
    277358# allowed. This is useful if you have classes or files whose names only differ
    278359# in case and if your file system supports case sensitive file names. Windows
    279 # users are advised to set this option to NO.
     360# and Mac users are advised to set this option to NO.
    280361
    281362CASE_SENSE_NAMES       = NO
     
    311392
    312393SORT_BRIEF_DOCS        = NO
     394
     395# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
     396# hierarchy of group names into alphabetical order. If set to NO (the default)
     397# the group names will appear in their defined order.
     398
     399SORT_GROUP_NAMES       = NO
    313400
    314401# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
     
    367454SHOW_USED_FILES        = NO
    368455
     456# If the sources in your project are distributed over multiple directories
     457# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
     458# in the documentation. The default is NO.
     459
     460SHOW_DIRECTORIES       = NO
     461
     462# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
     463# This will remove the Files entry from the Quick Index and from the
     464# Folder Tree View (if specified). The default is YES.
     465
     466SHOW_FILES             = YES
     467
     468# Set the SHOW_NAMESPACES tag to NO to disable the generation of the
     469# Namespaces page.  This will remove the Namespaces entry from the Quick Index
     470# and from the Folder Tree View (if specified). The default is YES.
     471
     472SHOW_NAMESPACES        = YES
     473
     474# The FILE_VERSION_FILTER tag can be used to specify a program or script that
     475# doxygen should invoke to get the current version for each file (typically from
     476# the version control system). Doxygen will invoke the program by executing (via
     477# popen()) the command <command> <input-file>, where <command> is the value of
     478# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
     479# provided by doxygen. Whatever the program writes to standard output
     480# is used as the file version. See the manual for examples.
     481
     482FILE_VERSION_FILTER    =
     483
    369484#---------------------------------------------------------------------------
    370485# configuration options related to warning and progress messages
     
    395510WARN_IF_DOC_ERROR      = YES
    396511
     512# This WARN_NO_PARAMDOC option can be abled to get warnings for
     513# functions that are documented, but have no documentation for their parameters
     514# or return value. If set to NO (the default) doxygen will only warn about
     515# wrong or incomplete parameter documentation, but not about the absence of
     516# documentation.
     517
     518WARN_NO_PARAMDOC       = NO
     519
    397520# The WARN_FORMAT tag determines the format of the warning messages that
    398521# doxygen can produce. The string should contain the $file, $line, and $text
    399522# tags, which will be replaced by the file and line number from which the
    400 # warning originated and the warning text.
     523# warning originated and the warning text. Optionally the format may contain
     524# $version, which will be replaced by the version of the file (if it could
     525# be obtained via FILE_VERSION_FILTER)
    401526
    402527WARN_FORMAT            = "$file:$line: $text"
     
    419544INPUT                  = $(PATH_TARGET)/VirtualBox.idl
    420545
     546# This tag can be used to specify the character encoding of the source files
     547# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
     548# also the default input encoding. Doxygen uses libiconv (or the iconv built
     549# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
     550# the list of possible encodings.
     551
     552INPUT_ENCODING         = UTF-8
    421553
    422554# If the value of the INPUT tag contains directories, you can use the
     
    424556# and *.h) to filter out the source-files in the directories. If left
    425557# blank the following patterns are tested:
    426 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
    427 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
     558# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
     559# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
    428560
    429561FILE_PATTERNS          =
    430 
    431 
    432562
    433563# The RECURSIVE tag can be used to turn specify whether or not subdirectories
     
    443573EXCLUDE                =
    444574
    445 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories
    446 # that are symbolic links (a Unix filesystem feature) are excluded from the input.
     575# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
     576# directories that are symbolic links (a Unix filesystem feature) are excluded
     577# from the input.
    447578
    448579EXCLUDE_SYMLINKS       = NO
     
    450581# If the value of the INPUT tag contains directories, you can use the
    451582# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
    452 # certain files from those directories.
     583# certain files from those directories. Note that the wildcards are matched
     584# against the file with absolute path, so to exclude all test directories
     585# for example use the pattern */test/*
    453586
    454587EXCLUDE_PATTERNS       =
     588
     589# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
     590# (namespaces, classes, functions, etc.) that should be excluded from the
     591# output. The symbol name can be a fully qualified name, a word, or if the
     592# wildcard * is used, a substring. Examples: ANamespace, AClass,
     593# AClass::ANamespace, ANamespace::*Test
     594
     595EXCLUDE_SYMBOLS        =
    455596
    456597# The EXAMPLE_PATH tag can be used to specify one or more files or
     
    485626# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
    486627# input file. Doxygen will then use the output that the filter program writes
    487 # to standard output.
     628# to standard output.  If FILTER_PATTERNS is specified, this tag will be
     629# ignored.
    488630
    489631INPUT_FILTER           =
     632
     633# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
     634# basis.  Doxygen will compare the file name with each pattern and apply the
     635# filter if there is a match.  The filters are a list of the form:
     636# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
     637# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
     638# is applied to all files.
     639
     640FILTER_PATTERNS        =
    490641
    491642# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
     
    517668STRIP_CODE_COMMENTS    = YES
    518669
    519 # If the REFERENCED_BY_RELATION tag is set to YES (the default)
     670# If the REFERENCED_BY_RELATION tag is set to YES
    520671# then for each documented function all documented
    521672# functions referencing it will be listed.
     
    523674REFERENCED_BY_RELATION = YES
    524675
    525 # If the REFERENCES_RELATION tag is set to YES (the default)
     676# If the REFERENCES_RELATION tag is set to YES
    526677# then for each documented function all documented entities
    527678# called/used by that function will be listed.
    528679
    529680REFERENCES_RELATION    = YES
     681
     682# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
     683# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
     684# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
     685# link to the source code.  Otherwise they will link to the documentstion.
     686
     687REFERENCES_LINK_SOURCE = YES
     688
     689# If the USE_HTAGS tag is set to YES then the references to source code
     690# will point to the HTML generated by the htags(1) tool instead of doxygen
     691# built-in source browser. The htags tool is part of GNU's global source
     692# tagging system (see http://www.gnu.org/software/global/global.html). You
     693# will need version 4.8.6 or higher.
     694
     695USE_HTAGS              = NO
    530696
    531697# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
     
    608774# If the GENERATE_HTMLHELP tag is set to YES, additional index files
    609775# will be generated that can be used as input for tools like the
    610 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
     776# Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
    611777# of the generated HTML documentation.
    612778
    613779GENERATE_HTMLHELP      = YES
     780
     781# If the GENERATE_DOCSET tag is set to YES, additional index files
     782# will be generated that can be used as input for Apple's Xcode 3
     783# integrated development environment, introduced with OSX 10.5 (Leopard).
     784# To create a documentation set, doxygen will generate a Makefile in the
     785# HTML output directory. Running make will produce the docset in that
     786# directory and running "make install" will install the docset in
     787# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
     788# it at startup.
     789
     790GENERATE_DOCSET        = NO
     791
     792# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
     793# feed. A documentation feed provides an umbrella under which multiple
     794# documentation sets from a single provider (such as a company or product suite)
     795# can be grouped.
     796
     797DOCSET_FEEDNAME        = "Doxygen generated docs"
     798
     799# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
     800# should uniquely identify the documentation set bundle. This should be a
     801# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
     802# will append .docset to the name.
     803
     804DOCSET_BUNDLE_ID       = org.doxygen.Project
     805
     806# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
     807# documentation will contain sections that can be hidden and shown after the
     808# page has loaded. For this to work a browser that supports
     809# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
     810# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
     811
     812HTML_DYNAMIC_SECTIONS  = NO
    614813
    615814# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
     
    633832GENERATE_CHI           = NO
    634833
     834# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING
     835# is used to encode HtmlHelp index (hhk), content (hhc) and project file
     836# content.
     837
     838CHM_INDEX_ENCODING     =
     839
    635840# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
    636841# controls whether a binary table of contents is generated (YES) or a
     
    655860ENUM_VALUES_PER_LINE   = 4
    656861
    657 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
    658 # generated containing a tree-like index structure (just like the one that
     862# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
     863# structure should be generated to display hierarchical information.
     864# If the tag value is set to FRAME, a side panel will be generated
     865# containing a tree-like index structure (just like the one that
    659866# is generated for HTML Help). For this to work a browser that supports
    660867# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
    661868# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
    662 # probably better off using the HTML help feature.
     869# probably better off using the HTML help feature. Other possible values
     870# for this tag are: HIERARCHIES, which will generate the Groups, Directories,
     871# and Class Hiererachy pages using a tree view instead of an ordered list;
     872# ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which
     873# disables this behavior completely. For backwards compatibility with previous
     874# releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE
     875# respectively.
    663876
    664877GENERATE_TREEVIEW      = NO
     
    669882
    670883TREEVIEW_WIDTH         = 250
     884
     885# Use this tag to change the font size of Latex formulas included
     886# as images in the HTML documentation. The default is 10. Note that
     887# when you change the font size after a successful doxygen run you need
     888# to manually remove any form_*.png images from the HTML output directory
     889# to force them to be regenerated.
     890
     891FORMULA_FONTSIZE       = 10
    671892
    672893#---------------------------------------------------------------------------
     
    9151136# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
    9161137# then the macro expansion is limited to the macros specified with the
    917 # PREDEFINED and EXPAND_AS_PREDEFINED tags.
     1138# PREDEFINED and EXPAND_AS_DEFINED tags.
    9181139
    9191140EXPAND_ONLY_PREDEF     = YES
     
    9411162# gcc). The argument of the tag is a list of macros of the form: name
    9421163# or name=definition (no spaces). If the definition and the = are
    943 # omitted =1 is assumed.
    944 
    945 PREDEFINED             = __DOXYGEN__ __END_DECLS __BEGIN_DECLS
     1164# omitted =1 is assumed. To prevent a macro definition from being
     1165# undefined via #undef or recursively expanded use the := operator
     1166# instead of the = operator.
     1167
     1168PREDEFINED             = __DOXYGEN__ \
     1169                         __END_DECLS \
     1170                         __BEGIN_DECLS
    9461171
    9471172# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
     
    9501175# Use the PREDEFINED tag if you want to use a different macro definition.
    9511176
    952 EXPAND_AS_DEFINED      = \
    953     GCTYPE \
    954     DECLEXPORT \
    955     DECLIMPORT \
    956     DECLASM \
    957     DECLASMTYPE \
    958     DECLCALLBACK \
    959     ASMINLINE \
    960     VMMR3DECL \
    961     VMMR0DECL \
    962     VMMGCDECL \
    963     VMMDECL \
    964     DISDECL \
    965     SUPR3DECL \
    966     SUPR0DECL \
    967     SUPDECL \
    968     PDMR3DECL \
    969     PDMR0DECL \
    970     PDMGCDECL \
    971     PDMDECL \
    972     IOMR3DECL \
    973     IOMR0DECL \
    974     IOMGCDECL \
    975     IOMDECL \
    976     IDER3DECL \
    977     IDER0DECL \
    978     IDEGCDECL \
    979     IDEDECL \
    980     CFGMR3DECL \
    981     CFGMR0DECL \
    982     CFGMGCDECL \
    983     CFGMDECL \
    984     EMR3DECL \
    985     EMR0DECL \
    986     EMGCDECL \
    987     EMDECL \
    988     RTR3DECL \
    989     RTR0DECL \
    990     RTGCDECL \
    991     RTDECL \
    992     TRPMR3DECL \
    993     TRPMR0DECL \
    994     TRPMGCDECL \
    995     TRPMDECL \
    996     PGMR3DECL \
    997     PGMR0DECL \
    998     PGMGCDECL \
    999     PGMDECL \
    1000     MMR3DECL \
    1001     MMR0DECL \
    1002     MMGCDECL \
    1003     MMDECL \
    1004     SELMR3DECL \
    1005     SELMR0DECL \
    1006     SELMGCDECL \
    1007     SELMDECL \
    1008     PATMR3DECL \
    1009     PATMR0DECL \
    1010     PATMGCDECL \
    1011     PATMDECL \
    1012     STAMR3DECL \
    1013     STAMR0DECL \
    1014     STAMGCDECL \
    1015     STAMDECL \
    1016     VGAR3DECL \
    1017     VGAR0DECL \
    1018     VGAGCDECL \
    1019     VGADECL \
    1020     DBGFR3DECL \
    1021     DBGFR0DECL \
    1022     DBGFGCDECL \
    1023     DBGFDECL \
    1024     DBGCR3DECL \
    1025     DBGR0DECL \
    1026     DBGGCDECL \
    1027     DBGDECL \
    1028     CPUMR3DECL \
    1029     CPUMR0DECL \
    1030     CPUMGCDECL \
    1031     CPUMDECL \
    1032     VMDECL \
    1033     VMR3DECL \
    1034     VMR0DECL \
    1035     VMGCDECL \
    1036     VMDECL \
    1037 
    1038 
     1177EXPAND_AS_DEFINED      = GCTYPE \
     1178                         DECLEXPORT \
     1179                         DECLIMPORT \
     1180                         DECLASM \
     1181                         DECLASMTYPE \
     1182                         DECLCALLBACK \
     1183                         ASMINLINE \
     1184                         VMMR3DECL \
     1185                         VMMR0DECL \
     1186                         VMMGCDECL \
     1187                         VMMDECL \
     1188                         DISDECL \
     1189                         SUPR3DECL \
     1190                         SUPR0DECL \
     1191                         SUPDECL \
     1192                         PDMR3DECL \
     1193                         PDMR0DECL \
     1194                         PDMGCDECL \
     1195                         PDMDECL \
     1196                         IOMR3DECL \
     1197                         IOMR0DECL \
     1198                         IOMGCDECL \
     1199                         IOMDECL \
     1200                         IDER3DECL \
     1201                         IDER0DECL \
     1202                         IDEGCDECL \
     1203                         IDEDECL \
     1204                         CFGMR3DECL \
     1205                         CFGMR0DECL \
     1206                         CFGMGCDECL \
     1207                         CFGMDECL \
     1208                         EMR3DECL \
     1209                         EMR0DECL \
     1210                         EMGCDECL \
     1211                         EMDECL \
     1212                         RTR3DECL \
     1213                         RTR0DECL \
     1214                         RTGCDECL \
     1215                         RTDECL \
     1216                         TRPMR3DECL \
     1217                         TRPMR0DECL \
     1218                         TRPMGCDECL \
     1219                         TRPMDECL \
     1220                         PGMR3DECL \
     1221                         PGMR0DECL \
     1222                         PGMGCDECL \
     1223                         PGMDECL \
     1224                         MMR3DECL \
     1225                         MMR0DECL \
     1226                         MMGCDECL \
     1227                         MMDECL \
     1228                         SELMR3DECL \
     1229                         SELMR0DECL \
     1230                         SELMGCDECL \
     1231                         SELMDECL \
     1232                         PATMR3DECL \
     1233                         PATMR0DECL \
     1234                         PATMGCDECL \
     1235                         PATMDECL \
     1236                         STAMR3DECL \
     1237                         STAMR0DECL \
     1238                         STAMGCDECL \
     1239                         STAMDECL \
     1240                         VGAR3DECL \
     1241                         VGAR0DECL \
     1242                         VGAGCDECL \
     1243                         VGADECL \
     1244                         DBGFR3DECL \
     1245                         DBGFR0DECL \
     1246                         DBGFGCDECL \
     1247                         DBGFDECL \
     1248                         DBGCR3DECL \
     1249                         DBGR0DECL \
     1250                         DBGGCDECL \
     1251                         DBGDECL \
     1252                         CPUMR3DECL \
     1253                         CPUMR0DECL \
     1254                         CPUMGCDECL \
     1255                         CPUMDECL \
     1256                         VMDECL \
     1257                         VMR3DECL \
     1258                         VMR0DECL \
     1259                         VMGCDECL \
     1260                         VMDECL
    10391261
    10401262# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
    10411263# doxygen's preprocessor will remove all function-like macros that are alone
    10421264# on a line, have an all uppercase name, and do not end with a semicolon. Such
    1043 # function macros are typically used for boiler-plate code, and will confuse the
    1044 # parser if not removed.
     1265# function macros are typically used for boiler-plate code, and will confuse
     1266# the parser if not removed.
    10451267
    10461268SKIP_FUNCTION_MACROS   = YES
     
    10941316
    10951317# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
    1096 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or
    1097 # super classes. Setting the tag to NO turns the diagrams off. Note that this
    1098 # option is superseded by the HAVE_DOT option below. This is only a fallback. It is
    1099 # recommended to install and use dot, since it yields more powerful graphs.
     1318# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
     1319# or super classes. Setting the tag to NO turns the diagrams off. Note that
     1320# this option is superseded by the HAVE_DOT option below. This is only a
     1321# fallback. It is recommended to install and use dot, since it yields more
     1322# powerful graphs.
    11001323
    11011324CLASS_DIAGRAMS         = YES
     1325
     1326# You can define message sequence charts within doxygen comments using the \msc
     1327# command. Doxygen will then run the mscgen tool (see
     1328# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
     1329# documentation. The MSCGEN_PATH tag allows you to specify the directory where
     1330# the mscgen tool resides. If left empty the tool is assumed to be found in the
     1331# default search path.
     1332
     1333MSCGEN_PATH            =
    11021334
    11031335# If set to YES, the inheritance and collaboration graphs will hide
     
    11141346HAVE_DOT               = NO
    11151347
     1348# By default doxygen will write a font called FreeSans.ttf to the output
     1349# directory and reference it in all dot files that doxygen generates. This
     1350# font does not include all possible unicode characters however, so when you need
     1351# these (or just want a differently looking font) you can specify the font name
     1352# using DOT_FONTNAME. You need need to make sure dot is able to find the font,
     1353# which can be done by putting it in a standard location or by setting the
     1354# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory
     1355# containing the font.
     1356
     1357DOT_FONTNAME           = FreeSans
     1358
     1359# By default doxygen will tell dot to use the output directory to look for the
     1360# FreeSans.ttf font (which doxygen will put there itself). If you specify a
     1361# different font using DOT_FONTNAME you can set the path where dot
     1362# can find it using this tag.
     1363
     1364DOT_FONTPATH           =
     1365
    11161366# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
    11171367# will generate a graph for each documented class showing the direct and
     
    11281378COLLABORATION_GRAPH    = YES
    11291379
     1380# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
     1381# will generate a graph for groups, showing the direct groups dependencies
     1382
     1383GROUP_GRAPHS           = YES
     1384
    11301385# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
    11311386# collaboration diagrams in a style similar to the OMG's Unified Modeling
     
    11531408INCLUDED_BY_GRAPH      = YES
    11541409
    1155 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
    1156 # generate a call dependency graph for every global function or class method.
    1157 # Note that enabling this option will significantly increase the time of a run.
    1158 # So in most cases it will be better to enable call graphs for selected
    1159 # functions only using the \callgraph command.
     1410# If the CALL_GRAPH and HAVE_DOT options are set to YES then
     1411# doxygen will generate a call dependency graph for every global function
     1412# or class method. Note that enabling this option will significantly increase
     1413# the time of a run. So in most cases it will be better to enable call graphs
     1414# for selected functions only using the \callgraph command.
    11601415
    11611416CALL_GRAPH             = YES
     1417
     1418# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
     1419# doxygen will generate a caller dependency graph for every global function
     1420# or class method. Note that enabling this option will significantly increase
     1421# the time of a run. So in most cases it will be better to enable caller
     1422# graphs for selected functions only using the \callergraph command.
     1423
     1424CALLER_GRAPH           = NO
    11621425
    11631426# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
     
    11651428
    11661429GRAPHICAL_HIERARCHY    = YES
     1430
     1431# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
     1432# then doxygen will show the dependencies a directory has on other directories
     1433# in a graphical way. The dependency relations are determined by the #include
     1434# relations between the files in the directories.
     1435
     1436DIRECTORY_GRAPH        = YES
    11671437
    11681438# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
     
    11731443
    11741444# The tag DOT_PATH can be used to specify the path where the dot tool can be
    1175 # found. If left blank, it is assumed the dot tool can be found on the path.
     1445# found. If left blank, it is assumed the dot tool can be found in the path.
    11761446
    11771447DOT_PATH               =
     
    11831453DOTFILE_DIRS           =
    11841454
    1185 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
    1186 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
    1187 # this value, doxygen will try to truncate the graph, so that it fits within
    1188 # the specified constraint. Beware that most browsers cannot cope with very
    1189 # large images.
    1190 
    1191 MAX_DOT_GRAPH_WIDTH    = 1024
    1192 
    1193 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
    1194 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
    1195 # this value, doxygen will try to truncate the graph, so that it fits within
    1196 # the specified constraint. Beware that most browsers cannot cope with very
    1197 # large images.
    1198 
    1199 MAX_DOT_GRAPH_HEIGHT   = 1024
     1455# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
     1456# nodes that will be shown in the graph. If the number of nodes in a graph
     1457# becomes larger than this value, doxygen will truncate the graph, which is
     1458# visualized by representing a node as a red box. Note that doxygen if the
     1459# number of direct children of the root node in a graph is already larger than
     1460# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
     1461# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
     1462
     1463DOT_GRAPH_MAX_NODES    = 50
    12001464
    12011465# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
    12021466# graphs generated by dot. A depth value of 3 means that only nodes reachable
    1203 # from the root by following a path via at most 3 edges will be shown. Nodes that
    1204 # lay further from the root node will be omitted. Note that setting this option to
    1205 # 1 or 2 may greatly reduce the computation time needed for large code bases. Also
    1206 # note that a graph may be further truncated if the graph's image dimensions are
    1207 # not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT).
    1208 # If 0 is used for the depth value (the default), the graph is not depth-constrained.
     1467# from the root by following a path via at most 3 edges will be shown. Nodes
     1468# that lay further from the root node will be omitted. Note that setting this
     1469# option to 1 or 2 may greatly reduce the computation time needed for large
     1470# code bases. Also note that the size of a graph can be further restricted by
     1471# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
    12091472
    12101473MAX_DOT_GRAPH_DEPTH    = 0
     1474
     1475# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
     1476# background. This is enabled by default, which results in a transparent
     1477# background. Warning: Depending on the platform used, enabling this option
     1478# may lead to badly anti-aliased labels on the edges of a graph (i.e. they
     1479# become hard to read).
     1480
     1481DOT_TRANSPARENT        = YES
     1482
     1483# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
     1484# files in one run (i.e. multiple -o and -T options on the command line). This
     1485# makes dot run faster, but since only newer versions of dot (>1.8.10)
     1486# support this, this feature is disabled by default.
     1487
     1488DOT_MULTI_TARGETS      = NO
    12111489
    12121490# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
  • trunk/src/VBox/Runtime/Doxyfile

    r11226 r18538  
    1 # Doxyfile 1.3.7
     1# Doxyfile 1.5.6
    22
    33# This file describes the settings to be used by the documentation system
     
    1515#---------------------------------------------------------------------------
    1616
     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
     19# text before the first occurrence of this tag. Doxygen uses libiconv (or the
     20# iconv built into libc) for the transcoding. See
     21# http://www.gnu.org/software/libiconv for the list of possible encodings.
     22
     23DOXYFILE_ENCODING      = UTF-8
     24
    1725# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
    1826# by quotes) that should identify the project.
     
    3139# where doxygen was started. If left blank the current directory will be used.
    3240
    33 #OUTPUT_DIRECTORY       =
     41OUTPUT_DIRECTORY       =
    3442
    3543# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
    36 # 2 levels of 10 sub-directories under the output directory of each output
     44# 4096 sub-directories (in 2 levels) under the output directory of each output
    3745# format and will distribute the generated files over these directories.
    38 # Enabling this option can be useful when feeding doxygen a huge amount of source
    39 # files, where putting all generated files in the same directory would otherwise
    40 # cause performance problems for the file system.
     46# 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
     48# otherwise cause performance problems for the file system.
    4149
    4250CREATE_SUBDIRS         = NO
     
    4654# information to generate all constant output in the proper language.
    4755# The default language is English, other supported languages are:
    48 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch,
    49 # Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en
    50 # (Japanese with English messages), Korean, Korean-en, Norwegian, Polish, Portuguese,
    51 # Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
     56# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,
     57# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek,
     58# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages),
     59# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish,
     60# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish,
     61# and Ukrainian.
    5262
    5363OUTPUT_LANGUAGE        = English
    54 
    55 # This tag can be used to specify the encoding used in the generated output.
    56 # The encoding is not always determined by the language that is chosen,
    57 # but also whether or not the output is meant for Windows or non-Windows users.
    58 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES
    59 # forces the Windows encoding (this is the default for the Windows binary),
    60 # whereas setting the tag to NO uses a Unix-style encoding (the default for
    61 # all platforms other than Windows).
    62 
    63 # USE_WINDOWS_ENCODING   = YES
    6464
    6565# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
     
    8080# that is used to form the text in various listings. Each string
    8181# 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 used
    83 # as the annotated text. Otherwise, the brief description is used as-is. If left
    84 # blank, the following values are used ("$name" is automatically replaced with the
    85 # name of the entity): "The $name class" "The $name widget" "The $name file"
    86 # "is" "provides" "specifies" "contains" "represents" "a" "an" "the"
     82# 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.
     84# 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"
     86# "The $name file" "is" "provides" "specifies" "contains"
     87# "represents" "a" "an" "the"
    8788
    8889ABBREVIATE_BRIEF       =
     
    9495ALWAYS_DETAILED_SEC    = NO
    9596
    96 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited
    97 # members of a class in the documentation of that class as if those members were
    98 # ordinary class members. Constructors, destructors and assignment operators of
    99 # the base classes will not be shown.
     97# 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
     99# members were ordinary class members. Constructors, destructors and assignment
     100# operators of the base classes will not be shown.
    100101
    101102INLINE_INHERITED_MEMB  = NO
     
    134135# will interpret the first line (until the first dot) of a JavaDoc-style
    135136# comment as the brief description. If set to NO, the JavaDoc
    136 # comments will behave just like the Qt-style comments (thus requiring an
    137 # explicit @brief command for a brief description.
     137# comments will behave just like regular Qt-style comments
     138# (thus requiring an explicit @brief command for a brief description.)
    138139
    139140JAVADOC_AUTOBRIEF      = YES
     141
     142# 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
     144# comment as the brief description. If set to NO, the comments
     145# will behave just like regular Qt-style comments (thus requiring
     146# an explicit \brief command for a brief description.)
     147
     148QT_AUTOBRIEF           = NO
    140149
    141150# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
     
    160169INHERIT_DOCS           = YES
    161170
    162 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
    163 # tag is set to YES, then doxygen will reuse the documentation of the first
    164 # member in the group (if any) for the other members of the group. By default
    165 # all members of a group must be documented explicitly.
    166 
    167 DISTRIBUTE_GROUP_DOC   = NO
     171# 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
     173# be part of the file/class/namespace that contains it.
     174
     175SEPARATE_MEMBER_PAGES  = NO
    168176
    169177# The TAB_SIZE tag can be used to set the number of spaces in a tab.
     
    179187# You can put \n's in the value part of an alias to insert newlines.
    180188
    181 ALIASES                = \
    182     "note=@remark" \
    183 
    184 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
    185 # only. Doxygen will then generate output that is more tailored for C.
     189ALIASES                = "note=@remark"
     190
     191# 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.
    186193# For instance, some of the names that are used will be different. The list
    187194# of all members will be omitted, etc.
     
    189196OPTIMIZE_OUTPUT_FOR_C  = YES
    190197
    191 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
    192 # only. Doxygen will then generate output that is more tailored for Java.
    193 # For instance, namespaces will be presented as packages, qualified scopes
    194 # will look different, etc.
     198# 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
     200# Java. For instance, namespaces will be presented as packages, qualified
     201# scopes will look different, etc.
    195202
    196203OPTIMIZE_OUTPUT_JAVA   = NO
     204
     205# 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
     207# Fortran.
     208
     209OPTIMIZE_FOR_FORTRAN   = NO
     210
     211# 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
     213# VHDL.
     214
     215OPTIMIZE_OUTPUT_VHDL   = NO
     216
     217# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
     218# to include (a tag file for) the STL sources as input, then you should
     219# set this tag to YES in order to let doxygen match functions declarations and
     220# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.
     221# func(std::string) {}). This also make the inheritance and collaboration
     222# diagrams that involve STL classes more complete and accurate.
     223
     224BUILTIN_STL_SUPPORT    = NO
     225
     226# If you use Microsoft's C++/CLI language, you should set this option to YES to
     227# enable parsing support.
     228
     229CPP_CLI_SUPPORT        = NO
     230
     231# 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
     233# instead of private inheritance when no explicit protection keyword is present.
     234
     235SIP_SUPPORT            = NO
     236
     237# For Microsoft's IDL there are propget and propput attributes to indicate getter
     238# and setter methods for a property. Setting this option to YES (the default)
     239# will make doxygen to replace the get and set methods by a property in the
     240# documentation. This will only work if the methods are indeed getting or
     241# setting a simple type. If this is not the case, or you want to show the
     242# methods anyway, you should set this option to NO.
     243
     244IDL_PROPERTY_SUPPORT   = YES
     245
     246# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
     247# tag is set to YES, then doxygen will reuse the documentation of the first
     248# member in the group (if any) for the other members of the group. By default
     249# all members of a group must be documented explicitly.
     250
     251DISTRIBUTE_GROUP_DOC   = NO
    197252
    198253# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
     
    204259SUBGROUPING            = YES
    205260
     261# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum
     262# is documented as struct, union, or enum with the name of the typedef. So
     263# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
     264# with name TypeT. When disabled the typedef will appear as a member of a file,
     265# namespace, or class. And the struct will be named TypeS. This can typically
     266# be useful for C code in case the coding convention dictates that all compound
     267# types are typedef'ed and only the typedef is referenced, never the tag name.
     268
     269TYPEDEF_HIDES_STRUCT   = NO
     270
    206271#---------------------------------------------------------------------------
    207272# Build related configuration options
     
    237302
    238303EXTRACT_LOCAL_METHODS  = NO
     304
     305# If this flag is set to YES, the members of anonymous namespaces will be
     306# extracted and appear in the documentation as a namespace called
     307# 'anonymous_namespace{file}', where file will be replaced with the base
     308# name of the file that contains the anonymous namespace. By default
     309# anonymous namespace are hidden.
     310
     311EXTRACT_ANON_NSPACES   = NO
    239312
    240313# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
     
    278351# allowed. This is useful if you have classes or files whose names only differ
    279352# in case and if your file system supports case sensitive file names. Windows
    280 # users are advised to set this option to NO.
     353# and Mac users are advised to set this option to NO.
    281354
    282355CASE_SENSE_NAMES       = NO
     
    312385
    313386SORT_BRIEF_DOCS        = NO
     387
     388# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the
     389# hierarchy of group names into alphabetical order. If set to NO (the default)
     390# the group names will appear in their defined order.
     391
     392SORT_GROUP_NAMES       = NO
    314393
    315394# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
     
    368447SHOW_USED_FILES        = YES
    369448
     449# If the sources in your project are distributed over multiple directories
     450# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
     451# in the documentation. The default is NO.
     452
     453SHOW_DIRECTORIES       = NO
     454
     455# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
     456# This will remove the Files entry from the Quick Index and from the
     457# Folder Tree View (if specified). The default is YES.
     458
     459SHOW_FILES             = YES
     460
     461# Set the SHOW_NAMESPACES tag to NO to disable the generation of the
     462# Namespaces page.  This will remove the Namespaces entry from the Quick Index
     463# and from the Folder Tree View (if specified). The default is YES.
     464
     465SHOW_NAMESPACES        = YES
     466
     467# The FILE_VERSION_FILTER tag can be used to specify a program or script that
     468# doxygen should invoke to get the current version for each file (typically from
     469# the version control system). Doxygen will invoke the program by executing (via
     470# popen()) the command <command> <input-file>, where <command> is the value of
     471# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
     472# provided by doxygen. Whatever the program writes to standard output
     473# is used as the file version. See the manual for examples.
     474
     475FILE_VERSION_FILTER    =
     476
    370477#---------------------------------------------------------------------------
    371478# configuration options related to warning and progress messages
     
    396503WARN_IF_DOC_ERROR      = YES
    397504
     505# This WARN_NO_PARAMDOC option can be abled to get warnings for
     506# functions that are documented, but have no documentation for their parameters
     507# or return value. If set to NO (the default) doxygen will only warn about
     508# wrong or incomplete parameter documentation, but not about the absence of
     509# documentation.
     510
     511WARN_NO_PARAMDOC       = NO
     512
    398513# The WARN_FORMAT tag determines the format of the warning messages that
    399514# doxygen can produce. The string should contain the $file, $line, and $text
    400515# tags, which will be replaced by the file and line number from which the
    401 # warning originated and the warning text.
     516# warning originated and the warning text. Optionally the format may contain
     517# $version, which will be replaced by the version of the file (if it could
     518# be obtained via FILE_VERSION_FILTER)
    402519
    403520WARN_FORMAT            = "$file:$line: $text"
     
    407524# to stderr.
    408525
    409 #WARN_LOGFILE           =
     526WARN_LOGFILE           =
    410527
    411528#---------------------------------------------------------------------------
     
    418535# with spaces.
    419536
    420 #INPUT                  =
    421 
    422 
     537INPUT                  =
     538
     539# This tag can be used to specify the character encoding of the source files
     540# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
     541# also the default input encoding. Doxygen uses libiconv (or the iconv built
     542# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for
     543# the list of possible encodings.
     544
     545INPUT_ENCODING         = UTF-8
    423546
    424547# If the value of the INPUT tag contains directories, you can use the
     
    426549# and *.h) to filter out the source-files in the directories. If left
    427550# blank the following patterns are tested:
    428 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp
    429 # *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
    430 
    431 #FILE_PATTERNS          =
    432 
    433 
     551# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
     552# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
     553
     554FILE_PATTERNS          =
    434555
    435556# The RECURSIVE tag can be used to turn specify whether or not subdirectories
     
    445566EXCLUDE                =
    446567
    447 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories
    448 # that are symbolic links (a Unix filesystem feature) are excluded from the input.
     568# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
     569# directories that are symbolic links (a Unix filesystem feature) are excluded
     570# from the input.
    449571
    450572EXCLUDE_SYMLINKS       = NO
     
    452574# If the value of the INPUT tag contains directories, you can use the
    453575# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
    454 # certain files from those directories.
     576# certain files from those directories. Note that the wildcards are matched
     577# against the file with absolute path, so to exclude all test directories
     578# for example use the pattern */test/*
    455579
    456580EXCLUDE_PATTERNS       =
     581
     582# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
     583# (namespaces, classes, functions, etc.) that should be excluded from the
     584# output. The symbol name can be a fully qualified name, a word, or if the
     585# wildcard * is used, a substring. Examples: ANamespace, AClass,
     586# AClass::ANamespace, ANamespace::*Test
     587
     588EXCLUDE_SYMBOLS        =
    457589
    458590# The EXAMPLE_PATH tag can be used to specify one or more files or
     
    487619# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
    488620# input file. Doxygen will then use the output that the filter program writes
    489 # to standard output.
     621# to standard output.  If FILTER_PATTERNS is specified, this tag will be
     622# ignored.
    490623
    491624INPUT_FILTER           =
     625
     626# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
     627# basis.  Doxygen will compare the file name with each pattern and apply the
     628# filter if there is a match.  The filters are a list of the form:
     629# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
     630# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
     631# is applied to all files.
     632
     633FILTER_PATTERNS        =
    492634
    493635# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
     
    519661STRIP_CODE_COMMENTS    = NO
    520662
    521 # If the REFERENCED_BY_RELATION tag is set to YES (the default)
     663# If the REFERENCED_BY_RELATION tag is set to YES
    522664# then for each documented function all documented
    523665# functions referencing it will be listed.
     
    525667REFERENCED_BY_RELATION = YES
    526668
    527 # If the REFERENCES_RELATION tag is set to YES (the default)
     669# If the REFERENCES_RELATION tag is set to YES
    528670# then for each documented function all documented entities
    529671# called/used by that function will be listed.
    530672
    531673REFERENCES_RELATION    = YES
     674
     675# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
     676# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
     677# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
     678# link to the source code.  Otherwise they will link to the documentstion.
     679
     680REFERENCES_LINK_SOURCE = YES
     681
     682# If the USE_HTAGS tag is set to YES then the references to source code
     683# will point to the HTML generated by the htags(1) tool instead of doxygen
     684# built-in source browser. The htags tool is part of GNU's global source
     685# tagging system (see http://www.gnu.org/software/global/global.html). You
     686# will need version 4.8.6 or higher.
     687
     688USE_HTAGS              = NO
    532689
    533690# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
     
    610767# If the GENERATE_HTMLHELP tag is set to YES, additional index files
    611768# will be generated that can be used as input for tools like the
    612 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
     769# Microsoft HTML help workshop to generate a compiled HTML help file (.chm)
    613770# of the generated HTML documentation.
    614771
    615772GENERATE_HTMLHELP      = NO
     773
     774# If the GENERATE_DOCSET tag is set to YES, additional index files
     775# will be generated that can be used as input for Apple's Xcode 3
     776# integrated development environment, introduced with OSX 10.5 (Leopard).
     777# To create a documentation set, doxygen will generate a Makefile in the
     778# HTML output directory. Running make will produce the docset in that
     779# directory and running "make install" will install the docset in
     780# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find
     781# it at startup.
     782
     783GENERATE_DOCSET        = NO
     784
     785# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the
     786# feed. A documentation feed provides an umbrella under which multiple
     787# documentation sets from a single provider (such as a company or product suite)
     788# can be grouped.
     789
     790DOCSET_FEEDNAME        = "Doxygen generated docs"
     791
     792# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that
     793# should uniquely identify the documentation set bundle. This should be a
     794# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
     795# will append .docset to the name.
     796
     797DOCSET_BUNDLE_ID       = org.doxygen.Project
     798
     799# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
     800# documentation will contain sections that can be hidden and shown after the
     801# page has loaded. For this to work a browser that supports
     802# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox
     803# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
     804
     805HTML_DYNAMIC_SECTIONS  = NO
    616806
    617807# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
     
    635825GENERATE_CHI           = NO
    636826
     827# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING
     828# is used to encode HtmlHelp index (hhk), content (hhc) and project file
     829# content.
     830
     831CHM_INDEX_ENCODING     =
     832
    637833# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
    638834# controls whether a binary table of contents is generated (YES) or a
     
    657853ENUM_VALUES_PER_LINE   = 4
    658854
    659 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
    660 # generated containing a tree-like index structure (just like the one that
     855# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
     856# structure should be generated to display hierarchical information.
     857# If the tag value is set to FRAME, a side panel will be generated
     858# containing a tree-like index structure (just like the one that
    661859# is generated for HTML Help). For this to work a browser that supports
    662860# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
    663861# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
    664 # probably better off using the HTML help feature.
     862# probably better off using the HTML help feature. Other possible values
     863# for this tag are: HIERARCHIES, which will generate the Groups, Directories,
     864# and Class Hiererachy pages using a tree view instead of an ordered list;
     865# ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which
     866# disables this behavior completely. For backwards compatibility with previous
     867# releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE
     868# respectively.
    665869
    666870GENERATE_TREEVIEW      = YES
     
    671875
    672876TREEVIEW_WIDTH         = 250
     877
     878# Use this tag to change the font size of Latex formulas included
     879# as images in the HTML documentation. The default is 10. Note that
     880# when you change the font size after a successful doxygen run you need
     881# to manually remove any form_*.png images from the HTML output directory
     882# to force them to be regenerated.
     883
     884FORMULA_FONTSIZE       = 10
    673885
    674886#---------------------------------------------------------------------------
     
    9171129# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
    9181130# then the macro expansion is limited to the macros specified with the
    919 # PREDEFINED and EXPAND_AS_PREDEFINED tags.
     1131# PREDEFINED and EXPAND_AS_DEFINED tags.
    9201132
    9211133EXPAND_ONLY_PREDEF     = YES
     
    9301142# the preprocessor.
    9311143
    932 #INCLUDE_PATH           =
     1144INCLUDE_PATH           =
    9331145
    9341146# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
     
    9371149# be used.
    9381150
    939 #INCLUDE_FILE_PATTERNS  =
     1151INCLUDE_FILE_PATTERNS  =
    9401152
    9411153# The PREDEFINED tag can be used to specify one or more macro names that
     
    9431155# gcc). The argument of the tag is a list of macros of the form: name
    9441156# or name=definition (no spaces). If the definition and the = are
    945 # omitted =1 is assumed.
    946 
    947 PREDEFINED             = DOXYGEN_RUNNING __DOXYGEN__ \
    948     __END_DECLS=  \
    949     __BEGIN_DECLS=  \
    950     VBOX=1 \
    951     RT_STRICT=1 \
    952     __cplusplus=1 \
    953     RTCALL= \
    954     ARCH_BITS=HC_ARCH_BITS \
    955     R3_ARCH_BITS=HC_ARCH_BITS \
    956     R0_ARCH_BITS=HC_ARCH_BITS \
    957     RTDECL(type)=type \
    958 
    959 #    DECLCALLBACK(type)=type
     1157# omitted =1 is assumed. To prevent a macro definition from being
     1158# undefined via #undef or recursively expanded use the := operator
     1159# instead of the = operator.
     1160
     1161PREDEFINED             = DOXYGEN_RUNNING \
     1162                         __DOXYGEN__ \
     1163                         __END_DECLS= \
     1164                         __BEGIN_DECLS= \
     1165                         VBOX=1 \
     1166                         RT_STRICT=1 \
     1167                         __cplusplus=1 \
     1168                         RTCALL= \
     1169                         ARCH_BITS=HC_ARCH_BITS \
     1170                         R3_ARCH_BITS=HC_ARCH_BITS \
     1171                         R0_ARCH_BITS=HC_ARCH_BITS \
     1172                         RTDECL(type)=type
    9601173
    9611174# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
     
    9641177# Use the PREDEFINED tag if you want to use a different macro definition.
    9651178
    966 EXPAND_AS_DEFINED      = \
    967     ARCH_BITS \
    968     GC_ARCH_BITS \
    969     HC_ARCH_BITS \
    970     R3_ARCH_BITS \
    971     R0_ARCH_BITS \
    972     \
    973     GCTYPE \
    974     GCPTRTYPE \
    975     HCPTRTYPE \
    976     R0PTRTYPE \
    977     R3PTRTYPE \
    978     R3R0PTRTYPE \
    979     \
    980     DECLEXPORT \
    981     DECLIMPORT \
    982     DECLASM \
    983     DECLASMTYPE \
    984     DECLCALLBACK \
    985     DECLCALLBACKMEMBER \
    986     DECLHCCALLBACKMEMBER \
    987     DECLRCCALLBACKMEMBER \
    988     DECLR3CALLBACKMEMBER \
    989     DECLR0CALLBACKMEMBER \
    990     DECLINLINE \
    991     RTR3DECL \
    992     RTR0DECL \
    993     RTGCDECL \
    994     RTDECL \
    995     RTDATADECL \
    996     KAVL_FN \
    997     \
    998     CTXSUFF \
    999     OTHERCTXSUFF \
    1000     CTXMID \
    1001     OTHERCTXMID \
    1002 
     1179EXPAND_AS_DEFINED      = ARCH_BITS \
     1180                         GC_ARCH_BITS \
     1181                         HC_ARCH_BITS \
     1182                         R3_ARCH_BITS \
     1183                         R0_ARCH_BITS \
     1184                         GCTYPE \
     1185                         GCPTRTYPE \
     1186                         HCPTRTYPE \
     1187                         R0PTRTYPE \
     1188                         R3PTRTYPE \
     1189                         R3R0PTRTYPE \
     1190                         DECLEXPORT \
     1191                         DECLIMPORT \
     1192                         DECLASM \
     1193                         DECLASMTYPE \
     1194                         DECLCALLBACK \
     1195                         DECLCALLBACKMEMBER \
     1196                         DECLHCCALLBACKMEMBER \
     1197                         DECLRCCALLBACKMEMBER \
     1198                         DECLR3CALLBACKMEMBER \
     1199                         DECLR0CALLBACKMEMBER \
     1200                         DECLINLINE \
     1201                         RTR3DECL \
     1202                         RTR0DECL \
     1203                         RTGCDECL \
     1204                         RTDECL \
     1205                         RTDATADECL \
     1206                         KAVL_FN \
     1207                         CTXSUFF \
     1208                         OTHERCTXSUFF \
     1209                         CTXMID \
     1210                         OTHERCTXMID
    10031211
    10041212# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
    10051213# doxygen's preprocessor will remove all function-like macros that are alone
    10061214# on a line, have an all uppercase name, and do not end with a semicolon. Such
    1007 # function macros are typically used for boiler-plate code, and will confuse the
    1008 # parser if not removed.
    1009 
    1010 #SKIP_FUNCTION_MACROS   = YES
     1215# function macros are typically used for boiler-plate code, and will confuse
     1216# the parser if not removed.
     1217
     1218SKIP_FUNCTION_MACROS   = YES
    10111219
    10121220#---------------------------------------------------------------------------
     
    10581266
    10591267# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
    1060 # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base or
    1061 # super classes. Setting the tag to NO turns the diagrams off. Note that this
    1062 # option is superseded by the HAVE_DOT option below. This is only a fallback. It is
    1063 # recommended to install and use dot, since it yields more powerful graphs.
     1268# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
     1269# or super classes. Setting the tag to NO turns the diagrams off. Note that
     1270# this option is superseded by the HAVE_DOT option below. This is only a
     1271# fallback. It is recommended to install and use dot, since it yields more
     1272# powerful graphs.
    10641273
    10651274CLASS_DIAGRAMS         = YES
     1275
     1276# You can define message sequence charts within doxygen comments using the \msc
     1277# command. Doxygen will then run the mscgen tool (see
     1278# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the
     1279# documentation. The MSCGEN_PATH tag allows you to specify the directory where
     1280# the mscgen tool resides. If left empty the tool is assumed to be found in the
     1281# default search path.
     1282
     1283MSCGEN_PATH            =
    10661284
    10671285# If set to YES, the inheritance and collaboration graphs will hide
     
    10781296HAVE_DOT               = NO
    10791297
     1298# By default doxygen will write a font called FreeSans.ttf to the output
     1299# directory and reference it in all dot files that doxygen generates. This
     1300# font does not include all possible unicode characters however, so when you need
     1301# these (or just want a differently looking font) you can specify the font name
     1302# using DOT_FONTNAME. You need need to make sure dot is able to find the font,
     1303# which can be done by putting it in a standard location or by setting the
     1304# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory
     1305# containing the font.
     1306
     1307DOT_FONTNAME           = FreeSans
     1308
     1309# By default doxygen will tell dot to use the output directory to look for the
     1310# FreeSans.ttf font (which doxygen will put there itself). If you specify a
     1311# different font using DOT_FONTNAME you can set the path where dot
     1312# can find it using this tag.
     1313
     1314DOT_FONTPATH           =
     1315
    10801316# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
    10811317# will generate a graph for each documented class showing the direct and
     
    10921328COLLABORATION_GRAPH    = YES
    10931329
     1330# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
     1331# will generate a graph for groups, showing the direct groups dependencies
     1332
     1333GROUP_GRAPHS           = YES
     1334
    10941335# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
    10951336# collaboration diagrams in a style similar to the OMG's Unified Modeling
     
    11171358INCLUDED_BY_GRAPH      = YES
    11181359
    1119 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
    1120 # generate a call dependency graph for every global function or class method.
    1121 # Note that enabling this option will significantly increase the time of a run.
    1122 # So in most cases it will be better to enable call graphs for selected
    1123 # functions only using the \callgraph command.
     1360# If the CALL_GRAPH and HAVE_DOT options are set to YES then
     1361# doxygen will generate a call dependency graph for every global function
     1362# or class method. Note that enabling this option will significantly increase
     1363# the time of a run. So in most cases it will be better to enable call graphs
     1364# for selected functions only using the \callgraph command.
    11241365
    11251366CALL_GRAPH             = YES
     1367
     1368# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then
     1369# doxygen will generate a caller dependency graph for every global function
     1370# or class method. Note that enabling this option will significantly increase
     1371# the time of a run. So in most cases it will be better to enable caller
     1372# graphs for selected functions only using the \callergraph command.
     1373
     1374CALLER_GRAPH           = NO
    11261375
    11271376# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
     
    11291378
    11301379GRAPHICAL_HIERARCHY    = YES
     1380
     1381# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
     1382# then doxygen will show the dependencies a directory has on other directories
     1383# in a graphical way. The dependency relations are determined by the #include
     1384# relations between the files in the directories.
     1385
     1386DIRECTORY_GRAPH        = YES
    11311387
    11321388# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
     
    11371393
    11381394# The tag DOT_PATH can be used to specify the path where the dot tool can be
    1139 # found. If left blank, it is assumed the dot tool can be found on the path.
     1395# found. If left blank, it is assumed the dot tool can be found in the path.
    11401396
    11411397DOT_PATH               =
     
    11471403DOTFILE_DIRS           =
    11481404
    1149 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width
    1150 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
    1151 # this value, doxygen will try to truncate the graph, so that it fits within
    1152 # the specified constraint. Beware that most browsers cannot cope with very
    1153 # large images.
    1154 
    1155 MAX_DOT_GRAPH_WIDTH    = 1024
    1156 
    1157 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height
    1158 # (in pixels) of the graphs generated by dot. If a graph becomes larger than
    1159 # this value, doxygen will try to truncate the graph, so that it fits within
    1160 # the specified constraint. Beware that most browsers cannot cope with very
    1161 # large images.
    1162 
    1163 MAX_DOT_GRAPH_HEIGHT   = 1024
     1405# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of
     1406# nodes that will be shown in the graph. If the number of nodes in a graph
     1407# becomes larger than this value, doxygen will truncate the graph, which is
     1408# visualized by representing a node as a red box. Note that doxygen if the
     1409# number of direct children of the root node in a graph is already larger than
     1410# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note
     1411# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
     1412
     1413DOT_GRAPH_MAX_NODES    = 50
    11641414
    11651415# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
    11661416# graphs generated by dot. A depth value of 3 means that only nodes reachable
    1167 # from the root by following a path via at most 3 edges will be shown. Nodes that
    1168 # lay further from the root node will be omitted. Note that setting this option to
    1169 # 1 or 2 may greatly reduce the computation time needed for large code bases. Also
    1170 # note that a graph may be further truncated if the graph's image dimensions are
    1171 # not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH and MAX_DOT_GRAPH_HEIGHT).
    1172 # If 0 is used for the depth value (the default), the graph is not depth-constrained.
     1417# from the root by following a path via at most 3 edges will be shown. Nodes
     1418# that lay further from the root node will be omitted. Note that setting this
     1419# option to 1 or 2 may greatly reduce the computation time needed for large
     1420# code bases. Also note that the size of a graph can be further restricted by
     1421# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
    11731422
    11741423MAX_DOT_GRAPH_DEPTH    = 0
     1424
     1425# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
     1426# background. This is enabled by default, which results in a transparent
     1427# background. Warning: Depending on the platform used, enabling this option
     1428# may lead to badly anti-aliased labels on the edges of a graph (i.e. they
     1429# become hard to read).
     1430
     1431DOT_TRANSPARENT        = YES
     1432
     1433# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
     1434# files in one run (i.e. multiple -o and -T options on the command line). This
     1435# makes dot run faster, but since only newer versions of dot (>1.8.10)
     1436# support this, this feature is disabled by default.
     1437
     1438DOT_MULTI_TARGETS      = NO
    11751439
    11761440# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
     
    11941458
    11951459SEARCHENGINE           = NO
    1196 
    1197 #
    1198 # The next bit is generated by the Makefile.
    1199 #
    1200 
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette