/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #pragma once #include "cpptools_global.h" #include #include #include namespace CppTools { class CPPTOOLS_EXPORT ClangDiagnosticConfig { public: enum class TidyMode { Disabled = 0, ChecksPrefixList, File }; Core::Id id() const; void setId(const Core::Id &id); QString displayName() const; void setDisplayName(const QString &displayName); QStringList clangOptions() const; void setClangOptions(const QStringList &options); QString clangTidyChecks() const; void setClangTidyChecks(const QString &checks); TidyMode clangTidyMode() const; void setClangTidyMode(TidyMode mode); QString clazyChecks() const; void setClazyChecks(const QString &checks); bool isReadOnly() const; void setIsReadOnly(bool isReadOnly); bool useBuildSystemWarnings() const; void setUseBuildSystemWarnings(bool useBuildSystemWarnings); bool operator==(const ClangDiagnosticConfig &other) const; bool operator!=(const ClangDiagnosticConfig &other) const; private: Core::Id m_id; QString m_displayName; QStringList m_clangOptions; TidyMode m_clangTidyMode = TidyMode::Disabled; QString m_clangTidyChecks; QString m_clazyChecks; bool m_isReadOnly = false; bool m_useBuildSystemWarnings = false; }; using ClangDiagnosticConfigs = QVector; } // namespace CppTools