forked from qt-creator/qt-creator
VcsBase: Add history completer to path choosers
Change-Id: I522bdb7e035b772265cec1d1b0296dd22ccc1691 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
@@ -75,6 +75,7 @@ BaseCheckoutWizardPage::BaseCheckoutWizardPage(QWidget *parent) :
|
|||||||
this, SLOT(slotChanged()));
|
this, SLOT(slotChanged()));
|
||||||
|
|
||||||
d->ui.pathChooser->setExpectedKind(Utils::PathChooser::ExistingDirectory);
|
d->ui.pathChooser->setExpectedKind(Utils::PathChooser::ExistingDirectory);
|
||||||
|
d->ui.pathChooser->setHistoryCompleter(QLatin1String("Vcs.CheckoutDir.History"));
|
||||||
connect(d->ui.pathChooser, SIGNAL(validChanged()), this, SLOT(slotChanged()));
|
connect(d->ui.pathChooser, SIGNAL(validChanged()), this, SLOT(slotChanged()));
|
||||||
|
|
||||||
d->ui.branchComboBox->setEnabled(false);
|
d->ui.branchComboBox->setEnabled(false);
|
||||||
|
|||||||
@@ -48,13 +48,18 @@ CommonSettingsWidget::CommonSettingsWidget(QWidget *parent) :
|
|||||||
{
|
{
|
||||||
m_ui->setupUi(this);
|
m_ui->setupUi(this);
|
||||||
m_ui->submitMessageCheckScriptChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
m_ui->submitMessageCheckScriptChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
||||||
|
m_ui->submitMessageCheckScriptChooser->setHistoryCompleter(QLatin1String("Vcs.MessageCheckScript.History"));
|
||||||
m_ui->nickNameFieldsFileChooser->setExpectedKind(Utils::PathChooser::File);
|
m_ui->nickNameFieldsFileChooser->setExpectedKind(Utils::PathChooser::File);
|
||||||
|
m_ui->nickNameFieldsFileChooser->setHistoryCompleter(QLatin1String("Vcs.NickFields.History"));
|
||||||
m_ui->nickNameMailMapChooser->setExpectedKind(Utils::PathChooser::File);
|
m_ui->nickNameMailMapChooser->setExpectedKind(Utils::PathChooser::File);
|
||||||
|
m_ui->nickNameMailMapChooser->setHistoryCompleter(QLatin1String("Vcs.NickMap.History"));
|
||||||
m_ui->sshPromptChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
m_ui->sshPromptChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
||||||
|
m_ui->sshPromptChooser->setHistoryCompleter(QLatin1String("Vcs.SshPrompt.History"));
|
||||||
const QString patchToolTip = tr("Command used for reverting diff chunks");
|
const QString patchToolTip = tr("Command used for reverting diff chunks");
|
||||||
m_ui->patchCommandLabel->setToolTip(patchToolTip);
|
m_ui->patchCommandLabel->setToolTip(patchToolTip);
|
||||||
m_ui->patchChooser->setToolTip(patchToolTip);
|
m_ui->patchChooser->setToolTip(patchToolTip);
|
||||||
m_ui->patchChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
m_ui->patchChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
||||||
|
m_ui->patchChooser->setHistoryCompleter(QLatin1String("Vcs.PatchCommand.History"));
|
||||||
}
|
}
|
||||||
|
|
||||||
CommonSettingsWidget::~CommonSettingsWidget()
|
CommonSettingsWidget::~CommonSettingsWidget()
|
||||||
|
|||||||
Reference in New Issue
Block a user