mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
46 lines
1 KiB
C++
46 lines
1 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 DOWNLOAD_H
|
|
#define DOWNLOAD_H
|
|
|
|
#include "kget_export.h"
|
|
|
|
#include <QObject>
|
|
#include <QByteArray>
|
|
|
|
#include <KUrl>
|
|
|
|
#include <kio/job.h>
|
|
|
|
class KGET_EXPORT Download : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Download(const KUrl &srcUrl, const KUrl &destUrl);
|
|
~Download();
|
|
|
|
Q_SIGNALS:
|
|
void finishedSuccessfully(KUrl dest, QByteArray data);
|
|
void finishedWithError();
|
|
|
|
private slots:
|
|
void slotResult(KJob * job);
|
|
void slotData(KIO::Job *job, const QByteArray& data);
|
|
|
|
private:
|
|
KIO::TransferJob *m_copyJob;
|
|
KUrl m_srcUrl;
|
|
KUrl m_destUrl;
|
|
KUrl m_destFile;
|
|
QByteArray m_data;
|
|
};
|
|
|
|
#endif
|