forked from qt-creator/qt-creator
Git: Add remote URL history completer
To checkout wizard and to remote add dialog. Change-Id: I8e4e011a41a862a40d6c1eadd0eaf3ce55f6db80 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
André Hartmann
parent
a59420a9c3
commit
ca22b33ddc
@@ -41,7 +41,11 @@
|
||||
"trDisplayName": "Repository:",
|
||||
"type": "LineEdit",
|
||||
"isComplete": "%{JS: Vcs.isValidRepoUrl('%{vcsId}', '%{Repo}')}",
|
||||
"trIncompleteMessage": "Repository URL is not valid"
|
||||
"trIncompleteMessage": "Repository URL is not valid",
|
||||
"data":
|
||||
{
|
||||
"historyId": "Git.RemoteUrls"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Branch",
|
||||
|
@@ -53,6 +53,7 @@ public:
|
||||
m_remoteNames(remoteNames)
|
||||
{
|
||||
m_ui.setupUi(this);
|
||||
m_ui.nameEdit->setHistoryCompleter("Git.RemoteNames");
|
||||
m_ui.nameEdit->setValidationFunction([this](Utils::FancyLineEdit *edit, QString *errorMessage) {
|
||||
if (!edit)
|
||||
return false;
|
||||
@@ -84,6 +85,7 @@ public:
|
||||
m_ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(m_ui.nameEdit->isValid());
|
||||
});
|
||||
|
||||
m_ui.urlEdit->setHistoryCompleter("Git.RemoteUrls");
|
||||
m_ui.urlEdit->setValidationFunction([](Utils::FancyLineEdit *edit, QString *errorMessage) {
|
||||
if (!edit || edit->text().isEmpty())
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user