2009-05-11 10:58:04 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2009-05-11 10:58:04 +02:00
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** 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 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2009-05-11 10:58:04 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "qmlnewprojectwizard.h"
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/projectexplorer.h>
|
2009-11-27 10:33:24 +01:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2009-05-11 10:58:04 +02:00
|
|
|
|
2009-11-26 18:03:16 +01:00
|
|
|
#include <QtCore/QTextStream>
|
2009-11-27 10:33:24 +01:00
|
|
|
#include <QtCore/QCoreApplication>
|
2009-05-11 10:58:04 +02:00
|
|
|
|
|
|
|
|
using namespace QmlProjectManager::Internal;
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// QmlNewProjectWizardDialog
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2009-11-26 18:03:16 +01:00
|
|
|
QmlNewProjectWizardDialog::QmlNewProjectWizardDialog(QWidget *parent) :
|
|
|
|
|
ProjectExplorer::BaseProjectWizardDialog(parent)
|
2009-05-11 10:58:04 +02:00
|
|
|
{
|
|
|
|
|
setWindowTitle(tr("New QML Project"));
|
2009-11-26 18:03:16 +01:00
|
|
|
setIntroDescription(tr("This wizard generates a QML application project."));
|
2009-05-11 10:58:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QmlNewProjectWizard::QmlNewProjectWizard()
|
|
|
|
|
: Core::BaseFileWizard(parameters())
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
QmlNewProjectWizard::~QmlNewProjectWizard()
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
Core::BaseFileWizardParameters QmlNewProjectWizard::parameters()
|
|
|
|
|
{
|
|
|
|
|
static Core::BaseFileWizardParameters parameters(ProjectWizard);
|
2009-11-27 10:33:24 +01:00
|
|
|
parameters.setIcon(QIcon(QLatin1String(":/wizards/images/console.png")));
|
2010-01-07 18:17:24 +01:00
|
|
|
parameters.setDisplayName(tr("QML Application"));
|
2009-11-27 10:33:24 +01:00
|
|
|
parameters.setId(QLatin1String("QA.QML Application"));
|
2009-05-11 10:58:04 +02:00
|
|
|
parameters.setDescription(tr("Creates a QML application."));
|
2009-11-27 10:33:24 +01:00
|
|
|
parameters.setCategory(QLatin1String(ProjectExplorer::Constants::PROJECT_WIZARD_CATEGORY));
|
2010-01-07 18:17:24 +01:00
|
|
|
parameters.setDisplayCategory(QCoreApplication::translate("ProjectExplorer", ProjectExplorer::Constants::PROJECT_WIZARD_TR_CATEGORY));
|
2009-05-11 10:58:04 +02:00
|
|
|
return parameters;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWizard *QmlNewProjectWizard::createWizardDialog(QWidget *parent,
|
|
|
|
|
const QString &defaultPath,
|
|
|
|
|
const WizardPageList &extensionPages) const
|
|
|
|
|
{
|
|
|
|
|
QmlNewProjectWizardDialog *wizard = new QmlNewProjectWizardDialog(parent);
|
|
|
|
|
|
|
|
|
|
wizard->setPath(defaultPath);
|
2010-01-07 18:17:24 +01:00
|
|
|
wizard->setProjectName(QmlNewProjectWizardDialog::uniqueProjectName(defaultPath));
|
2009-05-11 10:58:04 +02:00
|
|
|
|
|
|
|
|
foreach (QWizardPage *p, extensionPages)
|
|
|
|
|
wizard->addPage(p);
|
|
|
|
|
|
|
|
|
|
return wizard;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Core::GeneratedFiles QmlNewProjectWizard::generateFiles(const QWizard *w,
|
|
|
|
|
QString *errorMessage) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(errorMessage)
|
|
|
|
|
|
|
|
|
|
const QmlNewProjectWizardDialog *wizard = qobject_cast<const QmlNewProjectWizardDialog *>(w);
|
2010-01-07 18:17:24 +01:00
|
|
|
const QString projectName = wizard->projectName();
|
2009-05-11 10:58:04 +02:00
|
|
|
const QString projectPath = wizard->path() + QLatin1Char('/') + projectName;
|
|
|
|
|
|
|
|
|
|
const QString creatorFileName = Core::BaseFileWizard::buildFileName(projectPath,
|
|
|
|
|
projectName,
|
|
|
|
|
QLatin1String("qmlproject"));
|
|
|
|
|
|
|
|
|
|
const QString mainFileName = Core::BaseFileWizard::buildFileName(projectPath,
|
|
|
|
|
projectName,
|
|
|
|
|
QLatin1String("qml"));
|
|
|
|
|
|
|
|
|
|
QString contents;
|
|
|
|
|
QTextStream out(&contents);
|
2009-05-11 16:15:30 +02:00
|
|
|
|
|
|
|
|
out
|
2009-07-30 03:15:32 +02:00
|
|
|
<< "import Qt 4.6" << endl
|
|
|
|
|
<< endl
|
2009-09-01 12:18:18 +02:00
|
|
|
<< "Rectangle {" << endl
|
2009-05-11 16:15:30 +02:00
|
|
|
<< " width: 200" << endl
|
|
|
|
|
<< " height: 200" << endl
|
|
|
|
|
<< " Text {" << endl
|
|
|
|
|
<< " text: \"Hello World\"" << endl
|
2009-08-13 13:16:10 +02:00
|
|
|
<< " anchors.centerIn: parent" << endl
|
2009-05-11 16:15:30 +02:00
|
|
|
<< " }" << endl
|
2009-05-11 10:58:04 +02:00
|
|
|
<< "}" << endl;
|
|
|
|
|
|
|
|
|
|
Core::GeneratedFile generatedMainFile(mainFileName);
|
|
|
|
|
generatedMainFile.setContents(contents);
|
|
|
|
|
|
|
|
|
|
Core::GeneratedFile generatedCreatorFile(creatorFileName);
|
|
|
|
|
generatedCreatorFile.setContents(projectName + QLatin1String(".qml\n"));
|
|
|
|
|
|
|
|
|
|
Core::GeneratedFiles files;
|
|
|
|
|
files.append(generatedMainFile);
|
|
|
|
|
files.append(generatedCreatorFile);
|
|
|
|
|
|
|
|
|
|
return files;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QmlNewProjectWizard::postGenerateFiles(const Core::GeneratedFiles &l, QString *errorMessage)
|
|
|
|
|
{
|
|
|
|
|
// Post-Generate: Open the project
|
|
|
|
|
const QString proFileName = l.back().path();
|
|
|
|
|
if (!ProjectExplorer::ProjectExplorerPlugin::instance()->openProject(proFileName)) {
|
|
|
|
|
*errorMessage = tr("The project %1 could not be opened.").arg(proFileName);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|