mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
94 lines
2.7 KiB
C++
94 lines
2.7 KiB
C++
/* This file is part of the KDE project
|
|
|
|
Copyright (C) 2004 Dario Massarin <nekkar@libero.it>
|
|
Copyright (C) 2006 Manolo Valdes <nolis71cu@gmail.com>
|
|
|
|
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.
|
|
*/
|
|
|
|
#include "transfermultisegkiofactory.h"
|
|
|
|
#include "core/scheduler.h"
|
|
#include "core/transfergroup.h"
|
|
#include "multisegkiosettings.h"
|
|
#include "transfermultisegkio.h"
|
|
#include "multisegkiodatasource.h"
|
|
|
|
#include <QtXml/QDomElement>
|
|
|
|
#include <kdebug.h>
|
|
|
|
KGET_EXPORT_PLUGIN( TransferMultiSegKioFactory )
|
|
|
|
TransferMultiSegKioFactory::TransferMultiSegKioFactory(QObject *parent, const QVariantList &args)
|
|
: TransferFactory(parent, args)
|
|
{
|
|
}
|
|
|
|
TransferMultiSegKioFactory::~TransferMultiSegKioFactory()
|
|
{
|
|
}
|
|
|
|
Transfer * TransferMultiSegKioFactory::createTransfer( const KUrl &srcUrl, const KUrl &destUrl,
|
|
TransferGroup * parent,
|
|
Scheduler * scheduler,
|
|
const QDomElement * e )
|
|
{
|
|
kDebug(5001);
|
|
|
|
if (isSupported(srcUrl) && (!e || !e->firstChildElement("factories").isNull()))
|
|
{
|
|
return new TransferMultiSegKio(parent, this, scheduler, srcUrl, destUrl, e);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
TransferHandler * TransferMultiSegKioFactory::createTransferHandler(Transfer * transfer, Scheduler * scheduler)
|
|
{
|
|
return new TransferHandler(transfer, scheduler);
|
|
}
|
|
|
|
QWidget * TransferMultiSegKioFactory::createDetailsWidget( TransferHandler * transfer )
|
|
{
|
|
Q_UNUSED(transfer)
|
|
return 0; //Temporary!!
|
|
}
|
|
|
|
const QList<KAction *> TransferMultiSegKioFactory::actions(TransferHandler *handler)
|
|
{
|
|
Q_UNUSED(handler)
|
|
return QList<KAction *>();
|
|
}
|
|
|
|
TransferDataSource * TransferMultiSegKioFactory::createTransferDataSource(const KUrl &srcUrl, const QDomElement &type, QObject *parent)
|
|
{
|
|
kDebug(5001);
|
|
|
|
//only use this TransferDataSource if no type is specified and the protocolls match
|
|
if (!type.attribute("type").isEmpty())
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
if (isSupported(srcUrl))
|
|
{
|
|
return new MultiSegKioDataSource(srcUrl, parent);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
bool TransferMultiSegKioFactory::isSupported(const KUrl &url) const
|
|
{
|
|
QString prot = url.protocol();
|
|
kDebug(5001) << "Protocol = " << prot;
|
|
return addsProtocols().contains(prot);
|
|
}
|
|
|
|
QStringList TransferMultiSegKioFactory::addsProtocols() const
|
|
{
|
|
static const QStringList protocols = QStringList() << "http" << "https" << "ftp" << "sftp";
|
|
return protocols;
|
|
}
|