digiKam
jpegsettings.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-08-02
7  * Description : save JPEG image options.
8  *
9  * Copyright (C) 2007-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option)
15  * any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================ */
23 
24 #ifndef DIGIKAM_JPEG_SETTINGS_H
25 #define DIGIKAM_JPEG_SETTINGS_H
26 
27 // Qt includes
28 
29 #include <QWidget>
30 
31 // Local includes
32 
33 #include "digikam_export.h"
34 
35 namespace Digikam
36 {
37 
38 class DIGIKAM_EXPORT JPEGSettings : public QWidget
39 {
40  Q_OBJECT
41 
42 public:
43 
44  explicit JPEGSettings(QWidget* const parent = nullptr);
45  ~JPEGSettings() override;
46 
47  void setCompressionValue(int val);
48  int getCompressionValue() const;
49 
50  void setSubSamplingValue(int val);
51  int getSubSamplingValue() const;
52 
53  static int convertCompressionForLibJpeg(int value);
54 
55 Q_SIGNALS:
56 
58 
59 private:
60 
61  class Private;
62  Private* const d;
63 };
64 
65 } // namespace Digikam
66 
67 #endif // DIGIKAM_JPEG_SETTINGS_H
Definition: jpegsettings.h:39
qulonglong value
Definition: itemviewutilities.cpp:592
Definition: datefolderview.cpp:43