Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
C++ Documentation Style: Difference between revisions
AutoSpider (talk | contribs) (Convert ExpressionEngine links) |
(typo fixes) |
||
(9 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{ | [[Category:Writing Guidelines]] | ||
{{LangSwitch}} | |||
__TOC__ | |||
This page is part of the [[Qt Writing Guidelines]]. | |||
This page is part of the [[ | |||
Though there are exceptions, these guidelines should be followed. Keeping that in mind, at least '''be consistent within the page'''. Meaning, the class member documentation should have the same style. | Though there are exceptions, these guidelines should be followed. Keeping that in mind, at least '''be consistent within the page'''. Meaning, the class member documentation should have the same style. | ||
Line 13: | Line 13: | ||
== Class Documentation == | == Class Documentation == | ||
Class documentation is generated using the [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#class-command ] command and the name of the class as the first argument. | Class documentation is generated using the [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#class-command] command and the name of the class as the first argument. | ||
<code> | <code> | ||
Line 47: | Line 47: | ||
Some required context commands are: | Some required context commands are: | ||
''' [http://doc-snapshot.qt.io/qt5-stable/qdoc/11-qdoc-commands-specialcontent.html#brief-command ] - the class' brief description. '''mandatory | ''' [http://doc-snapshot.qt.io/qt5-stable/qdoc/11-qdoc-commands-specialcontent.html#brief-command] - the class' brief description. '''mandatory | ||
* [http://doc-snapshot.qt.io/qt5-stable/qdoc/16-qdoc-commands-status.html#since-command ] - the version to which the class was added . '''mandatory''' (see '''Note''' section about backdating APIs) | * [http://doc-snapshot.qt.io/qt5-stable/qdoc/16-qdoc-commands-status.html#since-command] - the version to which the class was added . '''mandatory''' (see '''Note''' section about backdating APIs) | ||
* [http://doc-snapshot.qt.io/qt5-stable/qdoc/19-qdoc-commands-grouping.html#inmodule-command ] - associates a class to a Qt module. '''mandatory''' | * [http://doc-snapshot.qt.io/qt5-stable/qdoc/19-qdoc-commands-grouping.html#inmodule-command] - associates a class to a Qt module. '''mandatory''' | ||
* [http://doc-snapshot.qt.io/qt5-stable/qdoc/16-qdoc-commands-status.html#internal-command ] - marks the class as internal. Internal classes do not appear in the public API documentation. | * [http://doc-snapshot.qt.io/qt5-stable/qdoc/16-qdoc-commands-status.html#internal-command] - marks the class as internal. Internal classes 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.io/#change,43797 | '''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.io/#change,43797 | ||
Line 56: | Line 56: | ||
=== The Brief and Detailed Description === | === The Brief and Detailed Description === | ||
The '''brief description''' is marked with the [http://doc-snapshot.qt.io/qt5-stable/qdoc/11-qdoc-commands-specialcontent.html#brief-command ] 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. | The '''brief description''' is marked with the [http://doc-snapshot.qt.io/qt5-stable/qdoc/11-qdoc-commands-specialcontent.html#brief-command] 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. | ||
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. | 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. | ||
Line 62: | Line 62: | ||
== Member Functions == | == Member Functions == | ||
Typically, function documentation immediately precedes the implementation of the function in the ''.cpp file''. For function documentation that is not immediately above the implementation, the [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#fn-command ] is needed. | Typically, function documentation immediately precedes the implementation of the function in the ''.cpp file''. For function documentation that is not immediately above the implementation, the [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#fn-command] is needed. | ||
<code> | <code> | ||
/*! | /*! | ||
QString & | QString &QString::remove(int position, int n) | ||
Removes n characters from the string, starting at the given position index, and returns a reference to the string. | Removes n characters from the string, starting at the given position index, and returns a reference to the string. | ||
Line 82: | Line 82: | ||
Some common verbs for function documentation: | Some common verbs for function documentation: | ||
''' "Constructs…" - for constructors | ''' "Constructs…" - for constructors''' | ||
* "Destroys…" - for destructors | * "Destroys…" - for destructors | ||
* "Returns…" - for accessor functions | * "Returns…" - for accessor functions | ||
Line 91: | Line 91: | ||
* the actions of the functions | * the actions of the functions | ||
The [http://doc-snapshot.qt.io/qt5-stable/qdoc/04-qdoc-commands-textmarkup.html#a-command ] command marks the parameter in the documentation. | The [http://doc-snapshot.qt.io/qt5-stable/qdoc/04-qdoc-commands-textmarkup.html#a-command] command marks the parameter in the documentation. | ||
The return type documentation should link to the type documentation or be marked with the [http://doc-snapshot.qt.io/qt5-stable/qdoc/04-qdoc-commands-textmarkup.html#c-command ] command in the case of boolean values. | The return type documentation should link to the type documentation or be marked with the [http://doc-snapshot.qt.io/qt5-stable/qdoc/04-qdoc-commands-textmarkup.html#c-command] command in the case of boolean values. | ||
<code> | <code> | ||
Line 102: | Line 102: | ||
</code> | </code> | ||
== Properties == | |||
The property documentation resides immediately above the read function's implementation. The [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html topic-commands] for properties is [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#property-command]. | |||
The property documentation resides immediately above the read function's implementation. The [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html topic-commands] for properties is [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#property-command ]. | |||
<code> | <code> | ||
Line 119: | Line 118: | ||
Property documentation usually starts with "This property…", but these are alternate expressions: | Property documentation usually starts with "This property…", but these are alternate expressions: | ||
''' "This property holds…" | ''' "This property holds…"''' | ||
* "This property describes…" | * "This property describes…" | ||
* "This property represents…" | * "This property represents…" | ||
* "Returns | * "Returns true when… and also when…" - for properties that are read. | ||
* "Sets the…" - for properties that configure a type. | * "Sets the…" - for properties that configure a type. | ||
Line 129: | Line 128: | ||
* accepted values for the property | * accepted values for the property | ||
* the default value of the property | * the default value of the property | ||
Similar to functions, the default type may be linked or marked with the '''' command. | Similar to functions, the default type may be linked or marked with the '''' command.''' | ||
An example of a value range style is: | An example of a value range style is: | ||
<code>The values range from .0 (no blur) to maximumRadius (maximum blur). By default, the property is set to .0 (no blur).<code> | <code>The values range from .0 (no blur) to maximumRadius (maximum blur). By default, the property is set to .0 (no blur).</code> | ||
== Signals, Notifiers, and Slots == | == Signals, Notifiers, and Slots == | ||
The [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html topic command] for signals, notifiers, and slots | The [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html topic command] for signals, notifiers, and slots | ||
is [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#fn-command ]. Signal documentation state when they are triggered or emitted. | is [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#fn-command]. Signal documentation state when they are triggered or emitted. | ||
< | <code> | ||
/*! | /*! | ||
QAbstractTransition::triggered() | QAbstractTransition::triggered() | ||
Line 146: | Line 145: | ||
onTransition() has been called). | onTransition() has been called). | ||
*/ | */ | ||
<code> | </code> | ||
Signal documentation typically begin with "This signal is triggered when…". Here are alternate styles: | Signal documentation typically begin with "This signal is triggered when…". Here are alternate styles: | ||
''' "This signal is triggered when…" | ''' "This signal is triggered when…"''' | ||
* "Triggered when…" | * "Triggered when…" | ||
* "Emitted when…" | * "Emitted when…" | ||
Line 159: | Line 158: | ||
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. | 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. | ||
< | <code> | ||
/*! | /*! | ||
QSpinBox::value | QSpinBox::value | ||
Line 168: | Line 167: | ||
signal which includes the spin box's prefix and suffix. | signal which includes the spin box's prefix and suffix. | ||
*/ | */ | ||
<code> | </code> | ||
== Enums, Namespaces, and other Types == | |||
Enums, namespaces, and macros have a [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html topic-command] for their documentation: | Enums, namespaces, and macros have a [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html topic-command] for their documentation: | ||
''' [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#enum-command ] | ''' [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#enum-command]''' | ||
* [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#typedef-command ] | * [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#typedef-command] | ||
* [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#macro-command ] | * [http://doc-snapshot.qt.io/qt5-stable/qdoc/13-qdoc-commands-topics.html#macro-command] | ||
The language style for these types mention that they are an enum or a macro and | The language style for these types mention that they are an enum or a macro and | ||
continues with the type description. | continues with the type description. | ||
For enumerations, the [http://doc-snapshot.qt.io/qt5-stable/qdoc/10-qdoc-commands-tablesandlists.html#value-command ] command is used to list the values. QDoc creates a table containing the enum values. | For enumerations, the [http://doc-snapshot.qt.io/qt5-stable/qdoc/10-qdoc-commands-tablesandlists.html#value-command] command is used to list the values. QDoc creates a table containing the enum values. | ||
< | <code> | ||
/*! | /*! | ||
QSql::TableType | QSql::TableType | ||
Line 193: | Line 191: | ||
AllTables All of the above. | AllTables All of the above. | ||
*/ | */ | ||
</code> |
Latest revision as of 11:36, 18 January 2018
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.
Though there are exceptions, these guidelines should be followed. Keeping that in mind, at least be consistent within the page. Meaning, the class member documentation should have the same style.
To generate the documentation, QDoc goes through the source code and generates documentation for C++ types such as classes. QDoc then associates member functions, properties, and other types to the appropriate class.
Note that the documentation must be in the implementation files such as .cpp files.
Class Documentation
Class documentation is generated using the [1] command and the name of the class as the first argument.
/*!
QCache
A template class that provides a cache.
QtCore
tools
shared
QCachelt;Key, Tgt; 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 required context commands are:
[2] - the class' brief description. mandatory
- [3] - the version to which the class was added . mandatory (see Note section about backdating APIs)
- [4] - associates a class to a Qt module. mandatory
- [5] - marks the class as internal. Internal classes 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.io/#change,43797
The Brief and Detailed Description
The brief description is marked with the [6] 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.
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, function documentation immediately precedes the implementation of the function in the .cpp file. For function documentation that is not immediately above the implementation, the [7] is needed.
/*!
QString &QString::remove(int position, int n)
Removes n characters from the string, starting at the given position index, and returns a reference to the string.
If the specified position index is within the string, but position + n is beyond the end of the string, the string is
truncated at the specified position.
qstring/main.cpp 37
insert(), replace()
*/
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
The function documentation must document:
- the return type
- the parameters
- the actions of the functions
The [8] command marks the parameter in the documentation. The return type documentation should link to the type documentation or be marked with the [9] command in the case of boolean values.
/*!
Returns rue if a QScroller object was already created for target; alse otherwise.
scroller()
*/
Properties
The property documentation resides immediately above the read function's implementation. The topic-commands for properties is [10].
/*!
QVariantAnimation::duration
the duration of the animation
This property describes the duration in milliseconds of the
animation. The default duration is 250 milliseconds.
QAbstractAnimation::duration()
*/
Property documentation usually starts with "This property…", but these are alternate expressions: "This property holds…"
- "This property describes…"
- "This property represents…"
- "Returns true when… and also when…" - for properties that are read.
- "Sets the…" - for properties that configure a type.
Property documentation must include:
- description and behavior of the property
- accepted values for the property
- the default value of the property
Similar to functions, the default type may be linked or marked with the ' command.
An example of a value range style is:
The values range from .0 (no blur) to maximumRadius (maximum blur). By default, the property is set to .0 (no blur).
Signals, Notifiers, and Slots
The topic command for signals, notifiers, and slots is [11]. Signal documentation state when they are triggered or emitted.
/*!
QAbstractTransition::triggered()
This signal is emitted when the transition has been triggered (after
onTransition() has been called).
*/
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: [12]
The language style for these types mention that they are an enum or a macro and continues with the type description.
For enumerations, the [15] 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.
*/