File indexing completed on 2025-01-19 03:50:55

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2020-08-07
0007  * Description : a BQM plugin to fix hot pixels
0008  *
0009  * SPDX-FileCopyrightText: 2020-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 #include "hotpixelsplugin.h"
0016 
0017 // Qt includes
0018 
0019 #include <QPointer>
0020 #include <QString>
0021 #include <QApplication>
0022 
0023 // KDE includes
0024 
0025 #include <klocalizedstring.h>
0026 
0027 // Local includes
0028 
0029 #include "digikam_debug.h"
0030 #include "hotpixels.h"
0031 
0032 namespace DigikamBqmHotPixelsPlugin
0033 {
0034 
0035 HotPixelsPlugin::HotPixelsPlugin(QObject* const parent)
0036     : DPluginBqm(parent)
0037 {
0038 }
0039 
0040 HotPixelsPlugin::~HotPixelsPlugin()
0041 {
0042 }
0043 
0044 QString HotPixelsPlugin::name() const
0045 {
0046     return i18nc("@title", "Hot Pixels");
0047 }
0048 
0049 QString HotPixelsPlugin::iid() const
0050 {
0051     return QLatin1String(DPLUGIN_IID);
0052 }
0053 
0054 QIcon HotPixelsPlugin::icon() const
0055 {
0056     return QIcon::fromTheme(QLatin1String("hotpixels"));
0057 }
0058 
0059 QString HotPixelsPlugin::description() const
0060 {
0061     return i18nc("@info", "A tool to fix hot pixels");
0062 }
0063 
0064 QString HotPixelsPlugin::details() const
0065 {
0066     return xi18nc("@info", "<para>This Batch Queue Manager tool can fix hot pixels in images.</para>");
0067 }
0068 
0069 QString HotPixelsPlugin::handbookSection() const
0070 {
0071     return QLatin1String("batch_queue");
0072 }
0073 
0074 QString HotPixelsPlugin::handbookChapter() const
0075 {
0076     return QLatin1String("base_tools");
0077 }
0078 
0079 QString HotPixelsPlugin::handbookReference() const
0080 {
0081     return QLatin1String("bqm-enhancetools");
0082 }
0083 
0084 QList<DPluginAuthor> HotPixelsPlugin::authors() const
0085 {
0086     return QList<DPluginAuthor>()
0087             << DPluginAuthor(QString::fromUtf8("Unai Garro"),
0088                              QString::fromUtf8("ugarro at users dot sourceforge dot net"),
0089                              QString::fromUtf8("(C) 2005-2006"))
0090             << DPluginAuthor(QString::fromUtf8("Gilles Caulier"),
0091                              QString::fromUtf8("caulier dot gilles at gmail dot com"),
0092                              QString::fromUtf8("(C) 2005-2022"))
0093             ;
0094 }
0095 
0096 void HotPixelsPlugin::setup(QObject* const parent)
0097 {
0098     HotPixels* const tool = new HotPixels(parent);
0099     tool->setPlugin(this);
0100 
0101     addTool(tool);
0102 }
0103 
0104 } // namespace DigikamBqmHotPixelsPlugin
0105 
0106 #include "moc_hotpixelsplugin.cpp"