digiKam
pngsettings.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 PNG 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_PNG_SETTINGS_H
25 #define DIGIKAM_PNG_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 PNGSettings : public QWidget
39 {
40  Q_OBJECT
41 
42 public:
43 
44  explicit PNGSettings(QWidget* const parent = nullptr);
45  ~PNGSettings() override;
46 
47  void setCompressionValue(int val);
48  int getCompressionValue() const;
49 
50  static int convertCompressionForLibPng(int value);
51 
52 Q_SIGNALS:
53 
55 
56 private:
57 
58  class Private;
59  Private* const d;
60 };
61 
62 } // namespace Digikam
63 
64 #endif // DIGIKAM_PNG_SETTINGS_H
Definition: pngsettings.h:39
qulonglong value
Definition: itemviewutilities.cpp:592
Definition: datefolderview.cpp:43