2009-09-30 17:43:21 +02:00
|
|
|
#include "qmleditorconstants.h"
|
2009-09-24 12:54:53 +02:00
|
|
|
#include "qmlfilewizard.h"
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QTextStream>
|
|
|
|
|
|
2009-09-30 17:43:21 +02:00
|
|
|
using namespace QmlEditor;
|
2009-09-24 12:54:53 +02:00
|
|
|
|
|
|
|
|
QmlFileWizard::QmlFileWizard(const BaseFileWizardParameters ¶meters,
|
|
|
|
|
QObject *parent):
|
|
|
|
|
Core::StandardFileWizard(parameters, parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Core::GeneratedFiles QmlFileWizard::generateFilesFromPath(const QString &path,
|
|
|
|
|
const QString &name,
|
|
|
|
|
QString * /*errorMessage*/) const
|
|
|
|
|
|
|
|
|
|
{
|
2009-09-30 17:43:21 +02:00
|
|
|
const QString mimeType = QLatin1String(Constants::QMLEDITOR_MIMETYPE);
|
2009-09-24 12:54:53 +02:00
|
|
|
const QString fileName = Core::BaseFileWizard::buildFileName(path, name, preferredSuffix(mimeType));
|
|
|
|
|
|
|
|
|
|
Core::GeneratedFile file(fileName);
|
2009-09-30 17:43:21 +02:00
|
|
|
file.setEditorKind(QLatin1String(Constants::C_QMLEDITOR));
|
2009-09-24 12:54:53 +02:00
|
|
|
file.setContents(fileContents(fileName));
|
|
|
|
|
|
|
|
|
|
return Core::GeneratedFiles() << file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString QmlFileWizard::fileContents(const QString &fileName) const
|
|
|
|
|
{
|
|
|
|
|
const QString baseName = QFileInfo(fileName).completeBaseName();
|
|
|
|
|
QString contents;
|
|
|
|
|
QTextStream str(&contents);
|
|
|
|
|
// str << CppTools::AbstractEditorSupport::licenseTemplate();
|
|
|
|
|
|
|
|
|
|
str << QLatin1String("import Qt 4.6\n")
|
|
|
|
|
<< QLatin1String("\n")
|
|
|
|
|
<< QLatin1String("Rectangle {\n")
|
|
|
|
|
<< QLatin1String(" width: 640\n")
|
|
|
|
|
<< QLatin1String(" height: 480\n")
|
|
|
|
|
<< QLatin1String("}\n");
|
|
|
|
|
|
|
|
|
|
return contents;
|
|
|
|
|
}
|