forked from qt-creator/qt-creator
146 lines
4.3 KiB
C++
146 lines
4.3 KiB
C++
|
|
/**************************************************************************
|
||
|
|
**
|
||
|
|
** This file is part of Qt Creator
|
||
|
|
**
|
||
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
||
|
|
**
|
||
|
|
** Contact: Qt Software Information (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
|
||
|
|
** contact the sales department at qt-sales@nokia.com.
|
||
|
|
**
|
||
|
|
**************************************************************************/
|
||
|
|
|
||
|
|
#include "vcsbasesettingspage.h"
|
||
|
|
#include "vcsbaseconstants.h"
|
||
|
|
#include "nicknamedialog.h"
|
||
|
|
|
||
|
|
#include "ui_vcsbasesettingspage.h"
|
||
|
|
|
||
|
|
#include <coreplugin/icore.h>
|
||
|
|
#include <extensionsystem/pluginmanager.h>
|
||
|
|
|
||
|
|
#include <QtCore/QDebug>
|
||
|
|
#include <QtCore/QCoreApplication>
|
||
|
|
#include <QtGui/QMessageBox>
|
||
|
|
|
||
|
|
namespace VCSBase {
|
||
|
|
namespace Internal {
|
||
|
|
|
||
|
|
// ------------------ VCSBaseSettingsWidget
|
||
|
|
|
||
|
|
VCSBaseSettingsWidget::VCSBaseSettingsWidget(QWidget *parent) :
|
||
|
|
QWidget(parent),
|
||
|
|
m_ui(new Ui::VCSBaseSettingsPage)
|
||
|
|
{
|
||
|
|
m_ui->setupUi(this);
|
||
|
|
m_ui->submitMessageCheckScriptChooser->setExpectedKind(Core::Utils::PathChooser::Command);
|
||
|
|
m_ui->nickNameFieldsFileChooser->setExpectedKind(Core::Utils::PathChooser::File);
|
||
|
|
m_ui->nickNameMailMapChooser->setExpectedKind(Core::Utils::PathChooser::File);
|
||
|
|
}
|
||
|
|
|
||
|
|
VCSBaseSettingsWidget::~VCSBaseSettingsWidget()
|
||
|
|
{
|
||
|
|
delete m_ui;
|
||
|
|
}
|
||
|
|
|
||
|
|
VCSBaseSettings VCSBaseSettingsWidget::settings() const
|
||
|
|
{
|
||
|
|
VCSBaseSettings rc;
|
||
|
|
rc.nickNameMailMap = m_ui->nickNameMailMapChooser->path();
|
||
|
|
rc.nickNameFieldListFile = m_ui->nickNameFieldsFileChooser->path();
|
||
|
|
rc.submitMessageCheckScript = m_ui->submitMessageCheckScriptChooser->path();
|
||
|
|
rc.promptForSubmit = m_ui->promptForSubmitCheckBox->isChecked();
|
||
|
|
return rc;
|
||
|
|
}
|
||
|
|
|
||
|
|
void VCSBaseSettingsWidget::setSettings(const VCSBaseSettings &s)
|
||
|
|
{
|
||
|
|
|
||
|
|
m_ui->nickNameMailMapChooser->setPath(s.nickNameMailMap);
|
||
|
|
m_ui->nickNameFieldsFileChooser->setPath(s.nickNameFieldListFile);
|
||
|
|
m_ui->submitMessageCheckScriptChooser->setPath(s.submitMessageCheckScript);
|
||
|
|
m_ui->promptForSubmitCheckBox->setChecked(s.promptForSubmit);
|
||
|
|
}
|
||
|
|
|
||
|
|
// --------------- VCSBaseSettingsPage
|
||
|
|
VCSBaseSettingsPage::VCSBaseSettingsPage(QObject *parent) :
|
||
|
|
Core::IOptionsPage(parent)
|
||
|
|
{
|
||
|
|
m_settings.fromSettings(Core::ICore::instance()->settings());
|
||
|
|
updateNickNames();
|
||
|
|
}
|
||
|
|
|
||
|
|
void VCSBaseSettingsPage::updateNickNames()
|
||
|
|
{
|
||
|
|
if (m_settings.nickNameMailMap.isEmpty()) {
|
||
|
|
NickNameDialog::clearNickNames();
|
||
|
|
} else {
|
||
|
|
QString errorMessage;
|
||
|
|
if (!NickNameDialog::readNickNamesFromMailCapFile(m_settings.nickNameMailMap, &errorMessage))
|
||
|
|
qWarning("%s", qPrintable(errorMessage));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
VCSBaseSettingsPage::~VCSBaseSettingsPage()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
QString VCSBaseSettingsPage::id() const
|
||
|
|
{
|
||
|
|
return QLatin1String(Constants::VCS_COMMON_SETTINGS_ID);
|
||
|
|
}
|
||
|
|
|
||
|
|
QString VCSBaseSettingsPage::trName() const
|
||
|
|
{
|
||
|
|
return QCoreApplication::translate("VCSBase", Constants::VCS_COMMON_SETTINGS_ID);
|
||
|
|
}
|
||
|
|
|
||
|
|
QString VCSBaseSettingsPage::category() const
|
||
|
|
{
|
||
|
|
return QLatin1String(Constants::VCS_SETTINGS_CATEGORY);
|
||
|
|
}
|
||
|
|
|
||
|
|
QString VCSBaseSettingsPage::trCategory() const
|
||
|
|
{
|
||
|
|
return QCoreApplication::translate("VCSBase", Constants::VCS_SETTINGS_CATEGORY);
|
||
|
|
}
|
||
|
|
|
||
|
|
QWidget *VCSBaseSettingsPage::createPage(QWidget *parent)
|
||
|
|
{
|
||
|
|
m_widget = new VCSBaseSettingsWidget(parent);
|
||
|
|
m_widget->setSettings(m_settings);
|
||
|
|
return m_widget;
|
||
|
|
}
|
||
|
|
|
||
|
|
void VCSBaseSettingsPage::apply()
|
||
|
|
{
|
||
|
|
if (m_widget) {
|
||
|
|
const VCSBaseSettings newSettings = m_widget->settings();
|
||
|
|
if (newSettings != m_settings) {
|
||
|
|
m_settings = newSettings;
|
||
|
|
m_settings.toSettings(Core::ICore::instance()->settings());
|
||
|
|
updateNickNames();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|