- License texts modified to GPLv2
[qtrapids] / src / plugins / searchplugin / DownloadManager.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Ixonos Plc   *
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; version 2 of the License.               *
7  *                                                                         *
8  *   This program is distributed in the hope that it will be useful,       *
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
11  *   GNU General Public License for more details.                          *
12  *                                                                         *
13  *   You should have received a copy of the GNU General Public License     *
14  *   along with this program; if not, write to the                         *
15  *   Free Software Foundation, Inc.,                                       *
16  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
17  ***************************************************************************/
18 #ifndef DOWNLOADMANAGER_H
19 #define DOWNLOADMANAGER_H
20
21
22 #include <QNetworkAccessManager>
23 #include <QNetworkRequest>
24 #include <QNetworkReply>
25 #include <QUrl>
26 #include <QFile>
27
28
29 class DownloadManager : public QObject
30 {
31         Q_OBJECT
32         
33         public:
34                 DownloadManager(QObject *parent = NULL);
35                 DownloadManager(QUrl url, QString outfile, QObject *parent = NULL);
36                 virtual ~DownloadManager();
37                 virtual void start();
38                 void setUrl(QUrl url);
39                 void setFilepath(QString filepath);
40                 
41         public slots:
42                 void on_readyRead();
43                 void on_downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
44                 void on_replyFinished();
45                 
46         signals:
47                 void progress(int prog);
48                 void finished(QString filepath);
49                 
50         private:
51                 bool WriteToFile();
52                 
53         private:
54                 QNetworkAccessManager manager_;
55                 QUrl url_;
56                 QNetworkReply *reply_;
57                 QString filepath_;
58                 QFile file_;
59 };
60
61 #endif