]> git.saurik.com Git - wxWidgets.git/blame - docs/doxygen/Doxyfile
move pages under 'mainpages' and also adopt new link anchor naming and use @itemdef...
[wxWidgets.git] / docs / doxygen / Doxyfile
CommitLineData
15b6757b
FM
1#############################################################################
2## Name: Doxyfile
3## Purpose: Doxygen configuration file for wxWidgets manual
4514447c 4## Author: Francesco Montorsi
15b6757b
FM
5## RCS-ID: $Id$
6## Licence: wxWindows license
7#############################################################################
8
9#---------------------------------------------------------------------------
10# Project related configuration options
11#---------------------------------------------------------------------------
12
13DOXYFILE_ENCODING = UTF-8
14PROJECT_NAME = wxWidgets
15PROJECT_NUMBER = 2.9.0
16OUTPUT_DIRECTORY = out
17CREATE_SUBDIRS = NO
18OUTPUT_LANGUAGE = English
19BRIEF_MEMBER_DESC = YES
20REPEAT_BRIEF = YES
21ABBREVIATE_BRIEF =
22ALWAYS_DETAILED_SEC = YES
23INLINE_INHERITED_MEMB = NO
24FULL_PATH_NAMES = NO
25STRIP_FROM_PATH =
26STRIP_FROM_INC_PATH =
27SHORT_NAMES = NO
28JAVADOC_AUTOBRIEF = NO
29QT_AUTOBRIEF = NO
30MULTILINE_CPP_IS_BRIEF = NO
31DETAILS_AT_TOP = NO
32INHERIT_DOCS = YES
33SEPARATE_MEMBER_PAGES = NO
34TAB_SIZE = 4
35OPTIMIZE_OUTPUT_FOR_C = NO
36OPTIMIZE_OUTPUT_JAVA = NO
37BUILTIN_STL_SUPPORT = NO
38CPP_CLI_SUPPORT = NO
39DISTRIBUTE_GROUP_DOC = NO
40SUBGROUPING = YES
41
42#---------------------------------------------------------------------------
43# Aliases
44#---------------------------------------------------------------------------
45
46# This is the most important part of the wxWidgets Doxyfile; aliases allow
47# us to keep the headers readable and "implement" wxWidgets-specific commands.
48
49# event aliases
375c892e
FM
50ALIASES = beginEventTable="\section class_events Events\n"
51ALIASES += event{1}="\li \b <tt>\1</tt>"
52ALIASES += event{2}="\li \b <tt>\1, \2</tt>"
15b6757b
FM
53ALIASES += endEventTable="\n"
54
55# style aliases
375c892e
FM
56ALIASES += beginStyleTable="\section class_styles Styles\n"
57ALIASES += style{1}="\li \b \c \1"
15b6757b
FM
58ALIASES += endStyleTable="\n"
59
60# extra style aliases
375c892e 61ALIASES += beginExtraStyleTable="\section class_extrastyles Extra Styles\n"
15b6757b
FM
62ALIASES += endExtraStyleTable="\n"
63
64# misc aliases
4514447c 65ALIASES += library{1}="\section class_lib Library\n \ref page_libraries_\1"
375c892e
FM
66ALIASES += nolibrary="\section class_lib Library\n None; this class implementation is entirely header-based."
67ALIASES += stdobjects="\section class_stdobj Predefined objects\n \b"
68
69# IMPORTANT: the default \sa command does not generate a \section!
70ALIASES += seealso="\section class_sa See also\n"
71
72# IMPORTANT: the \headerfile command does not work everywhere we'd need it,
73# e.g. in the constants page we need to specify an header file
74# even if they're not inside a \class, \function or \struct command....
75ALIASES += header{1}="Include file:\n \verbatim #include <\1> @endverbatim"
15b6757b
FM
76
77# some formatting aliases
375c892e
FM
78# NOTE: using <b> and <tt> tags is different from using \c \b because in the last case
79# \c gets applied to the first word following and \b to the second word following;
80# we want both bold and typetext attributes to be applied to the same word!
81ALIASES += true="<b><tt>true</tt></b>"
82ALIASES += false="<b><tt>false</tt></b>"
83ALIASES += NULL="<b><tt>NULL</tt></b>"
15b6757b 84
4514447c 85# table aliases for 2 and 3 column tables
375c892e
FM
86ALIASES += beginTable="<center><table class='doctable'>"
87ALIASES += beginInvisibleTable="<center><table class='doctable' border='0'>"
4514447c
FM
88ALIASES += row2col{2}="<tr><td>\1</td> <td>\2</td></tr>"
89ALIASES += row2col{3}="<tr><td>\1</td> <td>\2,\3</td></tr>"
90ALIASES += row2col{4}="<tr><td>\1</td> <td>\2,\3,\4</td></tr>"
91ALIASES += row2col{5}="<tr><td>\1</td> <td>\2,\3,\4,\5</td></tr>"
92ALIASES += row2col{6}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6</td></tr>"
93ALIASES += row2col{7}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7</td></tr>"
94ALIASES += row2col{8}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7,\8</td></tr>"
95ALIASES += row2col{9}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7,\8,\9</td></tr>"
96ALIASES += row2col{10}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7,\8,\9,\10</td></tr>"
97ALIASES += row3col{3}="<tr><td>\1</td> <td>\2</td> <td>\3</td></tr>"
98ALIASES += row3col{4}="<tr><td>\1</td> <td>\2</td> <td>\3,\4</td></tr>"
99ALIASES += row3col{5}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5</td></tr>"
100ALIASES += row3col{6}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6</td></tr>"
101ALIASES += row3col{7}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7</td></tr>"
102ALIASES += row3col{8}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7,\8</td></tr>"
103ALIASES += row3col{9}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7,\8,\9</td></tr>"
104ALIASES += row3col{10}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7,\8,\9,\10</td></tr>"
375c892e 105ALIASES += endTable="</table></center>"
a3465294 106
4514447c
FM
107# definition list aliases
108# a definition list currently is rendered as 2-column table but it may use as
109# well the <dl>, <dt> and <dd> HTML tags in future.
110# In any case a definition list differs from a table because of its semantic
111# nature and because it is always the association of a "title" with a "description"
112# (in contrast a table may have more than 2 columns of data)...
113ALIASES += beginDefList="<table class='doclist'>"
114ALIASES += itemdef{2}="<tr><td>\b \1</td> <td>\2</td></tr>"
115ALIASES += itemdef{3}="<tr><td>\b \1</td> <td>\2,\3</td></tr>"
116ALIASES += itemdef{4}="<tr><td>\b \1</td> <td>\2,\3,\4</td></tr>"
117ALIASES += itemdef{5}="<tr><td>\b \1</td> <td>\2,\3,\4,\5</td></tr>"
118ALIASES += itemdef{6}="<tr><td>\b \1</td> <td>\2,\3,\4,\5,\6</td></tr>"
119ALIASES += itemdef{7}="<tr><td>\b \1</td> <td>\2,\3,\4,\5,\6,\7</td></tr>"
120ALIASES += itemdef{8}="<tr><td>\b \1</td> <td>\2,\3,\4,\5,\6,\7,\8</td></tr>"
121ALIASES += itemdef{9}="<tr><td>\b \1</td> <td>\2,\3,\4,\5,\6,\7,\8,\9</td></tr>"
122ALIASES += itemdef{10}="<tr><td>\b \1</td> <td>\2,\3,\4,\5,\6,\7,\8,\9,\10</td></tr>"
123ALIASES += endDefList="</table>"
124
125
375c892e
FM
126# NOTE: we could put aliases also for e.g. @wxDefaultSize, @wxDefaultPosition, @wxID_ANY,
127# @wxEmptyString, @wxNullIcon, etc etc
15b6757b 128
a3465294
FM
129# NOTE: these are important as you can't write in the docs
130# just #ifdef since the # character is used by Doxygen
131# for explicit linking; use the following aliases instead!
375c892e
FM
132ALIASES += ifdef="<b><tt>\#ifdef</tt></b>"
133ALIASES += ifndef="<b><tt>\#ifndef</tt></b>"
134ALIASES += if="<b><tt>\#if</tt></b>" # NOTE: this overrides the Doxygen \if command
135ALIASES += endif="<b><tt>\#endif</tt></b>"
a3465294 136
15b6757b
FM
137
138#---------------------------------------------------------------------------
139# Build related configuration options
140#---------------------------------------------------------------------------
141EXTRACT_ALL = YES
142EXTRACT_PRIVATE = NO
143EXTRACT_STATIC = YES
144EXTRACT_LOCAL_CLASSES = YES
145EXTRACT_LOCAL_METHODS = NO
146EXTRACT_ANON_NSPACES = YES
147HIDE_UNDOC_MEMBERS = YES
148HIDE_UNDOC_CLASSES = YES
149HIDE_FRIEND_COMPOUNDS = NO
150HIDE_IN_BODY_DOCS = NO
151INTERNAL_DOCS = NO
152CASE_SENSE_NAMES = NO
153HIDE_SCOPE_NAMES = NO
154SHOW_INCLUDE_FILES = YES
155INLINE_INFO = YES
156SORT_MEMBER_DOCS = YES
157SORT_BRIEF_DOCS = YES
158SORT_BY_SCOPE_NAME = NO
159GENERATE_TODOLIST = YES
160GENERATE_TESTLIST = YES
161GENERATE_BUGLIST = YES
162GENERATE_DEPRECATEDLIST= YES
163ENABLED_SECTIONS =
164MAX_INITIALIZER_LINES = 30
165SHOW_USED_FILES = YES
166SHOW_DIRECTORIES = NO
167FILE_VERSION_FILTER =
168
169#---------------------------------------------------------------------------
170# configuration options related to warning and progress messages
171#---------------------------------------------------------------------------
172QUIET = NO
173WARNINGS = YES
174WARN_IF_UNDOCUMENTED = NO
175WARN_IF_DOC_ERROR = YES
176WARN_NO_PARAMDOC = NO
177WARN_FORMAT = "$file:$line: $text "
4411a6b6 178WARN_LOGFILE = doxygen.log
15b6757b
FM
179
180#---------------------------------------------------------------------------
181# configuration options related to the input files
182#---------------------------------------------------------------------------
4514447c 183INPUT = ./mainpages ./overviews #../../interface
15b6757b
FM
184INPUT_ENCODING = UTF-8
185FILE_PATTERNS = *.h *.txt
186RECURSIVE = YES
187EXCLUDE =
188EXCLUDE_SYMLINKS = NO
189EXCLUDE_PATTERNS =
190EXCLUDE_SYMBOLS =
191EXAMPLE_PATH =
192EXAMPLE_PATTERNS = *
193EXAMPLE_RECURSIVE = YES
4411a6b6 194IMAGE_PATH = images
15b6757b
FM
195INPUT_FILTER =
196FILTER_PATTERNS =
197FILTER_SOURCE_FILES = NO
198
199#---------------------------------------------------------------------------
200# configuration options related to source browsing
201#---------------------------------------------------------------------------
202SOURCE_BROWSER = NO
203INLINE_SOURCES = NO
204STRIP_CODE_COMMENTS = YES
205REFERENCED_BY_RELATION = NO
206REFERENCES_RELATION = NO
207REFERENCES_LINK_SOURCE = YES
208USE_HTAGS = NO
209VERBATIM_HEADERS = NO
210
211#---------------------------------------------------------------------------
212# configuration options related to the alphabetical class index
213#---------------------------------------------------------------------------
214ALPHABETICAL_INDEX = YES
215COLS_IN_ALPHA_INDEX = 5
216IGNORE_PREFIX = wx
217
218#---------------------------------------------------------------------------
219# configuration options related to the HTML output
220#---------------------------------------------------------------------------
221GENERATE_HTML = YES
222HTML_OUTPUT = html
223HTML_FILE_EXTENSION = .html
224HTML_HEADER = htmlheader.inc
225HTML_FOOTER = htmlfooter.inc
226HTML_STYLESHEET =
227HTML_ALIGN_MEMBERS = YES
228GENERATE_HTMLHELP = NO
229HTML_DYNAMIC_SECTIONS = NO
230CHM_FILE =
231HHC_LOCATION =
232GENERATE_CHI = NO
233BINARY_TOC = NO
234TOC_EXPAND = NO
235DISABLE_INDEX = NO
236ENUM_VALUES_PER_LINE = 4
237GENERATE_TREEVIEW = NO
238TREEVIEW_WIDTH = 250
239
240#---------------------------------------------------------------------------
241# configuration options related to the LaTeX output
242#---------------------------------------------------------------------------
243GENERATE_LATEX = NO
244LATEX_OUTPUT = latex
245LATEX_CMD_NAME = latex
246MAKEINDEX_CMD_NAME = makeindex
247COMPACT_LATEX = NO
248PAPER_TYPE = a4wide
249EXTRA_PACKAGES =
250LATEX_HEADER =
251PDF_HYPERLINKS = NO
252USE_PDFLATEX = NO
253LATEX_BATCHMODE = NO
254LATEX_HIDE_INDICES = NO
255
256#---------------------------------------------------------------------------
257# configuration options related to the RTF output
258#---------------------------------------------------------------------------
259GENERATE_RTF = NO
260RTF_OUTPUT = rtf
261COMPACT_RTF = NO
262RTF_HYPERLINKS = NO
263RTF_STYLESHEET_FILE =
264RTF_EXTENSIONS_FILE =
265
266#---------------------------------------------------------------------------
267# configuration options related to the man page output
268#---------------------------------------------------------------------------
269GENERATE_MAN = NO
270MAN_OUTPUT = man
271MAN_EXTENSION = .3
272MAN_LINKS = NO
273
274#---------------------------------------------------------------------------
275# configuration options related to the XML output
276#---------------------------------------------------------------------------
a3465294 277GENERATE_XML = NO
15b6757b
FM
278XML_OUTPUT = xml
279XML_SCHEMA =
280XML_DTD =
281XML_PROGRAMLISTING = YES
282
283#---------------------------------------------------------------------------
284# configuration options for the AutoGen Definitions output
285#---------------------------------------------------------------------------
286GENERATE_AUTOGEN_DEF = NO
287
288#---------------------------------------------------------------------------
289# configuration options related to the Perl module output
290#---------------------------------------------------------------------------
291GENERATE_PERLMOD = NO
292PERLMOD_LATEX = NO
293PERLMOD_PRETTY = YES
294PERLMOD_MAKEVAR_PREFIX =
295
296#---------------------------------------------------------------------------
297# Configuration options related to the preprocessor
298#---------------------------------------------------------------------------
299ENABLE_PREPROCESSING = YES
300MACRO_EXPANSION = NO
301EXPAND_ONLY_PREDEF = NO
302SEARCH_INCLUDES = YES
303INCLUDE_PATH =
304INCLUDE_FILE_PATTERNS =
305PREDEFINED =
306EXPAND_AS_DEFINED =
307SKIP_FUNCTION_MACROS = YES
308
309#---------------------------------------------------------------------------
310# Configuration::additions related to external references
311#---------------------------------------------------------------------------
312TAGFILES =
313GENERATE_TAGFILE =
314ALLEXTERNALS = NO
315EXTERNAL_GROUPS = YES
316PERL_PATH = /usr/bin/perl
317
318#---------------------------------------------------------------------------
319# Configuration options related to the dot tool
320#---------------------------------------------------------------------------
321CLASS_DIAGRAMS = YES
322MSCGEN_PATH =
323HIDE_UNDOC_RELATIONS = YES
324HAVE_DOT = YES
325CLASS_GRAPH = NO
326COLLABORATION_GRAPH = NO
327GROUP_GRAPHS = NO
328UML_LOOK = NO
329TEMPLATE_RELATIONS = NO
330INCLUDE_GRAPH = NO
331INCLUDED_BY_GRAPH = NO
332CALL_GRAPH = NO
333CALLER_GRAPH = NO
334GRAPHICAL_HIERARCHY = NO
335DIRECTORY_GRAPH = NO
336DOT_IMAGE_FORMAT = png
337DOT_PATH =
338DOTFILE_DIRS =
339DOT_GRAPH_MAX_NODES = 50
340MAX_DOT_GRAPH_DEPTH = 1000
341DOT_TRANSPARENT = NO
342DOT_MULTI_TARGETS = NO
343GENERATE_LEGEND = YES
344DOT_CLEANUP = YES
345
346#---------------------------------------------------------------------------
347# Configuration::additions related to the search engine
348#---------------------------------------------------------------------------
349SEARCHENGINE = YES