GTK-Doc Manual
-
1. Introduction
- 1.1. What is GTK-Doc?
- 1.2. How Does GTK-Doc Work?
- 1.3. Getting GTK-Doc
- 1.4. About GTK-Doc
- 1.5. About this Manual
- 2. Setting up your project
-
3. Documenting the code
- 3.1. Documentation comments
- 3.2. Documenting sections
- 3.3. Documenting symbols
- 3.4. Useful DocBook tags
- 4. Filling the extra files
-
5. Controlling the result
-
6. Modernizing the documentation
- 6.1. GTK-Doc 1.9
- 6.2. GTK-Doc 1.10
- 6.3. GTK-Doc 1.16
- 6.4. GTK-Doc 1.20
- 7. Documenting other interfaces
-
8. Frequently asked questions
-
9. Tools related to gtk-doc
-
A. GNU Free Documentation Licence
- A.1. 0. PREAMBLE
- A.2. 1. APPLICABILITY AND DEFINITIONS
- A.3. 2. VERBATIM COPYING
- A.4. 3. COPYING IN QUANTITY
- A.5. 4. MODIFICATIONS
- A.6. 5. COMBINING DOCUMENTS
- A.7. 6. COLLECTIONS OF DOCUMENTS
- A.8. 7. AGGREGATION WITH INDEPENDENT WORKS
- A.9. 8. TRANSLATION
- A.10. 9. TERMINATION
- A.11. 10. FUTURE REVISIONS OF THIS LICENCE
- A.12. Addendum
1. Introduction
This chapter introduces GTK-Doc and gives an overview of what it is and how it is used.
- 1.1. What is GTK-Doc?
- 1.2. How Does GTK-Doc Work?
- 1.3. Getting GTK-Doc
- 1.4. About GTK-Doc
- 1.5. About this Manual
1.1. What is GTK-Doc?
GTK-Doc is used to document C code. It is typically used to document the public API of libraries, such as the GTK+ and GNOME libraries, but it can also be used to document application code.
1.2. How Does GTK-Doc Work?
GTK-Doc works by using documentation of functions placed inside the source files in specially-formatted comment blocks, or documentation added to the template files which GTK-Doc uses (though note that GTK-Doc will only document functions that are declared in header files; it won't produce output for static functions).
GTK-Doc consists of a number of Perl scripts, each performing a different step in the process.
There are 5 main steps in the process:
-
Writing the documentation. The author fills in the source files with the documentation for each function, macro, union etc. (In the past information was entered in generated template files, which is not recommended any more).
-
Gathering information about the code. gtkdoc-scan scans the header files of the code looking for declarations of functions, macros, enums, structs, and unions. It creates the file <module>-decl-list.txt containing a list of the declarations, placing them into sections according to which header file they are in. On the first run this file is copied to <module>-sections.txt. The author can rearrange the sections, and the order of the declarations within them, to produce the final desired order. The second file it generates is <module>-decl.txt. This file contains the full declarations found by the scanner. If for some reason one would like some symbols to show up in the docs, where the full declaration cannot be found by the scanner or the declaration should appear differently, one can place entities similar to the ones in <module>-decl.txt into <module>-overrides.txt.
gtkdoc-scangobj can also be used to dynamically query a library about any GObject subclasses it exports. It saves information about each object's position in the class hierarchy and about any GObject properties and signals it provides.
gtkdoc-scanobj should not be used anymore. It was needed in the past when GObject was still GtkObject inside gtk+.
-
Generating the "template" files. gtkdoc-mktmpl creates a number of files in the tmpl/ subdirectory, using the information gathered in the first step. (Note that this can be run repeatedly. It will try to ensure that no documentation is ever lost.)
Since GTK-Doc 1.9 the templates can be avoided. We encourage people to keep documentation in the code. gtkdocize supports now a --flavour no-tmpl option that chooses a makefile that skips tmpl usage totally. If you have never changed file in tmpl by hand, please remove the directory (e.g. from version control system).
-
Generating the SGML/XML and HTML/PDF. gtkdoc-mkdb turns the template files into SGML or XML files in the sgml/ or xml/ subdirectory. If the source code contains documentation on functions, using the special comment blocks, it gets merged in here. If there are no tmpl files used it only reads docs from sources and introspection data. We recommend to use Docbook XML.
gtkdoc-mkhtml turns the SGML/XML files into HTML files in the html/ subdirectory. Likewise gtkdoc-mkpdf turns the SGML/XML files into a PDF document called <package>.pdf.
Files in sgml/ or xml/ and html/ directories are always overwritten. One should never edit them directly.
-
Fixing up cross-references between documents. After installing the HTML files, gtkdoc-fixxref can be run to fix up any cross-references between separate documents. For example, the GTK+ documentation contains many cross-references to types documented in the GLib manual. When creating the source tarball for distribution, gtkdoc-rebase turns all external links into web-links. When installing distributed (pre-generated) docs the same application will try to turn links back to local links (where those docs are installed).
1.3. Getting GTK-Doc
- 1.3.1. Requirements
- 1.3.2. Installation
1.3.1. Requirements
Perl v5 — the main scripts are in Perl.
DocBook DTD v3.0 — This is the DocBook SGML DTD. http://www.ora.com/davenport
Jade v1.1 — This is a DSSSL processor for converting SGML to various formats. http://www.jclark.com/jade
Modular DocBook Stylesheets This is the DSSSL code to convert DocBook to HTML (and a few other formats). It's used together with jade. The DSSSL code has been customised slightly, in gtk-doc.dsl, to colour the program code listings/declarations, and to support global cross-reference indices in the generated HTML. http://nwalsh.com/docbook/dsssl
docbook-to-man — if you want to create man pages from the DocBook. The 'translation spec' has been customised slightly, to capitalise section headings and add the 'GTK Library' title at the top of the pages and the revision date at the bottom. There is a link to this on http://www.ora.com/davenport NOTE: This does not work yet.
1.3.2. Installation
There is no standard place where the DocBook Modular Stylesheets are installed.
GTK-Doc's configure script searches these 3 directories automatically:
/usr/lib/sgml/stylesheets/nwalsh-modular (used by Red Hat)
/usr/lib/dsssl/stylesheets/docbook (used by Debian)
/usr/share/sgml/docbkdsl (used by SuSE)
If you have the stylesheets installed somewhere else, you need to configure GTK-Doc using the option: --with-dsssl-dir=<PATH_TO_TOPLEVEL_STYLESHEETS_DIR>
2. Setting up your project
The next sections describe what steps to perform to integrate GTK-Doc into your project. Theses sections assume we work on a project called 'meep'. This project contains a library called 'libmeep' and an end-user app called 'meeper'. We also assume you will be using autoconf and automake. In addition section plain makefiles or other build systems will describe the basics needed to work in a different build setup.
2.1. Setting up a skeleton documentation
Under your top-level project directory create a folder called docs/reference (this way you can also have docs/help for end-user documentation). It is recommended to create another subdirectory with the name of the doc-package. For packages with just one library this step is not necessary.
This can then look as shown below:
meep/
docs/
reference/
libmeep/
meeper/
src/
libmeep/
meeper/
2.2. Integration with autoconf
Very easy! Just add one line to your configure.ac script.
# check for gtk-doc
GTK_DOC_CHECK([1.14],[--flavour no-tmpl])
This will require all developers to have gtk-doc installed. If it is okay for your project to have optional api-doc build setup, you can solve this as below. Keep it as is, as gtkdocize is looking for GTK_DOC_CHECK at the start of a line.
# check for gtk-doc
m4_ifdef([GTK_DOC_CHECK], [
GTK_DOC_CHECK([1.14],[--flavour no-tmpl])
],[
AM_CONDITIONAL([ENABLE_GTK_DOC], false)
])
The first argument is used to check for the gtkdocversion at configure time. The 2nd, optional argument is used by gtkdocize. The GTK_DOC_CHECK macro also adds several configure switches:
- --with-html-dir=PATH : path to installed docs
- --enable-gtk-doc : use gtk-doc to build documentation [default=no]
- --enable-gtk-doc-html : build documentation in html format [default=yes]
- --enable-gtk-doc-pdf : build documentation in pdf format [default=no]
GTK-Doc is disabled by default! Remember to pass the option '--enable-gtk-doc' to the next configure run. Otherwise pregenerated documentation is installed (which makes sense for users but not for developers).
Furthermore it is recommended that you have the following line inside you configure.ac script. This allows gtkdocize to automatically copy the macro definition for GTK_DOC_CHECK to your project.
AC_CONFIG_MACRO_DIR(m4)
2.3. Integration with automake
First copy the Makefile.am from the examples sub directory of the gtkdoc-sources to your project's API documentation directory ( ./docs/reference/<package>). A local copy should be available under e.g. /usr/share/doc/gtk-doc-tools/examples/Makefile.am. If you have multiple doc-packages repeat this for each one.
The next step is to edit the settings inside the Makefile.am. All the settings have a comment above that describes their purpose. Most settings are extra flags passed to the respective tools. Every tool has a variable of the form <TOOLNAME>_OPTIONS. All the tools support --help to list the supported parameters.
2.4. Integration with autogen
Most projects will have an autogen.sh script to setup the build infrastructure after a checkout from version control system (such as cvs/svn/git). GTK-Doc comes with a tool called gtkdocize which can be used in such a script. It should be run before autoheader, automake or autoconf.
gtkdocize || exit 1
When running gtkdocize it copies gtk-doc.make to your project root (or any directory specified by the --docdir option). It also checks you configure script for the GTK_DOC_CHECK invocation. This macro can be used to pass extra parameters to gtkdocize.
Historically GTK-Doc was generating template files where developers entered the docs. This turned out to be not so good (e.g. the need for having generated files under version control). Since GTK-Doc 1.9 the tools can get all the information from source comments and thus the templates can be avoided. We encourage people to keep documentation in the code. gtkdocize supports now a --flavour no-tmpl option that chooses a makefile that skips tmpl usage totally. Besides adding the option directly to the command invocation, they can be added also to an environment variable called GTKDOCIZE_FLAGS or set as a 2nd parameter in GTK_DOC_CHECK macro in the configure script. If you have never changed file in tmpl by hand and migrating from older gtkdoc versions, please remove the directory (e.g. from version control system).
2.5. Running the doc build
After the previous steps it is time to run the build. First we need to rerun autogen.sh. If this script runs configure for you, then give it the --enable-gtk-doc option. Otherwise manually run configure with this option afterwards.
The first make run generates several additional files in the doc-directories. The important ones are: <package>.types, <package>-docs.xml (in the past .sgml), <package>-sections.txt.
./autogen.sh --enable-gtk-doc
make
Now you can point your browser to docs/reference/package/index.html. Yes, it's a bit disappointing still. But hang on; during the next chapter we tell you how to fill the pages with life.
2.6. Integration with version control systems
As a rule of the thumb, it's those files you edit, that should go under version control. For typical projects it's these files: <package>.types, <package>-docs.xml (in the past .sgml), <package>-sections.txt, Makefile.am
2.7. Integration with plain makefiles or other build systems
In the case one does not want to use automake and therefore gtk-doc.mak one will need to call the gtkdoc tools in the right order in own makefiles (or other build tools).
DOC_MODULE=meep
// sources have changed
gtkdoc-scan --module=$(DOC_MODULE) --source-dir=...
gtkdoc-scangobj --module=$(DOC_MODULE)
gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml
// xml files have changed
mkdir html
cd html && gtkdoc-mkhtml $(DOC_MODULE) ../meep-docs.xml
gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html
One will need to look at the Makefile.am and gtk-doc.mak to pick the extra options needed.
3. Documenting the code
GTK-Doc uses source code comment with a special syntax for code documentation. Further it retrieves information about your project structure from other sources. During the next section you will find all information about the syntax of the comments.
In the past most documentation had to be filled into files residing inside the tmpl directory. This has the disadvantages that the information is often not updated and also that the file tend to cause conflicts with version control systems.
To avoid the aforementioned problems we suggest putting the documentation inside the sources. This manual will only describe this way of documenting code.
The scanner can handle the majority of C headers fine. In the case of receiving warnings from the scanner that look like a special case, one can hint GTK-Doc to skip over them.
#ifndef __GTK_DOC_IGNORE__
/* unparseable code here */
#endif
- 3.1. Documentation comments
- 3.2. Documenting sections
- 3.3. Documenting symbols
- 3.4. Useful DocBook tags
3.1. Documentation comments
A multiline comment that starts with an additional '*' marks a documentation block that will be processed by the GTK-Doc tools.
/**
* identifier:
* documentation ...
*/
The 'identifier' is one line with the name of the item to which the comment is related. The syntax differs a little depending on the item. (TODO add table showing identifiers)
The 'documentation' block is also different for each symbol type. Symbol types that get parameters such as functions or macros have the parameter description first followed by a blank line (just a '*'). Afterwards follows the detailed description. All lines (outside program listings and CDATA sections) just containing a ' *' (blank-asterisk) are converted to paragraph breaks. If you don't want a paragraph break, change that into ' * ' (blank-asterisk-blank-blank). This is useful in preformatted text (code listings).
When documenting code, describe two aspects:
- What it is: The name for a class or function can sometimes be misleading for people coming from a different background.
- What it does: Tell about common uses. Put it in relation with the other API.
One advantage of hyper-text over plain-text is the ability to have links in the document. Writing the correct markup for a link can be tedious though. GTK-Doc comes to help by providing several useful abbreviations.
- Use function() to refer to functions or macros which take arguments.
- Use @param to refer to parameters. Also use this when referring to parameters of other functions, related to the one being described.
- Use %constant to refer to a constant, e.g. %G_TRAVERSE_LEAFS.
- Use #symbol to refer to other types of symbol, e.g. structs and enums and macros which don't take arguments.
- Use #Object::signal to refer to a GObject signal.
- Use #Object:property to refer to a GObject property.
- Use #Struct.field to refer to a field inside a structure and #GObjectClass.foo_bar() to refer to a vmethod.
If you need to use the special characters '<', '>', '()', '@', '%', or '#' in your documentation without GTK-Doc changing them you can use the XML entities "<", ">", "(", ")", "@", "%" and "#" respectively or escape them with a backslash '\'.
DocBook can do more than just links. One can also have lists, examples, headings, and images. As of version 1.20, the preferred way is to use a subset of the basic text formatting syntax called Markdown. On older GTK-Doc versions any documentation that includes Markdown will be rendered as is. For example, list items will appear as lines starting with a dash.
In older GTK-Doc releases, if you need support for additional formatting, you would need to enable the usage of docbook SGML/XML tags inside doc-comments by putting --xml-mode or --sgml-mode in the variable MKDB_OPTIONS inside Makefile.am.
/**
* identifier:
*
* documentation paragraph ...
*
* # Sub Heading #
*
* ## Second Sub Heading
*
* # Sub Heading With a Link Anchor # {#heading-two}
*
* more documentation:
*
* - list item 1
*
* Paragraph inside a list item.
*
* - list item 2
*
* 1. numbered list item
*
* 2. another numbered list item
*
* Another paragraph. [A Link to the GNOME Website](http://www.gnome.org/)
*
* ![an inline image][plot-result.png]
*
* [A link to the heading anchor above][heading-two]
*
* A C-language example:
* |[<!-- language="C" -->
* GtkWidget *label = gtk_label_new ("Gorgeous!");
* ]|
*/
More examples of what markdown tags are supported can be found in the GTK+ Documentation Markdown Syntax Reference.
As already mentioned earlier GTK-Doc is for documenting public API. Thus one cannot write documentation for static symbols. Nevertheless it is good to comment those symbols too. This helps other to understand you code. Therefore we recommend to comment these using normal comments (without the 2nd '*' in the first line). If later the function needs to be made public, all one needs to do is to add another '*' in the comment block and insert the symbol name at the right place inside the sections file.
3.2. Documenting sections
Each section of the documentation contains information about one class or module. To introduce the component one can write a section block. The short description is also used inside the table of contents. All the @fields are optional.
/**
* SECTION:meepapp
* @short_description: the application class
* @title: Meep application
* @section_id:
* @see_also: #MeepSettings
* @stability: Stable
* @include: meep/app.h
* @image: application.png
*
* The application class handles ...
*/
- SECTION:<name>
-
The name links the section documentation to the respective part in the <package>-sections.txt file. The name give here should match the <FILE> tag in the <package>-sections.txt file.
- @short_description
-
A one line description of the section that later will appear after the links in the TOC and at the top of the section page.
- @title
-
The section title defaults to <name> from the SECTION declaration. It can be overridden with the @title field.
- @section_id
-
Overrides the use of title as a section identifier. For GObjects the <title> is used as a section_id and for other sections it is <MODULE>-<title>.
- @see_also
-
A list of symbols that are related to this section.
- @stability
-
An informal description of the stability level this API has. We recommend the use of one of these terms:
- Stable - The intention of a Stable interface is to enable arbitrary third parties to develop applications to these interfaces, release them, and have confidence that they will run on all minor releases of the product (after the one in which the interface was introduced, and within the same major release). Even at a major release, incompatible changes are expected to be rare, and to have strong justifications.
- Unstable - Unstable interfaces are experimental or transitional. They are typically used to give outside developers early access to new or rapidly changing technology, or to provide an interim solution to a problem where a more general solution is anticipated. No claims are made about either source or binary compatibility from one minor release to the next.
- Private - An interface that can be used within the GNOME stack itself, but that is not documented for end-users. Such functions should only be used in specified and documented ways.
- Internal - An interface that is internal to a module and does not require end-user documentation. Functions that are undocumented are assumed to be Internal.
- @include
-
The #include files to show in the section synopsis (a comma-separated list), overriding the global value from the section file or command line. This item is optional.
- @image
-
The image to display at the top of the reference page for this section. This will often be some sort of a diagram to illustrate the visual appearance of a class or a diagram of its relationship to other classes. This item is optional.
To avoid unnecessary recompilation after doc-changes put the section docs into the C source where possible.
3.3. Documenting symbols
Each symbol (function, macro, struct, enum, signal and property) is documented in a separate block. The block is best placed close to the definition of the symbols so that it is easy to keep them in sync. Thus functions are usually documented in the c-source and macros, structs and enums in the header file.
- 3.3.1. General tags
- 3.3.2. Function comment block
- 3.3.3. Property comment block
- 3.3.4. Signal comment block
- 3.3.5. Struct comment block
- 3.3.6. Enum comment block
3.3.1. General tags
You can add versioning information to all documentation elements to tell when an API was introduced, or when it was deprecated.
- Since:
-
Description since which version of the code the API is available.
- Deprecated:
-
Paragraph denoting that this function should no be used any more. The description should point the reader to the new API.
(FIXME : Stability information)
/**
* foo_get_bar:
* @foo: some foo
*
* Retrieves @foo's bar.
*
* Returns: @foo's bar
*
* Since: 2.6
* Deprecated: 2.12: Use foo_baz_get_bar() instead.
*/
Bar *
foo_get_bar(Foo *foo)
{
...
3.3.2. Function comment block
Please remember to:
- Document whether returned objects, lists, strings, etc, should be freed/unrefed/released.
- Document whether parameters can be NULL, and what happens if they are.
- Mention interesting pre-conditions and post-conditions where appropriate.
GTK-Doc assumes all symbols (macros, functions) starting with _ are private. They are treated like static functions.
Also, take a look at GObject Introspection annotation tags: http://live.gnome.org/GObjectIntrospection/Annotations
/**
* function_name:
* @par1: description of parameter 1. These can extend over more than
* one line.
* @par2: description of parameter 2
* @...: a %NULL-terminated list of bars
*
* The function description goes here. You can use @par1 to refer to parameters
* so that they are highlighted in the output. You can also use %constant
* for constants, function_name2() for functions and #GtkWidget for links to
* other declarations (which may be documented elsewhere).
*
* Returns: an integer.
*
* Since: 2.2
* Deprecated: 2.18: Use other_function() instead.
*/
- Returns:
-
Paragraph describing the returned result.
- @...:
-
In case the function has variadic arguments, you should use this tag (@Varargs: does also work for historic reasons).
3.3.3. Property comment block
/**
* SomeWidget:some-property:
*
* Here you can document a property.
*/
g_object_class_install_property (object_class, PROP_SOME_PROPERTY, ...);
3.3.4. Signal comment block
Please remember to:
- Document when the signal is emitted and whether it is emitted before or after other signals.
- Document what an application might do in the signal handler.
/**
* FooWidget::foobarized:
* @widget: the widget that received the signal
* @foo: some foo
* @bar: some bar
*
* The ::foobarized signal is emitted each time someone tries to foobarize @widget.
*/
foo_signals[FOOBARIZE] =
g_signal_new ("foobarize",
...
3.3.5. Struct comment block
/**
* FooWidget:
* @bar: some #gboolean
*
* This is the best widget, ever.
*/
typedef struct _FooWidget {
/*< private >*/
GtkWidget parent;
/*< public >*/
gboolean bar;
} FooWidget;
Use /*< private >*/ before the private struct fields you want to hide. Use /*< public >*/ for the reverse behaviour.
Struct comment blocks can also be used for GObjects and GObjectClasses. It is usually a good idea to add a comment block for a class, if it has vmethods (as this is how they can be documented). For the GObject itself one can use the related section docs, having a separate block for the instance struct would be useful if the instance has public fields. One disadvantage here is that this creates two index entries of the same name (the structure and the section).
3.3.6. Enum comment block
/**
* Something:
* @SOMETHING_FOO: something foo
* @SOMETHING_BAR: something bar
*
* Enum values used for the thing, to specify the thing.
*/
typedef enum {
SOMETHING_FOO,
SOMETHING_BAR,
/*< private >*/
SOMETHING_COUNT
} Something;
Use /*< private >*/ before the private enum values you want to hide. Use /*< public >*/ for the reverse behaviour.
3.4. Useful DocBook tags
Here are some DocBook tags which are most useful when documenting the code.
To link to another section in the GTK docs:
<link linkend="glib-Hash-Tables">Hash Tables</link>
To refer to an external function, e.g. a standard C function:
<function>...</function>
To include example code:
<example>
<title>Using a GHashTable.</title>
<programlisting>
...
</programlisting>
</example>
<informalexample>
<programlisting>
...
</programlisting>
</informalexample>
To include bulleted lists:
<itemizedlist>
<listitem>
<para>
...
</para>
</listitem>
<listitem>
<para>
...
</para>
</listitem>
</itemizedlist>
To include a note which stands out from the text:
<note>
<para>
Make sure you free the data after use.
</para>
</note>
To refer to a type:
<type>unsigned char</type>
To refer to an external structure (not one described in the GTK docs):
<structname>XFontStruct</structname>
To refer to a field of a structure:
<structfield>len</structfield>
To refer to a class name, we could possibly use:
<classname>GtkWidget</classname>
To emphasize text:
<emphasis>This is important</emphasis>
For filenames use:
<filename>/home/user/documents</filename>
To refer to keys use:
<keycombo><keycap>Control</keycap><keycap>L</keycap></keycombo>
4. Filling the extra files
There are a couple of extra files, that need to be maintained along with the inline source code comments: <package>.types, <package>-docs.xml (in the past .sgml), <package>-sections.txt.
4.1. Editing the types file
If your library or application includes GObjects, you want their signals, arguments/parameters and position in the hierarchy to be shown in the documentation. All you need to do, is to list the xxx_get_type functions together with their include inside the <package>.types file.
#include <gtk/gtk.h>
gtk_accel_label_get_type
gtk_adjustment_get_type
gtk_alignment_get_type
gtk_arrow_get_type
Since GTK-Doc 1.8 gtkdoc-scan can generate this list for you. Just add "--rebuild-types" to SCAN_OPTIONS in Makefile.am. If you use this approach you should not dist the types file nor have it under version control.
4.2. Editing the master document
GTK-Doc produces documentation in DocBook SGML/XML. When processing the inline source comments, the GTK-Doc tools generate one documentation page per class or module as a separate file. The master document includes them and place them in an order.
While GTK-Doc creates a template master document for you, later run will not touch it again. This means that one can freely structure the documentation. That includes grouping pages and adding extra pages. GTK-Doc has now a test suite, where also the master-document is recreated from scratch. Its a good idea to look at this from time to time to see if there are some new goodies introduced there.
Do not create tutorials as extra documents. Just write extra chapters. The benefit of directly embedding the tutorial for your library into the API documentation is that it is easy to link for the tutorial to symbol documentation. Also, chances are higher that the tutorial gets updates along with the library.
So what are the things to change inside the master document? There are some placeholders (text in square brackets) there which you should take care of.
<bookinfo>
<title>MODULENAME Reference Manual</title>
<releaseinfo>
for MODULENAME [VERSION]
The latest version of this documentation can be found on-line at
<ulink role="online-location" url="http://[SERVER]/MODULENAME/index.html">http://[SERVER]/MODULENAME/</ulink>.
</releaseinfo>
</bookinfo>
<chapter>
<title>[Insert title here]</title>
4.3. Editing the section file
The section file is used to organise the documentation output by GTK-Doc. Here one specifies which symbol belongs to which module or class and control the visibility (public or private).
The section file is a plain text file with XML-like syntax (using tags). Blank lines are ignored and lines starting with a '#' are treated as comment lines.
The <FILE> ... </FILE> tag is used to specify the file name, without any suffix. For example, using '<FILE>gnome-config</FILE>' will result in the section declarations being output in the template file tmpl/gnome-config.sgml, which will be converted into the DocBook SGML/XML file sgml/gnome-config.sgml or the DocBook XML file xml/gnome-config.xml. (The name of the HTML file is based on the module name and the section title, or for GObjects it is based on the GObjects class name converted to lower case).
The <TITLE> ... </TITLE> tag is used to specify the title of the section. It is only useful before the templates (if used) are initially created, since the title set in the template file overrides this. Also if one uses SECTION comment in the sources, this is obsolete.
You can group items in the section by using the <SUBSECTION> tag. Currently it outputs a blank line between subsections in the synopsis section. You can also use <SUBSECTION Standard> for standard GObject declarations (e.g. the functions like g_object_get_type and macros like G_OBJECT(), G_IS_OBJECT() etc.). Currently these are left out of the documentation. You can also use <SUBSECTION Private> for private declarations which will not be output (it is a handy way to avoid warning messages about unused declarations). If your library contains private types which you don't want to appear in the object hierarchy and the list of implemented or required interfaces, add them to a Private subsection. Whether you would place GObject and GObjectClass like structs in public or Standard section depends if they have public entries (variables, vmethods).
You can also use <INCLUDE> ... </INCLUDE> to specify the #include files which are shown in the synopsis sections. It contains a comma-separated list of #include files, without the angle brackets. If you set it outside of any sections, it acts for all sections until the end of the file. If you set it within a section, it only applies to that section.
5. Controlling the result
A GTK-Doc run generates report files inside the documentation directory. The generated files are named: <package>-undocumented.txt, <package>-undeclared.txt and <package>-unused.txt. All those are plain text files that can be viewed and postprocessed easily.
The package-undocumented.txt file starts with the documentation coverage summary. Below are two sections divided by blank lines. The first section lists undocumented or incomplete symbols. The second section does the same for section docs. Incomplete entries are those, which have documentation, but where e.g. a new parameter has been added.
The <package>-undeclared.txt file lists symbols given in the <package>-sections.txt but not found in the sources. Check if they have been removed or if they are misspelled.
The <package>-unused.txt file lists symbol names, where the GTK-Doc scanner has found documentation, but does not know where to put it. This means that the symbol has not yet been added to the <package>-sections.txt file.
Enable or add the TESTS=$(GTKDOC_CHECK) line in Makefile.am. If at least GTK-Doc 1.9 is installed, this will run sanity checks during make check run.
One can also look at the files produced by the source code scanner: <package>-decl-list.txt and <package>-decl.txt. The first one can be compared with the section file if that is manually maintained. The second lists all declarations from the headers. If a symbol is missing one could check if this file contains it.
If the project is GObject based, one can also look into the files produced by the object scanner: <package>.args.txt, <package>.hierarchy.txt, <package>.interfaces.txt, <package>.prerequisites.txt and <package>.signals.txt. If there are missing symbols in any of those, one can ask GTK-Doc to keep the intermediate scanner file for further analysis, by running it as GTK_DOC_KEEP_INTERMEDIATE=1 make.
6. Modernizing the documentation
GTK-Doc has been around for quite some time. In this section we list new features together with the version since when it is available.
- 6.1. GTK-Doc 1.9
- 6.2. GTK-Doc 1.10
- 6.3. GTK-Doc 1.16
- 6.4. GTK-Doc 1.20
6.1. GTK-Doc 1.9
When using xml instead of sgml, one can actually name the master document <package>-docs.xml.
This version supports SCAN_OPTIONS=--rebuild-sections in Makefile.am. When this is enabled, the <package>-sections.txt is autogenerated and can be removed from the vcs. This only works nicely for projects that have a very regular structure (e.g. each .{c,h} pair will create new section). If one organize a project close to that updating a manually maintained section file can be as simple as running meld <package>-decl-list.txt <package>-sections.txt.
Version 1.8 already introduced the syntax for documenting sections in the sources instead of the separate files under tmpl. This version adds options to switch the whole doc module to not use the extra tmpl build step at all, by using --flavour no-tmpl in configure.ac.
6.2. GTK-Doc 1.10
This version supports SCAN_OPTIONS=--rebuild-types in Makefile.am. When this is enabled, the <package>.types is autogenerated and can be removed from the vcs. When using this feature it is important to also setup the IGNORE_HFILES in Makefile.am for code that is build conditionally.
6.3. GTK-Doc 1.16
This version includes a new tool called gtkdoc-check. This tool can run a set of sanity checks on your documentation. It is enabled by adding these lines to the end of Makefile.am.
if ENABLE_GTK_DOC
TESTS_ENVIRONMENT = \
DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \
SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir)
TESTS = $(GTKDOC_CHECK)
endif
6.4. GTK-Doc 1.20
Version 1.18 brought some initial markdown support. Using markdown in doc comments is less intrusive than writing docbook xml. This version improves a lot on this and add a lot more styles. The section that explains the comment syntax has all the details.
7. Documenting other interfaces
So far we have been using GTK-Doc to document the API of code. The next sections contain suggestions how the tools can be used to document other interfaces too.
7.1. Command line options and man pages
As one can generate man pages for a docbook refentry as well, it sounds like a good idea to use it for that purpose. This way the interface is part of the reference and one gets the man-page for free.
- 7.1.1. Document the tool
- 7.1.2. Adding the extra configure check
- 7.1.3. Adding the extra makefile rules
7.1.1. Document the tool
Create one refentry file per tool. Following our example we would call it meep/docs/reference/meeper/meep.xml. For the xml tags that should be used and can look at generated file in the xml subdirectory as well as examples e.g. in glib.
8. Frequently asked questions
Question: No class hierarchy.
Answer: The objects xxx_get_type() function has not been entered into the <package>.types file.
Question: Still no class hierarchy.
Answer: Missing or wrong naming in <package>-sections.txt file (see explanation).
Question: Damn, I still have no class hierarchy.
Answer: Is the object name (name of the instance struct, e.g. GtkWidget) part of the normal section (don't put this into Standard or Private subsections).
Question: No symbol index.
Answer: Does the <package>-docs.{xml,sgml} contain a index that xi:includes the generated index?
Question: Symbols are not linked to their doc-section.
Answer: Is the doc-comment using the correct markup (added #,% or ())? Check if the gtkdoc-fixxref warns about unresolvable xrefs.
Question: A new class does not appear in the docs.
Answer: Is the new page xi:included from <package>-docs.{xml,sgml}.
Question: A new symbol does not appear in the docs.
Answer: Is the doc-comment properly formatted. Check for spelling mistakes in the begin of the comment. Check if the gtkdoc-fixxref warns about unresolvable xrefs. Check if the symbol is correctly listed in the <package>-sections.txt in a public subsection.
Question: A type is missing from the class hierarchy.
Answer: If the type is listed in <package>.hierarchy but not in xml/tree_index.sgml then double check that the type is correctly placed in the <package>-sections.txt. If the type instance (e.g. GtkWidget) is not listed or incidentialy makred private it will not be shown.
Question: I get foldoc links for all gobject annotations.
Answer: Check that xml/annotation-glossary.xml is xi:included from <package>-docs.{xml,sgml}.
Question: Parameter described in source code comment block but does not exist
Answer: Check if the prototype in the header has different parameter names to the source.
Question: multiple "IDs" for constraint linkend: XYZ
Answer: Symbol XYZ appears twice in <package>-sections.txt file.
Question: Element typename in namespace '' encountered in para, but no template matches.
Answer:
9. Tools related to gtk-doc
GtkDocPlugin - a Trac GTK-Doc integration plugin, that adds API docs to a trac site and integrates with the trac search.
Gtkdoc-depscan - a tool (part of gtk-doc) to check used API against since tags in the API to determine the minimum required version.
A. GNU Free Documentation Licence
- A.1. 0. PREAMBLE
- A.2. 1. APPLICABILITY AND DEFINITIONS
- A.3. 2. VERBATIM COPYING
- A.4. 3. COPYING IN QUANTITY
- A.5. 4. MODIFICATIONS
- A.6. 5. COMBINING DOCUMENTS
- A.7. 6. COLLECTIONS OF DOCUMENTS
- A.8. 7. AGGREGATION WITH INDEPENDENT WORKS
- A.9. 8. TRANSLATION
- A.10. 9. TERMINATION
- A.11. 10. FUTURE REVISIONS OF THIS LICENCE
- A.12. Addendum
A.1. 0. PREAMBLE
The purpose of this Licence is to make a manual, textbook, or other written document “free” in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this Licence preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others.
This Licence is a kind of “copyleft”, which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public Licence, which is a copyleft licence designed for free software.
We have designed this Licence in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this Licence is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this Licence principally for works whose purpose is instruction or reference.
A.2. 1. APPLICABILITY AND DEFINITIONS
This Licence applies to any manual or other work that contains a notice placed by the copyright holder saying it can be distributed under the terms of this Licence. The “Document”, below, refers to any such manual or work. Any member of the public is a licencee, and is addressed as “you”.
A “Modified Version” of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language.
A “Secondary Section” is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document's overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (For example, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them.
The “Invariant Sections” are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this Licence.
The “Cover Texts” are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this Licence.
A “Transparent” copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, whose contents can be viewed and edited directly and straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup has been designed to thwart or discourage subsequent modification by readers is not Transparent. A copy that is not “Transparent” is called “Opaque”.
Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML designed for human modification. Opaque formats include PostScript, PDF, proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML produced by some word processors for output purposes only.
The “Title Page” means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this Licence requires to appear in the title page. For works in formats which do not have any title page as such, “Title Page” means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text.
A.3. 2. VERBATIM COPYING
You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this Licence, the copyright notices, and the licence notice saying this Licence applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this Licence. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3.
You may also lend copies, under the same conditions stated above, and you may publicly display copies.
A.4. 3. COPYING IN QUANTITY
If you publish printed copies of the Document numbering more than 100, and the Document's licence notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects.
If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages.
If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a publicly-accessible computer-network location containing a complete Transparent copy of the Document, free of added material, which the general network-using public has access to download anonymously at no charge using public-standard network protocols. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public.
It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document.
A.5. 4. MODIFICATIONS
You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this Licence, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version:
-
A
Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Document). You may use the same title as a previous version if the original publisher of that version gives permission.
-
B
List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has less than five).
-
C
State on the Title Page the name of the publisher of the Modified Version, as the publisher.
-
D
Preserve all the copyright notices of the Document.
-
E
Add an appropriate copyright notice for your modifications adjacent to the other copyright notices.
-
F
Include, immediately after the copyright notices, a licence notice giving the public permission to use the Modified Version under the terms of this Licence, in the form shown in the Addendum below.
-
G
Preserve in that licence notice the full lists of Invariant Sections and required Cover Texts given in the Document's licence notice.
-
H
Include an unaltered copy of this Licence.
-
I
Preserve the section entitled “History”, and its title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section entitled “History” in the Document, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence.
-
J
Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the “History” section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission.
-
K
In any section entitled “Acknowledgements” or “Dedications”, preserve the section's title, and preserve in the section all the substance and tone of each of the contributor acknowledgements and/or dedications given therein.
-
L
Preserve all the Invariant Sections of the Document, unaltered in their text and in their titles. Section numbers or the equivalent are not considered part of the section titles.
-
M
Delete any section entitled “Endorsements”. Such a section may not be included in the Modified Version.
-
N
Do not retitle any existing section as “Endorsements” or to conflict in title with any Invariant Section.
If the Modified Version includes new front-matter sections or appendices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version's licence notice. These titles must be distinct from any other section titles.
You may add a section entitled “Endorsements”, provided it contains nothing but endorsements of your Modified Version by various parties--for example, statements of peer review or that the text has been approved by an organisation as the authoritative definition of a standard.
You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one.
The author(s) and publisher(s) of the Document do not by this Licence give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version .
A.6. 5. COMBINING DOCUMENTS
You may combine the Document with other documents released under this Licence, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its licence notice.
The combined work need only contain one copy of this Licence, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the licence notice of the combined work.
In the combination, you must combine any sections entitled “History” in the various original documents, forming one section entitled “History”; likewise combine any sections entitled “Acknowledgements”, and any sections entitled “Dedications”. You must delete all sections entitled “Endorsements.”
A.7. 6. COLLECTIONS OF DOCUMENTS
You may make a collection consisting of the Document and other documents released under this Licence, and replace the individual copies of this Licence in the various documents with a single copy that is included in the collection, provided that you follow the rules of this Licence for verbatim copying of each of the documents in all other respects.
You may extract a single document from such a collection, and distribute it individually under this Licence, provided you insert a copy of this Licence into the extracted document, and follow this Licence in all other respects regarding verbatim copying of that document.
A.8. 7. AGGREGATION WITH INDEPENDENT WORKS
A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, does not as a whole count as a Modified Version of the Document, provided no compilation copyright is claimed for the compilation. Such a compilation is called an “aggregate”, and this Licence does not apply to the other self-contained works thus compiled with the Document , on account of their being thus compiled, if they are not themselves derivative works of the Document. If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one quarter of the entire aggregate, the Document's Cover Texts may be placed on covers that surround only the Document within the aggregate. Otherwise they must appear on covers around the whole aggregate.
A.9. 8. TRANSLATION
Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this Licence provided that you also include the original English version of this Licence. In case of a disagreement between the translation and the original English version of this Licence, the original English version will prevail.
A.10. 9. TERMINATION
You may not copy, modify, sublicence, or distribute the Document except as expressly provided for under this Licence. Any other attempt to copy, modify, sublicence or distribute the Document is void, and will automatically terminate your rights under this Licence. However, parties who have received copies, or rights, from you under this Licence will not have their licences terminated so long as such parties remain in full compliance.
A.11. 10. FUTURE REVISIONS OF THIS LICENCE
The Free Software Foundation may publish new, revised versions of the GNU Free Documentation Licence from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See http://www.gnu.org/copyleft/.
Each version of the Licence is given a distinguishing version number. If the Document specifies that a particular numbered version of this Licence “or any later version” applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this Licence, you may choose any version ever published (not as a draft) by the Free Software Foundation.
A.12. Addendum
To use this Licence in a document you have written, include a copy of the Licence in the document and put the following copyright and licence notices just after the title page:
Copyright YEAR YOUR NAME.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation Licence, Version 1.1 or any later version published by the Free Software Foundation; with the Invariant Sections being LIST THEIR TITLES, with the Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. A copy of the licence is included in the section entitled “GNU Free Documentation Licence”.
If you have no Invariant Sections, write “with no Invariant Sections” instead of saying which ones are invariant. If you have no Front-Cover Texts, write “no Front-Cover Texts” instead of “Front-Cover Texts being LIST”; likewise for Back-Cover Texts.
If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software licence, such as the GNU General Public Licence, to permit their use in free software.
