1 #############################################################################
3 ## Purpose: Main configuration file for the wxWidgets manual
4 ## Author: Francesco Montorsi
6 ## Licence: wxWindows license
7 #############################################################################
9 #---------------------------------------------------------------------------
10 # Project related configuration options
11 #---------------------------------------------------------------------------
13 DOXYFILE_ENCODING = UTF-8
14 PROJECT_NAME = wxWidgets
15 PROJECT_NUMBER = 2.9.0
16 OUTPUT_DIRECTORY = out
18 OUTPUT_LANGUAGE = English
19 BRIEF_MEMBER_DESC = YES
22 ALWAYS_DETAILED_SEC = YES
23 INLINE_INHERITED_MEMB = NO
28 JAVADOC_AUTOBRIEF = NO
30 MULTILINE_CPP_IS_BRIEF = NO
33 SEPARATE_MEMBER_PAGES = NO
35 OPTIMIZE_OUTPUT_FOR_C = NO
36 OPTIMIZE_OUTPUT_JAVA = NO
37 BUILTIN_STL_SUPPORT = NO
39 DISTRIBUTE_GROUP_DOC = NO
42 #---------------------------------------------------------------------------
44 #---------------------------------------------------------------------------
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.
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"
56 ALIASES += beginStyleTable="\section class_styles Styles\n"
57 ALIASES += style{1}="\li \b \c \1"
58 ALIASES += endStyleTable="\n"
61 ALIASES += beginExtraStyleTable="\section class_extrastyles Extra Styles\n"
62 ALIASES += endExtraStyleTable="\n"
64 # aliases for additional wx-specific infos
65 ALIASES += library{1}="\section class_lib Library\n \ref page_libs_\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 ALIASES += category{1}="\section class_category Category\n"
70 # aliases with references to wxWidgets ports
71 ALIASES += nativeimpl{1}="\section class_impl Native implementations\n \ref page_port_\1"
72 ALIASES += nativeimpl{2}="\section class_impl Native implementations\n \ref page_port_\1, \ref page_port_\2"
73 ALIASES += nativeimpl{3}="\section class_impl Native implementations\n \ref page_port_\1, \ref page_port_\2, \ref page_port_\3"
74 ALIASES += nativeimpl{4}="\section class_impl Native implementations\n \ref page_port_\1, \ref page_port_\2, \ref page_port_\3, \ref page_port_\4"
75 ALIASES += onlyfor{1}="\section class_onlyfor Only available for\n \ref page_port_\1"
76 ALIASES += onlyfor{2}="\section class_onlyfor Only available for\n \ref page_port_\1, \ref page_port_\2"
77 ALIASES += onlyfor{3}="\section class_onlyfor Only available for\n \ref page_port_\1, \ref page_port_\2, \ref page_port_\3"
78 ALIASES += onlyfor{4}="\section class_onlyfor Only available for\n \ref page_port_\1, \ref page_port_\2, \ref page_port_\3, \ref page_port_\4"
80 # creates appearance section: this should be used for all main GUI controls
81 ALIASES += appearance{1}="\section class_appearance Appearance\n @htmlonly <table class='appearance'><tr><td><img src='wxmsw/\1' alt='wxMSW appearance' class='appearance'></td><td><img src='wxgtk/\1' alt='wxGTK appearance' class='appearance'></td><td><img src='wxmac/\1' alt='wxMac appearance' class='appearance'></td></tr><tr><td>wxMSW appearance</td><td>wxGTK appearance</td><td>wxMac appearance</td></tr></table> @endhtmlonly"
83 # IMPORTANT: the default \sa command does not generate a \section!
84 ALIASES += seealso="\section class_sa See also\n"
86 # IMPORTANT: the \headerfile command does not work everywhere we'd need it,
87 # e.g. in the constants page we need to specify an header file
88 # even if they're not inside a \class, \function or \struct command....
89 ALIASES += header{1}="Include file:\n \verbatim #include <\1> @endverbatim"
91 # some formatting aliases
92 # NOTE: using <b> and <tt> tags is different from using \c \b because in the last case
93 # \c gets applied to the first word following and \b to the second word following;
94 # we want both bold and typetext attributes to be applied to the same word!
95 ALIASES += true="<b><tt>true</tt></b>"
96 ALIASES += false="<b><tt>false</tt></b>"
97 ALIASES += NULL="<b><tt>NULL</tt></b>"
99 # table aliases for 2 and 3 column tables
100 ALIASES += beginTable="<center><table class='doctable' border='1' cellspacing='0' cellpadding='3'>"
101 ALIASES += beginInvisibleTable="<center><table class='doctable' border='0' cellspacing='0' cellpadding='4'>"
102 ALIASES += row2col{2}="<tr><td>\1</td> <td>\2</td></tr>"
103 ALIASES += row2col{3}="<tr><td>\1</td> <td>\2,\3</td></tr>"
104 ALIASES += row2col{4}="<tr><td>\1</td> <td>\2,\3,\4</td></tr>"
105 ALIASES += row2col{5}="<tr><td>\1</td> <td>\2,\3,\4,\5</td></tr>"
106 ALIASES += row2col{6}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6</td></tr>"
107 ALIASES += row2col{7}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7</td></tr>"
108 ALIASES += row2col{8}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7,\8</td></tr>"
109 ALIASES += row2col{9}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7,\8,\9</td></tr>"
110 ALIASES += row2col{10}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7,\8,\9,\10</td></tr>"
111 ALIASES += row3col{3}="<tr><td>\1</td> <td>\2</td> <td>\3</td></tr>"
112 ALIASES += row3col{4}="<tr><td>\1</td> <td>\2</td> <td>\3,\4</td></tr>"
113 ALIASES += row3col{5}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5</td></tr>"
114 ALIASES += row3col{6}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6</td></tr>"
115 ALIASES += row3col{7}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7</td></tr>"
116 ALIASES += row3col{8}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7,\8</td></tr>"
117 ALIASES += row3col{9}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7,\8,\9</td></tr>"
118 ALIASES += row3col{10}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7,\8,\9,\10</td></tr>"
119 ALIASES += endTable="</table></center>"
121 # definition list aliases
122 # a definition list currently is rendered as 2-column table but it may use as
123 # well the <dl>, <dt> and <dd> HTML tags in future.
124 # In any case a definition list differs from a table because of its semantic
125 # nature and because it is always the association of a "title" with a "description"
126 # (in contrast a table may have more than 2 columns of data)...
127 ALIASES += beginDefList="<table class='doclist'>"
128 ALIASES += itemdef{2}="<tr><td>\b \1</td> <td>\2</td></tr>"
129 ALIASES += itemdef{3}="<tr><td>\b \1</td> <td>\2,\3</td></tr>"
130 ALIASES += itemdef{4}="<tr><td>\b \1</td> <td>\2,\3,\4</td></tr>"
131 ALIASES += itemdef{5}="<tr><td>\b \1</td> <td>\2,\3,\4,\5</td></tr>"
132 ALIASES += itemdef{6}="<tr><td>\b \1</td> <td>\2,\3,\4,\5,\6</td></tr>"
133 ALIASES += itemdef{7}="<tr><td>\b \1</td> <td>\2,\3,\4,\5,\6,\7</td></tr>"
134 ALIASES += itemdef{8}="<tr><td>\b \1</td> <td>\2,\3,\4,\5,\6,\7,\8</td></tr>"
135 ALIASES += itemdef{9}="<tr><td>\b \1</td> <td>\2,\3,\4,\5,\6,\7,\8,\9</td></tr>"
136 ALIASES += itemdef{10}="<tr><td>\b \1</td> <td>\2,\3,\4,\5,\6,\7,\8,\9,\10</td></tr>"
137 ALIASES += endDefList="</table>"
139 # NOTE: these are important as you can't write in the docs
140 # just #ifdef since the # character is used by Doxygen
141 # for explicit linking; use the following aliases instead!
142 # However to avoid overwriting e.g. \if Doxygen command the _
143 # character is postfixed
144 ALIASES += ifdef_="<b><tt>\#ifdef</tt></b>"
145 ALIASES += ifndef_="<b><tt>\#ifndef</tt></b>"
146 ALIASES += if_="<b><tt>\#if</tt></b>"
147 ALIASES += endif_="<b><tt>\#endif</tt></b>"
149 # See ENABLED_SECTIONS configuration key for more info about these:
150 ALIASES += beginWxPerlOnly="\if WXPERL_MANUAL \n <b>wxPerl note</b>\n\n"
151 ALIASES += endWxPerlOnly="\endif"
152 ALIASES += beginWxPythonOnly="\if WXPYTHON_MANUAL \n <b>wxPython note</b>\n\n"
153 ALIASES += endWxPythonOnly="\endif"
155 # This is to get around a bug in Doxygen that prevents use of '{' or '}'
156 # inside of any aliased command in parameters.
157 ALIASES += leftCurly="{"
158 ALIASES += rightCurly="}"
161 #---------------------------------------------------------------------------
162 # Build related configuration options
163 #---------------------------------------------------------------------------
167 EXTRACT_LOCAL_CLASSES = YES
168 EXTRACT_LOCAL_METHODS = NO
169 EXTRACT_ANON_NSPACES = YES
170 HIDE_UNDOC_MEMBERS = YES
171 HIDE_UNDOC_CLASSES = YES
172 HIDE_FRIEND_COMPOUNDS = NO
173 HIDE_IN_BODY_DOCS = NO
175 CASE_SENSE_NAMES = NO
176 HIDE_SCOPE_NAMES = NO
177 SHOW_INCLUDE_FILES = YES
179 SORT_MEMBER_DOCS = YES
180 SORT_BRIEF_DOCS = YES
181 SORT_BY_SCOPE_NAME = NO
182 GENERATE_TODOLIST = YES
183 GENERATE_TESTLIST = YES
184 GENERATE_BUGLIST = YES
185 GENERATE_DEPRECATEDLIST= YES
187 # can contain WXPERL_MANUAL, WXPYTHON_MANUAL keywords
190 MAX_INITIALIZER_LINES = 30
191 SHOW_USED_FILES = YES
192 SHOW_DIRECTORIES = NO
193 FILE_VERSION_FILTER =
195 #---------------------------------------------------------------------------
196 # configuration options related to warning and progress messages
197 #---------------------------------------------------------------------------
200 WARN_IF_UNDOCUMENTED = NO
201 WARN_IF_DOC_ERROR = YES
202 WARN_NO_PARAMDOC = NO
203 WARN_FORMAT = "$file:$line: $text "
204 WARN_LOGFILE = doxygen.log
206 #---------------------------------------------------------------------------
207 # configuration options related to the input files
208 #---------------------------------------------------------------------------
209 INPUT = ./mainpages ./overviews ../../interface
210 INPUT_ENCODING = UTF-8
211 FILE_PATTERNS = *.h *.txt
214 EXCLUDE_SYMLINKS = NO
219 EXAMPLE_RECURSIVE = YES
223 FILTER_SOURCE_FILES = NO
225 #---------------------------------------------------------------------------
226 # configuration options related to source browsing
227 #---------------------------------------------------------------------------
230 STRIP_CODE_COMMENTS = YES
231 REFERENCED_BY_RELATION = NO
232 REFERENCES_RELATION = NO
233 REFERENCES_LINK_SOURCE = YES
235 VERBATIM_HEADERS = NO
237 #---------------------------------------------------------------------------
238 # configuration options related to the alphabetical class index
239 #---------------------------------------------------------------------------
240 ALPHABETICAL_INDEX = YES
241 COLS_IN_ALPHA_INDEX = 5
244 #---------------------------------------------------------------------------
245 # configuration options related to the HTML output
246 #---------------------------------------------------------------------------
248 HTML_FILE_EXTENSION = .html
249 HTML_HEADER = htmlheader.inc
250 HTML_FOOTER = htmlfooter.inc
252 HTML_ALIGN_MEMBERS = YES
253 HTML_DYNAMIC_SECTIONS = NO
259 ENUM_VALUES_PER_LINE = 4
260 GENERATE_TREEVIEW = NO
263 #---------------------------------------------------------------------------
264 # configuration options related to the LaTeX output
265 #---------------------------------------------------------------------------
267 LATEX_CMD_NAME = latex
268 MAKEINDEX_CMD_NAME = makeindex
276 LATEX_HIDE_INDICES = NO
278 #---------------------------------------------------------------------------
279 # configuration options related to the RTF output
280 #---------------------------------------------------------------------------
284 RTF_STYLESHEET_FILE =
285 RTF_EXTENSIONS_FILE =
287 #---------------------------------------------------------------------------
288 # configuration options related to the man page output
289 #---------------------------------------------------------------------------
294 #---------------------------------------------------------------------------
295 # configuration options related to the XML output
296 #---------------------------------------------------------------------------
300 XML_PROGRAMLISTING = YES
302 #---------------------------------------------------------------------------
303 # configuration options for the AutoGen Definitions output
304 #---------------------------------------------------------------------------
307 #---------------------------------------------------------------------------
308 # configuration options related to the Perl module output
309 #---------------------------------------------------------------------------
310 GENERATE_PERLMOD = NO
313 PERLMOD_MAKEVAR_PREFIX =
315 #---------------------------------------------------------------------------
316 # Configuration options related to the preprocessor
317 #---------------------------------------------------------------------------
318 ENABLE_PREPROCESSING = YES
320 EXPAND_ONLY_PREDEF = NO
321 SEARCH_INCLUDES = YES
323 INCLUDE_FILE_PATTERNS =
326 SKIP_FUNCTION_MACROS = YES
328 #---------------------------------------------------------------------------
329 # Configuration::additions related to external references
330 #---------------------------------------------------------------------------
333 EXTERNAL_GROUPS = YES
334 PERL_PATH = /usr/bin/perl
336 #---------------------------------------------------------------------------
337 # Configuration options related to the dot tool
338 #---------------------------------------------------------------------------
341 HIDE_UNDOC_RELATIONS = YES
344 COLLABORATION_GRAPH = NO
347 TEMPLATE_RELATIONS = NO
349 INCLUDED_BY_GRAPH = NO
352 GRAPHICAL_HIERARCHY = NO
354 DOT_IMAGE_FORMAT = png
357 DOT_GRAPH_MAX_NODES = 50
358 MAX_DOT_GRAPH_DEPTH = 1000
360 DOT_MULTI_TARGETS = NO
361 GENERATE_LEGEND = YES
364 #---------------------------------------------------------------------------
365 # Configuration::additions related to the search engine
366 #---------------------------------------------------------------------------