2018-03-10 18:45:06 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2018 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 "cmakespecificsettings.h"
|
|
|
|
|
|
2021-09-22 15:57:27 +02:00
|
|
|
#include <coreplugin/icore.h>
|
2021-03-23 15:58:16 +01:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/layoutbuilder.h>
|
|
|
|
|
|
|
|
|
|
using namespace Utils;
|
|
|
|
|
|
2018-03-10 18:45:06 +01:00
|
|
|
namespace CMakeProjectManager {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2021-03-23 15:58:16 +01:00
|
|
|
CMakeSpecificSettings::CMakeSpecificSettings()
|
|
|
|
|
{
|
2021-09-22 15:57:27 +02:00
|
|
|
// TODO: fixup of QTCREATORBUG-26289 , remove in Qt Creator 7 or so
|
|
|
|
|
Core::ICore::settings()->remove("CMakeSpecificSettings/NinjaPath");
|
|
|
|
|
|
2021-03-23 15:58:16 +01:00
|
|
|
setSettingsGroup("CMakeSpecificSettings");
|
|
|
|
|
setAutoApply(false);
|
|
|
|
|
|
2021-03-26 16:54:40 +01:00
|
|
|
registerAspect(&afterAddFileSetting);
|
|
|
|
|
afterAddFileSetting.setSettingsKey("ProjectPopupSetting");
|
|
|
|
|
afterAddFileSetting.setDefaultValue(AfterAddFileAction::AskUser);
|
|
|
|
|
afterAddFileSetting.addOption(tr("Ask about copying file paths"));
|
|
|
|
|
afterAddFileSetting.addOption(tr("Do not copy file paths"));
|
|
|
|
|
afterAddFileSetting.addOption(tr("Copy file paths"));
|
|
|
|
|
afterAddFileSetting.setToolTip(tr("Determines whether file paths are copied "
|
2021-03-23 15:58:16 +01:00
|
|
|
"to the clipboard for pasting to the CMakeLists.txt file when you "
|
|
|
|
|
"add new files to CMake projects."));
|
|
|
|
|
|
2021-03-26 16:54:40 +01:00
|
|
|
registerAspect(&ninjaPath);
|
|
|
|
|
ninjaPath.setSettingsKey("NinjaPath");
|
2021-09-22 15:57:27 +02:00
|
|
|
// never save this to the settings:
|
|
|
|
|
ninjaPath.setToSettingsTransformation(
|
|
|
|
|
[](const QVariant &) { return QVariant::fromValue(QString()); });
|
2021-03-23 15:58:16 +01:00
|
|
|
|
2021-03-26 16:54:40 +01:00
|
|
|
registerAspect(&packageManagerAutoSetup);
|
|
|
|
|
packageManagerAutoSetup.setSettingsKey("PackageManagerAutoSetup");
|
|
|
|
|
packageManagerAutoSetup.setDefaultValue(true);
|
|
|
|
|
packageManagerAutoSetup.setLabelText(tr("Package manager auto setup"));
|
|
|
|
|
packageManagerAutoSetup.setToolTip(tr("Add the CMAKE_PROJECT_INCLUDE_BEFORE variable "
|
2021-03-23 15:58:16 +01:00
|
|
|
"pointing to a CMake script that will install dependencies from the conanfile.txt, "
|
|
|
|
|
"conanfile.py, or vcpkg.json file from the project source directory."));
|
|
|
|
|
|
2021-03-26 16:54:40 +01:00
|
|
|
registerAspect(&askBeforeReConfigureInitialParams);
|
|
|
|
|
askBeforeReConfigureInitialParams.setSettingsKey("AskReConfigureInitialParams");
|
|
|
|
|
askBeforeReConfigureInitialParams.setDefaultValue(true);
|
|
|
|
|
askBeforeReConfigureInitialParams.setLabelText(tr("Ask before re-configuring with "
|
2021-03-23 15:58:16 +01:00
|
|
|
"initial parameters"));
|
2018-03-10 18:45:06 +01:00
|
|
|
}
|
|
|
|
|
|
2021-03-23 15:58:16 +01:00
|
|
|
// CMakeSpecificSettingsPage
|
|
|
|
|
|
|
|
|
|
CMakeSpecificSettingsPage::CMakeSpecificSettingsPage(CMakeSpecificSettings *settings)
|
|
|
|
|
{
|
|
|
|
|
setId("CMakeSpecificSettings");
|
2021-07-09 14:51:22 +02:00
|
|
|
setDisplayName(::CMakeProjectManager::Internal::CMakeSpecificSettings::tr("CMake"));
|
2021-03-23 15:58:16 +01:00
|
|
|
setCategory(ProjectExplorer::Constants::BUILD_AND_RUN_SETTINGS_CATEGORY);
|
2021-03-26 16:54:40 +01:00
|
|
|
setSettings(settings);
|
|
|
|
|
|
|
|
|
|
setLayouter([settings](QWidget *widget) {
|
|
|
|
|
CMakeSpecificSettings &s = *settings;
|
|
|
|
|
using namespace Layouting;
|
|
|
|
|
Column {
|
|
|
|
|
Group {
|
2021-07-09 14:51:22 +02:00
|
|
|
Title(::CMakeProjectManager::Internal::CMakeSpecificSettings::tr("Adding Files")),
|
2021-03-26 16:54:40 +01:00
|
|
|
s.afterAddFileSetting
|
|
|
|
|
},
|
|
|
|
|
s.packageManagerAutoSetup,
|
|
|
|
|
s.askBeforeReConfigureInitialParams,
|
|
|
|
|
Stretch(),
|
|
|
|
|
}.attachTo(widget);
|
|
|
|
|
});
|
2018-03-10 18:45:06 +01:00
|
|
|
}
|
2021-03-23 15:58:16 +01:00
|
|
|
|
|
|
|
|
} // Internal
|
|
|
|
|
} // CMakeProjectManager
|