1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/******************************************************************************
* 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 <KConfigGroup>
#include <KLocalizedString>
#include <QCheckBox>
#include <QComboBox>
#include <QGroupBox>
#include <QHBoxLayout>
#include <QLabel>
#include <QVBoxLayout>
#include <QDialogButtonBox>
#include <QPushButton>
PushDialog::PushDialog (QWidget* parent ):
QDialog (parent, Qt::Dialog)
{
this->setWindowTitle(xi18nc("@title:window", "<application>Git</application> Push"));
m_buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok|QDialogButtonBox::Cancel);
QWidget *mainWidget = new QWidget(this);
QVBoxLayout *mainLayout = new QVBoxLayout;
this->setLayout(mainLayout);
mainLayout->addWidget(mainWidget);
QPushButton *okButton = m_buttonBox->button(QDialogButtonBox::Ok);
okButton->setDefault(true);
okButton->setShortcut(Qt::CTRL | Qt::Key_Return);
this->connect(m_buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
this->connect(m_buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
m_buttonBox->button(QDialogButtonBox::Ok)->setDefault(true);
okButton->setText(i18nc("@action:button", "Push"));
QWidget * boxWidget = new QWidget(this);
QVBoxLayout * boxLayout = new QVBoxLayout(boxWidget);
mainLayout->addWidget(boxWidget);
//Destination
QGroupBox * destinationGroupBox = new QGroupBox(boxWidget);
mainLayout->addWidget(destinationGroupBox);
boxLayout->addWidget(destinationGroupBox);
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 QComboBox(destinationGroupBox);
destinationHBox->addWidget(m_remoteComboBox);
destinationHBox->addStretch();
//Branches
QGroupBox* branchesGroupBox = new QGroupBox(boxWidget);
mainLayout->addWidget(branchesGroupBox);
boxLayout->addWidget(branchesGroupBox);
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 QComboBox(branchesGroupBox);
branchesHBox->addWidget(m_localBranchComboBox);
branchesHBox->addStretch();
QLabel * remoteBranchLabel = new QLabel(i18nc("@label:listbox", "Remote Branch:"), branchesGroupBox);
branchesHBox->addWidget(remoteBranchLabel);
m_remoteBranchComboBox = new QComboBox(branchesGroupBox);
branchesHBox->addWidget(m_remoteBranchComboBox);
QGroupBox* optionsGroupBox = new QGroupBox(boxWidget);
mainLayout->addWidget(optionsGroupBox);
boxLayout->addWidget(optionsGroupBox);
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);
mainLayout->addWidget(m_buttonBox);
//populate UI
GitWrapper * gitWrapper = GitWrapper::instance();
//get destinations
QStringList remotes = gitWrapper->pushRemotes();
m_remoteComboBox->addItems(remotes);
//get branch names
int currentBranchIndex;
const QStringList branches = gitWrapper->branches(¤tBranchIndex);
for (const QString& branch : branches) {
if (branch.startsWith(QLatin1String("remotes/"))) {
const QString remote = branch.section('/', 1, 1);
const QString name = branch.section('/', 2);
m_remoteBranches[remote] << name;
} else {
m_localBranchComboBox->addItem(branch);
}
}
if (currentBranchIndex >= 0) {
m_localBranchComboBox->setCurrentText(branches.at(currentBranchIndex));
}
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);
}
QPushButton *okButton = m_buttonBox->button(QDialogButtonBox::Ok);
okButton->setEnabled(m_remoteBranchComboBox->count() > 0);
}
|