digiKam
setupimagequalitysorter.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 setup page
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_SETUP_IMAGE_QUALITY_SORTER_H
26 #define DIGIKAM_SETUP_IMAGE_QUALITY_SORTER_H
27 
28 // Qt includes
29 
30 #include <QScrollArea>
31 
32 // Locals includes
33 
34 #include "imagequalitycontainer.h"
35 
36 namespace Digikam
37 {
38 
39 class SetupImageQualitySorter : public QScrollArea
40 {
41  Q_OBJECT
42 
43 public:
44 
45  explicit SetupImageQualitySorter(QWidget* const parent = nullptr);
46  ~SetupImageQualitySorter() override;
47 
48  void applySettings();
50 
51 
52 private:
53 
54  void readSettings();
55 
56 private:
57 
58  class Private;
59  Private* const d;
60 };
61 
62 } // namespace Digikam
63 
64 #endif // DIGIKAM_SETUP_IMAGE_QUALITY_SORTER_H
Definition: imagequalitycontainer.h:39
Definition: setupimagequalitysorter.h:40
~SetupImageQualitySorter() override
Definition: setupimagequalitysorter.cpp:59
SetupImageQualitySorter(QWidget *const parent=nullptr)
Definition: setupimagequalitysorter.cpp:48
ImageQualityContainer getImageQualityContainer()
Definition: setupimagequalitysorter.cpp:74
void applySettings()
Definition: setupimagequalitysorter.cpp:64
Definition: datefolderview.cpp:43