Rename ThemeInstall class files to actually match the class name.
[kugel-rb/myfork.git] / rbutil / rbutilqt / themesinstallwindow.h
blob57fe5975d855c036ec0faf797a09b6b536ac69c9
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Riebeling
10 * $Id$
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef INSTALLTHEMES_H
23 #define INSTALLTHEMES_H
25 #include <QtGui>
26 #include <QTemporaryFile>
28 #include "ui_themesinstallfrm.h"
29 #include "httpget.h"
30 #include "installzip.h"
31 #include "progressloggergui.h"
32 #include "rbsettings.h"
34 class ThemesInstallWindow : public QDialog
36 Q_OBJECT
38 public:
39 ThemesInstallWindow(QWidget* parent = 0);
40 ~ThemesInstallWindow();
41 void setSettings(RbSettings* sett){settings=sett;}
42 void downloadInfo(void);
43 void show(void);
45 public slots:
46 void accept(void);
48 private:
49 Ui::ThemeInstallFrm ui;
50 RbSettings* settings;
51 HttpGet *getter;
52 HttpGet igetter;
53 QTemporaryFile themesInfo;
54 void resizeEvent(QResizeEvent*);
55 QByteArray imgData;
56 ProgressLoggerGui *logger;
57 ZipInstaller *installer;
58 QString file;
59 QString fileName;
61 QString infocachedir;
63 private slots:
64 void downloadDone(bool);
65 void downloadDone(int, bool);
66 void updateImage(bool);
67 void abort(void);
68 void updateDetails(QListWidgetItem* cur, QListWidgetItem* prev);
69 void updateSize(void);
73 #endif