File indexing completed on 2025-01-05 03:53:35

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2018-07-30
0007  * Description : a plugin to export to IPFS web-service.
0008  *
0009  * SPDX-FileCopyrightText: 2018-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 "ipfsplugin.h"
0016 
0017 // Qt includes
0018 
0019 #include <QPointer>
0020 
0021 // KDE includes
0022 
0023 #include <klocalizedstring.h>
0024 
0025 // Local includes
0026 
0027 #include "ipfswindow.h"
0028 
0029 namespace DigikamGenericIpfsPlugin
0030 {
0031 
0032 IpfsPlugin::IpfsPlugin(QObject* const parent)
0033     : DPluginGeneric(parent)
0034 {
0035 }
0036 
0037 IpfsPlugin::~IpfsPlugin()
0038 {
0039 }
0040 
0041 void IpfsPlugin::cleanUp()
0042 {
0043     delete m_toolDlg;
0044 }
0045 
0046 QString IpfsPlugin::name() const
0047 {
0048     return i18nc("@title", "IPFS");
0049 }
0050 
0051 QString IpfsPlugin::iid() const
0052 {
0053     return QLatin1String(DPLUGIN_IID);
0054 }
0055 
0056 QIcon IpfsPlugin::icon() const
0057 {
0058     return QIcon::fromTheme(QLatin1String("dk-ipfs"));
0059 }
0060 
0061 QString IpfsPlugin::description() const
0062 {
0063     return i18nc("@info", "A tool to export to IPFS web-service");
0064 }
0065 
0066 QString IpfsPlugin::details() const
0067 {
0068     return i18nc("@info", "This tool allows users to export items to IPFS web-service.\n\n"
0069                  "See IPFS web site for details: %1",
0070                  QLatin1String("<a href='https://ipfs.io/'>https://ipfs.io/</a>"));
0071 }
0072 
0073 QString IpfsPlugin::handbookSection() const
0074 {
0075     return QLatin1String("export_tools");
0076 }
0077 
0078 QString IpfsPlugin::handbookChapter() const
0079 {
0080     return QLatin1String("ipfs_export");
0081 }
0082 
0083 QList<DPluginAuthor> IpfsPlugin::authors() const
0084 {
0085     return QList<DPluginAuthor>()
0086             << DPluginAuthor(QString::fromUtf8("Amar Lakshya"),
0087                              QString::fromUtf8("amar dot lakshya at xaviers dot edu dot in"),
0088                              QString::fromUtf8("(C) 2018"))
0089             ;
0090 }
0091 
0092 void IpfsPlugin::setup(QObject* const parent)
0093 {
0094     DPluginAction* const ac = new DPluginAction(parent);
0095     ac->setIcon(icon());
0096     ac->setText(i18nc("@action", "Export to &Ipfs..."));
0097     ac->setObjectName(QLatin1String("export_ipfs"));
0098     ac->setActionCategory(DPluginAction::GenericExport);
0099 
0100     connect(ac, SIGNAL(triggered(bool)),
0101             this, SLOT(slotIpfs()));
0102 
0103     addAction(ac);
0104 }
0105 
0106 void IpfsPlugin::slotIpfs()
0107 {
0108     if (!reactivateToolDialog(m_toolDlg))
0109     {
0110         delete m_toolDlg;
0111         m_toolDlg = new IpfsWindow(infoIface(sender()), nullptr);
0112         m_toolDlg->setPlugin(this);
0113         m_toolDlg->show();
0114     }
0115 }
0116 
0117 } // namespace DigikamGenericIpfsPlugin
0118 
0119 #include "moc_ipfsplugin.cpp"