]>
Commit | Line | Data |
---|---|---|
15b6757b | 1 | ############################################################################# |
be151c9a | 2 | ## Name: Doxyfile_inc |
de87600c | 3 | ## Purpose: Main configuration file for the wxWidgets manual |
4514447c | 4 | ## Author: Francesco Montorsi |
15b6757b FM |
5 | ## RCS-ID: $Id$ |
6 | ## Licence: wxWindows license | |
7 | ############################################################################# | |
8 | ||
9 | #--------------------------------------------------------------------------- | |
10da75d0 | 10 | # Project Options |
15b6757b FM |
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 | |
40c53d1b | 20 | REPEAT_BRIEF = NO |
15b6757b FM |
21 | ABBREVIATE_BRIEF = |
22 | ALWAYS_DETAILED_SEC = YES | |
23 | INLINE_INHERITED_MEMB = NO | |
10da75d0 BP |
24 | FULL_PATH_NAMES = YES |
25 | STRIP_FROM_PATH = "$(WXWIDGETS)/" | |
26 | STRIP_FROM_INC_PATH = "$(WXWIDGETS)/include/" \ | |
27 | "$(WXWIDGETS)/interface/" | |
15b6757b FM |
28 | SHORT_NAMES = NO |
29 | JAVADOC_AUTOBRIEF = NO | |
30 | QT_AUTOBRIEF = NO | |
31 | MULTILINE_CPP_IS_BRIEF = NO | |
3db7c3b1 | 32 | DETAILS_AT_TOP = YES |
15b6757b FM |
33 | INHERIT_DOCS = YES |
34 | SEPARATE_MEMBER_PAGES = NO | |
35 | TAB_SIZE = 4 | |
36 | OPTIMIZE_OUTPUT_FOR_C = NO | |
37 | OPTIMIZE_OUTPUT_JAVA = NO | |
38 | BUILTIN_STL_SUPPORT = NO | |
39 | CPP_CLI_SUPPORT = NO | |
23324ae1 | 40 | DISTRIBUTE_GROUP_DOC = YES |
15b6757b FM |
41 | SUBGROUPING = YES |
42 | ||
43 | #--------------------------------------------------------------------------- | |
44 | # Aliases | |
45 | #--------------------------------------------------------------------------- | |
46 | ||
47 | # This is the most important part of the wxWidgets Doxyfile; aliases allow | |
48 | # us to keep the headers readable and "implement" wxWidgets-specific commands. | |
49 | ||
50 | # event aliases | |
8c6791e4 FM |
51 | ALIASES = beginEventTable{1}="\n<span class='events'>Events:</span><p>The following event handler macros redirect the events to member function handlers '<b>func</b>' with prototypes like: <div class='eventHandler'><span>void handlerFuncName(\1& event)</span></div></p><br>Event macros:<div>" |
52 | ALIASES += event{1}="</div>\li <span class='event'>\1</span>:<div class='eventDesc'>" | |
53 | ALIASES += event{2}="</div>\li <span class='event'>\1, \2</span>:<div class='eventDesc'>" | |
54 | ALIASES += event{3}="</div>\li <span class='event'>\1, \2, \3</span>:<div class='eventDesc'>" | |
55 | ALIASES += event{4}="</div>\li <span class='event'>\1, \2, \3, \4</span>:<div class='eventDesc'>" | |
56 | ALIASES += endEventTable="</div>\n" | |
15b6757b FM |
57 | |
58 | # style aliases | |
8c6791e4 FM |
59 | ALIASES += beginStyleTable="\n<span class='styles'>Styles:</span><div>" |
60 | ALIASES += style{1}="</div>\li <span class='style'>\1</span>:<div class='styleDesc'>" | |
61 | ALIASES += endStyleTable="</div>\n" | |
15b6757b FM |
62 | |
63 | # extra style aliases | |
8c6791e4 FM |
64 | ALIASES += beginExtraStyleTable="\n<span class='styles'>Extra styles:</span><div>" |
65 | ALIASES += endExtraStyleTable="</div>\n" | |
469e56bf | 66 | |
09a728e1 FM |
67 | # flag aliases |
68 | ALIASES += beginFlagTable="<div>" | |
69 | ALIASES += flag{1}="</div>\li <span class='flag'>\1</span>:<div class='flagDesc'>" | |
70 | ALIASES += endFlagTable="</div>\n" | |
71 | ||
e1ebc6f4 | 72 | # aliases for additional wx-specific infos |
4cbfec15 FM |
73 | ALIASES += category{1}="\ingroup group_class_\1 \n<div><span class='category'>Category:</span> <span class='category_text'>\ref group_class_\1</span></div>" |
74 | ALIASES += category{2}="\ingroup group_class_\1 group_class_\2 \n<div><span class='category'>Category:</span> <span class='category_text'>\ref group_class_\1, \ref group_class_\2</span></div>" | |
e1ebc6f4 FM |
75 | ALIASES += library{1}="<div><span class='lib'>Library:</span> <span class='lib_text'>\ref page_libs_\1</span></div>" |
76 | ALIASES += nolibrary="<div><span class='lib'>Library:</span> <span class='lib_text'>None; this class implementation is entirely header-based.</span></div>" | |
4f960cd1 | 77 | ALIASES += stdobjects="<span class='stdobj'>Predefined objects/pointers:</span>" |
e1ebc6f4 FM |
78 | |
79 | # native implementation infos: | |
f59be7c6 FM |
80 | ALIASES += nativeimpl{1}="<div><span class='impl'>Implementations:</span> native under \ref page_port_\1 port; a generic implementation is used elsewhere.</div>" |
81 | ALIASES += nativeimpl{2}="<div><span class='impl'>Implementations:</span> native under \ref page_port_\1, \ref page_port_\2 ports; a generic implementation is used elsewhere.</div>" | |
82 | ALIASES += nativeimpl{3}="<div><span class='impl'>Implementations:</span> native under \ref page_port_\1, \ref page_port_\2, \ref page_port_\3 ports; a generic implementation is used elsewhere.</div>" | |
83 | ALIASES += nativeimpl{4}="<div><span class='impl'>Implementations:</span> native under \ref page_port_\1, \ref page_port_\2, \ref page_port_\3, \ref page_port_\4 ports; a generic implementation is used elsewhere.</div>" | |
e1ebc6f4 FM |
84 | |
85 | # onlyfor infos: | |
03d4f7b9 FM |
86 | # NOTE: we need to be able to retrieve these infos also from the XML output, thus |
87 | # we use the \xmlonly and \endxmlonly commands to include custom XML tags | |
88 | ALIASES += onlyfor{1}="<div><span class='avail'>Availability:</span> only available for the \ref page_port_\1 port.</div> \xmlonly <onlyfor>\1</onlyfor> \endxmlonly" | |
89 | ALIASES += onlyfor{2}="<div><span class='avail'>Availability:</span> only available for the \ref page_port_\1, \ref page_port_\2 ports.</div> \xmlonly <onlyfor>\1,\2</onlyfor> \endxmlonly" | |
90 | ALIASES += onlyfor{3}="<div><span class='avail'>Availability:</span> only available for the \ref page_port_\1, \ref page_port_\2, \ref page_port_\3 ports.</div> \xmlonly <onlyfor>\1,\2,\3</onlyfor> \endxmlonly" | |
91 | ALIASES += onlyfor{4}="<div><span class='avail'>Availability:</span> only available for the \ref page_port_\1, \ref page_port_\2, \ref page_port_\3, \ref page_port_\4 ports.</div> \xmlonly <onlyfor>\1,\2,\3,\4</onlyfor> \endxmlonly" | |
048398c7 | 92 | |
e1ebc6f4 | 93 | # creates appearance section: this should be used for all main GUI controls |
6da3d196 | 94 | ALIASES += appearance{1}="\htmlonly <br><div><span class='appearance'>Appearance:</span><br><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></div> \endhtmlonly" |
375c892e | 95 | |
12f5e1e7 BP |
96 | # Use this in grouped global functions, and macros since they |
97 | # wouldn't otherwise indicate what header they are defined in. | |
e1ebc6f4 FM |
98 | ALIASES += header{1}="Include file:\n \verbatim #include <\1> \endverbatim" |
99 | ||
15b6757b | 100 | # some formatting aliases |
44fe9ffc FM |
101 | ALIASES += true="<span class='literal'>true</span>" |
102 | ALIASES += false="<span class='literal'>false</span>" | |
103 | ALIASES += NULL="<span class='literal'>NULL</span>" | |
104 | ||
105 | # NOTE: these are important as you can't write in the docs | |
106 | # just #ifdef since the # character is used by Doxygen | |
107 | # for explicit linking; use the following aliases instead! | |
108 | # However to avoid overwriting e.g. \if Doxygen command the _ | |
109 | # character is postfixed | |
110 | ALIASES += ifdef_="<span class='literal'>\#ifdef</span>" | |
111 | ALIASES += ifndef_="<span class='literal'>\#ifndef</span>" | |
112 | ALIASES += if_="<span class='literal'>\#if</span>" | |
113 | ALIASES += endif_="<span class='literal'>\#endif</span>" | |
15b6757b | 114 | |
4514447c | 115 | # table aliases for 2 and 3 column tables |
877b5c30 BP |
116 | ALIASES += beginTable="<center><table class='doctable' border='1' cellspacing='0' cellpadding='3'>" |
117 | ALIASES += beginInvisibleTable="<center><table class='doctable' border='0' cellspacing='0' cellpadding='4'>" | |
4514447c FM |
118 | ALIASES += row2col{2}="<tr><td>\1</td> <td>\2</td></tr>" |
119 | ALIASES += row2col{3}="<tr><td>\1</td> <td>\2,\3</td></tr>" | |
120 | ALIASES += row2col{4}="<tr><td>\1</td> <td>\2,\3,\4</td></tr>" | |
121 | ALIASES += row2col{5}="<tr><td>\1</td> <td>\2,\3,\4,\5</td></tr>" | |
122 | ALIASES += row2col{6}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6</td></tr>" | |
123 | ALIASES += row2col{7}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7</td></tr>" | |
124 | ALIASES += row2col{8}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7,\8</td></tr>" | |
125 | ALIASES += row2col{9}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7,\8,\9</td></tr>" | |
126 | ALIASES += row2col{10}="<tr><td>\1</td> <td>\2,\3,\4,\5,\6,\7,\8,\9,\10</td></tr>" | |
127 | ALIASES += row3col{3}="<tr><td>\1</td> <td>\2</td> <td>\3</td></tr>" | |
128 | ALIASES += row3col{4}="<tr><td>\1</td> <td>\2</td> <td>\3,\4</td></tr>" | |
129 | ALIASES += row3col{5}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5</td></tr>" | |
130 | ALIASES += row3col{6}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6</td></tr>" | |
131 | ALIASES += row3col{7}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7</td></tr>" | |
132 | ALIASES += row3col{8}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7,\8</td></tr>" | |
133 | ALIASES += row3col{9}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7,\8,\9</td></tr>" | |
134 | ALIASES += row3col{10}="<tr><td>\1</td> <td>\2</td> <td>\3,\4,\5,\6,\7,\8,\9,\10</td></tr>" | |
375c892e | 135 | ALIASES += endTable="</table></center>" |
a3465294 | 136 | |
4514447c FM |
137 | # definition list aliases |
138 | # a definition list currently is rendered as 2-column table but it may use as | |
139 | # well the <dl>, <dt> and <dd> HTML tags in future. | |
140 | # In any case a definition list differs from a table because of its semantic | |
141 | # nature and because it is always the association of a "title" with a "description" | |
142 | # (in contrast a table may have more than 2 columns of data)... | |
dc215c81 | 143 | ALIASES += beginDefList="<table class='doclist' border='1' cellspacing='0'>" |
0aaf0255 FM |
144 | ALIASES += itemdef{2}="<tr><td><span class='itemdef'>\1</span></td> <td>\2</td></tr>" |
145 | ALIASES += itemdef{3}="<tr><td><span class='itemdef'>\1</span></td> <td>\2,\3</td></tr>" | |
146 | ALIASES += itemdef{4}="<tr><td><span class='itemdef'>\1</span></td> <td>\2,\3,\4</td></tr>" | |
147 | ALIASES += itemdef{5}="<tr><td><span class='itemdef'>\1</span></td> <td>\2,\3,\4,\5</td></tr>" | |
148 | ALIASES += itemdef{6}="<tr><td><span class='itemdef'>\1</span></td> <td>\2,\3,\4,\5,\6</td></tr>" | |
149 | ALIASES += itemdef{7}="<tr><td><span class='itemdef'>\1</span></td> <td>\2,\3,\4,\5,\6,\7</td></tr>" | |
150 | ALIASES += itemdef{8}="<tr><td><span class='itemdef'>\1</span></td> <td>\2,\3,\4,\5,\6,\7,\8</td></tr>" | |
151 | ALIASES += itemdef{9}="<tr><td><span class='itemdef'>\1</span></td> <td>\2,\3,\4,\5,\6,\7,\8,\9</td></tr>" | |
152 | ALIASES += itemdef{10}="<tr><td><span class='itemdef'>\1</span></td> <td>\2,\3,\4,\5,\6,\7,\8,\9,\10</td></tr>" | |
4514447c FM |
153 | ALIASES += endDefList="</table>" |
154 | ||
d54cf7ff | 155 | # See ENABLED_SECTIONS configuration key for more info about these: |
f09b5681 | 156 | ALIASES += beginWxPerlOnly="\if WXPERL_MANUAL <b>wxPerl Note:</b> " |
d54cf7ff | 157 | ALIASES += endWxPerlOnly="\endif" |
f09b5681 | 158 | ALIASES += beginWxPythonOnly="\if WXPYTHON_MANUAL <b>wxPython Note:</b> " |
d54cf7ff | 159 | ALIASES += endWxPythonOnly="\endif" |
a3465294 | 160 | |
877b5c30 BP |
161 | # This is to get around a bug in Doxygen that prevents use of '{' or '}' |
162 | # inside of any aliased command in parameters. | |
163 | ALIASES += leftCurly="{" | |
164 | ALIASES += rightCurly="}" | |
165 | ||
57b2bba4 | 166 | # Sample documentation related aliases |
5d4cca7f BP |
167 | # For indicating the a directory containing a sample |
168 | ALIASES += sampledir{1}="\verbatim Location: samples/\1\endverbatim" | |
57b2bba4 | 169 | # For refering to the corresponding sample in a class document or a overview |
5d4cca7f BP |
170 | # Usually placed in the queue of @see |
171 | ALIASES += sample{1}="\ref page_samples_\1" | |
57b2bba4 BP |
172 | # For generating a general description for a sample |
173 | # \1 could be a class or an overview or a descriptive sentence | |
5d4cca7f BP |
174 | # Shall be replaced by manual written description soon |
175 | ALIASES += sampleabout{1}="This sample demonstrates \1." | |
176 | # For indicating the necessary condition of a sample or a class | |
177 | # \1 is the wxUSE_XXX macro | |
178 | ALIASES += buildwith{1}="<b>Build Note:</b> You may need to build the wxWidgets library with <tt>\1</tt> being set to 1 to be able to make it work, please read comments in @c <wx/setup_inc.h> for more info." | |
179 | ALIASES += buildwith{2}="<b>Build Note:</b> You may need to build the wxWidgets library with <tt>\1</tt> and <tt>\2</tt> being set to 1 to be able to make it work, please read comments in @c <wx/setup_inc.h> for more info." | |
180 | ||
15b6757b | 181 | #--------------------------------------------------------------------------- |
10da75d0 | 182 | # Build Options |
15b6757b | 183 | #--------------------------------------------------------------------------- |
10da75d0 | 184 | |
15b6757b FM |
185 | EXTRACT_ALL = YES |
186 | EXTRACT_PRIVATE = NO | |
187 | EXTRACT_STATIC = YES | |
188 | EXTRACT_LOCAL_CLASSES = YES | |
189 | EXTRACT_LOCAL_METHODS = NO | |
190 | EXTRACT_ANON_NSPACES = YES | |
23324ae1 FM |
191 | HIDE_UNDOC_MEMBERS = NO |
192 | HIDE_UNDOC_CLASSES = NO | |
15b6757b FM |
193 | HIDE_FRIEND_COMPOUNDS = NO |
194 | HIDE_IN_BODY_DOCS = NO | |
195 | INTERNAL_DOCS = NO | |
196 | CASE_SENSE_NAMES = NO | |
197 | HIDE_SCOPE_NAMES = NO | |
198 | SHOW_INCLUDE_FILES = YES | |
199 | INLINE_INFO = YES | |
200 | SORT_MEMBER_DOCS = YES | |
23324ae1 | 201 | SORT_BRIEF_DOCS = NO # don't set it to YES! see http://bugzilla.gnome.org/show_bug.cgi?id=312655 |
15b6757b FM |
202 | SORT_BY_SCOPE_NAME = NO |
203 | GENERATE_TODOLIST = YES | |
204 | GENERATE_TESTLIST = YES | |
205 | GENERATE_BUGLIST = YES | |
206 | GENERATE_DEPRECATEDLIST= YES | |
d54cf7ff FM |
207 | |
208 | # can contain WXPERL_MANUAL, WXPYTHON_MANUAL keywords | |
dc215c81 | 209 | ENABLED_SECTIONS = WXPERL_MANUAL WXPYTHON_MANUAL |
d54cf7ff | 210 | |
15b6757b | 211 | MAX_INITIALIZER_LINES = 30 |
10da75d0 | 212 | SHOW_USED_FILES = NO |
23324ae1 | 213 | SHOW_DIRECTORIES = YES |
70231bce | 214 | #SHOW_FILES = YES # Doxygen 1.5.6+ only |
6783cae4 | 215 | FILE_VERSION_FILTER = |
15b6757b FM |
216 | |
217 | #--------------------------------------------------------------------------- | |
10da75d0 | 218 | # Warning and Progress Message Options |
15b6757b | 219 | #--------------------------------------------------------------------------- |
10da75d0 | 220 | |
f159c6b5 | 221 | QUIET = YES |
15b6757b | 222 | WARNINGS = YES |
23324ae1 | 223 | WARN_IF_UNDOCUMENTED = YES |
15b6757b | 224 | WARN_IF_DOC_ERROR = YES |
23324ae1 | 225 | WARN_NO_PARAMDOC = YES |
15b6757b | 226 | WARN_FORMAT = "$file:$line: $text " |
4411a6b6 | 227 | WARN_LOGFILE = doxygen.log |
15b6757b FM |
228 | |
229 | #--------------------------------------------------------------------------- | |
10da75d0 | 230 | # Input File Options |
15b6757b | 231 | #--------------------------------------------------------------------------- |
10da75d0 | 232 | |
c83e60aa | 233 | INPUT = ./mainpages ./groups ./overviews ../../interface |
15b6757b FM |
234 | INPUT_ENCODING = UTF-8 |
235 | FILE_PATTERNS = *.h *.txt | |
236 | RECURSIVE = YES | |
6783cae4 | 237 | EXCLUDE = |
15b6757b | 238 | EXCLUDE_SYMLINKS = NO |
6783cae4 FM |
239 | EXCLUDE_PATTERNS = |
240 | EXCLUDE_SYMBOLS = | |
29f86fc1 | 241 | EXAMPLE_PATH = ../ |
15b6757b | 242 | EXAMPLE_PATTERNS = * |
29f86fc1 | 243 | EXAMPLE_RECURSIVE = NO |
4411a6b6 | 244 | IMAGE_PATH = images |
6783cae4 FM |
245 | INPUT_FILTER = |
246 | FILTER_PATTERNS = | |
15b6757b FM |
247 | FILTER_SOURCE_FILES = NO |
248 | ||
249 | #--------------------------------------------------------------------------- | |
10da75d0 | 250 | # Source Browsing Options |
15b6757b | 251 | #--------------------------------------------------------------------------- |
10da75d0 | 252 | |
15b6757b FM |
253 | SOURCE_BROWSER = NO |
254 | INLINE_SOURCES = NO | |
255 | STRIP_CODE_COMMENTS = YES | |
256 | REFERENCED_BY_RELATION = NO | |
257 | REFERENCES_RELATION = NO | |
258 | REFERENCES_LINK_SOURCE = YES | |
259 | USE_HTAGS = NO | |
260 | VERBATIM_HEADERS = NO | |
261 | ||
262 | #--------------------------------------------------------------------------- | |
10da75d0 | 263 | # Alphabetical Class Index Options |
15b6757b | 264 | #--------------------------------------------------------------------------- |
10da75d0 | 265 | |
15b6757b FM |
266 | ALPHABETICAL_INDEX = YES |
267 | COLS_IN_ALPHA_INDEX = 5 | |
268 | IGNORE_PREFIX = wx | |
269 | ||
270 | #--------------------------------------------------------------------------- | |
271 | # configuration options related to the HTML output | |
272 | #--------------------------------------------------------------------------- | |
2a6585b8 | 273 | GENERATE_HTML = NO # Only change in format output configs |
15b6757b FM |
274 | HTML_OUTPUT = html |
275 | HTML_FILE_EXTENSION = .html | |
276 | HTML_HEADER = htmlheader.inc | |
277 | HTML_FOOTER = htmlfooter.inc | |
6783cae4 | 278 | HTML_STYLESHEET = |
15b6757b | 279 | HTML_ALIGN_MEMBERS = YES |
2a6585b8 | 280 | GENERATE_HTMLHELP = NO # Only change in format output configs |
f159c6b5 | 281 | HTML_DYNAMIC_SECTIONS = YES |
2a6585b8 BP |
282 | CHM_FILE = ..\wx.chm # NOTE: Windows style separator needed |
283 | HHC_LOCATION = hhc.exe # Don't modify, see Doxyfile_chm for info | |
15b6757b FM |
284 | GENERATE_CHI = NO |
285 | BINARY_TOC = NO | |
286 | TOC_EXPAND = NO | |
287 | DISABLE_INDEX = NO | |
bbc5b7f8 | 288 | ENUM_VALUES_PER_LINE = 1 |
15b6757b FM |
289 | GENERATE_TREEVIEW = NO |
290 | TREEVIEW_WIDTH = 250 | |
291 | ||
292 | #--------------------------------------------------------------------------- | |
10da75d0 | 293 | # LaTeX Output Options |
15b6757b | 294 | #--------------------------------------------------------------------------- |
10da75d0 | 295 | |
2a6585b8 | 296 | GENERATE_LATEX = NO # Only change in format output configs |
15b6757b FM |
297 | LATEX_OUTPUT = latex |
298 | LATEX_CMD_NAME = latex | |
299 | MAKEINDEX_CMD_NAME = makeindex | |
300 | COMPACT_LATEX = NO | |
301 | PAPER_TYPE = a4wide | |
6783cae4 | 302 | EXTRA_PACKAGES = |
d0894365 | 303 | LATEX_HEADER = latexdocstart.inc |
f4eb5ee6 SC |
304 | PDF_HYPERLINKS = YES |
305 | USE_PDFLATEX = YES | |
306 | LATEX_BATCHMODE = YES | |
15b6757b FM |
307 | LATEX_HIDE_INDICES = NO |
308 | ||
309 | #--------------------------------------------------------------------------- | |
10da75d0 | 310 | # RTF Output Options |
15b6757b | 311 | #--------------------------------------------------------------------------- |
10da75d0 | 312 | |
2a6585b8 | 313 | GENERATE_RTF = NO # Only change in format output configs |
15b6757b FM |
314 | RTF_OUTPUT = rtf |
315 | COMPACT_RTF = NO | |
316 | RTF_HYPERLINKS = NO | |
6783cae4 FM |
317 | RTF_STYLESHEET_FILE = |
318 | RTF_EXTENSIONS_FILE = | |
15b6757b FM |
319 | |
320 | #--------------------------------------------------------------------------- | |
10da75d0 | 321 | # Man Page Output Options |
15b6757b | 322 | #--------------------------------------------------------------------------- |
10da75d0 | 323 | |
2a6585b8 | 324 | GENERATE_MAN = NO # Only change in format output configs |
15b6757b FM |
325 | MAN_OUTPUT = man |
326 | MAN_EXTENSION = .3 | |
327 | MAN_LINKS = NO | |
328 | ||
329 | #--------------------------------------------------------------------------- | |
10da75d0 | 330 | # XML Output Options |
15b6757b | 331 | #--------------------------------------------------------------------------- |
10da75d0 | 332 | |
2a6585b8 | 333 | GENERATE_XML = NO # Only change in format output configs |
15b6757b | 334 | XML_OUTPUT = xml |
6783cae4 FM |
335 | XML_SCHEMA = |
336 | XML_DTD = | |
09ad05fa | 337 | XML_PROGRAMLISTING = NO |
15b6757b FM |
338 | |
339 | #--------------------------------------------------------------------------- | |
10da75d0 | 340 | # AutoGen Definitions Output Options |
15b6757b | 341 | #--------------------------------------------------------------------------- |
10da75d0 | 342 | |
2a6585b8 | 343 | GENERATE_AUTOGEN_DEF = NO # Only change in format output configs |
15b6757b FM |
344 | |
345 | #--------------------------------------------------------------------------- | |
10da75d0 | 346 | # Perl Module Output Options |
15b6757b | 347 | #--------------------------------------------------------------------------- |
10da75d0 | 348 | |
2a6585b8 | 349 | GENERATE_PERLMOD = NO # Only change in format output configs |
30738aae | 350 | PERLMOD_LATEX = YES |
15b6757b | 351 | PERLMOD_PRETTY = YES |
de87600c | 352 | PERLMOD_MAKEVAR_PREFIX = |
15b6757b FM |
353 | |
354 | #--------------------------------------------------------------------------- | |
10da75d0 | 355 | # Preprocessor Options |
15b6757b | 356 | #--------------------------------------------------------------------------- |
10da75d0 | 357 | |
15b6757b FM |
358 | ENABLE_PREPROCESSING = YES |
359 | MACRO_EXPANSION = NO | |
360 | EXPAND_ONLY_PREDEF = NO | |
361 | SEARCH_INCLUDES = YES | |
6783cae4 FM |
362 | INCLUDE_PATH = |
363 | INCLUDE_FILE_PATTERNS = | |
364 | PREDEFINED = | |
365 | EXPAND_AS_DEFINED = | |
15b6757b FM |
366 | SKIP_FUNCTION_MACROS = YES |
367 | ||
368 | #--------------------------------------------------------------------------- | |
10da75d0 | 369 | # Additions Related to External References |
15b6757b | 370 | #--------------------------------------------------------------------------- |
10da75d0 | 371 | |
6783cae4 | 372 | TAGFILES = |
2a6585b8 | 373 | GENERATE_TAGFILE = |
15b6757b FM |
374 | ALLEXTERNALS = NO |
375 | EXTERNAL_GROUPS = YES | |
376 | PERL_PATH = /usr/bin/perl | |
377 | ||
378 | #--------------------------------------------------------------------------- | |
10da75d0 | 379 | # dot Tool Options |
15b6757b | 380 | #--------------------------------------------------------------------------- |
10da75d0 | 381 | |
15b6757b FM |
382 | CLASS_DIAGRAMS = YES |
383 | MSCGEN_PATH = | |
384 | HIDE_UNDOC_RELATIONS = YES | |
385 | HAVE_DOT = YES | |
386 | CLASS_GRAPH = NO | |
387 | COLLABORATION_GRAPH = NO | |
388 | GROUP_GRAPHS = NO | |
389 | UML_LOOK = NO | |
390 | TEMPLATE_RELATIONS = NO | |
391 | INCLUDE_GRAPH = NO | |
392 | INCLUDED_BY_GRAPH = NO | |
393 | CALL_GRAPH = NO | |
394 | CALLER_GRAPH = NO | |
395 | GRAPHICAL_HIERARCHY = NO | |
396 | DIRECTORY_GRAPH = NO | |
397 | DOT_IMAGE_FORMAT = png | |
6783cae4 FM |
398 | DOT_PATH = |
399 | DOTFILE_DIRS = | |
15b6757b FM |
400 | DOT_GRAPH_MAX_NODES = 50 |
401 | MAX_DOT_GRAPH_DEPTH = 1000 | |
402 | DOT_TRANSPARENT = NO | |
403 | DOT_MULTI_TARGETS = NO | |
404 | GENERATE_LEGEND = YES | |
405 | DOT_CLEANUP = YES | |
406 | ||
407 | #--------------------------------------------------------------------------- | |
10da75d0 | 408 | # Search Engine Options |
15b6757b | 409 | #--------------------------------------------------------------------------- |
10da75d0 | 410 | |
2a6585b8 BP |
411 | SEARCHENGINE = NO |
412 |