digiKam
advancedsettings.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 : 2011-08-12
7  * Description : advanced settings for camera interface.
8  *
9  * Copyright (C) 2011-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option)
15  * any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================ */
23 
24 #ifndef DIGIKAM_ADVANCED_SETTINGS_H
25 #define DIGIKAM_ADVANCED_SETTINGS_H
26 
27 // Qt includes
28 
29 #include <QWidget>
30 #include <QDateTime>
31 
32 // Local settings
33 
34 #include "downloadsettings.h"
35 
36 class KConfigGroup;
37 
38 namespace Digikam
39 {
40 
41 class AdvancedSettings : public QWidget
42 {
43  Q_OBJECT
44 
45 public:
46 
47  explicit AdvancedSettings(QWidget* const parent = nullptr);
48  ~AdvancedSettings() override;
49 
50  void readSettings(KConfigGroup& group);
51  void saveSettings(KConfigGroup& group);
52 
53  DownloadSettings settings() const;
54 
55 Q_SIGNALS:
56 
58 
59 private:
60 
61  class Private;
62  Private* const d;
63 };
64 
65 } // namespace Digikam
66 
67 #endif // DIGIKAM_ADVANCED_SETTINGS_H
Definition: advancedsettings.h:42
~AdvancedSettings() override
Definition: advancedsettings.cpp:162
void saveSettings(KConfigGroup &group)
Definition: advancedsettings.cpp:181
void readSettings(KConfigGroup &group)
Definition: advancedsettings.cpp:167
DownloadSettings settings() const
Definition: advancedsettings.cpp:191
AdvancedSettings(QWidget *const parent=nullptr)
Definition: advancedsettings.cpp:82
Definition: downloadsettings.h:41
Definition: datefolderview.cpp:43