mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
155 lines
6.3 KiB
C++
155 lines
6.3 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 "pushdialog.h"
|
|
#include "gitwrapper.h"
|
|
|
|
#include <kcombobox.h>
|
|
#include <klocale.h>
|
|
#include <kvbox.h>
|
|
#include <QCheckBox>
|
|
#include <QGroupBox>
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
|
|
PushDialog::PushDialog (QWidget* parent ):
|
|
KDialog (parent, Qt::Dialog)
|
|
{
|
|
this->setCaption(i18nc("@title:window", "<application>Git</application> Push"));
|
|
this->setButtons(KDialog::Ok | KDialog::Cancel);
|
|
this->setDefaultButton(KDialog::Ok);
|
|
this->setButtonText(KDialog::Ok, i18nc("@action:button", "Push"));
|
|
|
|
KVBox * vbox = new KVBox(this);
|
|
this->setMainWidget(vbox);
|
|
|
|
//Destination
|
|
QGroupBox * destinationGroupBox = new QGroupBox(vbox);
|
|
destinationGroupBox->setTitle(i18nc("@title:group The remote host", "Destination"));
|
|
QHBoxLayout * destinationHBox = new QHBoxLayout(destinationGroupBox);
|
|
destinationGroupBox->setLayout(destinationHBox);
|
|
|
|
QLabel * remoteLabel = new QLabel(i18nc("@label:listbox a git remote", "Remote:"), destinationGroupBox);
|
|
destinationHBox->addWidget(remoteLabel);
|
|
m_remoteComboBox = new KComboBox(false, destinationGroupBox);
|
|
destinationHBox->addWidget(m_remoteComboBox);
|
|
destinationHBox->addStretch();
|
|
|
|
//Branches
|
|
QGroupBox* branchesGroupBox = new QGroupBox(vbox);
|
|
branchesGroupBox->setTitle(i18nc("@title:group", "Branches"));
|
|
QHBoxLayout * branchesHBox = new QHBoxLayout(branchesGroupBox);
|
|
branchesGroupBox->setLayout(branchesHBox);
|
|
|
|
QLabel * localBranchLabel = new QLabel(i18nc("@label:listbox", "Local Branch:"), branchesGroupBox);
|
|
branchesHBox->addWidget(localBranchLabel);
|
|
m_localBranchComboBox = new KComboBox(false, branchesGroupBox);
|
|
branchesHBox->addWidget(m_localBranchComboBox);
|
|
|
|
branchesHBox->addStretch();
|
|
|
|
QLabel * remoteBranchLabel = new QLabel(i18nc("@label:listbox", "Remote Branch:"), branchesGroupBox);
|
|
branchesHBox->addWidget(remoteBranchLabel);
|
|
m_remoteBranchComboBox = new KComboBox(false, branchesGroupBox);
|
|
branchesHBox->addWidget(m_remoteBranchComboBox);
|
|
|
|
QGroupBox* optionsGroupBox = new QGroupBox(vbox);
|
|
optionsGroupBox->setTitle(i18nc("@title:group", "Options"));
|
|
QHBoxLayout * optionsHBox = new QHBoxLayout(optionsGroupBox);
|
|
optionsGroupBox->setLayout(optionsHBox);
|
|
m_forceCheckBox = new QCheckBox(i18nc("@option:check", "Force"), optionsGroupBox);
|
|
m_forceCheckBox->setToolTip(i18nc("@info:tooltip", "Proceed even if the remote branch is not an ancestor of the local branch."));
|
|
optionsHBox->addWidget(m_forceCheckBox);
|
|
|
|
//populate UI
|
|
GitWrapper * gitWrapper = GitWrapper::instance();
|
|
|
|
//get destinations
|
|
QStringList remotes = gitWrapper->pushRemotes();
|
|
m_remoteComboBox->addItems(remotes);
|
|
|
|
//get branch names
|
|
int currentBranchIndex;
|
|
QStringList branches = gitWrapper->branches(¤tBranchIndex);
|
|
|
|
for (int i=0; i < branches.size(); ++i){
|
|
if (branches[i].startsWith(QLatin1String("remotes/"))) {
|
|
const QStringList sections = branches[i].split('/');
|
|
if (sections.size() > 2) {
|
|
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));
|
|
}
|
|
}
|
|
} else {
|
|
m_localBranchComboBox->addItem(branches[i]);
|
|
if (i == currentBranchIndex) {
|
|
m_localBranchComboBox->setCurrentIndex(m_localBranchComboBox->count()-1);
|
|
}
|
|
}
|
|
}
|
|
remoteSelectionChanged(m_remoteComboBox->currentText());
|
|
|
|
//Signals
|
|
connect(m_remoteComboBox, SIGNAL(currentIndexChanged(QString)),
|
|
this, SLOT(remoteSelectionChanged(QString)));
|
|
connect(m_localBranchComboBox, SIGNAL(currentIndexChanged(QString)),
|
|
this, SLOT(localBranchSelectionChanged(QString)));
|
|
}
|
|
|
|
QString PushDialog::destination() const
|
|
{
|
|
return m_remoteComboBox->currentText();
|
|
}
|
|
|
|
QString PushDialog::localBranch() const
|
|
{
|
|
return m_localBranchComboBox->currentText();
|
|
}
|
|
|
|
QString PushDialog::remoteBranch() const
|
|
{
|
|
return m_remoteBranchComboBox->currentText();
|
|
}
|
|
|
|
bool PushDialog::force() const
|
|
{
|
|
return m_forceCheckBox->isChecked();
|
|
}
|
|
|
|
void PushDialog::remoteSelectionChanged(const QString& newRemote)
|
|
{
|
|
m_remoteBranchComboBox->clear();
|
|
m_remoteBranchComboBox->addItems(m_remoteBranches.value(newRemote));
|
|
localBranchSelectionChanged(m_localBranchComboBox->currentText());
|
|
}
|
|
|
|
void PushDialog::localBranchSelectionChanged(const QString& newLocalBranch)
|
|
{
|
|
//select matching remote branch if possible
|
|
const int index = m_remoteBranchComboBox->findText(newLocalBranch);
|
|
if (index != -1) {
|
|
m_remoteBranchComboBox->setCurrentIndex(index);
|
|
}
|
|
this->enableButtonOk(m_remoteBranchComboBox->count() > 0);
|
|
}
|
|
|
|
#include "moc_pushdialog.cpp"
|