Files
qt-creator/src/libs/utils/projectintropage.cpp

285 lines
8.4 KiB
C++
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01: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
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/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 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.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
2008-12-02 14:09:21 +01:00
2008-12-02 12:01:29 +01:00
#include "projectintropage.h"
#include "filewizardpage.h"
#include "ui_projectintropage.h"
#include <QMessageBox>
#include <QDir>
#include <QFileInfo>
2008-12-02 12:01:29 +01:00
/*!
\class Utils::ProjectIntroPage
\brief Standard wizard page for a project, letting the user choose name
and path.
Looks similar to FileWizardPage, but provides additional
functionality:
\list
\o Description label at the top for displaying introductory text
\o It does on the fly validation (connected to changed()) and displays
warnings/errors in a status label at the bottom (the page is complete
when fully validated, validatePage() is thus not implemented).
\endlist
Note: Careful when changing projectintropage.ui. It must have main
geometry cleared and QLayout::SetMinimumSize constraint on the main
layout, otherwise, QWizard will squeeze it due to its strange expanding
hacks.
*/
2008-12-02 12:01:29 +01:00
namespace Utils {
struct ProjectIntroPagePrivate
{
ProjectIntroPagePrivate();
Ui::ProjectIntroPage m_ui;
bool m_complete;
// Status label style sheets
const QString m_errorStyleSheet;
const QString m_warningStyleSheet;
const QString m_hintStyleSheet;
bool m_forceSubProject;
QStringList m_projectDirectories;
2008-12-02 12:01:29 +01:00
};
ProjectIntroPagePrivate:: ProjectIntroPagePrivate() :
m_complete(false),
m_errorStyleSheet(QLatin1String("background : red;")),
m_warningStyleSheet(QLatin1String("background : yellow;")),
m_hintStyleSheet(),
m_forceSubProject(false)
2008-12-02 12:01:29 +01:00
{
}
ProjectIntroPage::ProjectIntroPage(QWidget *parent) :
QWizardPage(parent),
d(new ProjectIntroPagePrivate)
2008-12-02 12:01:29 +01:00
{
d->m_ui.setupUi(this);
2008-12-02 12:01:29 +01:00
hideStatusLabel();
d->m_ui.nameLineEdit->setInitialText(tr("<Enter_Name>"));
d->m_ui.nameLineEdit->setFocus();
d->m_ui.projectLabel->setVisible(d->m_forceSubProject);
d->m_ui.projectComboBox->setVisible(d->m_forceSubProject);
d->m_ui.pathChooser->setDisabled(d->m_forceSubProject);
d->m_ui.projectsDirectoryCheckBox->setDisabled(d->m_forceSubProject);
connect(d->m_ui.pathChooser, SIGNAL(changed(QString)), this, SLOT(slotChanged()));
connect(d->m_ui.nameLineEdit, SIGNAL(textChanged(QString)), this, SLOT(slotChanged()));
connect(d->m_ui.pathChooser, SIGNAL(validChanged()), this, SLOT(slotChanged()));
connect(d->m_ui.pathChooser, SIGNAL(returnPressed()), this, SLOT(slotActivated()));
connect(d->m_ui.nameLineEdit, SIGNAL(validReturnPressed()), this, SLOT(slotActivated()));
connect(d->m_ui.projectComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(slotChanged()));
2008-12-02 12:01:29 +01:00
}
void ProjectIntroPage::insertControl(int row, QWidget *label, QWidget *control)
{
d->m_ui.formLayout->insertRow(row, label, control);
2008-12-02 12:01:29 +01:00
}
ProjectIntroPage::~ProjectIntroPage()
{
delete d;
2008-12-02 12:01:29 +01:00
}
QString ProjectIntroPage::projectName() const
2008-12-02 12:01:29 +01:00
{
return d->m_ui.nameLineEdit->text();
2008-12-02 12:01:29 +01:00
}
QString ProjectIntroPage::path() const
{
return d->m_ui.pathChooser->path();
2008-12-02 12:01:29 +01:00
}
void ProjectIntroPage::setPath(const QString &path)
{
d->m_ui.pathChooser->setPath(path);
2008-12-02 12:01:29 +01:00
}
void ProjectIntroPage::setProjectName(const QString &name)
2008-12-02 12:01:29 +01:00
{
d->m_ui.nameLineEdit->setText(name);
d->m_ui.nameLineEdit->selectAll();
2008-12-02 12:01:29 +01:00
}
QString ProjectIntroPage::description() const
{
return d->m_ui.descriptionLabel->text();
2008-12-02 12:01:29 +01:00
}
void ProjectIntroPage::setDescription(const QString &description)
{
d->m_ui.descriptionLabel->setText(description);
2008-12-02 12:01:29 +01:00
}
void ProjectIntroPage::changeEvent(QEvent *e)
{
QWizardPage::changeEvent(e);
2008-12-09 11:07:24 +01:00
switch (e->type()) {
2008-12-02 12:01:29 +01:00
case QEvent::LanguageChange:
d->m_ui.retranslateUi(this);
2008-12-02 12:01:29 +01:00
break;
default:
break;
}
}
bool ProjectIntroPage::isComplete() const
{
return d->m_complete;
2008-12-02 12:01:29 +01:00
}
bool ProjectIntroPage::validate()
{
if (d->m_forceSubProject) {
int index = d->m_ui.projectComboBox->currentIndex();
if (index == 0)
return false;
d->m_ui.pathChooser->setPath(d->m_projectDirectories.at(index));
}
2008-12-02 12:01:29 +01:00
// Validate and display status
if (!d->m_ui.pathChooser->isValid()) {
displayStatusMessage(Error, d->m_ui.pathChooser->errorMessage());
2008-12-02 12:01:29 +01:00
return false;
}
// Name valid? Ignore 'DisplayingInitialText' state.
bool nameValid = false;
switch (d->m_ui.nameLineEdit->state()) {
2008-12-02 12:01:29 +01:00
case BaseValidatingLineEdit::Invalid:
displayStatusMessage(Error, d->m_ui.nameLineEdit->errorMessage());
2008-12-02 12:01:29 +01:00
return false;
case BaseValidatingLineEdit::DisplayingInitialText:
break;
case BaseValidatingLineEdit::Valid:
nameValid = true;
break;
}
// Check existence of the directory
QString projectDir = path();
projectDir += QDir::separator();
projectDir += d->m_ui.nameLineEdit->text();
2008-12-02 12:01:29 +01:00
const QFileInfo projectDirFile(projectDir);
if (!projectDirFile.exists()) { // All happy
hideStatusLabel();
return nameValid;
}
if (projectDirFile.isDir()) {
displayStatusMessage(Warning, tr("The project already exists."));
return nameValid;;
}
// Not a directory, but something else, likely causing directory creation to fail
displayStatusMessage(Error, tr("A file with that name already exists."));
return false;
}
void ProjectIntroPage::slotChanged()
{
const bool newComplete = validate();
if (newComplete != d->m_complete) {
d->m_complete = newComplete;
2008-12-02 12:01:29 +01:00
emit completeChanged();
}
}
void ProjectIntroPage::slotActivated()
{
if (d->m_complete)
2008-12-02 12:01:29 +01:00
emit activated();
}
bool ProjectIntroPage::forceSubProject() const
{
return d->m_forceSubProject;
}
void ProjectIntroPage::setForceSubProject(bool force)
{
d->m_forceSubProject = force;
d->m_ui.projectLabel->setVisible(d->m_forceSubProject);
d->m_ui.projectComboBox->setVisible(d->m_forceSubProject);
d->m_ui.pathChooser->setDisabled(d->m_forceSubProject);
d->m_ui.projectsDirectoryCheckBox->setDisabled(d->m_forceSubProject);
}
void ProjectIntroPage::setProjectList(const QStringList &projectList)
{
d->m_ui.projectComboBox->clear();
d->m_ui.projectComboBox->addItems(projectList);
}
void ProjectIntroPage::setProjectDirectories(const QStringList &directoryList)
{
d->m_projectDirectories = directoryList;
}
int ProjectIntroPage::projectIndex() const
{
return d->m_ui.projectComboBox->currentIndex();
}
2008-12-02 12:01:29 +01:00
void ProjectIntroPage::displayStatusMessage(StatusLabelMode m, const QString &s)
{
switch (m) {
case Error:
d->m_ui.stateLabel->setStyleSheet(d->m_errorStyleSheet);
2008-12-02 12:01:29 +01:00
break;
case Warning:
d->m_ui.stateLabel->setStyleSheet(d->m_warningStyleSheet);
2008-12-02 12:01:29 +01:00
break;
case Hint:
d->m_ui.stateLabel->setStyleSheet(d->m_hintStyleSheet);
2008-12-02 12:01:29 +01:00
break;
}
d->m_ui.stateLabel->setText(s);
2008-12-02 12:01:29 +01:00
}
void ProjectIntroPage::hideStatusLabel()
{
displayStatusMessage(Hint, QString());
}
bool ProjectIntroPage::useAsDefaultPath() const
{
return d->m_ui.projectsDirectoryCheckBox->isChecked();
}
void ProjectIntroPage::setUseAsDefaultPath(bool u)
{
d->m_ui.projectsDirectoryCheckBox->setChecked(u);
}
2008-12-02 14:09:21 +01:00
} // namespace Utils