blob: eddc15d47571fef658c409b842b37a344f5a5154 (
plain)
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
|
// Copyright (c) 2018 Artur Shepilko
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <QDialog>
namespace Fossil {
namespace Internal {
struct RepositorySettings;
class ConfigureDialogPrivate;
class ConfigureDialog final : public QDialog
{
Q_OBJECT
public:
explicit ConfigureDialog(QWidget *parent = nullptr);
~ConfigureDialog() final;
const RepositorySettings settings() const;
void setSettings(const RepositorySettings &settings);
private:
ConfigureDialogPrivate *d = nullptr;
};
} // namespace Internal
} // namespace Fossil
|