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

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 Dropbox 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 "dbplugin.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 "dbwindow.h"
0028 
0029 namespace DigikamGenericDropBoxPlugin
0030 {
0031 
0032 DBPlugin::DBPlugin(QObject* const parent)
0033     : DPluginGeneric(parent)
0034 {
0035 }
0036 
0037 DBPlugin::~DBPlugin()
0038 {
0039 }
0040 
0041 void DBPlugin::cleanUp()
0042 {
0043     delete m_toolDlg;
0044 }
0045 
0046 QString DBPlugin::name() const
0047 {
0048     return i18nc("@title", "Dropbox");
0049 }
0050 
0051 QString DBPlugin::iid() const
0052 {
0053     return QLatin1String(DPLUGIN_IID);
0054 }
0055 
0056 QIcon DBPlugin::icon() const
0057 {
0058     return QIcon::fromTheme(QLatin1String("dk-dropbox"));
0059 }
0060 
0061 QString DBPlugin::description() const
0062 {
0063     return i18nc("@info", "A tool to export to Dropbox web-service");
0064 }
0065 
0066 QString DBPlugin::details() const
0067 {
0068     return i18nc("@info", "This tool allows users to export items to Dropbox web-service.\n\n"
0069                  "See Dropbox web site for details: %1", QLatin1String("<a href='https://www.dropbox.com/'>https://www.dropbox.com/</a>"));
0070 }
0071 
0072 QString DBPlugin::handbookSection() const
0073 {
0074     return QLatin1String("export_tools");
0075 }
0076 
0077 QString DBPlugin::handbookChapter() const
0078 {
0079     return QLatin1String("dropbox_export");
0080 }
0081 
0082 QList<DPluginAuthor> DBPlugin::authors() const
0083 {
0084     return QList<DPluginAuthor>()
0085             << DPluginAuthor(QString::fromUtf8("Pankaj Kumar"),
0086                              QString::fromUtf8("me at panks dot me"),
0087                              QString::fromUtf8("(C) 2013"))
0088             << DPluginAuthor(QString::fromUtf8("Maik Qualmann"),
0089                              QString::fromUtf8("metzpinguin at gmail dot com"),
0090                              QString::fromUtf8("(C) 2018-2021"))
0091             ;
0092 }
0093 
0094 void DBPlugin::setup(QObject* const parent)
0095 {
0096     DPluginAction* const ac = new DPluginAction(parent);
0097     ac->setIcon(icon());
0098     ac->setText(i18nc("@action", "Export to &Dropbox..."));
0099     ac->setObjectName(QLatin1String("export_dropbox"));
0100     ac->setActionCategory(DPluginAction::GenericExport);
0101     ac->setShortcut(Qt::CTRL | Qt::ALT | Qt::SHIFT | Qt::Key_D);
0102 
0103     connect(ac, SIGNAL(triggered(bool)),
0104             this, SLOT(slotDropBox()));
0105 
0106     addAction(ac);
0107 }
0108 
0109 void DBPlugin::slotDropBox()
0110 {
0111     if (!reactivateToolDialog(m_toolDlg))
0112     {
0113         delete m_toolDlg;
0114         m_toolDlg = new DBWindow(infoIface(sender()), nullptr);
0115         m_toolDlg->setPlugin(this);
0116         m_toolDlg->show();
0117     }
0118 }
0119 
0120 } // namespace DigikamGenericDropBoxPlugin
0121 
0122 #include "moc_dbplugin.cpp"