diff --git a/cmake/CLangFormat.cmake b/cmake/CLangFormat.cmake index 88c45cec0..2cb046bbe 100644 --- a/cmake/CLangFormat.cmake +++ b/cmake/CLangFormat.cmake @@ -16,7 +16,7 @@ set(EXCLUDED_DIRS # third-party directories zxcvbn/ - http/qhttp/ + http/ streams/QtIOCompressor # objective-c directories autotype/mac @@ -28,6 +28,11 @@ set(EXCLUDED_FILES streams/qtiocompressor.h gui/KMessageWidget.h gui/KMessageWidget.cpp + gui/MainWindowAdaptor.h + gui/MainWindowAdaptor.cpp + sshagent/bcrypt_pbkdf.cpp + sshagent/blf.h + sshagent/blowfish.c tests/modeltest.cpp tests/modeltest.h # objective-c files diff --git a/src/autotype/AutoType.h b/src/autotype/AutoType.h index 55adac7d1..ad60bd76c 100644 --- a/src/autotype/AutoType.h +++ b/src/autotype/AutoType.h @@ -1,4 +1,4 @@ - /* +/* * Copyright (C) 2012 Felix Geyer * Copyright (C) 2017 KeePassXC Team * diff --git a/src/autotype/windows/AutoTypeWindows.cpp b/src/autotype/windows/AutoTypeWindows.cpp index 3ff2343b9..c3c2c30a5 100644 --- a/src/autotype/windows/AutoTypeWindows.cpp +++ b/src/autotype/windows/AutoTypeWindows.cpp @@ -173,6 +173,7 @@ void AutoTypePlatformWin::sendKey(Qt::Key key, bool isKeyDown) ::SendInput(1, &in, sizeof(INPUT)); } +// clang-format off // // Translate qt key code to windows virtual key code // see: https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731%28v=vs.85%29.aspx @@ -426,6 +427,7 @@ BOOL AutoTypePlatformWin::isExtendedKey(DWORD nativeKeyCode) return FALSE; } } +// clang-format on // // Translate qt key modifiers to windows modifiers diff --git a/src/autotype/xcb/KeySymMap.h b/src/autotype/xcb/KeySymMap.h index 55022feb5..2e73da530 100644 --- a/src/autotype/xcb/KeySymMap.h +++ b/src/autotype/xcb/KeySymMap.h @@ -4,6 +4,7 @@ const int AutoTypePlatformX11::m_unicodeToKeysymLen = 632; +// clang-format off const uint AutoTypePlatformX11::m_unicodeToKeysymKeys[] = { 0x0100, 0x0101, 0x0102, 0x0103, 0x0104, 0x0105, 0x0106, 0x0107, 0x0108, 0x0109, 0x010a, 0x010b, 0x010c, 0x010d, 0x010e, 0x010f, @@ -167,3 +168,4 @@ const uint AutoTypePlatformX11::m_unicodeToKeysymValues[] = { 0x04ac, 0x04d4, 0x04ad, 0x04d5, 0x04ae, 0x04d6, 0x04d7, 0x04d8, 0x04d9, 0x04da, 0x04db, 0x04dc, 0x04a6, 0x04dd, 0x04a5, 0x04b0 }; +// clang-format on diff --git a/src/core/DatabaseIcons.cpp b/src/core/DatabaseIcons.cpp index 4e62f79e4..e53c6aa2c 100644 --- a/src/core/DatabaseIcons.cpp +++ b/src/core/DatabaseIcons.cpp @@ -22,6 +22,8 @@ DatabaseIcons* DatabaseIcons::m_instance(nullptr); const int DatabaseIcons::IconCount(69); const int DatabaseIcons::ExpiredIconIndex(45); + +// clang-format off const char* const DatabaseIcons::m_indexToName[] = { "C00_Password.png", "C01_Package_Network.png", @@ -93,6 +95,7 @@ const char* const DatabaseIcons::m_indexToName[] = { "C67_Certificate.png", "C68_BlackBerry.png" }; +// clang-format on QImage DatabaseIcons::icon(int index) { diff --git a/src/format/KdbxWriter.h b/src/format/KdbxWriter.h index 5aa41766e..8fec336df 100644 --- a/src/format/KdbxWriter.h +++ b/src/format/KdbxWriter.h @@ -23,7 +23,9 @@ #include +// clang-format off #define CHECK_RETURN_FALSE(x) if (!(x)) return false; +// clang-format on class QIODevice; class Database; diff --git a/src/format/KeePass2.h b/src/format/KeePass2.h index 67779121f..a46df7fa9 100644 --- a/src/format/KeePass2.h +++ b/src/format/KeePass2.h @@ -1,19 +1,19 @@ /* - * Copyright (C) 2010 Felix Geyer - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 or (at your option) - * version 3 of the License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ + * Copyright (C) 2010 Felix Geyer + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 or (at your option) + * version 3 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ #ifndef KEEPASSX_KEEPASS2_H #define KEEPASSX_KEEPASS2_H diff --git a/tests/TestKdbx4.cpp b/tests/TestKdbx4.cpp index f0ef1bfa8..1d50b8e7f 100644 --- a/tests/TestKdbx4.cpp +++ b/tests/TestKdbx4.cpp @@ -182,6 +182,7 @@ void TestKdbx4::testFormat400Upgrade() QCOMPARE(*targetDb->rootGroup()->customData(), *sourceDb->rootGroup()->customData()); } +// clang-format off void TestKdbx4::testFormat400Upgrade_data() { QTest::addColumn("kdfUuid"); @@ -213,6 +214,7 @@ void TestKdbx4::testFormat400Upgrade_data() QTest::newRow("AES-KDF + Twofish + CustomData") << KeePass2::KDF_AES_KDBX4 << KeePass2::CIPHER_TWOFISH << true << kdbx4; QTest::newRow("AES-KDF (legacy) + Twofish + CustomData") << KeePass2::KDF_AES_KDBX3 << KeePass2::CIPHER_TWOFISH << true << kdbx4; } +// clang-format on void TestKdbx4::testUpgradeMasterKeyIntegrity() { diff --git a/tests/TestKeePass2Format.cpp b/tests/TestKeePass2Format.cpp index a493c6173..266047bec 100644 --- a/tests/TestKeePass2Format.cpp +++ b/tests/TestKeePass2Format.cpp @@ -357,6 +357,7 @@ void TestKeePass2Format::testXmlBroken() QCOMPARE(hasError, expectError); } +// clang-format off void TestKeePass2Format::testXmlBroken_data() { QTest::addColumn("baseName"); @@ -381,6 +382,7 @@ void TestKeePass2Format::testXmlBroken_data() QTest::newRow("BrokenDifferentEntryHistoryUuid (strict)") << "BrokenDifferentEntryHistoryUuid" << true << true; QTest::newRow("BrokenDifferentEntryHistoryUuid (not strict)") << "BrokenDifferentEntryHistoryUuid" << false << false; } +// clang-format on void TestKeePass2Format::testXmlEmptyUuids() { diff --git a/tests/TestKeys.cpp b/tests/TestKeys.cpp index f39d3aa74..e2b7010b1 100644 --- a/tests/TestKeys.cpp +++ b/tests/TestKeys.cpp @@ -110,6 +110,7 @@ void TestKeys::testFileKey() QCOMPARE(db->metadata()->name(), QString("%1 Database").arg(name)); } +// clang-format off void TestKeys::testFileKey_data() { QTest::addColumn("type"); @@ -120,6 +121,7 @@ void TestKeys::testFileKey_data() QTest::newRow("Hex") << FileKey::FixedBinaryHex << QString("Hex"); QTest::newRow("Hashed") << FileKey::Hashed << QString("Hashed"); } +// clang-format on void TestKeys::testCreateFileKey() {