mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 19:32:54 +00:00
38 lines
1 KiB
C
38 lines
1 KiB
C
![]() |
/* This file is part of the KDE project
|
||
|
|
||
|
Copyright (C) 2004 Dario Massarin <nekkar@libero.it>
|
||
|
|
||
|
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.
|
||
|
*/
|
||
|
|
||
|
#ifndef KIO_FACTORY_H
|
||
|
#define KIO_FACTORY_H
|
||
|
|
||
|
#include "core/plugin/transferfactory.h"
|
||
|
|
||
|
class Transfer;
|
||
|
class TransferGroup;
|
||
|
class Scheduler;
|
||
|
|
||
|
class TransferKioFactory : public TransferFactory
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
TransferKioFactory(QObject *parent, const QVariantList &args);
|
||
|
~TransferKioFactory();
|
||
|
|
||
|
Transfer * createTransfer( const KUrl &srcUrl, const KUrl &destUrl,
|
||
|
TransferGroup * parent, Scheduler * scheduler,
|
||
|
const QDomElement * e = 0 );
|
||
|
|
||
|
QString displayName(){return "HTTP(s) / FTP(s)";}
|
||
|
|
||
|
bool isSupported(const KUrl &url) const;
|
||
|
QStringList addsProtocols() const;
|
||
|
};
|
||
|
|
||
|
#endif
|