2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 Hugues Delorme
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2016-01-15 14:57:40 +01:00
|
|
|
|
2011-02-28 13:40:06 +01:00
|
|
|
#include "pullorpushdialog.h"
|
|
|
|
|
#include "ui_pullorpushdialog.h"
|
|
|
|
|
|
2012-01-12 11:32:45 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
|
using namespace Bazaar::Internal;
|
|
|
|
|
|
2016-02-03 17:35:54 +01:00
|
|
|
PullOrPushDialog::PullOrPushDialog(Mode mode, QWidget *parent) : QDialog(parent),
|
|
|
|
|
m_mode(mode),
|
|
|
|
|
m_ui(new Ui::PullOrPushDialog)
|
2011-02-28 13:40:06 +01:00
|
|
|
{
|
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
m_ui->localPathChooser->setExpectedKind(Utils::PathChooser::Directory);
|
2011-02-28 15:05:40 +01:00
|
|
|
if (m_mode == PullMode) {
|
2011-02-28 17:28:41 +01:00
|
|
|
this->setWindowTitle(tr("Pull Source"));
|
2011-02-28 13:40:06 +01:00
|
|
|
m_ui->useExistingDirCheckBox->setVisible(false);
|
|
|
|
|
m_ui->createPrefixCheckBox->setVisible(false);
|
2011-02-28 15:05:40 +01:00
|
|
|
} else {
|
2011-02-28 17:28:41 +01:00
|
|
|
this->setWindowTitle(tr("Push Destination"));
|
2011-02-28 13:40:06 +01:00
|
|
|
m_ui->localCheckBox->setVisible(false);
|
|
|
|
|
}
|
|
|
|
|
this->adjustSize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PullOrPushDialog::~PullOrPushDialog()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString PullOrPushDialog::branchLocation() const
|
|
|
|
|
{
|
|
|
|
|
if (m_ui->defaultButton->isChecked())
|
|
|
|
|
return QString();
|
2011-02-28 15:05:40 +01:00
|
|
|
if (m_ui->localButton->isChecked())
|
2020-04-09 11:35:12 +02:00
|
|
|
return m_ui->localPathChooser->filePath().toString();
|
2011-02-28 15:05:40 +01:00
|
|
|
return m_ui->urlLineEdit->text();
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool PullOrPushDialog::isRememberOptionEnabled() const
|
|
|
|
|
{
|
|
|
|
|
if (m_ui->defaultButton->isChecked())
|
|
|
|
|
return false;
|
2011-02-28 15:05:40 +01:00
|
|
|
return m_ui->rememberCheckBox->isChecked();
|
2011-02-28 13:40:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool PullOrPushDialog::isOverwriteOptionEnabled() const
|
|
|
|
|
{
|
|
|
|
|
return m_ui->overwriteCheckBox->isChecked();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString PullOrPushDialog::revision() const
|
|
|
|
|
{
|
|
|
|
|
return m_ui->revisionLineEdit->text().simplified();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool PullOrPushDialog::isLocalOptionEnabled() const
|
|
|
|
|
{
|
2012-01-12 11:32:45 +01:00
|
|
|
QTC_ASSERT(m_mode == PullMode, return false);
|
2011-02-28 13:40:06 +01:00
|
|
|
return m_ui->localCheckBox->isChecked();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool PullOrPushDialog::isUseExistingDirectoryOptionEnabled() const
|
|
|
|
|
{
|
2012-01-12 11:32:45 +01:00
|
|
|
QTC_ASSERT(m_mode == PushMode, return false);
|
2011-02-28 13:40:06 +01:00
|
|
|
return m_ui->useExistingDirCheckBox->isChecked();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool PullOrPushDialog::isCreatePrefixOptionEnabled() const
|
|
|
|
|
{
|
2012-01-12 11:32:45 +01:00
|
|
|
QTC_ASSERT(m_mode == PushMode, return false);
|
2011-02-28 13:40:06 +01:00
|
|
|
return m_ui->createPrefixCheckBox->isChecked();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PullOrPushDialog::changeEvent(QEvent *e)
|
|
|
|
|
{
|
|
|
|
|
QDialog::changeEvent(e);
|
|
|
|
|
switch (e->type()) {
|
|
|
|
|
case QEvent::LanguageChange:
|
|
|
|
|
m_ui->retranslateUi(this);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|