52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
/* webdownloader.h - a basic web file download class
|
|
|
|
Copyright 2016 Eric A. Cottrell <eric.c.boston@gmail.com>
|
|
|
|
This file is part of GREFwTool. Source code is available at https://github.com/LinuxSheeple-E/GREFwTool
|
|
|
|
GREFwTool 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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
GREFwTool is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GREFwTool. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
#ifndef WEBDOWNLOADER_H
|
|
#define WEBDOWNLOADER_H
|
|
|
|
#include <QObject>
|
|
|
|
class QNetworkAccessManager;
|
|
class QNetworkReply;
|
|
class QUrl;
|
|
|
|
class WebDownloader : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit WebDownloader(QObject *parent = 0);
|
|
~WebDownloader();
|
|
|
|
void doDownload(QUrl &remoteFile, QString &localFile);
|
|
|
|
signals:
|
|
void downloadComplete();
|
|
void downloadError();
|
|
|
|
private slots:
|
|
void replyDone (QNetworkReply *reply);
|
|
|
|
private:
|
|
QNetworkAccessManager *manager;
|
|
QString localFileName;
|
|
};
|
|
|
|
#endif // WEBDOWNLOADER_H
|