Esse documento descreve o estilo de código recomendado para kdelibs. Ninguém é forçado a usá-lo, mas para ter uma formatação consistente dos seus arquivos de código-fonte é recomendado fazer uso dele.
Em síntese: O estilo de código da Kdelibs segue o estilo de código do Qt 4.
Contents |
Exemplo:
// wrong KProgressBar *prbar; QString prtxt, errstr; // certo KProgressBar *downloadProgressBar; QString progressText; QString errorString;
Exemplo:
// errado QString* myString; if(true){ } // certo QString *myString; if (true) { }
Como uma regra básica, a abertura da chave fica na mesma linha do comando que inicia o bloco.
Exemplo:
// errado if (true) { } // certo if (true) { }
Exceção: A chave de abertura das implementações de função, declarações de classes, struct's e namespace's deve ser sempre colocada no início da linha seguinte.
Exemplo:
void debug(int i) { qDebug("foo: %i", i); } class Debug { };
Use as chaves mesmo quando o corpo de um bloco condicional contiver apenas uma linha.
Exemplo:
// errado if (true) return true; for (int i = 0; i < 10; ++i) qDebug("%i", i); // certo if (true) { return true; } for (int i = 0; i < 10; ++i) { qDebug("%i", i); }
Case labels ficam na mesma coluna do switch
Exemplo:
switch (myEnum) { case Value1: doSomething(); break; case Value2: doSomethingElse(); // fall through default: defaultHandling(); break; }
Tente manter linhas menores que 100 caracteres, inserindo quebras de linha conforme for necessário.
Exemplo:
// errado #include <QString> // certo #include <QtCore/QString>
Você pode usar astyle (>=1.23) para formatar o código ou testá-lo se você tiver seguido esse documento. Execute o seguinte comando:
astyle --indent=spaces=4 --brackets=linux \
--indent-labels --pad=oper --unpad=paren \
--one-line=keep-statements --convert-tabs \
--indent-preprocessor \
`find -type f -name '*.cpp'-or -name '*.cc' -or -name '*.h'`Com astyle (>=2.01) você precisa executar o seguinte comando:
astyle --indent=spaces=4 --brackets=linux \
--indent-labels --pad-oper --unpad-paren --pad-header \
--keep-one-line-statements --convert-tabs \
--indent-preprocessor \
`find -type f -name '*.cpp' -or -name '*.cc' -or -name '*.h'`Um shell script relacionado pode ser encontrado para unix em kdesdk/scripts/astyle-kdelibs e para windows em kdesdk/scripts/astyle-kdelibs.bat.
O diretório "scripts" no módulo kdesdk contém, entre outras coisas, algumas adições úteis para os editores de texto Emacs e Vim que tornam mais fácil editar código do KDE code.
O diretório kde-emacs contém um conjunto de mapeamento de teclas, macros e código útil em geral. Isso é compatível com GNU Emacs e XEmacs.
To start using kde-emacs, add the following to your .emacs:
(add-to-list 'load-path "/path/to/kde-emacs") (require 'kde-emacs)
Many settings can be changed by editing the "kde-emacs" group via M-x customize-group.
For more information, including what the key bindings are and what additional settings you could add to your .emacs, please check kde-emacs.el itself.
You can find a vim script in kdesdk/scripts/kde-devel-vim.vim that helps you to keep the coding style correct. In addition to defaulting to the kdelibs coding style it will automatically use the correct style for Solid and kdepim code. If you want to add rules for other projects feel free to add them in the SetCodingStyle function.
To use the script, include it in your ~/.vimrc like this:
source /path/to/kde/sources/kdesdk/scripts/kde-devel-vim.vim
Document started by Urs Wolfer. Some parts of this document have been adopted from the Qt Coding Style document posted by Zack Rusin on kde-core-devel.