Remove "Install All" button from themes install window and replace it with a note...
[kugel-rb.git] / rbutil / rbutilqt / installthemes.h
blob036647f224d533cda551006a691dd413f2089bf3
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_installthemesfrm.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 QString resolution(void);
55 int currentItem;
56 void resizeEvent(QResizeEvent*);
57 QByteArray imgData;
58 ProgressLoggerGui *logger;
59 ZipInstaller *installer;
60 QString file;
61 QString fileName;
63 QString infocachedir;
65 private slots:
66 void downloadDone(bool);
67 void downloadDone(int, bool);
68 void updateDetails(int);
69 void updateImage(bool);
70 void abort(void);
74 #endif