File indexing completed on 2025-01-05 03:51:29
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2009-11-21 0007 * Description : Wavelets Noise Reduction batch tool. 0008 * 0009 * SPDX-FileCopyrightText: 2009-2024 by Gilles Caulier <caulier dot gilles at gmail dot com> 0010 * 0011 * SPDX-License-Identifier: GPL-2.0-or-later 0012 * 0013 * ============================================================ */ 0014 0015 #ifndef DIGIKAM_BQM_NOISE_REDUCTION_H 0016 #define DIGIKAM_BQM_NOISE_REDUCTION_H 0017 0018 // Local includes 0019 0020 #include "batchtool.h" 0021 #include "nrsettings.h" 0022 0023 using namespace Digikam; 0024 0025 namespace DigikamBqmNoiseReductionPlugin 0026 { 0027 0028 class NoiseReduction : public BatchTool 0029 { 0030 Q_OBJECT 0031 0032 public: 0033 0034 explicit NoiseReduction(QObject* const parent = nullptr); 0035 ~NoiseReduction() override; 0036 0037 BatchToolSettings defaultSettings() override; 0038 0039 BatchTool* clone(QObject* const parent = nullptr) const override; 0040 0041 void registerSettingsWidget() override; 0042 0043 private: 0044 0045 bool toolOperations() override; 0046 0047 private Q_SLOTS: 0048 0049 void slotAssignSettings2Widget() override; 0050 void slotSettingsChanged() override; 0051 0052 private: 0053 0054 NRSettings* m_settingsView; 0055 }; 0056 0057 } // namespace DigikamBqmNoiseReductionPlugin 0058 0059 #endif // DIGIKAM_BQM_NOISE_REDUCTION_H