2023-01-27 14:17:46 +01:00
|
|
|
// Copyright (c) 2018 Artur Shepilko
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2016-11-16 12:51:32 -06:00
|
|
|
|
|
|
|
|
#include "configuredialog.h"
|
|
|
|
|
#include "ui_configuredialog.h"
|
|
|
|
|
|
|
|
|
|
#include "fossilsettings.h"
|
|
|
|
|
|
|
|
|
|
#include <utils/pathchooser.h>
|
|
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
|
|
|
|
|
|
namespace Fossil {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class ConfigureDialogPrivate {
|
|
|
|
|
public:
|
2022-10-07 08:38:02 +02:00
|
|
|
RepositorySettings settings() const
|
|
|
|
|
{
|
|
|
|
|
return {m_ui.userLineEdit->text().trimmed(),
|
|
|
|
|
m_ui.sslIdentityFilePathChooser->filePath().toString(),
|
|
|
|
|
m_ui.disableAutosyncCheckBox->isChecked()
|
|
|
|
|
? RepositorySettings::AutosyncOff : RepositorySettings::AutosyncOn};
|
2016-11-16 12:51:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void updateUi() {
|
|
|
|
|
m_ui.userLineEdit->setText(m_settings.user.trimmed());
|
|
|
|
|
m_ui.userLineEdit->selectAll();
|
|
|
|
|
m_ui.sslIdentityFilePathChooser->setPath(QDir::toNativeSeparators(m_settings.sslIdentityFile));
|
|
|
|
|
m_ui.disableAutosyncCheckBox->setChecked(m_settings.autosync == RepositorySettings::AutosyncOff);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ui::ConfigureDialog m_ui;
|
|
|
|
|
RepositorySettings m_settings;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ConfigureDialog::ConfigureDialog(QWidget *parent) : QDialog(parent),
|
|
|
|
|
d(new ConfigureDialogPrivate)
|
|
|
|
|
{
|
|
|
|
|
d->m_ui.setupUi(this);
|
|
|
|
|
d->m_ui.sslIdentityFilePathChooser->setExpectedKind(Utils::PathChooser::File);
|
|
|
|
|
d->m_ui.sslIdentityFilePathChooser->setPromptDialogTitle(tr("SSL/TLS Identity Key"));
|
|
|
|
|
setWindowTitle(tr("Configure Repository"));
|
|
|
|
|
d->updateUi();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ConfigureDialog::~ConfigureDialog()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const RepositorySettings ConfigureDialog::settings() const
|
|
|
|
|
{
|
|
|
|
|
return d->settings();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConfigureDialog::setSettings(const RepositorySettings &settings)
|
|
|
|
|
{
|
|
|
|
|
d->m_settings = settings;
|
|
|
|
|
d->updateUi();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConfigureDialog::changeEvent(QEvent *e)
|
|
|
|
|
{
|
|
|
|
|
QDialog::changeEvent(e);
|
|
|
|
|
switch (e->type()) {
|
|
|
|
|
case QEvent::LanguageChange:
|
|
|
|
|
d->m_ui.retranslateUi(this);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Fossil
|