Qt Creator Manual
  • Qt Creator

API Lookup

  • Class index
  • Function index
  • Modules
  • Namespaces
  • Global Declarations
  • QML elements

Qt Topics

  • Programming with Qt
  • Device UIs & Qt Quick
  • UI Design with Qt
  • Cross-platform and Platform-specific
  • Platform-specific info
  • Qt and Key Technologies
  • How-To's and Best Practices

Examples

  • Examples
  • Tutorials
  • Demos
  • QML Examples
  • Home
  • Qt Creator Coding Rules
  • A
  • A
  • A
  • Print

[Previous: User Interface Text Guidelines] [Next: Qt Creator API Reference]

Contents

  • Submitting Code
  • Binary and Source Compatibility
  • Code Constructs
  • Formatting
  • Capitalizing Identifiers
  • Whitespace
  • Pointers and References
  • Operator Names and Parentheses
  • Function Names and Parentheses
  • Keywords
  • Braces
  • Parentheses
  • Line Breaks
  • Declarations
  • Declaring Variables
  • Namespaces
  • Patterns and Practices
  • Namespacing
  • Passing File Names
  • Plugin Extension Points
  • Using the Global Object Pool
  • C++ Features
  • Null Pointers
  • Using QObject
  • File Headers
  • Including Headers
  • Casting
  • Compiler and Platform-specific Issues
  • Esthetics
  • Inheriting from Template or Tool Classes
  • Conventions for Public Header Files
  • Class Member Names
  • Documentation

Qt Creator Coding Rules

Note: This document is work in progress.

The coding rules aim to guide Qt Creator developers, to help them write understandable and maintainable code, and to minimize confusion and surprises.

As usual, rules are not set in stone. If you have a good reason to break one, do so. But first make sure that at least some other developers agree with you.

To contribute to the main Qt Creator source, you should comply to the following rules:

  • The most important rule is: KISS (keep it short and simple). Always choose the simpler implementation option over the more complicated one. This makes maintenance a lot easier.
  • Write good C++ code. That is, readable, well commented when necessary, and object-oriented.
  • Take advantage of Qt. Do not re-invent the wheel. Think about which parts of your code are generic enough that they might be incorporated into Qt instead of Qt Creator.
  • Adapt the code to the existing structures in Qt Creator. If you have improvement ideas, discuss them with other developers before writing the code.
  • Follow the guidelines in Code Constructs, Formatting, and Patterns and Practices.
  • Document interfaces. Right now we use qdoc, but changing to doxygen is being considered.

Submitting Code

To submit code to Qt Creator, you must understand the tools and mechanics as well as the philosophy behind Qt development. For more information about how to set up the development environment for working on Qt Creator and how to submit code and documentation for inclusion, see Guidelines for Contributions to the Qt Project.

Binary and Source Compatibility

The following list describes how the releases are numbered and defines binary compatibility and source code compatibility between releases:

  • Qt Creator 2.0.0 is a major release, Qt Creator 2.1.0 is a minor release, and Qt Creator 2.1.3 is a patch release.
  • Backward binary compatibility means that code linked to an earlier version of the library still works.
  • Forward binary compatibility means that code linked to a newer version of the library works with an older library.
  • Source code compatibility means that code compiles without modification.

We do not currently guarantee API nor ABI (application binary interface) compatibility between major releases and minor releases.

However, we try to preserve backward and forward binary compatibility and forward and backward source code compatibility in patch releases, so:

  • Do not add or remove any public API (e.g. global functions,x public/protected/private methods).
  • Do not reimplement methods (not even inlines, nor protected or private methods).
  • Check Binary Compatibility Workarounds for ways to preserve binary compatibility.

Note: This is not yet mandatory.

For more information on binary compatibility, see Binary Compatibility Issues With C++.

Code Constructs

Follow the guidelines for code constructs to make the code faster and clearer. In addition, the guidelines allow you to take advantage of the strong type checking in C++.

  • Prefer preincrement to postincrement whenever possible. Preincrement is potentially faster than postincrement. Just think about the obvious implementations of pre/post-increment. This rule applies to decrement too:
     ++T;
     --U;
    
     -NOT-
    
     T++;
     U--;
  • Try to minimize evaluation of the same code over and over. This is aimed especially at loops:
     Container::iterator end = large.end();
     for (Container::iterator it = large.begin(); it != end; ++it) {
             ...;
     }
    
     -NOT-
    
     for (Container::iterator it = large.begin();
          it != large.end(); ++it) {
             ...;
     }
  • You can use the Qt foreach loop in non-time-critical code with a Qt container. It is a nice way to keep line noise down and to give the loop variable a proper name:
         foreach (QWidget *widget, container)
             doSomething(widget);
    
         -NOT-
    
         Container::iterator end = container.end();
         for (Container::iterator it = container.begin(); it != end; ++it)
             doSomething(*it);

    Make the loop variable const, if possible. This might prevent unnecessary detaching of shared data:

         foreach (const QString &name, someListOfNames)
             doSomething(name);
    
         - NOT -
    
         foreach (QString name, someListOfNames)
             doSomething(name);

Formatting

Capitalizing Identifiers

Use camel case in identifiers.

Capitalize the first word in an identifier as follows:

  • Class names begin with a capital letter.
  • Function names begin with a lower case letter.
  • Variable names begin with a lower case letter.
  • Enum names begin with a capital letter. Enum values use lower case and contain some part of the name of the enum type.

Whitespace

  • Use four spaces for indentation, no tabs.
  • Use blank lines to group statements together where suited.
  • Always use only one blank line.

Pointers and References

For pointers or references, always use a single space before an asterisk (*) or an ampersand (&), but never after. Avoid C-style casts when possible:

 char *blockOfMemory = (char *)malloc(data.size());
 char *blockOfMemory = reinterpret_cast<char *>(malloc(data.size()));

 -NOT-

 char* blockOfMemory = (char* ) malloc(data.size());

Of course, in this particulare case, using new might be an even better option.

Operator Names and Parentheses

Do not use spaces between operator names and function names. The equation marks (==) are a part of the function name, and therefore, spaces make the declaration look like an expression:

 operator==(type)

 -NOT-

 operator == (type)

Function Names and Parentheses

Do not use spaces between function names and parentheses:

 void mangle()

 -NOT-

 void mangle ()

Keywords

Always use a single space after a keyword, and before a curly brace:

 if (foo) {
 }

 -NOT-

 if(foo){
 }

Braces

As a base rule, place the left curly brace on the same line as the start of the statement:

 if (codec) {
 }

 -NOT-

 if (codec)
 {
 }

Exception: Function implementations and class declarations always have the left brace in the beginning of a line:

 static void foo(int g)
 {
     qDebug("foo: %i", g);
 }

 class Moo
 {
 };

Use curly braces when the body of a conditional statement contains more than one line, and also if a single line statement is somewhat complex. Otherwise, omit them:

 if (address.isEmpty())
     return false;

 for (int i = 0; i < 10; ++i)
     qDebug("%i", i);

 -NOT-

 if (address.isEmpty()) {
     return false;
 }

 for (int i = 0; i < 10; ++i) {
     qDebug("%i", i);
 }

Exception 1: Use braces also if the parent statement covers several lines or if it wraps:

 if (address.isEmpty()
         || !isValid()
         || !codec) {
     return false;
 }

Note: This could be re-written as:

 if (address.isEmpty())
     return false;

 if (!isValid())
     return false;

 if (!codec)
     return false;

Exception 2: Use braces also in if-then-else blocks where either the if-code or the else-code covers several lines:

 if (address.isEmpty()) {
     --it;
 } else {
     qDebug("%s", qPrintable(address));
     ++it;
 }

 -NOT-

 if (address.isEmpty())
     --it;
 else {
     qDebug("%s", qPrintable(address));
     ++it;
 }
 if (a) {
     if (b)
         ...
     else
         ...
 }

 -NOT-

 if (a)
     if (b)
         ...
     else
         ...

Use curly braces when the body of a conditional statement is empty:

 while (a) {}

 -NOT-

 while (a);

Parentheses

Use parentheses to group expressions:

 if ((a && b) || c)

 -NOT-

 if (a && b || c)
 (a + b) & c

 -NOT-

 a + b & c

Line Breaks

  • Keep lines shorter than 100 characters.
  • Insert line breaks if necessary.
  • Commas go at the end of a broken line.
  • Operators start at the beginning of the new line.
             if (longExpression
                 || otherLongExpression
                 || otherOtherLongExpression) {
             }
    
             -NOT-
    
             if (longExpression ||
                 otherLongExpression ||
                 otherOtherLongExpression) {
             }

Declarations

  • Use this order for the access sections of your class: public, protected, private. The public section is interesting for every user of the class. The private section is only of interest for the implementors of the class (you).
  • Avoid declaring global objects in the declaration file of the class. If the same variable is used for all objects, use a static member.
  • Use class instead of struct. Some compilers mangle that difference into the symbol names and spit out warnings if a struct declaration is followed by a class definition. To avoid ongoing changes from one to the other we declare class the prefered way.

Declaring Variables

  • Avoid global variables of class type to rule out initialization order problems. Consider using Q_GLOBAL_STATIC if they cannot be avoided.
  • Declare global string literals as
             const char aString[] = "Hello";
  • Avoid short names (such as, a, rbarr, nughdeget) whenever possible. Use single-character variable names only for counters and temporaries, where the purpose of the variable is obvious.
  • Declare each variable on a separate line:
             QString a = "Joe";
             QString b = "Foo";
    
             -NOT-
    
             QString a = "Joe", b = "Foo";

    Note: QString a = "Joe" formally calls a copy constructor on a temporary that is constructed from a string literal. Therefore, it is potentially more expensive than direct construction by QString a("Joe"). However, the compiler is allowed to elide the copy (even if this has side effects), and modern compilers typically do so. Given these equal costs, Qt Creator code favours the '=' idiom as it is in line with the traditional C-style initialization, it cannot be mistaken as function declaration, and it reduces the level of nested parantheses in more initializations.

  • Avoid abbreviations:
             int height;
             int width;
             char *nameOfThis;
             char *nameOfThat;
    
             -NOT-
    
             int a, b;
             char *c, *d;
  • Wait with declaring a variable until it is needed. This is especially important when initialization is done at the same time.

Namespaces

  • Put the left curly brace on the same line as the
  • Do not indent declarations or definitions inside.
  • Optional, but recommended if the namespaces spans more than a few lines: Add a comment after the right curly brace repeating the namespace.
         namespace MyPlugin {
    
         void someFunction() { ... }
    
         }  // namespace MyPlugin
  • As an exception, if there is only a single class declaration inside the namespace, all can go on a single line:
         namespace MyPlugin { class MyClass; }

Patterns and Practices

Namespacing

Read Qt In Namespace and keep in mind that all of Qt Creator is namespace aware code.

The namespacing policy within Qt Creator is as follows:

  • Classes/Symbols of a library or plugin that are exported for use of other libraries or plugins are in a namespace specific to that library/plugin, e.g. MyPlugin.
  • Classes/Symbols of a library or plugin that are not exported are in an additional Internal namespace, e.g. MyPlugin::Internal.

Passing File Names

Qt Creator API expects file names in portable format, that is, with slashes (/) instead of backslashes (\) even on Windows. To pass a file name from the user to the API, convert it with QDir::fromNativeSeparators first. To present a file name to the user, convert it back to native format with QDir::toNativeSeparators.

When comparing file names, consider using FileManager::fixFileName which makes sure that paths are clean and absolute and also takes Windows case-insensitivity into account (even if it is an expensive operation).

Plugin Extension Points

A plugin extension point is an interface that is provided by one plugin to be implemented by others. The plugin then retrieves all implementations of the interface and uses them. That is, they extend the functionality of the plugin. Typically, the implementations of the interface are put into the global object pool during plugin initialization, and the plugin retrieves them from the object pool at the end of plugin initialization.

For example, the Find plugin provides the FindFilter interface for other plugins to implement. With the FindFilter interface, additional search scopes can be added, that appear in the Advanced Search dialog. The Find plugin retrieves all FindFilter implementations from the global object pool and presents them in the dialog. The plugin forwards the actual search request to the correct FindFilter implementation, which then performs the search.

Using the Global Object Pool

You can add objects to the global object pool via ExtensionSystem::PluginManager::addObject(), and retrieve objects of a specific type again via ExtensionSystem::PluginManager::getObjects(). This should mostly be used for implementations of Plugin Extension Points.

Note: Do not put a singleton into the pool, and do not retrieve it from there. Use the singleton pattern instead.

C++ Features

  • Do not use exceptions, unless you know what you do.
  • Do not use RTTI (Run-Time Type Information; that is, the typeinfo struct, the dynamic_cast or the typeid operators, including throwing exceptions), unless you know what you do.
  • Do not use virtual inheritance, unless you know what you do.
  • Use templates wisely, not just because you can.

    Hint: Use the compile autotest to see whether a C++ feature is supported by all compilers in the test farm.

  • All code is ASCII only (7-bit characters only, run man ascii if unsure)
    • Rationale: We have too many locales inhouse and an unhealthy mix of UTF-8 and Latin1 systems. Usually, characters > 127 can be broken without you even knowing by clicking Save in your favourite editor.
    • For strings: Use \nnn (where nnn is the octal representation of whatever locale you want your string in) or \xnn (where nn is hexadecimal). For example: QString s = QString::fromUtf8("\213\005");
    • For umlauts in documentation, or other non-ASCII characters, either use the qdoc \unicode command or use the relevant macro. For example: \uuml for ü.
  • Use static keywords instead of anonymous namespaces whenever possible. A name localized to the compilation unit with static is guaranteed to have internal linkage. For names declared in anonymous namespaces, the C++ standard unfortunately mandates external linkage (ISO/IEC 14882, 7.1.1/6, or see various discussions about this on the gcc mailing lists).

Null Pointers

Using a plain zero (0) for null pointer constants is always correct and least effort to type.

 void *p = 0;

 -NOT-

 void *p = NULL;

 -NOT-

 void *p = '\0';

 -NOT-

 void *p = 42 - 7 * 6;

Note: As an exception, imported third party code as well as code interfacing the native APIs (src/support/os_*) can use NULL.

Using QObject

  • Every QObject subclass must have a Q_OBJECT macro, even if it does not have signals or slots, if it is intended to be used with qobject_cast<>. See also Casting.
  • Normalize the arguments for signals and slots (see QMetaObject::normalizedSignature inside connect statements to safely make signal and slot lookup a few cycles faster. You can use $QTDIR/util/normalize to normalize existing code.

File Headers

If you create a new file, the top of the file should include a header comment equal to the one found in other source files of Qt Creator.

Including Headers

  • Use the following format to include Qt headers: #include <QtCore/QWhatEver>.
  • Arrange includes in an order that goes from specific to generic to ensure that the headers are self-contained. For example:
    • #include "myclass.h"
    • #include "otherclassinplugin.h"
    • #include <otherplugin/someclass.h>
    • #include <QtModule/QtClass>
    • #include <stdthing>
    • #include <system.h>
  • Enclose headers from other plugins in square brackets (<>) rather than quotation marks ("") to make it easier to spot external dependencies in the sources.
  • Add empty lines between long blocks of peer headers and try to arrange the headers in alphabetic order within a block.

Casting

  • Avoid C casts, prefer C++ casts (static_cast, const_cast, reinterpret_cast) Both reinterpret_cast and C-style casts are dangerous, but at least reinterpret_cast will not remove the const modifier.
  • Do not use dynamic_cast, use qobject_cast for QObjects, or refactor your design, for example by introducing a type() method (see QListWidgetItem), unless you know what you do.

Compiler and Platform-specific Issues

  • Be extremely careful when using the question mark operator. If the returned types are not identical, some compilers generate code that crashes at runtime (you will not even get a compiler warning):
             QString s;
             // crash at runtime - QString vs. const char *
             return condition ? s : "nothing";
  • Be extremely careful about alignment.

    Whenever a pointer is cast such that the required alignment of the target is increased, the resulting code might crash at runtime on some architectures. For example, if a const char * is cast to a const int *, it will crash on machines where integers have to be aligned at two-byte or four-byte boundaries.

    Use a union to force the compiler to align variables correctly. In the example below, you can be sure that all instances of AlignHelper are aligned at integer-boundaries:

             union AlignHelper
             {
                 char c;
                 int i;
             };
  • Anything that has a constructor or needs to run code to be initialized cannot be used as global object in library code, since it is undefined when that constructor or code will be run (on first usage, on library load, before main() or not at all).

    Even if the execution time of the initializer is defined for shared libraries, you will get into trouble when moving that code in a plugin or if the library is compiled statically:

             // global scope
    
             -NOT-
    
             // Default constructor needs to be run to initialize x:
             static const QString x;
    
             -NOT-
    
             // Constructor that takes a const char * has to be run:
             static const QString y = "Hello";
    
             -NOT-
    
             QString z;
    
             -NOT-
    
             // Call time of foo() undefined, might not be called at all:
             static const int i = foo();

    Things you can do:

             // global scope
             // No constructor must be run, x set at compile time:
             static const char x[] = "someText";
    
             // y will be set at compile time:
             static int y = 7;
    
             // Will be initialized statically, no code being run.
             static MyStruct s = {1, 2, 3};
    
             // Pointers to objects are OK, no code needed to be run to
             // initialize ptr:
             static QString *ptr = 0;
    
             // Use Q_GLOBAL_STATIC to create static global objects instead:
    
             Q_STATIC_GLOBAL(QString, s)
    
             void foo()
             {
                 s()->append("moo");
             }

    Note: Static objects in function scope are no problem. The constructor will be run the first time the function is entered. The code is not reentrant, though.

  • A char is signed or unsigned dependent on the architecture. Use signed char or uchar if you explicitely want a signed or unsigned char. The following code will break on PowerPC, for example:
             // Condition is always true on platforms where the
             // default is unsigned:
             if (c >= 0) {
                 ...
             }
  • Avoid 64-bit enum values. The AAPCS (Procedure Call Standard for the ARM Architecture) embedded ABI hard codes all enum values to a 32-bit integer.
  • Do not mix const and non-const iterators. This will silently crash on broken compilers.
             for (Container::const_iterator it = c.constBegin(); it != c.constEnd(); ++it)
    
             -NOT-
    
             for (Container::const_iterator it = c.begin(); it != c.end(); ++it)

Esthetics

  • Prefer enums to define const over static const int or defines. Enumeration values will be replaced by the compiler at compile time, resulting in faster code. Defines are not namespace safe.
  • Prefer verbose argument names in headers. Qt Creator will show the argument names in their completion box. It will look better in the documentation.

Inheriting from Template or Tool Classes

Inheriting from template or tool classes has the following potential pitfalls:

  • The destructors are not virtual, which can lead to memory leaks.
  • The symbols are not exported (and mostly inline), which can lead to symbol clashes.

For example, library A has class Q_EXPORT X: public QList<QVariant> {}; and library B has class Q_EXPORT Y: public QList<QVariant> {};. Suddenly, QList symbols are exported from two libraries which results in a clash.

Conventions for Public Header Files

Our public header files have to survive the strict settings of some of our users. All installed headers have to follow these rules:

  • No C style casts (-Wold-style-cast). Use static_cast, const_cast or reinterpret_cast, for basic types, use the constructor form: int(a) instead of (int)a. For more information, see Casting.
  • No float comparisons (-Wfloat-equal). Use qFuzzyCompare to compare values with a delta. Use qIsNull to check whether a float is binary 0, instead of comparing it to 0.0, or, prefered, move such code into an implementation file.
  • Do not hide virtual methods in subclasses ({-Woverloaded-virtual}). If the baseclass A has a virtual int val() and subclass B an overload with the same name, int val(int x), the A val function is hidden. Use the using keyword to make it visible again, and add the following silly workaround for broken compilers:
                class B: public A
                {
                #ifdef Q_NO_USING_KEYWORD
                inline int val() { return A::val(); }
                #else
                using A::val;
                #endif
                };
  • Do not shadow variables (-Wshadow).
  • Avoid things like this->x = x; if possible.
  • Do not give variables the same name as functions declared in your class.
  • To improve code readability, always check whether a preprocessor variable is defined before probing its value (-Wundef).
               #if defined(Foo) && Foo == 0
    
               -NOT-
    
               #if Foo == 0
    
               -NOT-
    
               #if Foo - 0 == 0
  • When checking for a preprocessor define using the defined operator, always include the variable name in parentheses.
               #if defined(Foo)
    
               -NOT-
    
               #if defined Foo

Class Member Names

We use the "m_" prefix convention, except for public struct members (typically in *Private classes and the very rare cases of really public structures). The d and q pointers are exempt from the "m_" rule.

The d pointers ("Pimpls") are named "d", not "m_d". The type of the d pointer in class Foo is FooPrivate *, where FooPrivate is declared in the same namespace as Foo, or if Foo is exported, in the corresponding {Internal} namespace.

If needed (for example when the private object needs to emit signals of the proper class), FooPrivate can be a friend of Foo.

If the private class needs a backreference to the real class, the pointer is named q, and its type is Foo *. (Same convention as in Qt: "q" looks like an inverted "d".)

Do not use smart pointers to guard the d pointer as it imposes a compile and link time overhead and creates fatter object code with more symbols, leading, for instance to slowed down debugger startup:

         ############### bar.h

         #include <QScopedPointer>
         //#include <memory>

         struct BarPrivate;

         struct Bar
         {
             Bar();
             ~<">



gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.