Files
qt-creator/src/plugins/genericprojectmanager/genericprojectwizard.cpp

212 lines
7.6 KiB
C++
Raw Normal View History

/****************************************************************************
2009-03-20 14:57:12 +01:00
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing
2009-03-20 14:57:12 +01:00
**
** This file is part of Qt Creator.
2009-03-20 14:57:12 +01:00
**
** 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 http://www.qt.io/terms-conditions. For further information
** use the contact form at http://www.qt.io/contact-us.
2009-03-20 14:57:12 +01:00
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, The Qt Company gives you certain additional
** rights. These rights are described in The Qt Company LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
2009-03-20 14:57:12 +01:00
2009-03-12 17:53:25 +01:00
#include "genericprojectwizard.h"
#include "filesselectionwizardpage.h"
2009-03-13 15:12:54 +01:00
#include <coreplugin/icore.h>
#include <coreplugin/mimedatabase.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/customwizard/customwizard.h>
2009-03-12 18:31:50 +01:00
#include <utils/filewizardpage.h>
2009-03-12 17:53:25 +01:00
#include <QApplication>
#include <QDebug>
#include <QDir>
#include <QFileInfo>
#include <QPainter>
#include <QPixmap>
#include <QStyle>
2009-03-13 15:12:54 +01:00
namespace GenericProjectManager {
namespace Internal {
2009-03-12 17:53:25 +01:00
static const char *const ConfigFileTemplate =
"// Add predefined macros for your project here. For example:\n"
"// #define THE_ANSWER 42\n"
;
2009-03-13 15:12:54 +01:00
//////////////////////////////////////////////////////////////////////////////
//
2009-03-13 15:12:54 +01:00
// GenericProjectWizardDialog
//
2009-03-13 15:12:54 +01:00
//////////////////////////////////////////////////////////////////////////////
GenericProjectWizardDialog::GenericProjectWizardDialog(QWidget *parent) :
Core::BaseFileWizard(parent)
2009-03-12 17:53:25 +01:00
{
setWindowTitle(tr("Import Existing Project"));
2009-03-13 15:12:54 +01:00
// first page
m_firstPage = new Utils::FileWizardPage;
m_firstPage->setTitle(tr("Project Name and Location"));
m_firstPage->setFileNameLabel(tr("Project name:"));
m_firstPage->setPathLabel(tr("Location:"));
addPage(m_firstPage);
2009-03-13 15:12:54 +01:00
// second page
m_secondPage = new FilesSelectionWizardPage(this);
m_secondPage->setTitle(tr("File Selection"));
addPage(m_secondPage);
2009-03-12 17:53:25 +01:00
}
2009-03-13 15:12:54 +01:00
QString GenericProjectWizardDialog::path() const
{
return m_firstPage->path();
}
QStringList GenericProjectWizardDialog::selectedPaths() const
{
return m_secondPage->selectedPaths();
}
QStringList GenericProjectWizardDialog::selectedFiles() const
{
return m_secondPage->selectedFiles();
}
void GenericProjectWizardDialog::setPath(const QString &path)
{
m_firstPage->setPath(path);
}
QString GenericProjectWizardDialog::projectName() const
{
return m_firstPage->fileName();
}
2009-03-13 15:12:54 +01:00
//////////////////////////////////////////////////////////////////////////////
//
// GenericProjectWizard
//
//////////////////////////////////////////////////////////////////////////////
2009-03-13 15:12:54 +01:00
GenericProjectWizard::GenericProjectWizard()
2009-03-12 17:53:25 +01:00
{
setWizardKind(ProjectWizard);
2010-05-14 11:03:30 +02:00
// TODO do something about the ugliness of standard icons in sizes different than 16, 32, 64, 128
{
QPixmap icon(22, 22);
icon.fill(Qt::transparent);
QPainter p(&icon);
p.drawPixmap(3, 3, 16, 16, qApp->style()->standardIcon(QStyle::SP_DirIcon).pixmap(16));
setIcon(icon);
2010-05-14 11:03:30 +02:00
}
setDisplayName(tr("Import Existing Project"));
setId(QLatin1String("Z.Makefile"));
setDescription(tr("Imports existing projects that do not use qmake, CMake or Autotools. "
"This allows you to use Qt Creator as a code editor."));
setCategory(QLatin1String(ProjectExplorer::Constants::IMPORT_WIZARD_CATEGORY));
setDisplayCategory(QLatin1String(ProjectExplorer::Constants::IMPORT_WIZARD_CATEGORY_DISPLAY));
setFlags(Core::IWizardFactory::PlatformIndependent);
2009-03-12 17:53:25 +01:00
}
Core::BaseFileWizard *GenericProjectWizard::create(QWidget *parent, const Core::WizardDialogParameters &parameters) const
2009-03-12 17:53:25 +01:00
{
2009-03-13 15:12:54 +01:00
GenericProjectWizardDialog *wizard = new GenericProjectWizardDialog(parent);
2009-03-12 17:53:25 +01:00
wizard->setPath(parameters.defaultPath());
foreach (QWizardPage *p, parameters.extensionPages())
wizard->addPage(p);
2009-03-12 17:53:25 +01:00
2009-03-13 15:12:54 +01:00
return wizard;
}
2009-03-12 17:53:25 +01:00
Core::GeneratedFiles GenericProjectWizard::generateFiles(const QWizard *w,
QString *errorMessage) const
{
Q_UNUSED(errorMessage)
2009-03-13 15:12:54 +01:00
const GenericProjectWizardDialog *wizard = qobject_cast<const GenericProjectWizardDialog *>(w);
const QString projectPath = wizard->path();
const QDir dir(projectPath);
const QString projectName = wizard->projectName();
const QString creatorFileName = QFileInfo(dir, projectName + QLatin1String(".creator")).absoluteFilePath();
const QString filesFileName = QFileInfo(dir, projectName + QLatin1String(".files")).absoluteFilePath();
const QString includesFileName = QFileInfo(dir, projectName + QLatin1String(".includes")).absoluteFilePath();
const QString configFileName = QFileInfo(dir, projectName + QLatin1String(".config")).absoluteFilePath();
const QStringList paths = wizard->selectedPaths();
2009-03-13 15:12:54 +01:00
Core::MimeType headerTy = Core::MimeDatabase::findByType(QLatin1String("text/x-chdr"));
2009-03-13 15:12:54 +01:00
QStringList nameFilters;
foreach (const Core::MimeGlobPattern &gp, headerTy.globPatterns())
nameFilters.append(gp.pattern());
2009-03-13 15:12:54 +01:00
QStringList includePaths;
foreach (const QString &path, paths) {
QFileInfo fileInfo(path);
2009-03-13 15:12:54 +01:00
QDir thisDir(fileInfo.absoluteFilePath());
if (! thisDir.entryList(nameFilters, QDir::Files).isEmpty()) {
QString relative = dir.relativeFilePath(path);
if (relative.isEmpty())
relative = QLatin1Char('.');
includePaths.append(relative);
}
2009-03-13 15:12:54 +01:00
}
2009-03-12 18:31:50 +01:00
Core::GeneratedFile generatedCreatorFile(creatorFileName);
generatedCreatorFile.setContents(QLatin1String("[General]\n"));
generatedCreatorFile.setAttributes(Core::GeneratedFile::OpenProjectAttribute);
2009-03-12 18:31:50 +01:00
QStringList sources = wizard->selectedFiles();
for (int i = 0; i < sources.length(); ++i)
sources[i] = dir.relativeFilePath(sources[i]);
Core::GeneratedFile generatedFilesFile(filesFileName);
generatedFilesFile.setContents(sources.join(QLatin1Char('\n')));
Core::GeneratedFile generatedIncludesFile(includesFileName);
generatedIncludesFile.setContents(includePaths.join(QLatin1Char('\n')));
Core::GeneratedFile generatedConfigFile(configFileName);
generatedConfigFile.setContents(QLatin1String(ConfigFileTemplate));
2009-03-12 17:53:25 +01:00
2009-03-12 18:31:50 +01:00
Core::GeneratedFiles files;
files.append(generatedFilesFile);
files.append(generatedIncludesFile);
files.append(generatedConfigFile);
files.append(generatedCreatorFile);
2009-03-12 18:31:50 +01:00
return files;
}
bool GenericProjectWizard::postGenerateFiles(const QWizard *w, const Core::GeneratedFiles &l, QString *errorMessage)
2009-03-12 18:31:50 +01:00
{
Q_UNUSED(w);
return ProjectExplorer::CustomProjectWizard::postGenerateOpen(l, errorMessage);
2009-03-12 17:53:25 +01:00
}
} // namespace Internal
} // namespace GenericProjectManager