2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-09-23 12:37:12 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2010-09-23 12:37:12 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-09-23 12:37:12 +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.
|
2010-09-23 12:37:12 +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
|
|
|
****************************************************************************/
|
2010-09-23 12:37:12 +02:00
|
|
|
|
|
|
|
#include "qmljscomponentnamedialog.h"
|
|
|
|
#include "ui_qmljscomponentnamedialog.h"
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QFileDialog>
|
2012-04-11 17:58:59 +02:00
|
|
|
#include <QPushButton>
|
2010-09-23 12:37:12 +02:00
|
|
|
|
|
|
|
using namespace QmlJSEditor::Internal;
|
|
|
|
|
|
|
|
ComponentNameDialog::ComponentNameDialog(QWidget *parent) :
|
|
|
|
QDialog(parent),
|
|
|
|
ui(new Ui::ComponentNameDialog)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2016-06-27 22:25:11 +03:00
|
|
|
connect(ui->pathEdit, &Utils::PathChooser::rawPathChanged,
|
|
|
|
this, &ComponentNameDialog::validate);
|
|
|
|
connect(ui->componentNameEdit, &QLineEdit::textChanged,
|
|
|
|
this, &ComponentNameDialog::validate);
|
2010-09-23 12:37:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ComponentNameDialog::~ComponentNameDialog()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2015-03-23 15:53:23 +01:00
|
|
|
bool ComponentNameDialog::go(QString *proposedName,
|
2010-09-23 12:37:12 +02:00
|
|
|
QString *proposedPath,
|
2016-09-29 15:38:29 +02:00
|
|
|
QString *proposedSuffix,
|
2016-04-29 10:31:21 +02:00
|
|
|
const QStringList &properties,
|
|
|
|
const QStringList &sourcePreview,
|
|
|
|
const QString &oldFileName,
|
|
|
|
QStringList *result,
|
2010-09-23 12:37:12 +02:00
|
|
|
QWidget *parent)
|
|
|
|
{
|
|
|
|
Q_ASSERT(proposedName);
|
|
|
|
Q_ASSERT(proposedPath);
|
|
|
|
|
2016-09-29 15:38:29 +02:00
|
|
|
const bool isUiFile = QFileInfo(oldFileName).completeSuffix() == "ui.qml";
|
|
|
|
|
2010-09-23 12:37:12 +02:00
|
|
|
ComponentNameDialog d(parent);
|
2012-04-11 17:58:59 +02:00
|
|
|
d.ui->componentNameEdit->setNamespacesEnabled(false);
|
|
|
|
d.ui->componentNameEdit->setLowerCaseFileName(false);
|
2012-04-12 14:04:03 +02:00
|
|
|
d.ui->componentNameEdit->setForceFirstCapitalLetter(true);
|
2016-04-29 10:31:21 +02:00
|
|
|
if (proposedName->isEmpty())
|
|
|
|
*proposedName = QLatin1String("MyComponent");
|
2010-09-23 12:37:12 +02:00
|
|
|
d.ui->componentNameEdit->setText(*proposedName);
|
2012-04-11 17:58:59 +02:00
|
|
|
d.ui->pathEdit->setExpectedKind(Utils::PathChooser::ExistingDirectory);
|
2013-11-25 14:36:37 +01:00
|
|
|
d.ui->pathEdit->setHistoryCompleter(QLatin1String("QmlJs.Component.History"));
|
2012-04-11 17:58:59 +02:00
|
|
|
d.ui->pathEdit->setPath(*proposedPath);
|
2016-04-29 10:31:21 +02:00
|
|
|
d.ui->label->setText(tr("Property assignments for %1:").arg(oldFileName));
|
2016-09-29 15:38:29 +02:00
|
|
|
d.ui->checkBox->setChecked(isUiFile);
|
|
|
|
d.ui->checkBox->setVisible(isUiFile);
|
2016-04-29 10:31:21 +02:00
|
|
|
d.m_sourcePreview = sourcePreview;
|
|
|
|
|
|
|
|
d.setProperties(properties);
|
|
|
|
|
|
|
|
d.generateCodePreview();
|
|
|
|
|
|
|
|
d.connect(d.ui->listWidget, &QListWidget::itemChanged, &d, &ComponentNameDialog::generateCodePreview);
|
|
|
|
d.connect(d.ui->componentNameEdit, &QLineEdit::textChanged, &d, &ComponentNameDialog::generateCodePreview);
|
2010-09-23 12:37:12 +02:00
|
|
|
|
|
|
|
if (QDialog::Accepted == d.exec()) {
|
|
|
|
*proposedName = d.ui->componentNameEdit->text();
|
2020-04-09 11:35:12 +02:00
|
|
|
*proposedPath = d.ui->pathEdit->filePath().toString();
|
2016-04-29 10:31:21 +02:00
|
|
|
|
2016-09-29 15:38:29 +02:00
|
|
|
if (d.ui->checkBox->isChecked())
|
|
|
|
*proposedSuffix = "ui.qml";
|
|
|
|
else
|
|
|
|
*proposedSuffix = "qml";
|
|
|
|
|
2016-04-29 10:31:21 +02:00
|
|
|
if (result)
|
|
|
|
*result = d.propertiesToKeep();
|
2015-03-23 15:53:23 +01:00
|
|
|
return true;
|
2010-09-23 12:37:12 +02:00
|
|
|
}
|
2015-03-23 15:53:23 +01:00
|
|
|
|
|
|
|
return false;
|
2010-09-23 12:37:12 +02:00
|
|
|
}
|
|
|
|
|
2016-04-29 10:31:21 +02:00
|
|
|
void ComponentNameDialog::setProperties(const QStringList &properties)
|
|
|
|
{
|
|
|
|
ui->listWidget->addItems(properties);
|
|
|
|
|
|
|
|
for (int i = 0; i < ui->listWidget->count(); ++i) {
|
|
|
|
QListWidgetItem *item = ui->listWidget->item(i);
|
|
|
|
item->setFlags(Qt::ItemIsUserCheckable | Qt:: ItemIsEnabled);
|
|
|
|
if (item->text() == QLatin1String("x")
|
|
|
|
|| item->text() == QLatin1String("y"))
|
|
|
|
ui->listWidget->item(i)->setCheckState(Qt::Checked);
|
|
|
|
else
|
|
|
|
ui->listWidget->item(i)->setCheckState(Qt::Unchecked);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList ComponentNameDialog::propertiesToKeep() const
|
|
|
|
{
|
|
|
|
QStringList result;
|
|
|
|
for (int i = 0; i < ui->listWidget->count(); ++i) {
|
|
|
|
QListWidgetItem *item = ui->listWidget->item(i);
|
|
|
|
|
|
|
|
if (item->checkState() == Qt::Checked)
|
|
|
|
result.append(item->text());
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ComponentNameDialog::generateCodePreview()
|
|
|
|
{
|
|
|
|
const QString componentName = ui->componentNameEdit->text();
|
|
|
|
|
|
|
|
ui->plainTextEdit->clear();
|
|
|
|
ui->plainTextEdit->appendPlainText(componentName + QLatin1String(" {"));
|
|
|
|
if (!m_sourcePreview.first().isEmpty())
|
|
|
|
ui->plainTextEdit->appendPlainText(m_sourcePreview.first());
|
|
|
|
|
|
|
|
for (int i = 0; i < ui->listWidget->count(); ++i) {
|
|
|
|
QListWidgetItem *item = ui->listWidget->item(i);
|
|
|
|
|
|
|
|
if (item->checkState() == Qt::Checked)
|
|
|
|
ui->plainTextEdit->appendPlainText(m_sourcePreview.at(i + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->plainTextEdit->appendPlainText(QLatin1String("}"));
|
|
|
|
}
|
|
|
|
|
2010-09-23 12:37:12 +02:00
|
|
|
void ComponentNameDialog::validate()
|
|
|
|
{
|
2012-04-11 17:58:59 +02:00
|
|
|
const QString message = isValid();
|
|
|
|
ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(message.isEmpty());
|
|
|
|
ui->messageLabel->setText(message);
|
2010-09-23 12:37:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString ComponentNameDialog::isValid() const
|
|
|
|
{
|
2012-04-11 17:58:59 +02:00
|
|
|
if (!ui->componentNameEdit->isValid())
|
|
|
|
return ui->componentNameEdit->errorMessage();
|
|
|
|
|
2010-09-23 12:37:12 +02:00
|
|
|
QString compName = ui->componentNameEdit->text();
|
|
|
|
if (compName.isEmpty() || !compName[0].isUpper())
|
|
|
|
return tr("Invalid component name");
|
|
|
|
|
2012-04-11 17:58:59 +02:00
|
|
|
if (!ui->pathEdit->isValid())
|
2010-09-23 12:37:12 +02:00
|
|
|
return tr("Invalid path");
|
|
|
|
|
2020-08-01 02:20:32 +02:00
|
|
|
if (QDir(ui->pathEdit->path()).exists(compName + u".qml"))
|
2021-03-18 16:20:28 +01:00
|
|
|
return tr("Component already exists");
|
2020-08-01 02:20:32 +02:00
|
|
|
|
2011-02-25 15:27:13 +01:00
|
|
|
return QString();
|
2010-09-23 12:37:12 +02:00
|
|
|
}
|