Oops, part 2: I shouldn't remove an icon that is still in use. Also convert some...
[Rockbox.git] / rbutil / rbutilqt / installzip.h
blob629445d28f0964f6fa91232917d0e20056684350
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Wenger
10 * $Id$
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
21 #ifndef INSTALLZIP_H
22 #define INSTALLZIP_H
26 #include <QtGui>
27 #include <QtNetwork>
29 #include "progressloggerinterface.h"
30 #include "httpget.h"
32 class ZipInstaller : public QObject
34 Q_OBJECT
35 public:
36 ZipInstaller(QObject* parent) ;
37 ~ZipInstaller(){}
38 void install(ProgressloggerInterface* dp);
39 void setMountPoint(QString mountpoint) {m_mountpoint = mountpoint;}
40 void setUrl(QString url){m_urllist = QStringList(url);}
41 void setUrl(QStringList url) { m_urllist = url; }
42 void setProxy(QUrl proxy) {m_proxy= proxy;}
43 void setLogSection(QString name) {m_loglist = QStringList(name);}
44 void setLogSection(QStringList name) { m_loglist = name; }
45 void setLogVersion(QString v) { m_verlist = QStringList(v); qDebug() << m_verlist;}
46 void setLogVersion(QStringList v) { m_verlist = v; qDebug() << m_verlist;}
47 void setUnzip(bool i) { m_unzip = i; }
48 void setTarget(QString t) { m_target = t; }
49 void setCache(QDir c) { m_cache = c; };
50 void setCache(QString c) { m_cache = QDir(c);}
52 signals:
53 void done(bool error);
54 void cont();
56 private slots:
57 void updateDataReadProgress(int, int);
58 void downloadDone(bool);
59 void downloadRequestFinished(int, bool);
60 void installStart(void);
61 void installContinue(void);
63 private:
64 void installSingle(ProgressloggerInterface *dp);
65 QString m_url, m_file, m_mountpoint, m_logsection, m_logver;
66 QStringList m_urllist, m_loglist, m_verlist;
67 QUrl m_proxy;
68 bool m_unzip;
69 QString m_target;
70 int runner;
71 QDir m_cache;
73 HttpGet *getter;
74 QTemporaryFile *downloadFile;
76 ProgressloggerInterface* m_dp;
81 #endif