/* This file is part of the KDE project Copyright (C) 2007 Lukas Appelhans 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 actions(TransferHandler * handler = 0); TransferDataSource * createTransferDataSource(const KUrl &srcUrl, const QDomElement &type, QObject *parent); bool isSupported(const KUrl &url) const; }; #endif