File indexing completed on 2025-01-05 04:00:11

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2007-02-06
0007  * Description : Editor RAW decoding settings.
0008  *
0009  * SPDX-FileCopyrightText: 2007-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  *
0011  * SPDX-License-Identifier: GPL-2.0-or-later
0012  *
0013  * ============================================================ */
0014 
0015 #ifndef DIGIKAM_SETUP_RAW_H
0016 #define DIGIKAM_SETUP_RAW_H
0017 
0018 // Qt includes
0019 
0020 #include <QObject>
0021 
0022 // Local includes
0023 
0024 #include "digikam_export.h"
0025 
0026 class QTabWidget;
0027 
0028 namespace Digikam
0029 {
0030 
0031 class DIGIKAM_EXPORT SetupRaw : public QObject
0032 {
0033     Q_OBJECT
0034 
0035 public:
0036 
0037     explicit SetupRaw(QTabWidget* const tab);
0038     ~SetupRaw() override;
0039 
0040     void applySettings();
0041     void readSettings();
0042 
0043 private Q_SLOTS:
0044 
0045     void slotSixteenBitsImageToggled(bool);
0046     void slotBehaviorChanged();
0047     void slotAboutRawImportPlugin();
0048 
0049 private:
0050 
0051     class Private;
0052     Private* const d;
0053 };
0054 
0055 } // namespace Digikam
0056 
0057 #endif // DIGIKAM_SETUP_RAW_H