Are there any official code style specification for Qt programming?
-
Do not know if I misunderstood your question, but I'll answer what I understood.
Each IDE has its form of organization code (indentation), which can be modified in the same settings for the user that the user is accustomed to.
I think the only rule or style you must follow are the specifications of the language you are using, for example, in C + + with a semicolon at the end of lines of code, among other mandatory issues of language and not Qt
-
Maybe this can be helpful:
"Qt Coding Style":http://qt-project.org/wiki/Qt_Coding_Style -
Though there is a unique way to write the codes acceptable by the compiler, it is possible to write in different code style.
For example, in MFC/Microsoft, they use Cxxx for all the classes, such as CMainWindow for Main WIndow class. However, in Qt, it seems they do not use a prefix, use MainWindow for the class and all lower cases mainwindows.cpp for the class implementation file. To make sure our codes are consistent with those generated by the QT IDE automatically, we need to find the code sytle for Qt.