digiKam
Loading...
Searching...
No Matches
systemsettingswidget.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 : 2020-27-07
7 * Description : system settings widget
8 *
9 * SPDX-FileCopyrightText: 2020-2024 by Maik Qualmann <metzpinguin at gmail dot com>
10 *
11 * SPDX-License-Identifier: GPL-2.0-or-later
12 *
13 * ============================================================ */
14
15#pragma once
16
17// Qt includes
18
19#include <QWidget>
20
21// Local includes
22
23#include "digikam_export.h"
24
25namespace Digikam
26{
27
28class DIGIKAM_EXPORT SystemSettingsWidget : public QWidget
29{
30 Q_OBJECT
31
32public:
33
34 explicit SystemSettingsWidget(QWidget* const parent);
35 ~SystemSettingsWidget() override;
36
37public:
38
39 void readSettings();
40 void saveSettings();
41
42private Q_SLOTS:
43
44 void slotBinaryDownload();
45
46private:
47
48 class Private;
49 Private* const d = nullptr;
50};
51
52} // namespace Digikam
Definition systemsettingswidget.h:29
Definition datefolderview.cpp:34