Handle language change events in widgets.
[maemo-rb.git] / rbutil / rbutilqt / base / bootloaderinstallmi4.h
blobc56669b99f355ca4e5dac779ecc4aa44f4158f2d
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2008 by Dominik Riebeling
11 * All files in this archive are subject to the GNU General Public License.
12 * See the file COPYING in the source tree root for full license agreement.
14 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
15 * KIND, either express or implied.
17 ****************************************************************************/
19 #ifndef BOOTLOADERINSTALLMI4_H
20 #define BOOTLOADERINSTALLMI4_H
22 #include <QtCore>
23 #include "progressloggerinterface.h"
24 #include "bootloaderinstallbase.h"
27 // mi4 bootloader file based installation.
28 // Puts the bootloader file to the correct location and
29 // renames the OF to OF.mi4.
30 class BootloaderInstallMi4 : public BootloaderInstallBase
32 Q_OBJECT
34 public:
35 BootloaderInstallMi4(QObject *parent);
36 bool install(void);
37 bool uninstall(void);
38 BootloaderInstallBase::BootloaderType installed(void);
39 Capabilities capabilities(void);
41 private slots:
42 void installStage2(void);
44 private:
47 #endif