2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2009-06-29 14:47:04 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2009-06-29 14:47:04 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2009-06-29 14:47:04 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2009-06-29 14:47:04 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2009-06-29 14:47:04 +02:00
|
|
|
|
|
|
|
|
#include "customwidgetpluginwizardpage.h"
|
|
|
|
|
#include "customwidgetwidgetswizardpage.h"
|
|
|
|
|
#include "ui_customwidgetpluginwizardpage.h"
|
|
|
|
|
|
2014-05-30 11:38:08 +02:00
|
|
|
#include <utils/wizard.h>
|
|
|
|
|
|
2013-10-16 11:02:37 +02:00
|
|
|
namespace QmakeProjectManager {
|
2009-06-29 14:47:04 +02:00
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
CustomWidgetPluginWizardPage::CustomWidgetPluginWizardPage(QWidget *parent) :
|
|
|
|
|
QWizardPage(parent),
|
|
|
|
|
m_ui(new Ui::CustomWidgetPluginWizardPage),
|
|
|
|
|
m_classCount(-1),
|
|
|
|
|
m_complete(false)
|
|
|
|
|
{
|
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
connect(m_ui->collectionClassEdit, SIGNAL(textEdited(QString)), this, SLOT(slotCheckCompleteness()));
|
|
|
|
|
connect(m_ui->pluginNameEdit, SIGNAL(textEdited(QString)), this, SLOT(slotCheckCompleteness()));
|
2014-05-30 11:38:08 +02:00
|
|
|
|
|
|
|
|
setProperty(Utils::SHORT_TITLE_PROPERTY, tr("Plugin Details"));
|
2009-06-29 14:47:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CustomWidgetPluginWizardPage::~CustomWidgetPluginWizardPage()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CustomWidgetPluginWizardPage::collectionClassName() const
|
|
|
|
|
{
|
|
|
|
|
return m_ui->collectionClassEdit->text();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CustomWidgetPluginWizardPage::pluginName() const
|
|
|
|
|
{
|
|
|
|
|
return m_ui->pluginNameEdit->text();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Determine name for Q_EXPORT_PLUGIN
|
|
|
|
|
static inline QString createPluginName(const QString &prefix)
|
|
|
|
|
{
|
|
|
|
|
return prefix.toLower() + QLatin1String("plugin");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CustomWidgetPluginWizardPage::init(const CustomWidgetWidgetsWizardPage *widgetsPage)
|
|
|
|
|
{
|
|
|
|
|
m_classCount = widgetsPage->classCount();
|
|
|
|
|
const QString empty;
|
|
|
|
|
if (m_classCount == 1) {
|
|
|
|
|
m_ui->pluginNameEdit->setText(createPluginName(widgetsPage->classNameAt(0)));
|
|
|
|
|
setCollectionEnabled(false);
|
|
|
|
|
} else {
|
|
|
|
|
m_ui->pluginNameEdit->setText(empty);
|
|
|
|
|
setCollectionEnabled(true);
|
|
|
|
|
}
|
|
|
|
|
m_ui->collectionClassEdit->setText(empty);
|
|
|
|
|
m_ui->collectionHeaderEdit->setText(empty);
|
|
|
|
|
m_ui->collectionSourceEdit->setText(empty);
|
|
|
|
|
|
|
|
|
|
slotCheckCompleteness();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CustomWidgetPluginWizardPage::setCollectionEnabled(bool enColl)
|
|
|
|
|
{
|
|
|
|
|
m_ui->collectionClassLabel->setEnabled(enColl);
|
|
|
|
|
m_ui->collectionClassEdit->setEnabled(enColl);
|
|
|
|
|
m_ui->collectionHeaderLabel->setEnabled(enColl);
|
|
|
|
|
m_ui->collectionHeaderEdit->setEnabled(enColl);
|
|
|
|
|
m_ui->collectionSourceLabel->setEnabled(enColl);
|
|
|
|
|
m_ui->collectionSourceEdit->setEnabled(enColl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CustomWidgetPluginWizardPage::on_collectionClassEdit_textChanged()
|
|
|
|
|
{
|
|
|
|
|
const QString collectionClass = collectionClassName();
|
|
|
|
|
m_ui->collectionHeaderEdit->setText(m_fileNamingParameters.headerFileName(collectionClass));
|
|
|
|
|
m_ui->pluginNameEdit->setText(createPluginName(collectionClass));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CustomWidgetPluginWizardPage::on_collectionHeaderEdit_textChanged()
|
|
|
|
|
{
|
|
|
|
|
m_ui->collectionSourceEdit->setText(m_fileNamingParameters.headerToSourceFileName(m_ui->collectionHeaderEdit->text()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QSharedPointer<PluginOptions> CustomWidgetPluginWizardPage::basicPluginOptions() const
|
|
|
|
|
{
|
|
|
|
|
QSharedPointer<PluginOptions> po(new PluginOptions);
|
|
|
|
|
po->pluginName = pluginName();
|
|
|
|
|
po->resourceFile = m_ui->resourceFileEdit->text();
|
|
|
|
|
po->collectionClassName = collectionClassName();
|
|
|
|
|
po->collectionHeaderFile = m_ui->collectionHeaderEdit->text();
|
|
|
|
|
po->collectionSourceFile = m_ui->collectionSourceEdit->text();
|
|
|
|
|
return po;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CustomWidgetPluginWizardPage::slotCheckCompleteness()
|
|
|
|
|
{
|
|
|
|
|
// A collection is complete only with class name
|
|
|
|
|
bool completeNow = false;
|
|
|
|
|
if (!pluginName().isEmpty()) {
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
if (m_classCount > 1)
|
2009-06-29 14:47:04 +02:00
|
|
|
completeNow = !collectionClassName().isEmpty();
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
else
|
2009-06-29 14:47:04 +02:00
|
|
|
completeNow = true;
|
|
|
|
|
}
|
|
|
|
|
if (completeNow != m_complete) {
|
|
|
|
|
m_complete = completeNow;
|
|
|
|
|
emit completeChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CustomWidgetPluginWizardPage::isComplete() const
|
|
|
|
|
{
|
|
|
|
|
return m_complete;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
2013-10-16 11:02:37 +02:00
|
|
|
} // namespace QmakeProjectManager
|