/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** 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 ** a written agreement between you and Digia. For licensing terms and ** conditions see http://www.qt.io/licensing. For further information ** use the contact form at http://www.qt.io/contact-us. ** ** 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 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include "qmljscomponentnamedialog.h" #include "ui_qmljscomponentnamedialog.h" #include #include #include using namespace QmlJSEditor::Internal; ComponentNameDialog::ComponentNameDialog(QWidget *parent) : QDialog(parent), ui(new Ui::ComponentNameDialog) { ui->setupUi(this); connect(ui->pathEdit, SIGNAL(changed(QString)), this, SLOT(validate())); connect(ui->componentNameEdit, SIGNAL(textChanged(QString)), this, SLOT(validate())); } ComponentNameDialog::~ComponentNameDialog() { delete ui; } void ComponentNameDialog::go(QString *proposedName, QString *proposedPath, QWidget *parent) { Q_ASSERT(proposedName); Q_ASSERT(proposedPath); ComponentNameDialog d(parent); d.ui->componentNameEdit->setNamespacesEnabled(false); d.ui->componentNameEdit->setLowerCaseFileName(false); d.ui->componentNameEdit->setForceFirstCapitalLetter(true); d.ui->componentNameEdit->setText(*proposedName); d.ui->pathEdit->setExpectedKind(Utils::PathChooser::ExistingDirectory); d.ui->pathEdit->setHistoryCompleter(QLatin1String("QmlJs.Component.History")); d.ui->pathEdit->setPath(*proposedPath); if (QDialog::Accepted == d.exec()) { *proposedName = d.ui->componentNameEdit->text(); *proposedPath = d.ui->pathEdit->path(); } } void ComponentNameDialog::choosePath() { QString dir = QFileDialog::getExistingDirectory(this, tr("Choose a path"), ui->pathEdit->path()); if (!dir.isEmpty()) ui->pathEdit->setPath(dir); } void ComponentNameDialog::validate() { const QString message = isValid(); ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(message.isEmpty()); ui->messageLabel->setText(message); } QString ComponentNameDialog::isValid() const { if (!ui->componentNameEdit->isValid()) return ui->componentNameEdit->errorMessage(); QString compName = ui->componentNameEdit->text(); if (compName.isEmpty() || !compName[0].isUpper()) return tr("Invalid component name"); if (!ui->pathEdit->isValid()) return tr("Invalid path"); return QString(); }