/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2012 AudioCodes Ltd. ** ** Author: Orgad Shaneh ** ** 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 #include #include #include #include #include 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; rc.ccCommand = m_ui.commandPathChooser->rawPath(); rc.ccBinaryPath = m_ui.commandPathChooser->path(); 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(); 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); switch (s.diffType) { case GraphicalDiff: m_ui.graphicalDiffRadioButton->setChecked(true); m_ui.diffWidget->setEnabled(false); break; case ExternalDiff: m_ui.externalDiffRadioButton->setChecked(true); m_ui.diffWidget->setEnabled(true); break; } 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); }