forked from qt-creator/qt-creator
116 lines
3.7 KiB
C++
116 lines
3.7 KiB
C++
/***************************************************************************
|
|
**
|
|
** This file is part of Qt Creator
|
|
**
|
|
** Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
**
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
**
|
|
**
|
|
** Non-Open Source Usage
|
|
**
|
|
** Licensees may use this file in accordance with the Qt Beta Version
|
|
** License Agreement, Agreement version 2.2 provided with the Software or,
|
|
** alternatively, in accordance with the terms contained in a written
|
|
** agreement between you and Nokia.
|
|
**
|
|
** GNU General Public License Usage
|
|
**
|
|
** Alternatively, this file may be used under the terms of the GNU General
|
|
** Public License versions 2.0 or 3.0 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.GPL included in the packaging
|
|
** of this file. Please review the following information to ensure GNU
|
|
** General Public Licensing requirements will be met:
|
|
**
|
|
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
|
|
** http://www.gnu.org/copyleft/gpl.html.
|
|
**
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
** rights. These rights are described in the Nokia Qt GPL Exception
|
|
** version 1.3, included in the file GPL_EXCEPTION.txt in this package.
|
|
**
|
|
***************************************************************************/
|
|
|
|
#include "formclasswizarddialog.h"
|
|
#include "formtemplatewizardpage.h"
|
|
#include "formclasswizardpage.h"
|
|
#include "formclasswizardparameters.h"
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
#include <QtCore/QDebug>
|
|
#include <QtGui/QAbstractButton>
|
|
|
|
enum { FormPageId, ClassPageId };
|
|
|
|
namespace Designer {
|
|
namespace Internal {
|
|
|
|
// ----------------- FormClassWizardDialog
|
|
FormClassWizardDialog::FormClassWizardDialog(const WizardPageList &extensionPages,
|
|
QWidget *parent) :
|
|
QWizard(parent),
|
|
m_formPage(new FormTemplateWizardPage),
|
|
m_classPage(new FormClassWizardPage)
|
|
{
|
|
setWindowTitle(tr("Qt Designer Form Class"));
|
|
|
|
setPage(FormPageId, m_formPage);
|
|
connect(m_formPage, SIGNAL(templateActivated()),
|
|
button(QWizard::NextButton), SLOT(animateClick()));
|
|
|
|
setPage(ClassPageId, m_classPage);
|
|
|
|
foreach (QWizardPage *p, extensionPages)
|
|
addPage(p);
|
|
|
|
connect(this, SIGNAL(currentIdChanged(int)), this, SLOT(slotCurrentIdChanged(int)));
|
|
}
|
|
|
|
void FormClassWizardDialog::setSuffixes(const QString &header, const QString &source, const QString &form)
|
|
{
|
|
m_classPage->setSuffixes(header, source, form);
|
|
}
|
|
|
|
QString FormClassWizardDialog::path() const
|
|
{
|
|
return m_classPage->path();
|
|
}
|
|
|
|
void FormClassWizardDialog::setPath(const QString &p)
|
|
{
|
|
m_classPage->setPath(p);
|
|
}
|
|
|
|
bool FormClassWizardDialog::validateCurrentPage()
|
|
{
|
|
return QWizard::validateCurrentPage();
|
|
}
|
|
|
|
void FormClassWizardDialog::slotCurrentIdChanged(int id)
|
|
{
|
|
// Switching from form to class page: store XML template and set a suitable
|
|
// class name in the class page based on the form base class
|
|
if (id == ClassPageId) {
|
|
QString formBaseClass;
|
|
QString uiClassName;
|
|
m_rawFormTemplate = m_formPage->templateContents();
|
|
// Strip namespaces from the ui class and suggest it as a new class
|
|
// name
|
|
if (FormTemplateWizardPage::getUIXmlData(m_rawFormTemplate, &formBaseClass, &uiClassName))
|
|
m_classPage->setClassName(FormTemplateWizardPage::stripNamespaces(uiClassName));
|
|
}
|
|
}
|
|
|
|
FormClassWizardParameters FormClassWizardDialog::parameters() const
|
|
{
|
|
FormClassWizardParameters rc;
|
|
m_classPage->getParameters(&rc);
|
|
// Name the ui class in the Ui namespace after the class specified
|
|
rc.uiTemplate = FormTemplateWizardPage::changeUiClassName(m_rawFormTemplate, rc.className);
|
|
return rc;
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace Designer
|