Qt Writing Guidelines: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
Line 33: Line 33:
|ergo
|ergo
|}
|}
New in Qt 6.8, the Qt Reference Documentation is available in translated formats. The translated sets are
available at https://doc.qt.io/qt-6/index.html and by clicking on the ''globe icon'' at the top-right side.


== Vale Support ==
== Vale Support ==
Line 40: Line 45:


== Writing API Documentation ==
== Writing API Documentation ==
We document Qt APIs in the sources and use QDoc to generate the HTML for the doc.qt.io site and an offline version for Qt Creator.
We document Qt APIs in the sources and use '''QDoc''' to generate the HTML for the doc.qt.io site and an offline version for Qt Creator.


C++ and QML documentation follow a similar style, but there are differences. See the following pages for documenting APIs.
C++ and QML documentation follow a similar style, but there are differences. See the following pages for documenting APIs.
Line 47: Line 52:
* [https://doc.qt.io/qt-6/qtwritingstyle-qml.html QML Documentation Style]
* [https://doc.qt.io/qt-6/qtwritingstyle-qml.html QML Documentation Style]


 
For designing Qt APIs, visit:
For designing Qt APIs, visit the following pages


* [[API Design Principles]]
* [[API Design Principles]]
Line 54: Line 58:
== Using QDoc to Write Documentation ==
== Using QDoc to Write Documentation ==


These QDoc guidelines complement the [http://doc.qt.io/qt-5/qdoc-index.html QDoc Manual]
These '''QDoc''' guidelines complement the [http://doc.qt.io/qt-5/qdoc-index.html QDoc Manual]


* [[QDocStyleGuidelines | Style Guidelines]] - proper use of commands, code blocks, markup, and indentation
* [[QDocStyleGuidelines | Style Guidelines]] - proper use of commands, code blocks, markup, and indentation
Line 64: Line 68:
== Documenting Examples ==
== Documenting Examples ==


* [[ExamplesDocumentationStyle| Examples and Tutorials Style]] - writing Example Documentation and Tutorials
* [[ExamplesDocumentationStyle| Examples and Tutorials Style]] - writing example documentation and tutorials
* [[QDocExamples | Integrating Examples]] - configuring an example for integration into the Qt repositories
* [[QDocExamples | Integrating Examples]] - configuring an example for integration into the Qt repositories
* [[Qt6/Example-Guideline]] - do's and don'ts for examples
* [[Qt6/Example-Guideline]] - do's and don'ts for examples
Line 79: Line 83:


QDoc changes should pass the [[QDocRegressionTesting]]
QDoc changes should pass the [[QDocRegressionTesting]]
== Using images in documentation ==
== Using Images in Documentation ==
It can be useful to include images in documentation, such as screenshots, diagrams, icons, or even animated images and embedded YouTube videos. [https://contribute.qt-project.org/quips/21 QUIP-21] describes the requirements and considerations for use of images in Qt's documentation.
It can be useful to include images in documentation, such as screenshots, diagrams, icons, or even animated images and embedded YouTube videos. [https://contribute.qt-project.org/quips/21 QUIP-21] describes the requirements and considerations for use of images in Qt's documentation.
As the images must be checked in to git, the binary blob size is a point of some concern. Prefer the ''webp'' image format when possible, and crop out unnecessary details to reduce the overall size.

Revision as of 14:38, 14 November 2024

The Qt Writing Guidelines contains information about writing Qt documentation in a consistent way. Though there are exceptions, maintain the consistency level outlined in the guidelines or the existing Qt documentation.

This guideline is maintained by the Qt Documentation Team, with members across the different Qt Group sites. Visit their page at: Category:Developing Qt::Documentation

Language Style

We use the Microsoft Writing Style Guide in the Qt documentation. Essentially, use clear and direct language in American English. We write to a diverse audience and we need to communicate Qt topics in an approachable and understandable manner.


Here are some specifics for Qt:

  1. Use active voice, not passive. Passive does not make a sentence formal, but unnecessarily weakens the sentence. See Verbs
  2. Use the pronoun you in to address the reader when appropriate. See Nouns and Pronouns.
  3. Use because instead of "since" or "as". See Use simple words, concise sentences.
  4. Use a serial comma, also known as the Oxford comma. See Commas
  5. Use the correct spelling and case for Qt Products. See Qt Terms and Concepts
  6. Use US spelling and avoid latin abbreviations. See Use US spelling and avoid non-English words. Here is a summary :
Use Instead of
that is i.e.
namely viz.
therefore ergo


New in Qt 6.8, the Qt Reference Documentation is available in translated formats. The translated sets are

available at https://doc.qt.io/qt-6/index.html and by clicking on the globe icon at the top-right side.

Vale Support

Vale is a linter that detects improper use of language and can make suggestions in-place. Vale has command-line interface and is also available for Qt Creator and VS Code

For more information about Vale, visit Setting Up Vale.

Writing API Documentation

We document Qt APIs in the sources and use QDoc to generate the HTML for the doc.qt.io site and an offline version for Qt Creator.

C++ and QML documentation follow a similar style, but there are differences. See the following pages for documenting APIs.

For designing Qt APIs, visit:

Using QDoc to Write Documentation

These QDoc guidelines complement the QDoc Manual

Documenting Examples

Including Images

The requirements for images in Qt documentation is outlined in QUIP-21.

  • QUIP-21 Using images in Qt documentation

Qt 5 Documentation Requirements

For Qt 5 documentation, or those who create documentation using Qt 5, see the following pages:

QDoc changes should pass the QDocRegressionTesting

Using Images in Documentation

It can be useful to include images in documentation, such as screenshots, diagrams, icons, or even animated images and embedded YouTube videos. QUIP-21 describes the requirements and considerations for use of images in Qt's documentation.