summaryrefslogtreecommitdiff
path: root/utils/rbutilqt/themesinstallwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rbutilqt/themesinstallwindow.h')
-rw-r--r--utils/rbutilqt/themesinstallwindow.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/utils/rbutilqt/themesinstallwindow.h b/utils/rbutilqt/themesinstallwindow.h
new file mode 100644
index 0000000000..9214e5ccbf
--- /dev/null
+++ b/utils/rbutilqt/themesinstallwindow.h
@@ -0,0 +1,77 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Riebeling
10 *
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.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21#ifndef INSTALLTHEMES_H
22#define INSTALLTHEMES_H
23
24#include <QtGui>
25#include <QTemporaryFile>
26
27#include "ui_themesinstallfrm.h"
28#include "httpget.h"
29#include "zipinstaller.h"
30#include "progressloggergui.h"
31
32class ThemesInstallWindow : public QDialog
33{
34 Q_OBJECT
35
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);
44
45 public slots:
46 void accept(void);
47
48 signals:
49 void done(bool);
50
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;
63
64 QString infocachedir;
65 bool windowSelectOnly;
66
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);
74};
75
76
77#endif