Skip to content

Commit fb58425

Browse files
committed
Make doxygen happy
1 parent f543ac0 commit fb58425

File tree

99 files changed

+276
-1749
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+276
-1749
lines changed

doc/Doxyfile

Lines changed: 2 additions & 109 deletions
Original file line numberDiff line numberDiff line change
@@ -232,12 +232,6 @@ TAB_SIZE = 8
232232

233233
ALIASES =
234234

235-
# This tag can be used to specify a number of word-keyword mappings (TCL only).
236-
# A mapping has the form "name=value". For example adding "class=itcl::class"
237-
# will allow you to use the command class in the itcl::class meaning.
238-
239-
TCL_SUBST =
240-
241235
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
242236
# only. Doxygen will then generate output that is more tailored for C. For
243237
# instance, some of the names that are used will be different. The list of all
@@ -870,7 +864,7 @@ EXAMPLE_RECURSIVE = NO
870864
# that contain images that are to be included in the documentation (see the
871865
# \image command).
872866

873-
IMAGE_PATH = pics
867+
IMAGE_PATH = ../
874868

875869
# The INPUT_FILTER tag can be used to specify a program that doxygen should
876870
# invoke to filter for each input file. Doxygen will invoke the filter program
@@ -1017,13 +1011,6 @@ VERBATIM_HEADERS = YES
10171011

10181012
ALPHABETICAL_INDEX = NO
10191013

1020-
# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
1021-
# which the alphabetical index list will be split.
1022-
# Minimum value: 1, maximum value: 20, default value: 5.
1023-
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1024-
1025-
COLS_IN_ALPHA_INDEX = 5
1026-
10271014
# In case all classes in a project start with a common prefix, all classes will
10281015
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
10291016
# can be used to specify a prefix (or a list of prefixes) that should be ignored
@@ -1149,14 +1136,6 @@ HTML_COLORSTYLE_SAT = 100
11491136

11501137
HTML_COLORSTYLE_GAMMA = 80
11511138

1152-
# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1153-
# page will contain the date and time when the page was generated. Setting this
1154-
# to NO can help when comparing the output of multiple runs.
1155-
# The default value is: YES.
1156-
# This tag requires that the tag GENERATE_HTML is set to YES.
1157-
1158-
HTML_TIMESTAMP = YES
1159-
11601139
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
11611140
# documentation will contain sections that can be hidden and shown after the
11621141
# page has loaded.
@@ -1426,17 +1405,6 @@ EXT_LINKS_IN_WINDOW = NO
14261405

14271406
FORMULA_FONTSIZE = 10
14281407

1429-
# Use the FORMULA_TRANPARENT tag to determine whether or not the images
1430-
# generated for formulas are transparent PNGs. Transparent PNGs are not
1431-
# supported properly for IE 6.0, but are supported on all modern browsers.
1432-
#
1433-
# Note that when changing this option you need to delete any form_*.png files in
1434-
# the HTML output directory before the changes have effect.
1435-
# The default value is: YES.
1436-
# This tag requires that the tag GENERATE_HTML is set to YES.
1437-
1438-
FORMULA_TRANSPARENT = YES
1439-
14401408
# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
14411409
# http://www.mathjax.org) which uses client side Javascript for the rendering
14421410
# instead of using prerendered bitmaps. Use this if you do not have LaTeX
@@ -1622,7 +1590,7 @@ COMPACT_LATEX = NO
16221590
# The default value is: a4.
16231591
# This tag requires that the tag GENERATE_LATEX is set to YES.
16241592

1625-
PAPER_TYPE = a4wide
1593+
PAPER_TYPE = a4
16261594

16271595
# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
16281596
# that should be included in the LaTeX output. To get the times font for
@@ -1699,16 +1667,6 @@ LATEX_BATCHMODE = NO
16991667

17001668
LATEX_HIDE_INDICES = NO
17011669

1702-
# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
1703-
# code with syntax highlighting in the LaTeX output.
1704-
#
1705-
# Note that which sources are shown also depends on other settings such as
1706-
# SOURCE_BROWSER.
1707-
# The default value is: NO.
1708-
# This tag requires that the tag GENERATE_LATEX is set to YES.
1709-
1710-
LATEX_SOURCE_CODE = NO
1711-
17121670
# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
17131671
# bibliography, e.g. plainnat, or ieeetr. See
17141672
# http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
@@ -1828,18 +1786,6 @@ GENERATE_XML = NO
18281786

18291787
XML_OUTPUT = xml
18301788

1831-
# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a
1832-
# validating XML parser to check the syntax of the XML files.
1833-
# This tag requires that the tag GENERATE_XML is set to YES.
1834-
1835-
XML_SCHEMA =
1836-
1837-
# The XML_DTD tag can be used to specify a XML DTD, which can be used by a
1838-
# validating XML parser to check the syntax of the XML files.
1839-
# This tag requires that the tag GENERATE_XML is set to YES.
1840-
1841-
XML_DTD =
1842-
18431789
# If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program
18441790
# listings (including syntax highlighting and cross-referencing information) to
18451791
# the XML output. Note that enabling this will significantly increase the size
@@ -2040,34 +1986,10 @@ EXTERNAL_GROUPS = YES
20401986

20411987
EXTERNAL_PAGES = YES
20421988

2043-
# The PERL_PATH should be the absolute path and name of the perl script
2044-
# interpreter (i.e. the result of 'which perl').
2045-
# The default file (with absolute path) is: /usr/bin/perl.
2046-
2047-
PERL_PATH = /usr/bin/perl
2048-
20491989
#---------------------------------------------------------------------------
20501990
# Configuration options related to the dot tool
20511991
#---------------------------------------------------------------------------
20521992

2053-
# If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram
2054-
# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
2055-
# NO turns the diagrams off. Note that this option also works with HAVE_DOT
2056-
# disabled, but it is recommended to install and use dot, since it yields more
2057-
# powerful graphs.
2058-
# The default value is: YES.
2059-
2060-
CLASS_DIAGRAMS = YES
2061-
2062-
# You can define message sequence charts within doxygen comments using the \msc
2063-
# command. Doxygen will then run the mscgen tool (see:
2064-
# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the
2065-
# documentation. The MSCGEN_PATH tag allows you to specify the directory where
2066-
# the mscgen tool resides. If left empty the tool is assumed to be found in the
2067-
# default search path.
2068-
2069-
MSCGEN_PATH =
2070-
20711993
# You can include diagrams made with dia in doxygen documentation. Doxygen will
20721994
# then run dia to produce the diagram and insert it in the documentation. The
20731995
# DIA_PATH tag allows you to specify the directory where the dia binary resides.
@@ -2100,23 +2022,6 @@ HAVE_DOT = NO
21002022

21012023
DOT_NUM_THREADS = 0
21022024

2103-
# When you want a differently looking font n the dot files that doxygen
2104-
# generates you can specify the font name using DOT_FONTNAME. You need to make
2105-
# sure dot is able to find the font, which can be done by putting it in a
2106-
# standard location or by setting the DOTFONTPATH environment variable or by
2107-
# setting DOT_FONTPATH to the directory containing the font.
2108-
# The default value is: Helvetica.
2109-
# This tag requires that the tag HAVE_DOT is set to YES.
2110-
2111-
DOT_FONTNAME = FreeSans
2112-
2113-
# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
2114-
# dot graphs.
2115-
# Minimum value: 4, maximum value: 24, default value: 10.
2116-
# This tag requires that the tag HAVE_DOT is set to YES.
2117-
2118-
DOT_FONTSIZE = 10
2119-
21202025
# By default doxygen will tell dot to use the default font as specified with
21212026
# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
21222027
# the path where dot can find it using this tag.
@@ -2305,18 +2210,6 @@ DOT_GRAPH_MAX_NODES = 50
23052210

23062211
MAX_DOT_GRAPH_DEPTH = 0
23072212

2308-
# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
2309-
# background. This is disabled by default, because dot on Windows does not seem
2310-
# to support this out of the box.
2311-
#
2312-
# Warning: Depending on the platform used, enabling this option may lead to
2313-
# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
2314-
# read).
2315-
# The default value is: NO.
2316-
# This tag requires that the tag HAVE_DOT is set to YES.
2317-
2318-
DOT_TRANSPARENT = NO
2319-
23202213
# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
23212214
# files in one run (i.e. multiple -o and -T options on the command line). This
23222215
# makes dot run faster, but since only newer versions of dot (>1.8.10) support
File renamed without changes.

doc/doxygen_sqlite3.db

-43 KB
Binary file not shown.

doc/html/.directory

Lines changed: 0 additions & 9 deletions
This file was deleted.

doc/html/_q_hex_edit_plugin_8h_source.html

Lines changed: 0 additions & 78 deletions
This file was deleted.

doc/html/annotated.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
</div><!-- contents -->
8181
<!-- start footer part -->
8282
<hr class="footer"/><address class="footer"><small>
83-
Generated on Mon Feb 17 2025 16:37:43 for QHexEdit by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8
83+
Generated by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8
8484
</small></address>
8585
</body>
8686
</html>

doc/html/arrowdown.png

-246 Bytes
Binary file not shown.

doc/html/arrowright.png

-229 Bytes
Binary file not shown.

doc/html/bdwn.png

-147 Bytes
Binary file not shown.

doc/html/chunks_8h_source.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
</div><!-- fragment --></div><!-- contents -->
144144
<!-- start footer part -->
145145
<hr class="footer"/><address class="footer"><small>
146-
Generated on Sun Mar 9 2025 13:53:55 for QHexEdit by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8
146+
Generated by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8
147147
</small></address>
148148
</body>
149149
</html>

0 commit comments

Comments
 (0)