/**************************************************************************** ** ** 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. ** ****************************************************************************/ #include "clangtoolsplugin.h" #include "clangtoolsconfigwidget.h" #include "clangtoolsconstants.h" #include "clangtoolsprojectsettingswidget.h" #include "clangtidyclazytool.h" #include "clangtoolsprojectsettings.h" #ifdef WITH_TESTS #include "clangtoolspreconfiguredsessiontests.h" #include "clangtoolsunittests.h" #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ProjectExplorer; namespace ClangTools { namespace Internal { class ClangToolsOptionsPage : public Core::IOptionsPage { public: explicit ClangToolsOptionsPage() { setId(Constants::SETTINGS_PAGE_ID); setDisplayName(QCoreApplication::translate( "ClangTools::Internal::ClangToolsOptionsPage", "Clang Tools")); setCategory("T.Analyzer"); setDisplayCategory(QCoreApplication::translate("Analyzer", "Analyzer")); setCategoryIcon(Analyzer::Icons::SETTINGSCATEGORY_ANALYZER); } QWidget *widget() override { if (!m_widget) m_widget = new ClangToolsConfigWidget(ClangToolsSettings::instance()); return m_widget; } void apply() override { ClangToolsSettings::instance()->writeSettings(); } void finish() override { delete m_widget; } private: QPointer m_widget; }; class ClangToolsPluginPrivate { public: ClangTidyClazyTool clangTidyClazyTool; ClangToolsOptionsPage optionsPage; ClangToolsProjectSettingsManager settingsManager; }; ClangToolsPlugin::~ClangToolsPlugin() { delete d; } bool ClangToolsPlugin::initialize(const QStringList &arguments, QString *errorString) { Q_UNUSED(arguments); Q_UNUSED(errorString); d = new ClangToolsPluginPrivate; auto panelFactory = new ProjectPanelFactory(); panelFactory->setPriority(100); panelFactory->setDisplayName(tr("Clang Tools")); panelFactory->setCreateWidgetFunction([](Project *project) { return new ProjectSettingsWidget(project); }); ProjectPanelFactory::registerFactory(panelFactory); return true; } QVector ClangToolsPlugin::createTestObjects() const { QVector tests; #ifdef WITH_TESTS tests << new PreconfiguredSessionTests; tests << new ClangToolsUnitTests; #endif return tests; } } // namespace Internal } // namespace ClangTools