source: smplayer/vendor/current/src/findsubtitles/filedownloader/filedownloader.h@ 121

Last change on this file since 121 was 121, checked in by Silvan Scherrer, 14 years ago

SMPlayer 0.7.1: vendor update

File size: 1.6 KB
Line 
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
28class QHttp;
29class QHttpResponseHeader;
30
31class FileDownloader : public QProgressDialog
32{
33 Q_OBJECT
34
35public:
36 FileDownloader(QWidget *parent = 0);
37 ~FileDownloader();
38
39 void setProxy(QNetworkProxy proxy);
40
41public slots:
42 void download(QUrl url);
43 void cancelDownload();
44
45signals:
46 void downloadFinished(const QByteArray & buffer);
47 void downloadFailed(const QString & reason);
48
49private 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
54private:
55 QHttp * http;
56 int http_get_id;
57 bool http_request_aborted;
58
59};
60
61#endif
Note: See TracBrowser for help on using the repository browser.