]> git.saurik.com Git - wxWidgets.git/blame - docs/tech/tn0003.txt
removing outdated files for mac
[wxWidgets.git] / docs / tech / tn0003.txt
CommitLineData
fc2171bd 1 Adding wxWidgets class documentation
12646a5a
JS
2 ====================================
3
4This note is aimed at people wishing to add documentation for a
fc2171bd 5class to either the main wxWidgets manual, or to their own
12646a5a
JS
6manual.
7
209f9b5e
FM
8wxWidgets uses Doxygen to process header input files with embedded
9documentation in the form of C++ comments and output in HTML, and XML
10(Doxygen itself can also output Latex, manpages, RTF, PDF etc).
11See http://www.doxygen.org for more info about Doxygen.
12646a5a 12
209f9b5e
FM
13If you want to add documentation of a new class/function to the
14existing manual in docs/doxygen, you need to create a new .h file,
15e.g. myclass.h, under the interface folder, which contains the public
16interface of the new class/function in C++ syntax.
17The documentation can then be added in form of Doxygen comments to
18the header file.
12646a5a 19
209f9b5e
FM
20You may also want to write a separate topic file,
21e.g. docs/doxygen/overviews/myclass.h, and add the entry to
22docs/doxygen/mainpages/topics.h.
12646a5a 23
b46a0291
FM
24If applicable, also add an entry to one of the docs/doxygen/mainpages/cat_*.h
25files.
12646a5a 26
209f9b5e
FM
27You can generate a first raw version of myclass.h simply taking its
28"real" header and removing all the private and protected sections and
29in general removing everything the user "shouldn't know": i.e. all things
30which are implementation details.
12646a5a 31
12646a5a 32
209f9b5e
FM
33Running Doxygen
34===============
12646a5a 35
6a70b5f1
FM
36First, make sure you have a recent version of Doxygen installed in your system
37(you'll need Doxygen >= 1.5.4).
3ca6a5f0 38
6a70b5f1 39On Unix:
3ca6a5f0 40
6a70b5f1
FM
41 1) run wxWidgets/docs/doxygen/regen.sh [format-to-generate]
42
43On Windows:
209f9b5e 44 1) cd wxWidgets/docs/doxygen
6a70b5f1
FM
45 2) run regen.bat [format-to-generate]
46
47If you don't specify which format to [re]generate, all output formats will
48be enabled. Possible values for [format-to-generate] are: "html", "chm", "latex",
49"xml" and "all".
3ca6a5f0 50
6a70b5f1 51The output of Doxygen is all placed in the wxWidgets/docs/doxygen/out folder.
12646a5a 52
12646a5a
JS
53
54Important Dos and Don'ts
55========================
56
57DO:
58
209f9b5e
FM
59- Doxygen supports both commands in the form \command and @command;
60 all wxWidgets documentation uses the @command form.
b46a0291 61 Follow strictly this rule.
209f9b5e
FM
62
63- strive to use dedicated Doxygen commands for e.g. notes, lists,
64 sections, etc. The "Special commands" page:
65 http://www.stack.nl/~dimitri/doxygen/commands.html
66 is your friend!
67 It's also very important to make a consistent use of the ALIASES
68 defined by wxWidgets' Doxyfile. Open that file for more info.
12646a5a 69
209f9b5e
FM
70- when you write true, false and NULL with their C++ semantic meaning,
71 then use the @true, @false and @NULL commands.
12646a5a 72
741085ab 73- separate different paragraphs with an empty comment line.
209f9b5e
FM
74 This is important otherwise Doxygen puts everything in the same
75 paragraph making the result less readable.
12646a5a 76
209f9b5e
FM
77- leave a blank comment line between a @section, @subsection, @page
78 and the next paragraph.
12646a5a 79
209f9b5e
FM
80- test your changes, both reading the generated HTML docs and by looking
81 at the "doxygen.log" file produced (which will warn you about any
82 eventual mistake found in the comments).
12646a5a 83
209f9b5e 84- quote all the following characters prefixing them with a "@" char:
b74d0665 85
209f9b5e 86 @ $ \ & < > # %
b74d0665 87
b46a0291
FM
88 unless they appear inside a @code or @verbatim section
89 (you can also use HTML-style escaping, e.g. &amp; rather than @ escaping)
a51ea7f1 90
209f9b5e
FM
91- when using a Doxygen alias like @itemdef{}, you need to escape the
92 comma characters which appear on the first argument, otherwise Doxygen
93 will interpret them as the marker of the end of the first argument and
94 the beginning of the second argument's text.
95
96 E.g. if you want to define the item "wxEVT_MACRO(id, func)" you need to
97 write:
98 @itemdef{wxEVT_MACRO(id\, func), This is the description of the macro}
99
741085ab
VZ
100 Also note that you need to escape only the commas of the first argument's
101 text; second argument can have up to 10 commas unescaped (see the Doxyfile
102 for the trick used to implement this).
b74d0665 103
478c8053
FM
104- for linking use one of:
105 => the @ref command to refer to topic overviews;
106 => the () suffix to refer to function members of the same class you're
107 documenting or to refer to global functions or macros;
108 => the classname:: operator to refer to functions of classes different
109 from the one you're documenting;
110 => the :: prefix to refer to global variables (e.g. ::wxEmptyString).
741085ab
VZ
111 Class names are auto-linked by Doxygen without the need of any explicit
112 command.
478c8053 113
12646a5a
JS
114DON'T:
115
116- use jargon, such as 'gonna', or omit the definite article.
117 The manual is intended to be a fluent, English document and
118 not a collection of rough notes.
119
209f9b5e 120- use non-alphanumeric characters in link anchors.
12646a5a 121
c03100c3
FM
122- use Doxygen @b @c @e commands when referring to more than a single word;
123 in that case you need to use the <b>...</b>, <tt>...</tt>, <em>...</em>
124 HTML-style tags instead
125
126- use HTML style tags for creation of tables or lists.
127 Use wx aliases instead like @beginTable, @row2col, @row3col, @endTable and
128 @beginDefList, @itemdef, @endDefList, etc.
478c8053 129 See the Doxyfile.inc for more info.
b46a0291 130
12646a5a 131
209f9b5e
FM
132Documentation comment for a class
133=================================
12646a5a
JS
134
135Start off with:
136
209f9b5e 137/**
478c8053
FM
138 @class wxMyClass
139 @wxheader{myclass.h}
140
141 ...here goes the description...
142
143 @beginEventTable
144 @event{EVT_SOME_EVENT(id, func)}:
145 Description for EVT_SOME_EVENT.
146 @endEventTable
147
148 @beginStyleTable
149 @style{wxSOME_STYLE}:
150 Description for wxSOME_STYLE.
151 ...
152 @endStyleTable
153
154 @beginExtraStyleTable
155 @style{wxSOME_EXTRA_STYLE}:
156 Description for wxSOME_EXTRA_STYLE.
157 ...
158 @endExtraStyleTable
159
160 @library{wxbase}
161 @category{cat_shortcut}
162
163 @nativeimpl{wxgtk, wxmsw, ...}
164 @onlyfor{wxgtk, wxmsw, ...}
209f9b5e 165
478c8053
FM
166 @appearance{button.png}
167
168 @stdobjects
169 ...here goes the list of predefined instances...
170
171 @see ...here goes the see-also list...
172 you can make references to topic overviews or other
173 manual pages using the @ref command
174*/
175
176Note that everything *except* the @class, @wxheader, @library and @category
177commands are optionals.
209f9b5e 178
209f9b5e
FM
179
180
181Documentation comment for a function
182====================================
12646a5a 183
209f9b5e 184Start off with:
12646a5a 185
209f9b5e 186/**
478c8053
FM
187 ...here goes the description of the function....
188
189 @param param1
190 ...here goes the description for the first parameter of this function
191 @param param2
192 ...here goes the description for the second parameter of this function
193 ...
12646a5a 194
478c8053
FM
195 @return
196 ...here goes the description of what the function returns...
197
198 @note ...here go any eventual notes about this function...
199
200 @remarks ...here go any eventual remarks about this function...
201
202 @see ...here goes the see-also list...
203 */
12646a5a 204
478c8053 205Note that the @return, @note, @remarks, @see commands are optional.
12646a5a 206
209f9b5e
FM
207The @param command has an optional attribute specifying the direction of
208the attribute. Possible values are "in" and "out". E.g.
12646a5a 209
209f9b5e
FM
210/**
211 * Copies bytes from a source memory area to a destination memory area,
212 * where both areas may not overlap.
213 * @param[out] dest The memory area to copy to.
214 * @param[in] src The memory area to copy from.
215 * @param[in] n The number of bytes to copy.
216 * @param[in,out] pmisc Used both as input and as output.
217 */
218void func(void *dest, const void *src, size_t n, void *pmisc);
12646a5a 219
12646a5a 220
209f9b5e
FM
221Documentation comment for a topic overview
222==========================================
12646a5a 223
209f9b5e
FM
224Topic overviews are stored inside the docs/doxygen/overviews folder
225and are completely placed inside a single comment block in the form of:
12646a5a 226
209f9b5e 227/*!
12646a5a 228
209f9b5e 229 @page overview_tname wxSomeStuff overview
12646a5a 230
209f9b5e
FM
231 This page provides an overview of the wxSomeStuff and related classes.
232 ....
12646a5a 233
209f9b5e
FM
234 @li @ref overview_tname_intro
235 @li @ref overview_tname_details
236 ...
12646a5a 237
209f9b5e 238 <hr>
12646a5a 239
12646a5a 240
209f9b5e 241 @section overview_tname_intro Introduction
12646a5a 242
209f9b5e 243 ...here goes the introduction to this topic...
12646a5a 244
12646a5a 245
209f9b5e 246 @section overview_tname_details Details
12646a5a 247
209f9b5e 248 ...here go the details to this topic...
12646a5a 249
209f9b5e 250*/
12646a5a 251
209f9b5e
FM
252Note that there is a convention in the anchor link names.
253Doxygen in fact requires that for each @page, @section, @subsection, etc tag,
254there is a corresponding link anchor.
12646a5a 255
209f9b5e 256The following conventions are used in wxWidgets doxygen comments:
12646a5a 257
741085ab
VZ
2581) all "main" pages of the manual (those which are placed in
259 docs/doxygen/mainpages) have link anchors which begin with "page_"
12646a5a 260
741085ab
VZ
2612) all topic overviews (those which are placed in docs/doxygen/overviews) have
262 link anchors which begin with "overview_"
408a83cb 263
741085ab
VZ
2643) all @section, @subsection, @subsubsection tags should have as link anchor
265 name the name of the parent section plus a specific word separated with an
266 underscore; e.g.:
408a83cb 267
209f9b5e 268/*!
408a83cb 269
209f9b5e 270 @page overview_tname wxSomeStuff overview
408a83cb 271
209f9b5e
FM
272 @section overview_tname_intro Introduction
273 @subsection overview_tname_intro_firstpart First part
274 @subsection overview_tname_intro_secondpart Second part
275 @subsubsection overview_tname_intro_secondpart_sub Second part subsection
276 @subsection overview_tname_intro_thirdpart Third part
408a83cb 277
209f9b5e
FM
278 @section overview_tname_details Details
279 ...
408a83cb 280
209f9b5e 281*/
408a83cb 282
408a83cb 283
209f9b5e 284=== EOF ===
f9364785 285
741085ab 286Author: FM (along the lines of the previous technote about tex2rtf)
209f9b5e 287Version: $Id$