digiKam
Loading...
Searching...
No Matches
setupraw.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 : 2007-02-06
7 * Description : Editor RAW decoding settings.
8 *
9 * SPDX-FileCopyrightText: 2007-2024 by Gilles Caulier <caulier dot gilles 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 <QObject>
20
21// Local includes
22
23#include "digikam_export.h"
24
25class QTabWidget;
26
27namespace Digikam
28{
29
30class DIGIKAM_EXPORT SetupRaw : public QObject
31{
32 Q_OBJECT
33
34public:
35
36 explicit SetupRaw(QTabWidget* const tab);
37 ~SetupRaw() override;
38
39 void applySettings();
40 void readSettings();
41
42private Q_SLOTS:
43
44 void slotSixteenBitsImageToggled(bool);
45 void slotBehaviorChanged();
46 void slotAboutRawImportPlugin();
47
48private:
49
50 class Private;
51 Private* const d = nullptr;
52};
53
54} // namespace Digikam
Definition setupraw.h:31
Definition datefolderview.cpp:34