Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DatabaseSettingsWidget.h « gui « src - github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0cae5dbc9653d8a4496663342cb28d2b47a1893 (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
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
/*
 *  Copyright (C) 2012 Felix Geyer <debfx@fobos.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 or (at your option)
 *  version 3 of the License.
 *
 *  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, see <http://www.gnu.org/licenses/>.
 */

#ifndef KEEPASSX_DATABASESETTINGSWIDGET_H
#define KEEPASSX_DATABASESETTINGSWIDGET_H

#include <QScopedPointer>
#include <QWidget>
#include <QSpinBox>
#include <QLayout>

#include "gui/DialogyWidget.h"
#include "crypto/kdf/Kdf.h"

class Database;

namespace Ui
{
class DatabaseSettingsWidget;
class DatabaseSettingsWidgetGeneral;
class DatabaseSettingsWidgetEncryption;
}

class DatabaseSettingsWidget: public DialogyWidget
{
Q_OBJECT

public:
    explicit DatabaseSettingsWidget(QWidget* parent = nullptr);
    ~DatabaseSettingsWidget();
    Q_DISABLE_COPY(DatabaseSettingsWidget)

    void load(Database* db);

signals:
    void editFinished(bool accepted);

private slots:
    void save();
    void reject();
    void transformRoundsBenchmark();
    void kdfChanged(int index);
    void memoryChanged(int value);
    void parallelismChanged(int value);

private:
    void truncateHistories();

    const QScopedPointer<Ui::DatabaseSettingsWidget> m_ui;
    const QScopedPointer<Ui::DatabaseSettingsWidgetGeneral> m_uiGeneral;
    const QScopedPointer<Ui::DatabaseSettingsWidgetEncryption> m_uiEncryption;
    QWidget* m_uiGeneralPage;
    QWidget* m_uiEncryptionPage;
    Database* m_db;
};

#endif // KEEPASSX_DATABASESETTINGSWIDGET_H