1 #############################################################################
3 ## Purpose: Doxygen configuration file for 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"
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"
69 # IMPORTANT: the default \sa command does not generate a \section!
70 ALIASES += seealso="\section class_sa See also\n"
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"
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>"
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>"
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>"
126 # NOTE: we could put aliases also for e.g. @wxDefaultSize, @wxDefaultPosition, @wxID_ANY,
127 # @wxEmptyString, @wxNullIcon, etc etc
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>"
138 #---------------------------------------------------------------------------
139 # Build related configuration options
140 #---------------------------------------------------------------------------
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
152 CASE_SENSE_NAMES = NO
153 HIDE_SCOPE_NAMES = NO
154 SHOW_INCLUDE_FILES = 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
164 MAX_INITIALIZER_LINES = 30
165 SHOW_USED_FILES = YES
166 SHOW_DIRECTORIES = NO
167 FILE_VERSION_FILTER =
169 #---------------------------------------------------------------------------
170 # configuration options related to warning and progress messages
171 #---------------------------------------------------------------------------
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
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
188 EXCLUDE_SYMLINKS = NO
193 EXAMPLE_RECURSIVE = YES
197 FILTER_SOURCE_FILES = NO
199 #---------------------------------------------------------------------------
200 # configuration options related to source browsing
201 #---------------------------------------------------------------------------
204 STRIP_CODE_COMMENTS = YES
205 REFERENCED_BY_RELATION = NO
206 REFERENCES_RELATION = NO
207 REFERENCES_LINK_SOURCE = YES
209 VERBATIM_HEADERS = NO
211 #---------------------------------------------------------------------------
212 # configuration options related to the alphabetical class index
213 #---------------------------------------------------------------------------
214 ALPHABETICAL_INDEX = YES
215 COLS_IN_ALPHA_INDEX = 5
218 #---------------------------------------------------------------------------
219 # configuration options related to the HTML output
220 #---------------------------------------------------------------------------
223 HTML_FILE_EXTENSION = .html
224 HTML_HEADER = htmlheader.inc
225 HTML_FOOTER = htmlfooter.inc
227 HTML_ALIGN_MEMBERS = YES
228 GENERATE_HTMLHELP = NO
229 HTML_DYNAMIC_SECTIONS = NO
236 ENUM_VALUES_PER_LINE = 4
237 GENERATE_TREEVIEW = NO
240 #---------------------------------------------------------------------------
241 # configuration options related to the LaTeX output
242 #---------------------------------------------------------------------------
245 LATEX_CMD_NAME = latex
246 MAKEINDEX_CMD_NAME = makeindex
254 LATEX_HIDE_INDICES = NO
256 #---------------------------------------------------------------------------
257 # configuration options related to the RTF output
258 #---------------------------------------------------------------------------
263 RTF_STYLESHEET_FILE =
264 RTF_EXTENSIONS_FILE =
266 #---------------------------------------------------------------------------
267 # configuration options related to the man page output
268 #---------------------------------------------------------------------------
274 #---------------------------------------------------------------------------
275 # configuration options related to the XML output
276 #---------------------------------------------------------------------------
281 XML_PROGRAMLISTING = YES
283 #---------------------------------------------------------------------------
284 # configuration options for the AutoGen Definitions output
285 #---------------------------------------------------------------------------
286 GENERATE_AUTOGEN_DEF = NO
288 #---------------------------------------------------------------------------
289 # configuration options related to the Perl module output
290 #---------------------------------------------------------------------------
291 GENERATE_PERLMOD = NO
294 PERLMOD_MAKEVAR_PREFIX =
296 #---------------------------------------------------------------------------
297 # Configuration options related to the preprocessor
298 #---------------------------------------------------------------------------
299 ENABLE_PREPROCESSING = YES
301 EXPAND_ONLY_PREDEF = NO
302 SEARCH_INCLUDES = YES
304 INCLUDE_FILE_PATTERNS =
307 SKIP_FUNCTION_MACROS = YES
309 #---------------------------------------------------------------------------
310 # Configuration::additions related to external references
311 #---------------------------------------------------------------------------
315 EXTERNAL_GROUPS = YES
316 PERL_PATH = /usr/bin/perl
318 #---------------------------------------------------------------------------
319 # Configuration options related to the dot tool
320 #---------------------------------------------------------------------------
323 HIDE_UNDOC_RELATIONS = YES
326 COLLABORATION_GRAPH = NO
329 TEMPLATE_RELATIONS = NO
331 INCLUDED_BY_GRAPH = NO
334 GRAPHICAL_HIERARCHY = NO
336 DOT_IMAGE_FORMAT = png
339 DOT_GRAPH_MAX_NODES = 50
340 MAX_DOT_GRAPH_DEPTH = 1000
342 DOT_MULTI_TARGETS = NO
343 GENERATE_LEGEND = YES
346 #---------------------------------------------------------------------------
347 # Configuration::additions related to the search engine
348 #---------------------------------------------------------------------------