mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
/* This file is part of the KDE project
|
|
|
|
Copyright (C) 2008 Ningyu Shi <shiningyu@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.
|
|
*/
|
|
|
|
|
|
#ifndef CONTENT_FETCH_H
|
|
#define CONTENT_FETCH_H
|
|
|
|
#include "core/transfer.h"
|
|
#include "script.h"
|
|
#include <QString>
|
|
|
|
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
|