fix target id for HiFiMAN HM-801
[maemo-rb.git] / rbutil / rbutilqt / themesinstallwindow.h
blob7b48d8bcce01b5c02043db9bef0a3939e1cfd6ad
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Riebeling
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
21 #ifndef INSTALLTHEMES_H
22 #define INSTALLTHEMES_H
24 #include <QtGui>
25 #include <QTemporaryFile>
27 #include "ui_themesinstallfrm.h"
28 #include "httpget.h"
29 #include "zipinstaller.h"
30 #include "progressloggergui.h"
32 class ThemesInstallWindow : public QDialog
34 Q_OBJECT
36 public:
37 ThemesInstallWindow(QWidget* parent = 0);
38 ~ThemesInstallWindow();
39 void downloadInfo(void);
40 void show(void);
42 public slots:
43 void accept(void);
45 private:
46 Ui::ThemeInstallFrm ui;
47 HttpGet *getter;
48 HttpGet igetter;
49 QTemporaryFile themesInfo;
50 void resizeEvent(QResizeEvent*);
51 void changeEvent(QEvent *event);
52 QByteArray imgData;
53 ProgressLoggerGui *logger;
54 ZipInstaller *installer;
55 QString file;
56 QString fileName;
58 QString infocachedir;
60 private slots:
61 void downloadDone(bool);
62 void downloadDone(int, bool);
63 void updateImage(bool);
64 void abort(void);
65 void updateDetails(QListWidgetItem* cur, QListWidgetItem* prev);
66 void updateSize(void);
70 #endif