digiKam
imagequalitysettings.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 : 2013-08-19
7  * Description : Image Quality settings widget
8  *
9  * Copyright (C) 2013-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  * Copyright (C) 2013-2014 by Gowtham Ashok <gwty93 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_IMAGE_QUALITY_SETTINGS_H
26 #define DIGIKAM_IMAGE_QUALITY_SETTINGS_H
27 
28 // Qt includes
29 
30 #include <QWidget>
31 
32 // Local includes
33 
34 #include "digikam_export.h"
35 #include "imagequalitycontainer.h"
36 
37 namespace Digikam
38 {
39 
40 class DIGIKAM_EXPORT ImageQualitySettings : public QWidget
41 {
42  Q_OBJECT
43 
44 public:
45 
46  explicit ImageQualitySettings(QWidget* const parent = nullptr);
47  ~ImageQualitySettings() override;
48 
49  void applySettings();
50  void readSettings();
51  ImageQualityContainer getImageQualityContainer() const;
52 
53 private:
54 
55  class Private;
56  Private* const d;
57 };
58 
59 } // namespace Digikam
60 
61 #endif // DIGIKAM_IMAGE_QUALITY_SETTINGS_H
Definition: imagequalitycontainer.h:39
Definition: imagequalitysettings.h:41
Definition: datefolderview.cpp:43