1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
9 * Copyright (C) 2007 by Dominik Riebeling
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
25 #include "ui_installfrm.h"
26 #include "installzip.h"
27 #include "progressloggergui.h"
28 #include "rbsettings.h"
30 class Install
: public QDialog
34 Install(RbSettings
* sett
,QWidget
*parent
= 0);
35 void setVersionStrings(QMap
<QString
, QString
>);
42 ProgressLoggerGui
* logger
;
48 ZipInstaller
* installer
;
49 QMap
<QString
, QString
> version
;
54 void setDetailsCurrent(bool);
55 void setDetailsStable(bool);
56 void setDetailsArchived(bool);
58 void updateDataReadProgress(int read
, int total
);
59 void changeBackupPath();
60 void backupCheckboxChanged(int state
);