Writing Qt Documentation: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
[[Category:Developing Qt::Documentation]]<br />[toc align_right="yes" depth="3"]
[[Category:Developing Qt::Documentation]]
[toc align_right="yes" depth="3"]


= Writing Qt Documentation =
= Writing Qt Documentation =
Line 5: Line 6:
This document contains some documentation style guidelines that have been used when documenting Qt over the past few years.
This document contains some documentation style guidelines that have been used when documenting Qt over the past few years.


It may be helpful to refer to the online "qdoc manual":http://doc.qt.io/qt-5/qdoc-index.html
It may be helpful to refer to the online "qdoc manual":http://doc.qt.digia.com/qdoc.


See [[Building_Qt_Documentation]] for instructions on the usual way to build the Qt documentation.
See [[Building_Qt_Documentation]] for instructions on the usual way to build the Qt documentation.
Line 11: Line 12:
See [[Troubleshooting Qt Documentation]] for advice on what to look for if your documentation is not processed correctly by qdoc.
See [[Troubleshooting Qt Documentation]] for advice on what to look for if your documentation is not processed correctly by qdoc.


See "Developing Qt Documentation":http://wiki.qt.io/Category:Developing_Qt::Documentation for information about the documentation process.<br />h2. API documentation
See "Developing Qt Documentation":http://wiki.qt.io/Category:Developing_Qt::Documentation for information about the documentation process.
h2. API documentation


== General ==
== General ==
Line 35: Line 37:


* Brief overview
* Brief overview
* Start the main body of text with something like, "A <plain language name> is a..."
* Start the main body of text with something like, "A <plain language name> is a…"
* Alternative classes, e.g.
* Alternative classes, e.g.
** <code>QTable</code> / <code>QListView</code>
** <code>QTable</code> / <code>QListView</code>
Line 51: Line 53:
Some examples of Qt documentation:
Some examples of Qt documentation:


* "QString":http://doc.qt.io/qt-5/qstring.html covers the use cases but is a little too technical at the start.
* "QString":http://doc.qt.digia.com/4.6/qstring.html covers the use cases but is a little too technical at the start.
* "QDir":http://doc.qt.io/qt-5/qdir.html is an example of a newer style where we used titles to split up different use cases.
* "QDir":http://doc.qt.digia.com/4.6/qdir.html is an example of a newer style where we used titles to split up different use cases.
* "QMenu":http://doc.qt.io/qt-5/qmenu.html is brief, but to the point, though it could use some code examples.
* "QMenu":http://doc.qt.digia.com/4.6/qmenu.html is brief, but to the point, though it could use some code examples.
* "QDialog":http://doc.qt.io/qt-5/qdialog.html cover various important concepts but should really address the practicalities of subclassing QDialog to implement your own dialog.
* "QDialog":http://doc.qt.digia.com/4.6/qdialog.html cover various important concepts but should really address the practicalities of subclassing QDialog to implement your own dialog.
* "QPushButton":http://doc.qt.io/qt-5/qpushbutton.html is a reasonable example of documentation for a simple widget.
* "QPushButton":http://doc.qt.digia.com/4.6/qpushbutton.html is a reasonable example of documentation for a simple widget.
* "QGraphicsScene":http://doc.qt.io/qt-5/qgraphicsscene.html is OK but could really use some code examples.
* "QGraphicsScene":http://doc.qt.digia.com/4.6/qgraphicsscene.html is OK but could really use some code examples.
* "QPainter":http://doc.qt.io/qt-5/qpainter.html is quite good at showing what the class does (in the documentation for the functions), but the main description tends to contain lists of functions. A lot of that should have been moved into an overview, in my opinion.
* "QPainter":http://doc.qt.digia.com/4.6/qpainter.html is quite good at showing what the class does (in the documentation for the functions), but the main description tends to contain lists of functions. A lot of that should have been moved into an overview, in my opinion.


I'm sure I haven't found the "best" examples of documentation. These are just a few cases that I didn't consider to be in need of radical improvement.
I'm sure I haven't found the "best" examples of documentation. These are just a few cases that I didn't consider to be in need of radical improvement.
Line 78: Line 80:
** Property descriptions should start with a lower case letter and have no ending period.
** Property descriptions should start with a lower case letter and have no ending period.
** Class descriptions should be complete sentences.
** Class descriptions should be complete sentences.
* Constructors should read something like, "Constructs the ... with the given parent."
* Constructors should read something like, "Constructs the with the given parent."
* Introduce arguments/parameters using the following two phrases:
* Introduce arguments/parameters using the following two phrases:
** ... is specified by ...
** is specified by
** ... in the given ...
** in the given
* '''Do not use'''
* '''Do not use'''
** ... is given by ...
** is given by


== Use of parameter names ==
== Use of parameter names ==
Line 89: Line 91:
'''Don't use natural language phrases that make the operation ambiguous:'''
'''Don't use natural language phrases that make the operation ambiguous:'''


<code><br />void Treasure::setValue(SomeClass *value)<br /></code>
<code>
void Treasure::setValue(SomeClass *value)
</code>


Sets the ''value'' of the treasure.
Sets the ''value'' of the treasure.
Line 97: Line 101:
Sets the value of the treasure to ''value''.
Sets the value of the treasure to ''value''.


The above use relies on a coincidence between the action on the instance and<br />the value to use. It could also give the impression that <code>value</code> is<br />changed in some way.
The above use relies on a coincidence between the action on the instance and
the value to use. It could also give the impression that <code>value</code> is
changed in some way.


'''Avoid overspecifying definitions:'''
'''Avoid overspecifying definitions:'''


<code><br />MyWidget::MyWidget(const QString &amp;name;, QWidget *parent)<br /></code>
<code>
MyWidget::MyWidget(const QString &amp;name;, QWidget *parent)
</code>


Constructs a new widget with name ''name'' and parent ''parent''.
Constructs a new widget with name ''name'' and parent ''parent''.
Line 111: Line 119:
'''Don't change commonly used parameter names to suit local documentation requirements:'''
'''Don't change commonly used parameter names to suit local documentation requirements:'''


<code><br />void CanvasItem::setBoundingRect(const QRect &amp;rectangle);<br /></code>
<code>
void CanvasItem::setBoundingRect(const QRect &amp;rectangle);
</code>


Sets the bounding ''rectangle'' of the widget.
Sets the bounding ''rectangle'' of the widget.


The original <code>rect</code> parameter should not be renamed to ''rectangle''.<br />Instead we would write something explicit:
The original <code>rect</code> parameter should not be renamed to ''rectangle''.
Instead we would write something explicit:


Sets the bounding rectangle of the widget to ''rect''.
Sets the bounding rectangle of the widget to ''rect''.
Line 154: Line 165:
* Accelerators and translations
* Accelerators and translations
** Use translation strings rather than hardcoded accelerator flags; e.g. <code>tr("Ctrl+Q")</code> rather than <code>CTRL + Key_Q</code>
** Use translation strings rather than hardcoded accelerator flags; e.g. <code>tr("Ctrl+Q")</code> rather than <code>CTRL + Key_Q</code>
** Note that Qt provides "enum values for standard shortcuts":http://doc.qt.io/qt-5/qkeysequence.html#StandardKey-enum which should be used in preference
** Note that Qt provides "enum values for standard shortcuts":http://doc.qt.digia.com/stable/qkeysequence.html#StandardKey-enum which should be used in preference
* Comments:
* Comments:
** Introductory comment for each file. What the file is for.
** Introductory comment for each file. What the file is for.
Line 168: Line 179:


<pre>
<pre>
Renamed some "flag enum" types to be more consistent (i.e.
Renamed some "flag enum" types to be more consistent (i.e.
the enum type associated to a flag type through Q_DECLARE_FLAGS).
the enum type associated to a flag type through Q_DECLARE_FLAGS).


Usually, the enum type isn't used directly; only the flags type
Usually, the enum type isn't used directly; only the flags type
is. Still, sometimes we do use it, and then it's important to have
is. Still, sometimes we do use it, and then it's important to have
a good name. Also, the documentation shows that name.
a good name. Also, the documentation shows that name.


The rule I've tried to follow were:
The rule I've tried to follow were:


1. If the flags type is a plural (e.g. Options, Actions, Flags),
1. If the flags type is a plural (e.g. Options, Actions, Flags),
  make the enum type a singular (e.g. Option, Action, Flag).
make the enum type a singular (e.g. Option, Action, Flag).


2. Otherwise, make the enum type by appending "Flag" to the
2. Otherwise, make the enum type by appending "Flag" to the
  flags type (e.g. Alignment is the flags type, AlignmentFlag
flags type (e.g. Alignment is the flags type, AlignmentFlag
  is the enum type).
is the enum type).


Notice that "Flag" is a singular. This is because an enum of that  
Notice that "Flag" is a singular. This is because an enum of that
type can only store one flag at a time (whereas a variable of the
type can only store one flag at a time (whereas a variable of the
"flags" type can store many).
"flags" type can store many).
</pre>
</pre>



Revision as of 09:07, 25 February 2015

[toc align_right="yes" depth="3"]

Writing Qt Documentation

This document contains some documentation style guidelines that have been used when documenting Qt over the past few years.

It may be helpful to refer to the online "qdoc manual":http://doc.qt.digia.com/qdoc.

See Building_Qt_Documentation for instructions on the usual way to build the Qt documentation.

See Troubleshooting Qt Documentation for advice on what to look for if your documentation is not processed correctly by qdoc.

See "Developing Qt Documentation":http://wiki.qt.io/Category:Developing_Qt::Documentation for information about the documentation process. h2. API documentation

General

  • Write complete sentences for items in lists.
  • Use only real URLs if absolutely necessary, otherwise use "http://example.com". Use documents to create fake pages for external documents that you can refer to by title.
  • Indent using spaces, not tabs.

Use of language

  • Hyphenation is not normally needed nor used.
  • Shorthand is discouraged.
    • For example, "and" should be used in preference to "&" unless there is a very good reason.
  • Each word in a title (either a page title or a section title) should start with an upper case letter, except for the "most common prepositions":http://en.wikipedia.org/wiki/Preposition (of, to, in, for, with and on) and "coordinating conjunctions":http://en.wikipedia.org/wiki/Grammatical_conjunction (for, and, nor, but, or, yet, and so).
    • For example, "Anchor Margins and Offsets" not "Anchor margins and offsets" (lower case is wrong) or "Anchor Margins And Offsets" ("and" should be lower case).

Overview/modules

  • Shows/describes how classes in the module are used together.
  • Describes the main concepts and features of groups of classes.

Class descriptions

  • Brief overview
  • Start the main body of text with something like, "A <plain language name> is a…"
  • Alternative classes, e.g.
    • QTable
      
      /
      QListView
      
    • QListBox
      
      /
      QComboBox
      
    • QDial
      
      /
      QSlider
      
      /
      QSpinBox
      
  • Patterns of use
    • Minimal
    • Realistic: quotes from snippets in the doc directory, and examples in the qt/examples directory
  • Concepts; e.g.
    • QTextEdit
      
      : lines vs. paragraphs
    • In Qt 3,
      QCanvas
      
      is abstract;
      QCanvasView
      
      actually displays the canvas
  • Details
    • Describes and groups together functions with common features

Some examples of Qt documentation:

I'm sure I haven't found the "best" examples of documentation. These are just a few cases that I didn't consider to be in need of radical improvement.

The guidelines I learned basically followed the "pyramid" approach of providing a bit of simple information, then some more detailed information, followed by even more complex information about each class.

  1. Describe what the class is/does.
  2. Refer the reader to other relevant classes or documents describing the concepts.
  3. Show a simple use case, if possible.
  4. Describe the features, beginning with the simplest, most commonly used ones, showing relevant, simple code snippets. Try to group these into categories.
  5. Describe more complex features that may involve interaction with other classes.
  6. Discuss subclassing if relevant, and describe what the developer needs to take care of when doing this.
  7. Put links to relevant documents, perhaps in a section of their own, but at least in a see-also line at the end of the detailed description.

There should, of course, be links to functions/methods and other classes throughout. Images are also good to include, either in terms of showing what a widget looks like or to illustrate a concept.

Function descriptions

  • descriptions:
    • Property descriptions should start with a lower case letter and have no ending period.
    • Class descriptions should be complete sentences.
  • Constructors should read something like, "Constructs the … with the given parent."
  • Introduce arguments/parameters using the following two phrases:
    • … is specified by …
    • … in the given …
  • Do not use
    • … is given by …

Use of parameter names

Don't use natural language phrases that make the operation ambiguous:

void Treasure::setValue(SomeClass *value)

Sets the value of the treasure.

It would be better to write something explicit:

Sets the value of the treasure to value.

The above use relies on a coincidence between the action on the instance and

the value to use. It could also give the impression that

value

is

changed in some way.

Avoid overspecifying definitions:

MyWidget::MyWidget(const QString &amp;name;, QWidget *parent)

Constructs a new widget with name name and parent parent.

Maybe something like the following would be acceptable:

Constructs a new widget with the given name and parent.

Don't change commonly used parameter names to suit local documentation requirements:

void CanvasItem::setBoundingRect(const QRect &amp;rectangle);

Sets the bounding rectangle of the widget.

The original

rect

parameter should not be renamed to rectangle.

Instead we would write something explicit:

Sets the bounding rectangle of the widget to rect.

Miscellaneous

  • Use
    and
    to omit sections from the documentation.
    • Remember that they are still present in the documentation source text.
  • Use
    to omit enum values from the documentation, but still allow qdoc to process them without complaint.

Style of example code

See WritingQtExamples for more detailed guidance about writing and documenting examples.

Objectives

Examples should be

  • Simple
  • Bland (not necessarily)
  • Cover the key concepts

In header files

  • Give parameter names for used parameters.
  • Write declared variables of the same type on separate lines.
  • No underscores in names.
  • Only include header files that are absolutely necessary.

In C++ files

  • Order of actions in the constructor:
    • Create each widget and set options for it.
    • Set the connections.
    • Create layout and insert items.
    • Set the title of top-level widgets with
      setWindowTitle()
      
      .
  • Accelerators and translations
  • Comments:
    • Introductory comment for each file. What the file is for.
    • No comments where the purpose of the code is clear.
    • General comments about functions go outside the function in a multiline comment.
    • What: the code itself.
    • Why: reason something is needed - high level. (Outside function.)
    • How: the way these actions are performed. (Outside function.)

Variable naming

From a commit message made on 2004/05/28 16:08:34:

 Renamed some "flag enum" types to be more consistent (i.e.
 the enum type associated to a flag type through Q_DECLARE_FLAGS).

Usually, the enum type isn't used directly; only the flags type
 is. Still, sometimes we do use it, and then it's important to have
 a good name. Also, the documentation shows that name.

The rule I've tried to follow were:

1. If the flags type is a plural (e.g. Options, Actions, Flags),
 make the enum type a singular (e.g. Option, Action, Flag).

2. Otherwise, make the enum type by appending "Flag" to the
 flags type (e.g. Alignment is the flags type, AlignmentFlag
 is the enum type).

Notice that "Flag" is a singular. This is because an enum of that
 type can only store one flag at a time (whereas a variable of the
 "flags" type can store many).

Documentation structure

  • Necessary files to build the example.
  • Overview document (to be converted by qdoc to some other format).