File indexing completed on 2025-01-19 03:51:02
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2022-04-02 0007 * Description : AVIF image export settings widget. 0008 * 0009 * SPDX-FileCopyrightText: 2022 by Gilles Caulier <caulier dot gilles at gmail dot com> 0010 * 0011 * SPDX-License-Identifier: GPL-2.0-or-later 0012 * 0013 * ============================================================ */ 0014 0015 #include "dimgavifexportsettings.h" 0016 0017 // Qt includes 0018 0019 #include <QString> 0020 #include <QLabel> 0021 #include <QCheckBox> 0022 #include <QLayout> 0023 #include <QGridLayout> 0024 #include <QApplication> 0025 #include <QStyle> 0026 0027 // KDE includes 0028 0029 #include <klocalizedstring.h> 0030 0031 // Local includes 0032 0033 #include "dnuminput.h" 0034 0035 namespace Digikam 0036 { 0037 0038 class Q_DECL_HIDDEN DImgAVIFExportSettings::Private 0039 { 0040 0041 public: 0042 0043 explicit Private() 0044 : AVIFGrid (nullptr), 0045 labelAVIFcompression(nullptr), 0046 AVIFLossLess (nullptr), 0047 AVIFcompression (nullptr) 0048 { 0049 } 0050 0051 QGridLayout* AVIFGrid; 0052 0053 QLabel* labelAVIFcompression; 0054 0055 QCheckBox* AVIFLossLess; 0056 0057 DIntNumInput* AVIFcompression; 0058 }; 0059 0060 DImgAVIFExportSettings::DImgAVIFExportSettings(QWidget* const parent) 0061 : DImgLoaderSettings(parent), 0062 d (new Private) 0063 { 0064 const int spacing = qMin(QApplication::style()->pixelMetric(QStyle::PM_LayoutHorizontalSpacing), 0065 QApplication::style()->pixelMetric(QStyle::PM_LayoutVerticalSpacing)); 0066 0067 d->AVIFGrid = new QGridLayout(this); 0068 d->AVIFLossLess = new QCheckBox(i18n("Lossless AVIF files"), this); 0069 0070 d->AVIFLossLess->setWhatsThis(i18n("<p>Toggle lossless compression for AVIF images.</p>" 0071 "<p>If this option is enabled, a lossless method will be used " 0072 "to compress JPEG XL pictures.</p>")); 0073 0074 d->AVIFcompression = new DIntNumInput(this); 0075 d->AVIFcompression->setDefaultValue(75); 0076 d->AVIFcompression->setRange(1, 99, 1); 0077 d->labelAVIFcompression = new QLabel(i18n("AVIF quality:"), this); 0078 0079 d->AVIFcompression->setWhatsThis(i18n("<p>The quality value for AVIF images:</p>" 0080 "<p><b>1</b>: low quality (high compression and small " 0081 "file size)<br/>" 0082 "<b>50</b>: medium quality<br/>" 0083 "<b>75</b>: good quality (default)<br/>" 0084 "<b>99</b>: high quality (no compression and " 0085 "large file size)</p>" 0086 "<p><b>Note: AVIF is not a lossless image " 0087 "compression format when you use this setting.</b></p>")); 0088 0089 d->AVIFGrid->addWidget(d->AVIFLossLess, 0, 0, 1, 2); 0090 d->AVIFGrid->addWidget(d->labelAVIFcompression, 1, 0, 1, 2); 0091 d->AVIFGrid->addWidget(d->AVIFcompression, 2, 0, 1, 2); 0092 d->AVIFGrid->setColumnStretch(1, 10); 0093 d->AVIFGrid->setRowStretch(3, 10); 0094 d->AVIFGrid->setContentsMargins(spacing, spacing, spacing, spacing); 0095 d->AVIFGrid->setSpacing(spacing); 0096 0097 connect(d->AVIFLossLess, SIGNAL(toggled(bool)), 0098 this, SLOT(slotToggleAVIFLossLess(bool))); 0099 0100 connect(d->AVIFLossLess, SIGNAL(toggled(bool)), 0101 this, SIGNAL(signalSettingsChanged())); 0102 0103 connect(d->AVIFcompression, SIGNAL(valueChanged(int)), 0104 this, SIGNAL(signalSettingsChanged())); 0105 } 0106 0107 DImgAVIFExportSettings::~DImgAVIFExportSettings() 0108 { 0109 delete d; 0110 } 0111 0112 void DImgAVIFExportSettings::setSettings(const DImgLoaderPrms& set) 0113 { 0114 for (DImgLoaderPrms::const_iterator it = set.constBegin() ; it != set.constEnd() ; ++it) 0115 { 0116 if (it.key() == QLatin1String("quality")) 0117 { 0118 d->AVIFcompression->setValue(it.value().toInt()); 0119 } 0120 else if (it.key() == QLatin1String("lossless")) 0121 { 0122 d->AVIFLossLess->setChecked(it.value().toBool()); 0123 } 0124 } 0125 0126 slotToggleAVIFLossLess(d->AVIFLossLess->isChecked()); 0127 } 0128 0129 DImgLoaderPrms DImgAVIFExportSettings::settings() const 0130 { 0131 DImgLoaderPrms set; 0132 0133 // NOTE: if quality = 100 --> lossless compression. 0134 0135 set.insert(QLatin1String("quality"), d->AVIFLossLess->isChecked() ? 100 : d->AVIFcompression->value()); 0136 set.insert(QLatin1String("lossless"), d->AVIFLossLess->isChecked()); 0137 0138 return set; 0139 } 0140 0141 void DImgAVIFExportSettings::slotToggleAVIFLossLess(bool b) 0142 { 0143 d->AVIFcompression->setEnabled(!b); 0144 d->labelAVIFcompression->setEnabled(!b); 0145 } 0146 0147 } // namespace Digikam 0148 0149 #include "moc_dimgavifexportsettings.cpp"