2011-06-05 17:58:02 +03:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2012 AudioCodes Ltd.
|
|
|
|
|
**
|
|
|
|
|
** Author: Orgad Shaneh <orgad.shaneh@audiocodes.com>
|
|
|
|
|
**
|
|
|
|
|
** Contact: http://www.qt-project.org/
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** 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, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "clearcaseconstants.h"
|
|
|
|
|
#include "clearcasesettings.h"
|
|
|
|
|
#include "clearcaseplugin.h"
|
|
|
|
|
#include "settingspage.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2012-09-02 11:26:26 +03:00
|
|
|
#include <utils/environment.h>
|
2011-06-05 17:58:02 +03:00
|
|
|
#include <utils/pathchooser.h>
|
|
|
|
|
|
|
|
|
|
#include <QCoreApplication>
|
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
#include <QTextStream>
|
|
|
|
|
|
|
|
|
|
using namespace ClearCase::Internal;
|
|
|
|
|
using namespace Utils;
|
|
|
|
|
|
|
|
|
|
SettingsPageWidget::SettingsPageWidget(QWidget *parent) :
|
|
|
|
|
QWidget(parent)
|
|
|
|
|
{
|
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
|
m_ui.commandPathChooser->setPromptDialogTitle(tr("ClearCase Command"));
|
|
|
|
|
m_ui.commandPathChooser->setExpectedKind(PathChooser::ExistingCommand);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ClearCaseSettings SettingsPageWidget::settings() const
|
|
|
|
|
{
|
|
|
|
|
ClearCaseSettings rc;
|
2012-08-21 10:06:05 +03:00
|
|
|
rc.ccCommand = m_ui.commandPathChooser->rawPath();
|
|
|
|
|
rc.ccBinaryPath = m_ui.commandPathChooser->path();
|
2011-06-05 17:58:02 +03:00
|
|
|
rc.timeOutS = m_ui.timeOutSpinBox->value();
|
|
|
|
|
rc.autoCheckOut = m_ui.autoCheckOutCheckBox->isChecked();
|
|
|
|
|
if (m_ui.graphicalDiffRadioButton->isChecked())
|
|
|
|
|
rc.diffType = GraphicalDiff;
|
|
|
|
|
else if (m_ui.externalDiffRadioButton->isChecked())
|
|
|
|
|
rc.diffType = ExternalDiff;
|
|
|
|
|
rc.autoAssignActivityName = m_ui.autoAssignActivityCheckBox->isChecked();
|
|
|
|
|
rc.historyCount = m_ui.historyCountSpinBox->value();
|
|
|
|
|
rc.promptToCheckIn = m_ui.promptCheckBox->isChecked();
|
|
|
|
|
rc.disableIndexer = m_ui.disableIndexerCheckBox->isChecked();
|
|
|
|
|
rc.diffArgs = m_ui.diffArgsEdit->text();
|
|
|
|
|
rc.indexOnlyVOBs = m_ui.indexOnlyVOBsEdit->text();
|
2012-09-02 11:26:26 +03:00
|
|
|
rc.extDiffAvailable = m_ui.externalDiffRadioButton->isEnabled();
|
2011-06-05 17:58:02 +03:00
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsPageWidget::setSettings(const ClearCaseSettings &s)
|
|
|
|
|
{
|
|
|
|
|
m_ui.commandPathChooser->setPath(s.ccCommand);
|
|
|
|
|
m_ui.timeOutSpinBox->setValue(s.timeOutS);
|
|
|
|
|
m_ui.autoCheckOutCheckBox->setChecked(s.autoCheckOut);
|
2012-09-02 11:26:26 +03:00
|
|
|
bool extDiffAvailable = !Utils::Environment::systemEnvironment().searchInPath(QLatin1String("diff")).isEmpty();
|
|
|
|
|
if (extDiffAvailable) {
|
|
|
|
|
m_ui.diffWarningLabel->setVisible(false);
|
|
|
|
|
} else {
|
|
|
|
|
QString diffWarning = tr("In order to use External diff, 'diff' command needs to be accessible.");
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
diffWarning.append(tr(" DiffUtils is available for free download "
|
|
|
|
|
"<a href=\"http://gnuwin32.sourceforge.net/packages/diffutils.htm\">here</a>. "
|
|
|
|
|
"Please extract it to a directory in your PATH."));
|
|
|
|
|
#endif
|
|
|
|
|
m_ui.diffWarningLabel->setText(diffWarning);
|
|
|
|
|
m_ui.externalDiffRadioButton->setEnabled(false);
|
2011-06-05 17:58:02 +03:00
|
|
|
}
|
2012-09-02 11:26:26 +03:00
|
|
|
if (extDiffAvailable && s.diffType == ExternalDiff)
|
|
|
|
|
m_ui.externalDiffRadioButton->setChecked(true);
|
|
|
|
|
else
|
|
|
|
|
m_ui.graphicalDiffRadioButton->setChecked(true);
|
2011-06-05 17:58:02 +03:00
|
|
|
m_ui.autoAssignActivityCheckBox->setChecked(s.autoAssignActivityName);
|
|
|
|
|
m_ui.historyCountSpinBox->setValue(s.historyCount);
|
|
|
|
|
m_ui.promptCheckBox->setChecked(s.promptToCheckIn);
|
|
|
|
|
m_ui.disableIndexerCheckBox->setChecked(s.disableIndexer);
|
|
|
|
|
m_ui.diffArgsEdit->setText(s.diffArgs);
|
|
|
|
|
m_ui.indexOnlyVOBsEdit->setText(s.indexOnlyVOBs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SettingsPageWidget::searchKeywords() const
|
|
|
|
|
{
|
|
|
|
|
QString rc;
|
|
|
|
|
QLatin1Char sep(' ');
|
|
|
|
|
QTextStream(&rc) << m_ui.commandLabel->text()
|
|
|
|
|
<< sep << m_ui.autoCheckOutCheckBox->text()
|
|
|
|
|
<< sep << m_ui.externalDiffRadioButton->text()
|
|
|
|
|
<< sep << m_ui.graphicalDiffRadioButton->text()
|
|
|
|
|
<< sep << m_ui.diffArgsLabel->text()
|
|
|
|
|
<< sep << m_ui.historyCountLabel->text()
|
|
|
|
|
<< sep << m_ui.promptCheckBox->text()
|
|
|
|
|
<< sep << m_ui.disableIndexerCheckBox->text()
|
|
|
|
|
<< sep << m_ui.timeOutLabel->text()
|
|
|
|
|
<< sep << m_ui.indexOnlyVOBsLabel->text()
|
|
|
|
|
;
|
|
|
|
|
rc.remove(QLatin1Char('&'));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SettingsPage::SettingsPage() :
|
|
|
|
|
m_widget(0)
|
|
|
|
|
{
|
|
|
|
|
setId(QLatin1String(ClearCase::Constants::VCS_ID_CLEARCASE));
|
|
|
|
|
setDisplayName(tr("ClearCase"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *SettingsPage::createPage(QWidget *parent)
|
|
|
|
|
{
|
|
|
|
|
m_widget = new SettingsPageWidget(parent);
|
|
|
|
|
m_widget->setSettings(ClearCasePlugin::instance()->settings());
|
|
|
|
|
if (m_searchKeywords.isEmpty())
|
|
|
|
|
m_searchKeywords = m_widget->searchKeywords();
|
|
|
|
|
return m_widget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SettingsPage::apply()
|
|
|
|
|
{
|
|
|
|
|
ClearCasePlugin::instance()->setSettings(m_widget->settings());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SettingsPage::matches(const QString &s) const
|
|
|
|
|
{
|
|
|
|
|
return m_searchKeywords.contains(s, Qt::CaseInsensitive);
|
|
|
|
|
}
|