C++ Documentation Style
En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh
This page is part of the Qt Writing Guidelines.
Qt uses QDoc to generate the documentation for Qt C++ documentation.
To get started, familiarize yourself with how QDoc works and the basics of setting up a QDoc project.
The general guideline is: Make your documentation set consistent with the rest of Qt.
Follow existing C++ or QML documentation and make sure the documentation fits into the current structure.
Class Documentation
Class documentation is generated using the \class command and the name of the class as the first argument. For Qt, we document the C++ classes in the implementation file, .cpp.
/*!
QCache
A template class that provides a cache.
QtCore
tools
shared
QCache<Key, T> defines a cache that stores objects of type T
associated with keys of type Key. For example, here's the
definition of a cache that stores objects of type Employee
associated with an integer key:
code/doc_src_qcache.cpp 0
Here's how to insert an object in the cache:
code/doc_src_qcache.cpp 1
… detailed description omitted
QPixmapCache, QHash, QMap
*/
Context commands add information about the class, such as its module or which version the class was added.
Some mandatory context commands are:
- \brief - the class' brief description. See section below on the Brief.
- \since - the version when class was added
- \inmodule - associates a class to a Qt module.
Other important context commands:
- \internal - marks the class as internal. Internal classes including their member functions do not appear in the public API documentation.
Note: It was decided that we will not backdate APIs, so only add the with the version number of an upcoming release. See https://codereview.qt-project.org/c/qt/qtbase/+/43797
The Brief and Detailed Description
The brief description is marked with the \brief command and it is for summarizing the purpose or functionality of the class. QDoc adds the brief descriptions to the annotated lists and tables listing the C++ classes.
It is a good practice to begin a brief description with a verb, but a noun is appropriate in some areas. Ensure that the brief fits into a QDoc generated table such as as the Qt Network C++ Classes page.
Some common initial words for the brief:
- Provides...
- Contains...
- Generates...
- Convenience wrapper...
- A storage class...
The Detailed Description section starts after the brief description. It provides more information about the class. The detailed description may contain images, snippet code, or links to other relevant documents. There must be an empty line which separates the brief and detailed description.
Member Functions
Typically, member function documentation is above its implementation in a .cpp file. For function documentation that is not immediately above the implementation, the \fn command is needed. QDoc then generates a list of member functions in the class documentation.
The function documentation starts with a verb, indicating the operation the function performs. This also applies to constructors and destructors.
Some common verbs for function documentation:
- Constructs…- for constructors
- Destroys… - for destructors
- Returns… - for accessor functions
Member function documentation must include:
- \a - the parameters and parameter types
- \c - the return type in marked up text
- \since - the version when the function added
- Preconditions, behaviors, and consequences from using the member function
For example, the code below generates the QBasicTimer::isActive() documentation.
/*!
\fn bool QBasicTimer::isActive() const
Returns \c true if the timer is running and has not been stopped; otherwise
returns \c false.
\sa start(), stop()
*/
Properties
The \property command is for documenting properties. If the documentation is above the implementation, then QDoc can connect the documentation with the property. QDoc then generates a listing of properties in the class documentation.
Property documentation usually starts with This property…, but these are alternate expressions:
- This property holds…
- This property describes…
- This property represents…
- Returns \c true when… and also when… - for properties that are read
- Sets the… - for properties that configure a type
Property documentation must include:
- \c command to mark property values such as accepted, minimum or maximum ranges, and default values
- \brief command which QDoc uses as the brief description
- \since - the version when the property was added.
The example below generates documentation for the QLabel::wordWrap property.
/*!
\property QLabel::wordWrap
\brief the label's word-wrapping policy
If this property is \c true then label text is wrapped where
necessary at word-breaks; otherwise it is not wrapped at all.
By default, word wrap is disabled.
\sa text
*/
void QLabel::setWordWrap(bool on)
QDoc generates sections and text based on the Q_PROPERTY() macro and the corresponding accessors and signals.
Signals, Notifiers, and Slots
Signal, slot, and notifier documentation is also documented with the \fn command. Therefore, the documentation for signals and slots are similar to member functions. QDoc then generates a listing of signals, slots, and notifiers in the class documentation.
/*!
\fn void QWidget::windowTitleChanged(const QString &title)
This signal is emitted when the window's title has changed, with the
new \a title as an argument.
\since 5.2
*/
void QWidget::setWindowTitle(const QString &title)
Signal documentation typically begin with "This signal is triggered when…". Here are alternate styles: "This signal is triggered when…"
- "Triggered when…"
- "Emitted when…"
For slots or notifiers, the condition when they are executed or triggered by a signal should be documented.
- "Executed when…"
- "This slot is executed when…"
For properties that have overloaded signals, QDoc groups the overloaded notifiers together. To refer to a specifc version of a notifier or signal, simply refer to the property and mention that there are different versions of the notifier.
/*!
QSpinBox::value
the value of the spin box
setValue() will emit valueChanged() if the new value is different
from the old one. The {QSpinBox::}{value} property has a second notifier
signal which includes the spin box's prefix and suffix.
*/
Enums, Namespaces, and other Types
Enums, namespaces, and macros have a topic-command for their documentation: [1]
The language style for these types mention that they are an enum or a macro and continues with the type description.
For enumerations, the [4] command is used to list the values. QDoc creates a table containing the enum values.
/*!
QSql::TableType
This enum type describes types of SQL tables.
Tables All the tables visible to the user.
SystemTables Internal tables used by the database.
Views All the views visible to the user.
AllTables All of the above.
*/