76f27d1a7c0d2e3c71a7c6c73207748a0bacb727
[mdictionary] / src / plugins / xdxf / HttpDownloader.h
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     mDictionary is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21
22 /*!
23   \file HttpDownloader.h
24   \author Bartosz Szatkowski <bulislaw@linux.com>
25  */
26
27 #ifndef HTTPDOWNLOADER_H
28 #define HTTPDOWNLOADER_H
29
30 #include <QObject>
31 #include <QHttp>
32 #include <QNetworkAccessManager>
33 #include <QUrl>
34 #include <QNetworkRequest>
35 #include <QNetworkReply>
36 #include <QFile>
37 #include <QDebug>
38
39 class HttpDownloader : public QObject {
40    Q_OBJECT
41 public:
42     HttpDownloader(QObject *parent = 0);
43     void download(const QUrl, const QString);
44     void kill();
45
46 private Q_SLOTS:
47     void downloadFinished(QNetworkReply *);
48
49 Q_SIGNALS:
50     void finished();
51     void error(QString);
52     void progress(qint64,qint64);
53
54 private:
55     QHttp *http;
56     QNetworkAccessManager *manager;
57     QString destFile;
58     QNetworkReply* currentReply;
59
60
61 };
62
63 #endif // HTTPDOWNLOADER_H