/* This file is part of the KDE project Copyright (C) 2008 Ningyu Shi 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 CONTENT_FETCH_H #define CONTENT_FETCH_H #include "core/transfer.h" #include "script.h" #include class ContentFetch : public Transfer { Q_OBJECT public: ContentFetch(TransferGroup * parent, TransferFactory * factory, Scheduler * scheduler, const KUrl & src, const KUrl & dest, const QString &scriptFile, const QDomElement * e = 0); public slots: void deinit(); // --- Job virtual functions --- void start(); void stop(); bool isResumable() const; void setPercent(int percent); private: Script *m_p_script; TransferGroup *m_p_group; QString m_scriptFile; QString m_destDir; private slots: void slotFinish(); void slotAbort(const QString&); void slotAddTransfer(const QString &url, const QString &filename); void slotSetTextStatus(const QString& text); }; #endif // CONTENT_FETCH_H