2011-01-10 16:29:06 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2011-01-10 16:29:06 +01:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2011-01-10 16:29:06 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2011-01-10 16:29:06 +01:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2011-01-10 16:29:06 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2011-01-10 16:29:06 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at qt-info@nokia.com.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "qtdesignerformclasscodegenerator.h"
|
|
|
|
|
#include "formclasswizardparameters.h"
|
|
|
|
|
#include "formtemplatewizardpage.h"
|
|
|
|
|
|
|
|
|
|
#include <utils/codegeneration.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <cpptools/abstracteditorsupport.h>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QTextStream>
|
|
|
|
|
#include <QtCore/QSettings>
|
|
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
#include <QtCore/QSharedData>
|
|
|
|
|
|
|
|
|
|
static const char uiMemberC[] = "ui";
|
|
|
|
|
static const char uiNamespaceC[] = "Ui";
|
|
|
|
|
|
|
|
|
|
static const char formClassWizardPageGroupC[] = "FormClassWizardPage";
|
|
|
|
|
static const char translationKeyC[] = "RetranslationSupport";
|
|
|
|
|
static const char embeddingModeKeyC[] = "Embedding";
|
|
|
|
|
|
|
|
|
|
// TODO: These 2 are general coding convention settings and
|
|
|
|
|
// should go to CppTools...
|
|
|
|
|
static const char includeQtModuleKeyC[] = "IncludeQtModule";
|
|
|
|
|
static const char indentNamespaceKeyC[] = "IndentNamespace";
|
|
|
|
|
|
|
|
|
|
static const bool retranslationSupportDefault = false;
|
|
|
|
|
|
|
|
|
|
namespace Designer {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
FormClassWizardGenerationParameters::FormClassWizardGenerationParameters() :
|
|
|
|
|
embedding(PointerAggregatedUiClass),
|
|
|
|
|
retranslationSupport(retranslationSupportDefault),
|
|
|
|
|
includeQtModule(false),
|
|
|
|
|
indentNamespace(false)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FormClassWizardGenerationParameters::fromSettings(const QSettings *settings)
|
|
|
|
|
{
|
|
|
|
|
QString group = QLatin1String(formClassWizardPageGroupC) + QLatin1Char('/');
|
|
|
|
|
|
|
|
|
|
retranslationSupport = settings->value(group + QLatin1String(translationKeyC), retranslationSupportDefault).toBool();
|
|
|
|
|
embedding = static_cast<UiClassEmbedding>(settings->value(group + QLatin1String(embeddingModeKeyC), int(PointerAggregatedUiClass)).toInt());
|
|
|
|
|
includeQtModule = settings->value(group + QLatin1String(includeQtModuleKeyC), false).toBool();
|
|
|
|
|
indentNamespace = settings->value(group + QLatin1String(indentNamespaceKeyC), false).toBool();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FormClassWizardGenerationParameters::toSettings(QSettings *settings) const
|
|
|
|
|
{
|
|
|
|
|
settings->beginGroup(QLatin1String(formClassWizardPageGroupC));
|
|
|
|
|
settings->setValue(QLatin1String(translationKeyC), retranslationSupport);
|
|
|
|
|
settings->setValue(QLatin1String(embeddingModeKeyC), embedding);
|
|
|
|
|
settings->setValue(QLatin1String(includeQtModuleKeyC), includeQtModule);
|
|
|
|
|
settings->setValue(QLatin1String(indentNamespaceKeyC), indentNamespace);
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FormClassWizardGenerationParameters::equals(const FormClassWizardGenerationParameters &rhs) const
|
|
|
|
|
{
|
|
|
|
|
return embedding == rhs.embedding && retranslationSupport == rhs.retranslationSupport
|
|
|
|
|
&& includeQtModule == rhs.includeQtModule && indentNamespace == rhs.indentNamespace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Generation code
|
|
|
|
|
|
|
|
|
|
// Write out how to access the Ui class in the source code.
|
|
|
|
|
static inline void writeUiMemberAccess(const FormClassWizardGenerationParameters &fp, QTextStream &str)
|
|
|
|
|
{
|
|
|
|
|
switch (fp.embedding) {
|
|
|
|
|
case PointerAggregatedUiClass:
|
|
|
|
|
str << uiMemberC << "->";
|
|
|
|
|
break;
|
|
|
|
|
case AggregatedUiClass:
|
|
|
|
|
str << uiMemberC << '.';
|
|
|
|
|
break;
|
|
|
|
|
case InheritedUiClass:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
|
|
|
|
|
bool QtDesignerFormClassCodeGenerator::generateCpp(const FormClassWizardParameters ¶meters,
|
|
|
|
|
QString *header, QString *source, int indentation)
|
|
|
|
|
{
|
|
|
|
|
Internal::FormClassWizardGenerationParameters generationParameters;
|
|
|
|
|
generationParameters.fromSettings(Core::ICore::instance()->settings());
|
|
|
|
|
|
|
|
|
|
const QString indent = QString(indentation, QLatin1Char(' '));
|
|
|
|
|
QString formBaseClass;
|
|
|
|
|
QString uiClassName;
|
|
|
|
|
|
|
|
|
|
if (!Internal::FormTemplateWizardPage::getUIXmlData(parameters.uiTemplate, &formBaseClass, &uiClassName)) {
|
|
|
|
|
qWarning("Unable to determine the form base class from %s.", qPrintable(parameters.uiTemplate));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Build the ui class (Ui::Foo) name relative to the namespace (which is the same):
|
|
|
|
|
const QString colonColon = QLatin1String("::");
|
|
|
|
|
const int lastSeparator = uiClassName.lastIndexOf(colonColon);
|
|
|
|
|
if (lastSeparator != -1)
|
|
|
|
|
uiClassName.remove(0, lastSeparator + colonColon.size());
|
|
|
|
|
uiClassName.insert(0, QLatin1String(uiNamespaceC) + colonColon);
|
|
|
|
|
|
|
|
|
|
// Do we have namespaces?
|
|
|
|
|
QStringList namespaceList = parameters.className.split(colonColon);
|
|
|
|
|
if (namespaceList.empty()) // Paranoia!
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
const QString unqualifiedClassName = namespaceList.takeLast();
|
|
|
|
|
|
|
|
|
|
const QString headerLicense =
|
|
|
|
|
CppTools::AbstractEditorSupport::licenseTemplate(parameters.headerFile, parameters.className);
|
|
|
|
|
const QString sourceLicense =
|
|
|
|
|
CppTools::AbstractEditorSupport::licenseTemplate(parameters.sourceFile, parameters.className);
|
|
|
|
|
// Include guards
|
2011-01-18 12:18:08 +01:00
|
|
|
const QString guard = Utils::headerGuard(parameters.headerFile, namespaceList);
|
2011-01-10 16:29:06 +01:00
|
|
|
|
|
|
|
|
QString uiInclude = QLatin1String("ui_");
|
|
|
|
|
uiInclude += QFileInfo(parameters.uiFile).completeBaseName();
|
|
|
|
|
uiInclude += QLatin1String(".h");
|
|
|
|
|
|
|
|
|
|
// 1) Header file
|
|
|
|
|
QTextStream headerStr(header);
|
|
|
|
|
headerStr << headerLicense << "#ifndef " << guard
|
|
|
|
|
<< "\n#define " << guard << '\n' << '\n';
|
|
|
|
|
|
|
|
|
|
// Include 'ui_'
|
|
|
|
|
if (generationParameters.embedding != Internal::PointerAggregatedUiClass) {
|
|
|
|
|
Utils::writeIncludeFileDirective(uiInclude, false, headerStr);
|
|
|
|
|
} else {
|
|
|
|
|
// Todo: Can we obtain the header from the code model for custom widgets?
|
|
|
|
|
// Alternatively, from Designer.
|
|
|
|
|
if (formBaseClass.startsWith(QLatin1Char('Q'))) {
|
|
|
|
|
QString baseInclude = formBaseClass;
|
|
|
|
|
if (generationParameters.includeQtModule)
|
|
|
|
|
baseInclude.insert(0, QLatin1String("QtGui/"));
|
|
|
|
|
Utils::writeIncludeFileDirective(baseInclude, true, headerStr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString namespaceIndent = Utils::writeOpeningNameSpaces(namespaceList,
|
|
|
|
|
generationParameters.indentNamespace ? indent : QString(),
|
|
|
|
|
headerStr);
|
|
|
|
|
|
|
|
|
|
// Forward-declare the UI class
|
|
|
|
|
if (generationParameters.embedding == Internal::PointerAggregatedUiClass) {
|
|
|
|
|
headerStr << '\n'
|
|
|
|
|
<< namespaceIndent << "namespace " << uiNamespaceC << " {\n"
|
|
|
|
|
<< namespaceIndent << indent << "class " << Internal::FormTemplateWizardPage::stripNamespaces(uiClassName) << ";\n"
|
|
|
|
|
<< namespaceIndent << "}\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Class declaration
|
|
|
|
|
headerStr << '\n' << namespaceIndent << "class " << unqualifiedClassName
|
|
|
|
|
<< " : public " << formBaseClass;
|
|
|
|
|
if (generationParameters.embedding == Internal::InheritedUiClass) {
|
|
|
|
|
headerStr << ", private " << uiClassName;
|
|
|
|
|
}
|
|
|
|
|
headerStr << "\n{\n" << namespaceIndent << indent << "Q_OBJECT\n\n"
|
|
|
|
|
<< namespaceIndent << "public:\n"
|
|
|
|
|
<< namespaceIndent << indent << "explicit " << unqualifiedClassName << "(QWidget *parent = 0);\n";
|
|
|
|
|
if (generationParameters.embedding == Internal::PointerAggregatedUiClass)
|
|
|
|
|
headerStr << namespaceIndent << indent << "~" << unqualifiedClassName << "();\n";
|
|
|
|
|
// retranslation
|
|
|
|
|
if (generationParameters.retranslationSupport)
|
|
|
|
|
headerStr << '\n' << namespaceIndent << "protected:\n"
|
|
|
|
|
<< namespaceIndent << indent << "void changeEvent(QEvent *e);\n";
|
|
|
|
|
// Member variable
|
|
|
|
|
if (generationParameters.embedding != Internal::InheritedUiClass) {
|
|
|
|
|
headerStr << '\n' << namespaceIndent << "private:\n"
|
|
|
|
|
<< namespaceIndent << indent << uiClassName << ' ';
|
|
|
|
|
if (generationParameters.embedding == Internal::PointerAggregatedUiClass)
|
|
|
|
|
headerStr << '*';
|
|
|
|
|
headerStr << uiMemberC << ";\n";
|
|
|
|
|
}
|
|
|
|
|
headerStr << namespaceIndent << "};\n\n";
|
|
|
|
|
Utils::writeClosingNameSpaces(namespaceList, generationParameters.indentNamespace ? indent : QString(), headerStr);
|
|
|
|
|
headerStr << "#endif // "<< guard << '\n';
|
|
|
|
|
|
|
|
|
|
// 2) Source file
|
|
|
|
|
QTextStream sourceStr(source);
|
|
|
|
|
sourceStr << sourceLicense;
|
|
|
|
|
Utils::writeIncludeFileDirective(parameters.headerFile, false, sourceStr);
|
|
|
|
|
if (generationParameters.embedding == Internal::PointerAggregatedUiClass)
|
|
|
|
|
Utils::writeIncludeFileDirective(uiInclude, false, sourceStr);
|
|
|
|
|
// NameSpaces(
|
|
|
|
|
Utils::writeOpeningNameSpaces(namespaceList, generationParameters.indentNamespace ? indent : QString(), sourceStr);
|
|
|
|
|
// Constructor with setupUi
|
|
|
|
|
sourceStr << '\n' << namespaceIndent << unqualifiedClassName << "::" << unqualifiedClassName << "(QWidget *parent) :\n"
|
|
|
|
|
<< namespaceIndent << indent << formBaseClass << "(parent)";
|
|
|
|
|
if (generationParameters.embedding == Internal::PointerAggregatedUiClass)
|
|
|
|
|
sourceStr << ",\n" << namespaceIndent << indent << uiMemberC << "(new " << uiClassName << ")";
|
|
|
|
|
sourceStr << '\n' << namespaceIndent << "{\n" << namespaceIndent << indent;
|
|
|
|
|
writeUiMemberAccess(generationParameters, sourceStr);
|
|
|
|
|
sourceStr << "setupUi(this);\n" << namespaceIndent << "}\n";
|
|
|
|
|
// Deleting destructor for ptr
|
|
|
|
|
if (generationParameters.embedding == Internal::PointerAggregatedUiClass) {
|
|
|
|
|
sourceStr << '\n' << namespaceIndent << unqualifiedClassName << "::~" << unqualifiedClassName
|
|
|
|
|
<< "()\n" << namespaceIndent << "{\n"
|
|
|
|
|
<< namespaceIndent << indent << "delete " << uiMemberC << ";\n"
|
|
|
|
|
<< namespaceIndent << "}\n";
|
|
|
|
|
}
|
|
|
|
|
// retranslation
|
|
|
|
|
if (generationParameters.retranslationSupport) {
|
|
|
|
|
sourceStr << '\n' << namespaceIndent << "void " << unqualifiedClassName << "::" << "changeEvent(QEvent *e)\n"
|
|
|
|
|
<< namespaceIndent << "{\n"
|
|
|
|
|
<< namespaceIndent << indent << formBaseClass << "::changeEvent(e);\n"
|
|
|
|
|
<< namespaceIndent << indent << "switch (e->type()) {\n" << namespaceIndent << indent << "case QEvent::LanguageChange:\n"
|
|
|
|
|
<< namespaceIndent << indent << indent;
|
|
|
|
|
writeUiMemberAccess(generationParameters, sourceStr);
|
|
|
|
|
sourceStr << "retranslateUi(this);\n"
|
|
|
|
|
<< namespaceIndent << indent << indent << "break;\n"
|
|
|
|
|
<< namespaceIndent << indent << "default:\n"
|
|
|
|
|
<< namespaceIndent << indent << indent << "break;\n"
|
|
|
|
|
<< namespaceIndent << indent << "}\n"
|
|
|
|
|
<< namespaceIndent << "}\n";
|
|
|
|
|
}
|
|
|
|
|
Utils::writeClosingNameSpaces(namespaceList, generationParameters.indentNamespace ? indent : QString(), sourceStr);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QtDesignerFormClassCodeGenerator::QtDesignerFormClassCodeGenerator(QObject *parent) :
|
|
|
|
|
QObject(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant QtDesignerFormClassCodeGenerator::generateFormClassCode(const FormClassWizardParameters ¶meters)
|
|
|
|
|
{
|
|
|
|
|
QString header;
|
|
|
|
|
QString source;
|
|
|
|
|
QtDesignerFormClassCodeGenerator::generateCpp(parameters, &header, &source);
|
|
|
|
|
QVariantList result;
|
|
|
|
|
result << header << source;
|
|
|
|
|
return QVariant(result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Designer
|