digiKam
Loading...
Searching...
No Matches
redeyecorrectionsettings.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 : 2010-02-09
7 * Description : Red Eyes auto correction settings view.
8 *
9 * SPDX-FileCopyrightText: 2010-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 * SPDX-FileCopyrightText: 2016 by Omar Amin <Omar dot moh dot amin at gmail dot com>
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 *
14 * ============================================================ */
15
16#pragma once
17
18// Local includes
19
20#include <QWidget>
21
22// Local includes
23
24#include "digikam_export.h"
26
27class KConfigGroup;
28
29namespace Digikam
30{
31
32class DIGIKAM_EXPORT RedEyeCorrectionSettings : public QWidget
33{
34 Q_OBJECT
35
36public:
37
38 explicit RedEyeCorrectionSettings(QWidget* const parent = nullptr);
40
41 RedEyeCorrectionContainer defaultSettings() const;
42 void resetToDefault();
43
44 RedEyeCorrectionContainer settings() const;
45 void setSettings(const RedEyeCorrectionContainer& settings);
46
47 void readSettings(const KConfigGroup& group);
48 void writeSettings(KConfigGroup& group);
49
50Q_SIGNALS:
51
53
54private:
55
56 class Private;
57 Private* const d = nullptr;
58};
59
60} // namespace Digikam
Definition redeyecorrectioncontainer.h:32
Definition redeyecorrectionsettings.h:33
Definition datefolderview.cpp:34