2009-07-01 16:27:40 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** 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-07-01 16:27:40 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "cppsettingspage.h"
|
|
|
|
|
#include "designerconstants.h"
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QCoreApplication>
|
2009-11-24 15:05:02 +01:00
|
|
|
#include <QtCore/QTextStream>
|
2009-07-01 16:27:40 +02:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
|
|
|
|
namespace Designer {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
// ---------- CppSettingsPageWidget
|
|
|
|
|
|
|
|
|
|
CppSettingsPageWidget::CppSettingsPageWidget(QWidget *parent) :
|
|
|
|
|
QWidget(parent)
|
|
|
|
|
{
|
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FormClassWizardGenerationParameters CppSettingsPageWidget::parameters() const
|
|
|
|
|
{
|
|
|
|
|
FormClassWizardGenerationParameters rc;
|
|
|
|
|
rc.setEmbedding(static_cast<FormClassWizardGenerationParameters::UiClassEmbedding>(uiEmbedding()));
|
|
|
|
|
rc.setRetranslationSupport(m_ui.retranslateCheckBox->isChecked());
|
|
|
|
|
rc.setIncludeQtModule(m_ui.includeQtModuleCheckBox->isChecked());
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppSettingsPageWidget::setParameters(const FormClassWizardGenerationParameters &p)
|
|
|
|
|
{
|
|
|
|
|
m_ui.retranslateCheckBox->setChecked(p.retranslationSupport());
|
|
|
|
|
m_ui.includeQtModuleCheckBox->setChecked(p.includeQtModule());
|
|
|
|
|
setUiEmbedding(p.embedding());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int CppSettingsPageWidget::uiEmbedding() const
|
|
|
|
|
{
|
|
|
|
|
if (m_ui.ptrAggregationRadioButton->isChecked())
|
|
|
|
|
return FormClassWizardGenerationParameters::PointerAggregatedUiClass;
|
|
|
|
|
if (m_ui.aggregationButton->isChecked())
|
|
|
|
|
return FormClassWizardGenerationParameters::AggregatedUiClass;
|
|
|
|
|
return FormClassWizardGenerationParameters::InheritedUiClass;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppSettingsPageWidget::setUiEmbedding(int v)
|
|
|
|
|
{
|
|
|
|
|
switch (v) {
|
|
|
|
|
case FormClassWizardGenerationParameters::PointerAggregatedUiClass:
|
|
|
|
|
m_ui.ptrAggregationRadioButton->setChecked(true);
|
|
|
|
|
break;
|
|
|
|
|
case FormClassWizardGenerationParameters::AggregatedUiClass:
|
|
|
|
|
m_ui.aggregationButton->setChecked(true);
|
|
|
|
|
break;
|
|
|
|
|
case FormClassWizardGenerationParameters::InheritedUiClass:
|
|
|
|
|
m_ui.multipleInheritanceButton->setChecked(true);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-24 15:05:02 +01:00
|
|
|
QString CppSettingsPageWidget::searchKeywords() const
|
|
|
|
|
{
|
|
|
|
|
QString rc;
|
|
|
|
|
QTextStream(&rc) << m_ui.ptrAggregationRadioButton->text()
|
|
|
|
|
<< ' ' << m_ui.aggregationButton->text()
|
|
|
|
|
<< ' ' << m_ui.multipleInheritanceButton->text()
|
|
|
|
|
<< ' ' << m_ui.retranslateCheckBox->text()
|
|
|
|
|
<< ' ' << m_ui.includeQtModuleCheckBox->text();
|
|
|
|
|
rc.remove(QLatin1Char('&'));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-01 16:27:40 +02:00
|
|
|
// ---------- CppSettingsPage
|
|
|
|
|
CppSettingsPage::CppSettingsPage(QObject *parent) : Core::IOptionsPage(parent)
|
|
|
|
|
{
|
|
|
|
|
m_parameters.fromSettings(Core::ICore::instance()->settings());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CppSettingsPage::id() const
|
|
|
|
|
{
|
2009-11-27 16:12:12 +01:00
|
|
|
return QLatin1String(Designer::Constants::SETTINGS_CPP_SETTINGS_ID);
|
2009-07-01 16:27:40 +02:00
|
|
|
}
|
|
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
QString CppSettingsPage::displayName() const
|
2009-07-01 16:27:40 +02:00
|
|
|
{
|
2009-11-27 16:12:12 +01:00
|
|
|
return QCoreApplication::translate("Designer", Designer::Constants::SETTINGS_CPP_SETTINGS_NAME);
|
2009-07-01 16:27:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CppSettingsPage::category() const
|
|
|
|
|
{
|
|
|
|
|
return QLatin1String(Designer::Constants::SETTINGS_CATEGORY);
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
QString CppSettingsPage::displayCategory() const
|
2009-07-01 16:27:40 +02:00
|
|
|
{
|
2009-11-27 16:12:12 +01:00
|
|
|
return QCoreApplication::translate("Designer", Designer::Constants::SETTINGS_TR_CATEGORY);
|
2009-07-01 16:27:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *CppSettingsPage::createPage(QWidget *parent)
|
|
|
|
|
{
|
|
|
|
|
m_widget = new CppSettingsPageWidget(parent);
|
|
|
|
|
m_widget->setParameters(m_parameters);
|
2009-11-24 15:05:02 +01:00
|
|
|
if (m_searchKeywords.isEmpty())
|
|
|
|
|
m_searchKeywords = m_widget->searchKeywords();
|
2009-07-01 16:27:40 +02:00
|
|
|
return m_widget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppSettingsPage::apply()
|
|
|
|
|
{
|
|
|
|
|
if (m_widget) {
|
|
|
|
|
const FormClassWizardGenerationParameters newParameters = m_widget->parameters();
|
|
|
|
|
if (newParameters != m_parameters) {
|
|
|
|
|
m_parameters = newParameters;
|
|
|
|
|
m_parameters.toSettings(Core::ICore::instance()->settings());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppSettingsPage::finish()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-24 15:05:02 +01:00
|
|
|
bool CppSettingsPage::matches(const QString &s) const
|
|
|
|
|
{
|
|
|
|
|
return m_searchKeywords.contains(s, Qt::CaseInsensitive);
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-01 16:27:40 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Designer
|