summaryrefslogtreecommitdiffstats
path: root/src/config.xml
diff options
context:
space:
mode:
authorTim Offermann <timoffermann@web.de>2020-11-27 19:39:07 (GMT)
committerTim Offermann <timoffermann@web.de>2020-11-27 19:39:07 (GMT)
commit3175b34cc09c59300d5ad2868ab6aba6f4ad0646 (patch)
treea327426507aa52025f16dbb8f8c4c92ce3509a66 /src/config.xml
parentcea53616cee27e1fe597421a7cb7b2bf8bcb2b7f (diff)
downloadDoxygen-3175b34cc09c59300d5ad2868ab6aba6f4ad0646.zip
Doxygen-3175b34cc09c59300d5ad2868ab6aba6f4ad0646.tar.gz
Doxygen-3175b34cc09c59300d5ad2868ab6aba6f4ad0646.tar.bz2
Introduce new DOT_UML_DETAIL setting "NONE"
Change of DOT_UML_DETAIL from bool to enum in order to avoid the creation of another, new configuration setting.
Diffstat (limited to 'src/config.xml')
-rw-r--r--src/config.xml20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/config.xml b/src/config.xml
index 1faf67f..56dacd6 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -3444,22 +3444,22 @@ to be found in the default search path.
]]>
</docs>
</option>
- <option type='bool' id='DOT_UML_DETAILS' defval='0' depends='UML_LOOK'>
+ <option type='enum' id='DOT_UML_DETAILS' defval='NO' depends='UML_LOOK'>
<docs>
<![CDATA[
+If the \c DOT_UML_DETAILS tag is set to \c NO, doxygen will
+show attributes and methods without types and arguments in the UML graphs.
If the \c DOT_UML_DETAILS tag is set to \c YES, doxygen will
add type and arguments for attributes and methods in the UML graphs.
+If the \c DOT_UML_DETAILS tag is set to \c NONE, doxygen will not generate
+fields with class member information in the UML graphs.
+The class diagrams will look similar to the default class diagrams but using
+UML notation for the relationships.
]]>
</docs>
- </option>
- <option type='bool' id='DOT_UML_SHOW_MEMBER' defval='1' depends='UML_LOOK'>
- <docs>
-<![CDATA[
- If the \c DOT_UML_SHOW_MEMBER tag is set to \c NO, doxygen will not generate fields with
- class member information inside the class nodes. The class diagrams will look similar to
- the default class diagrams but using UML notation for the relationships.
-]]>
- </docs>
+ <value name="NO" />
+ <value name="YES" />
+ <value name="NONE" />
</option>
<option type='int' id='DOT_WRAP_THRESHOLD' defval='17' minval='0' maxval='1000' depends='HAVE_DOT'>
<docs>