1
- # Doxyfile 1.9.8
1
+ # Doxyfile 1.10.0
2
2
3
3
# This file describes the settings to be used by the documentation system
4
4
# doxygen (www.doxygen.org) for a project.
@@ -48,7 +48,7 @@ PROJECT_NAME = wxPdfDocument
48
48
# could be handy for archiving the generated documentation or if some version
49
49
# control system is used.
50
50
51
- PROJECT_NUMBER = 1.0.3
51
+ PROJECT_NUMBER = 1.1.0
52
52
53
53
# Using the PROJECT_BRIEF tag one can provide an optional one line description
54
54
# for a project that appears at the top of each page and should give viewer a
@@ -63,6 +63,12 @@ PROJECT_BRIEF =
63
63
64
64
PROJECT_LOGO =
65
65
66
+ # With the PROJECT_ICON tag one can specify an icon that is included in the tabs
67
+ # when the HTML document is shown. Doxygen will copy the logo to the output
68
+ # directory.
69
+
70
+ PROJECT_ICON =
71
+
66
72
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
67
73
# into which the generated documentation will be written. If a relative path is
68
74
# entered, it will be relative to the location where doxygen was started. If
@@ -977,10 +983,10 @@ INPUT_FILE_ENCODING =
977
983
# default file extension mappings.
978
984
#
979
985
# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cxxm,
980
- # *.cpp, *.cppm, *.c++, *.c++m, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl ,
981
- # *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, *.h++, *.ixx, *.l, *.cs, *.d, *.php ,
982
- # *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be
983
- # provided as doxygen C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,
986
+ # *.cpp, *.cppm, *.ccm, *. c++, *.c++m, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl,
987
+ # *.idl, *. ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, *.h++, *.ixx, *.l, *.cs, *.d,
988
+ # *.php, *. php4, *.php5, *.phtml, *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to
989
+ # be provided as doxygen C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,
984
990
# *.f18, *.f, *.for, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice.
985
991
986
992
FILE_PATTERNS = *.d \
@@ -1151,7 +1157,8 @@ FORTRAN_COMMENT_AFTER = 72
1151
1157
SOURCE_BROWSER = NO
1152
1158
1153
1159
# Setting the INLINE_SOURCES tag to YES will include the body of functions,
1154
- # classes and enums directly into the documentation.
1160
+ # multi-line macros, enums or list initialized variables directly into the
1161
+ # documentation.
1155
1162
# The default value is: NO.
1156
1163
1157
1164
INLINE_SOURCES = NO
@@ -1446,6 +1453,26 @@ HTML_DYNAMIC_SECTIONS = NO
1446
1453
1447
1454
HTML_CODE_FOLDING = YES
1448
1455
1456
+ # If the HTML_COPY_CLIPBOARD tag is set to YES then doxygen will show an icon in
1457
+ # the top right corner of code and text fragments that allows the user to copy
1458
+ # its content to the clipboard. Note this only works if supported by the browser
1459
+ # and the web page is served via a secure context (see:
1460
+ # https://www.w3.org/TR/secure-contexts/), i.e. using the https: or file:
1461
+ # protocol.
1462
+ # The default value is: YES.
1463
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1464
+
1465
+ HTML_COPY_CLIPBOARD = YES
1466
+
1467
+ # Doxygen stores a couple of settings persistently in the browser (via e.g.
1468
+ # cookies). By default these settings apply to all HTML pages generated by
1469
+ # doxygen across all projects. The HTML_PROJECT_COOKIE tag can be used to store
1470
+ # the settings under a project specific key, such that the user preferences will
1471
+ # be stored separately.
1472
+ # This tag requires that the tag GENERATE_HTML is set to YES.
1473
+
1474
+ HTML_PROJECT_COOKIE =
1475
+
1449
1476
# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
1450
1477
# shown in the various tree structured indices initially; the user can expand
1451
1478
# and collapse entries dynamically later on. Doxygen will expand the tree to
@@ -2294,9 +2321,9 @@ GENERATE_SQLITE3 = NO
2294
2321
2295
2322
SQLITE3_OUTPUT = sqlite3
2296
2323
2297
- # The SQLITE3_OVERWRITE_DB tag is set to YES, the existing doxygen_sqlite3.db
2324
+ # The SQLITE3_RECREATE_DB tag is set to YES, the existing doxygen_sqlite3.db
2298
2325
# database file will be recreated with each doxygen run. If set to NO, doxygen
2299
- # will warn if an a database file is already found and not modify it.
2326
+ # will warn if a database file is already found and not modify it.
2300
2327
# The default value is: YES.
2301
2328
# This tag requires that the tag GENERATE_SQLITE3 is set to YES.
2302
2329
@@ -2537,7 +2564,11 @@ DOT_FONTPATH =
2537
2564
# the CLASS_GRAPH tag is set to YES and HAVE_DOT is disabled or if the
2538
2565
# CLASS_GRAPH tag is set to BUILTIN, then the built-in generator will be used.
2539
2566
# If the CLASS_GRAPH tag is set to TEXT the direct and indirect inheritance
2540
- # relations will be shown as texts / links.
2567
+ # relations will be shown as texts / links. Explicit enabling an inheritance
2568
+ # graph or choosing a different representation for an inheritance graph of a
2569
+ # specific class, can be accomplished by means of the command \inheritancegraph.
2570
+ # Disabling an inheritance graph can be accomplished by means of the command
2571
+ # \hideinheritancegraph.
2541
2572
# Possible values are: NO, YES, TEXT, GRAPH and BUILTIN.
2542
2573
# The default value is: YES.
2543
2574
@@ -2602,8 +2633,8 @@ DOT_UML_DETAILS = NO
2602
2633
2603
2634
# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters
2604
2635
# to display on a single line. If the actual line length exceeds this threshold
2605
- # significantly it will wrapped across multiple lines. Some heuristics are apply
2606
- # to avoid ugly line breaks.
2636
+ # significantly it will be wrapped across multiple lines. Some heuristics are
2637
+ # applied to avoid ugly line breaks.
2607
2638
# Minimum value: 0, maximum value: 1000, default value: 17.
2608
2639
# This tag requires that the tag HAVE_DOT is set to YES.
2609
2640
0 commit comments