summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/httpget.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/httpget.h')
-rw-r--r--rbutil/rbutilqt/httpget.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/httpget.h b/rbutil/rbutilqt/httpget.h
new file mode 100644
index 0000000000..1a86e1d4ce
--- /dev/null
+++ b/rbutil/rbutilqt/httpget.h
@@ -0,0 +1,63 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Riebeling
10 * $Id:$
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20
21#ifndef HTTPGET_H
22#define HTTPGET_H
23
24#include <QFile>
25#include <QHttp>
26
27class QUrl;
28
29class HttpGet : public QObject
30{
31 Q_OBJECT
32
33 public:
34 HttpGet(QObject *parent = 0);
35
36 bool getFile(const QUrl &url);
37 void setProxy(const QUrl &url);
38 QHttp::Error error(void);
39 QString errorString(void);
40 void setFile(QFile*);
41 int httpResponse(void);
42
43 public slots:
44 void abort(void);
45
46 signals:
47 void done(bool);
48 void dataReadProgress(int, int);
49 void requestFinished(int, bool);
50
51 private slots:
52 void httpDone(bool error);
53 void httpProgress(int, int);
54 void httpFinished(int, bool);
55 void httpResponseHeader(const QHttpResponseHeader&);
56
57 private:
58 QHttp http;
59 QFile *outputFile;
60 int response;
61};
62
63#endif