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