kde-extraapps/kget/transfer-plugins/bittorrent/bttransferfactory.h
2014-11-19 17:18:01 +00:00

35 lines
1.2 KiB
C++

/* This file is part of the KDE project
Copyright (C) 2007 Lukas Appelhans <l.appelhans@gmx.de>
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 BTTRANSFERFACTORY_H
#define BTTRANSFERFACTORY_H
#include "core/plugin/transferfactory.h"
class BTTransferFactory : public TransferFactory
{
Q_OBJECT
public:
BTTransferFactory(QObject *parent, const QVariantList &args);
~BTTransferFactory();
Transfer * createTransfer(const KUrl &srcUrl, const KUrl &destUrl, TransferGroup * parent, Scheduler * scheduler, const QDomElement * e = 0);
TransferHandler * createTransferHandler(Transfer * transfer, Scheduler * scheduler);
QWidget * createDetailsWidget(TransferHandler * transfer);
const QList<KAction *> actions(TransferHandler * handler = 0);
TransferDataSource * createTransferDataSource(const KUrl &srcUrl, const QDomElement &type, QObject *parent);
bool isSupported(const KUrl &url) const;
};
#endif