diff --git a/app/extractHereDndPlugin.cpp b/app/extractHereDndPlugin.cpp index da582ee4..51f9debd 100644 --- a/app/extractHereDndPlugin.cpp +++ b/app/extractHereDndPlugin.cpp @@ -1,85 +1,85 @@ /* * ark -- archiver for the KDE project * * Copyright (C) 2009 Harald Hvaal * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "extractHereDndPlugin.h" #include "ark_debug.h" #include "batchextract.h" #include "archive_kerfuffle.h" #include "pluginmanager.h" #include #include #include #include #include K_PLUGIN_FACTORY_WITH_JSON(ExtractHereDndPluginFactory, "ark_dndextract.json", registerPlugin();) void ExtractHereDndPlugin::slotTriggered() { qCDebug(ARK) << "Preparing job"; BatchExtract *batchJob = new BatchExtract(); batchJob->setAutoSubfolder(true); batchJob->setDestinationFolder(m_dest.toDisplayString(QUrl::PreferLocalFile)); batchJob->setPreservePaths(true); foreach(const QUrl& url, m_urls) { batchJob->addInput(url); } qCDebug(ARK) << "Starting job"; batchJob->start(); } ExtractHereDndPlugin::ExtractHereDndPlugin(QObject* parent, const QVariantList&) : KIO::DndPopupMenuPlugin(parent) { } QList ExtractHereDndPlugin::setup(const KFileItemListProperties& popupMenuInfo, const QUrl& destination) { QList actionList; - const QString extractHereMessage = i18nc("@action:inmenu Context menu shown when an archive is being drag'n'dropped", "Extract here"); - Kerfuffle::PluginManager pluginManager; if (!pluginManager.supportedMimeTypes().contains(popupMenuInfo.mimeType())) { - qCWarning(ARK) << popupMenuInfo.mimeType() << "is not a supported mimetype"; + qCDebug(ARK) << popupMenuInfo.mimeType() << "is not a supported mimetype"; return actionList; } qCDebug(ARK) << "Plugin executed"; + const QString extractHereMessage = i18nc("@action:inmenu Context menu shown when an archive is being drag'n'dropped", "Extract here"); + QAction *action = new QAction(QIcon::fromTheme(QStringLiteral("archive-extract")), extractHereMessage, nullptr); connect(action, &QAction::triggered, this, &ExtractHereDndPlugin::slotTriggered); actionList.append(action); m_dest = destination; m_urls = popupMenuInfo.urlList(); return actionList; } #include "extractHereDndPlugin.moc"