mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
103 lines
4.2 KiB
C++
103 lines
4.2 KiB
C++
![]() |
/******************************************************************************
|
||
|
* Copyright (C) 2010 by Sebastian Doerner <sebastian@sebastian-doerner.de> *
|
||
|
* *
|
||
|
* This program is free software; you can redistribute it and/or modify *
|
||
|
* it under the terms of the GNU General Public License as published by *
|
||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||
|
* (at your option) any later version. *
|
||
|
* *
|
||
|
* This program is distributed in the hope that it will be useful, *
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||
|
* GNU General Public License for more details. *
|
||
|
* *
|
||
|
* You should have received a copy of the GNU General Public License *
|
||
|
* along with this program; if not, write to the *
|
||
|
* Free Software Foundation, Inc., *
|
||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
|
||
|
******************************************************************************/
|
||
|
|
||
|
#include "pulldialog.h"
|
||
|
#include "gitwrapper.h"
|
||
|
|
||
|
#include <kcombobox.h>
|
||
|
#include <klocale.h>
|
||
|
#include <kvbox.h>
|
||
|
#include <QGroupBox>
|
||
|
#include <QHBoxLayout>
|
||
|
#include <QLabel>
|
||
|
|
||
|
PullDialog::PullDialog(QWidget* parent):
|
||
|
KDialog(parent, Qt::Dialog)
|
||
|
{
|
||
|
this->setCaption(i18nc("@title:window", "<application>Git</application> Pull"));
|
||
|
this->setButtons(KDialog::Ok | KDialog::Cancel);
|
||
|
this->setDefaultButton(KDialog::Ok);
|
||
|
this->setButtonText(KDialog::Ok, i18nc("@action:button", "Pull"));
|
||
|
|
||
|
KVBox * vbox = new KVBox(this);
|
||
|
this->setMainWidget(vbox);
|
||
|
|
||
|
QGroupBox * sourceGroupBox = new QGroupBox(vbox);
|
||
|
sourceGroupBox->setTitle(i18nc("@title:group The source to pull from", "Source"));
|
||
|
QHBoxLayout * sourceHBox = new QHBoxLayout(sourceGroupBox);
|
||
|
sourceGroupBox->setLayout(sourceHBox);
|
||
|
|
||
|
QLabel * remoteLabel = new QLabel(i18nc("@label:listbox a git remote", "Remote:"), sourceGroupBox);
|
||
|
sourceHBox->addWidget(remoteLabel);
|
||
|
m_remoteComboBox = new KComboBox(false, sourceGroupBox);
|
||
|
sourceHBox->addWidget(m_remoteComboBox);
|
||
|
|
||
|
QLabel * remoteBranchLabel = new QLabel(i18nc("@label:listbox", "Remote branch:"), sourceGroupBox);
|
||
|
sourceHBox->addWidget(remoteBranchLabel);
|
||
|
m_remoteBranchComboBox = new KComboBox(false, sourceGroupBox);
|
||
|
sourceHBox->addWidget(m_remoteBranchComboBox);
|
||
|
|
||
|
//populate UI
|
||
|
GitWrapper * gitWrapper = GitWrapper::instance();
|
||
|
|
||
|
//get sources
|
||
|
m_remoteComboBox->addItems(gitWrapper->pullRemotes());
|
||
|
|
||
|
//get branch names
|
||
|
int currentBranchIndex;
|
||
|
QStringList branches = gitWrapper->branches(¤tBranchIndex);
|
||
|
|
||
|
for (int i=0; i < branches.size(); ++i) {
|
||
|
if (branches[i].startsWith(QLatin1String("remotes/")) &&
|
||
|
branches[i].count(QChar('/')) > 1) {
|
||
|
const QStringList sections = branches[i].split('/');
|
||
|
QHash<QString,QStringList>::iterator entry = m_remoteBranches.find(sections.at(1));
|
||
|
if (entry == m_remoteBranches.end()) {
|
||
|
m_remoteBranches.insert(sections.at(1), QStringList() << sections.at(2));
|
||
|
} else {
|
||
|
entry.value().append(sections.at(2));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
remoteSelectionChanged(m_remoteComboBox->currentText());
|
||
|
|
||
|
//Signals
|
||
|
connect(m_remoteComboBox, SIGNAL(currentIndexChanged(QString)),
|
||
|
this, SLOT(remoteSelectionChanged(QString)));
|
||
|
}
|
||
|
|
||
|
QString PullDialog::source() const
|
||
|
{
|
||
|
return m_remoteComboBox->currentText();
|
||
|
}
|
||
|
|
||
|
QString PullDialog::remoteBranch() const
|
||
|
{
|
||
|
return m_remoteBranchComboBox->currentText();
|
||
|
}
|
||
|
|
||
|
void PullDialog::remoteSelectionChanged(const QString& newRemote)
|
||
|
{
|
||
|
m_remoteBranchComboBox->clear();
|
||
|
m_remoteBranchComboBox->addItems(m_remoteBranches.value(newRemote));
|
||
|
this->enableButtonOk(m_remoteBranchComboBox->count() > 0);
|
||
|
}
|
||
|
|
||
|
#include "moc_pulldialog.cpp"
|