digiKam
Loading...
Searching...
No Matches
setupdatabase.h
Go to the documentation of this file.
1/* ============================================================
2 *
3 * This file is a part of digiKam project
4 * https://www.digikam.org
5 *
6 * Date : 2009-11-14
7 * Description : database setup tab
8 *
9 * SPDX-FileCopyrightText: 2009-2010 by Holger Foerster <Hamsi2k at freenet dot de>
10 * SPDX-FileCopyrightText: 2012-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 *
14 * ============================================================ */
15
16#pragma once
17
18// Qt includes
19
20#include <QScrollArea>
21
22namespace Digikam
23{
24
25class SetupDatabase : public QScrollArea
26{
27 Q_OBJECT
28
29public:
30
31 explicit SetupDatabase(QWidget* const parent = nullptr);
32 ~SetupDatabase() override;
33
34 void applySettings();
35
36private:
37
38 void readSettings();
39 void createUpdateBox();
40
41private Q_SLOTS:
42
43 void upgradeUniqueHashes();
44 void showHashInformation();
45
46private:
47
48 class Private;
49 Private* const d = nullptr;
50};
51
52} // namespace Digikam
Definition setupdatabase.h:26
void applySettings()
Definition setupdatabase.cpp:98
~SetupDatabase() override
Definition setupdatabase.cpp:93
Definition datefolderview.cpp:34