Fix advanced EQ menu
[maemo-rb.git] / rbutil / rbutilqt / themesinstallwindow.h
blob9214e5ccbf49f31f5700e5ba8d910d9e1117f413
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);
41 void setLogger(ProgressLoggerGui* l) { logger = l; }
42 void setSelectOnly(bool state) { windowSelectOnly = state; }
43 void install(void);
45 public slots:
46 void accept(void);
48 signals:
49 void done(bool);
51 private:
52 Ui::ThemeInstallFrm ui;
53 HttpGet *getter;
54 HttpGet igetter;
55 QTemporaryFile themesInfo;
56 void resizeEvent(QResizeEvent*);
57 void changeEvent(QEvent *event);
58 QByteArray imgData;
59 ProgressLoggerGui *logger;
60 ZipInstaller *installer;
61 QString file;
62 QString fileName;
64 QString infocachedir;
65 bool windowSelectOnly;
67 private slots:
68 void downloadDone(bool);
69 void downloadDone(int, bool);
70 void updateImage(bool);
71 void abort(void);
72 void updateDetails(QListWidgetItem* cur, QListWidgetItem* prev);
73 void updateSize(void);
77 #endif