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