| 1 | /* smplayer, GUI front-end for mplayer.
|
|---|
| 2 | Copyright (C) 2006-2012 Ricardo Villalba <[email protected]>
|
|---|
| 3 |
|
|---|
| 4 | This program is free software; you can redistribute it and/or modify
|
|---|
| 5 | it under the terms of the GNU General Public License as published by
|
|---|
| 6 | the Free Software Foundation; either version 2 of the License, or
|
|---|
| 7 | (at your option) any later version.
|
|---|
| 8 |
|
|---|
| 9 | This program is distributed in the hope that it will be useful,
|
|---|
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 12 | GNU General Public License for more details.
|
|---|
| 13 |
|
|---|
| 14 | You should have received a copy of the GNU General Public License
|
|---|
| 15 | along with this program; if not, write to the Free Software
|
|---|
| 16 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|---|
| 17 | */
|
|---|
| 18 |
|
|---|
| 19 | /* Based on the Qt network/http example */
|
|---|
| 20 |
|
|---|
| 21 | #ifndef _FILEDOWNLOADER_H_
|
|---|
| 22 | #define _FILEDOWNLOADER_H_
|
|---|
| 23 |
|
|---|
| 24 | #include <QProgressDialog>
|
|---|
| 25 | #include <QUrl>
|
|---|
| 26 | #include <QNetworkProxy>
|
|---|
| 27 |
|
|---|
| 28 | class QHttp;
|
|---|
| 29 | class QHttpResponseHeader;
|
|---|
| 30 |
|
|---|
| 31 | class FileDownloader : public QProgressDialog
|
|---|
| 32 | {
|
|---|
| 33 | Q_OBJECT
|
|---|
| 34 |
|
|---|
| 35 | public:
|
|---|
| 36 | FileDownloader(QWidget *parent = 0);
|
|---|
| 37 | ~FileDownloader();
|
|---|
| 38 |
|
|---|
| 39 | void setProxy(QNetworkProxy proxy);
|
|---|
| 40 |
|
|---|
| 41 | public slots:
|
|---|
| 42 | void download(QUrl url);
|
|---|
| 43 | void cancelDownload();
|
|---|
| 44 |
|
|---|
| 45 | signals:
|
|---|
| 46 | void downloadFinished(const QByteArray & buffer);
|
|---|
| 47 | void downloadFailed(const QString & reason);
|
|---|
| 48 |
|
|---|
| 49 | private slots:
|
|---|
| 50 | void httpRequestFinished(int request_id, bool error);
|
|---|
| 51 | void readResponseHeader(const QHttpResponseHeader &responseHeader);
|
|---|
| 52 | void updateDataReadProgress(int bytes_read, int total_bytes);
|
|---|
| 53 |
|
|---|
| 54 | private:
|
|---|
| 55 | QHttp * http;
|
|---|
| 56 | int http_get_id;
|
|---|
| 57 | bool http_request_aborted;
|
|---|
| 58 |
|
|---|
| 59 | };
|
|---|
| 60 |
|
|---|
| 61 | #endif
|
|---|