summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/uninstallwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/uninstallwindow.h')
-rw-r--r--rbutil/rbutilqt/uninstallwindow.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/uninstallwindow.h b/rbutil/rbutilqt/uninstallwindow.h
new file mode 100644
index 0000000000..177ff8db76
--- /dev/null
+++ b/rbutil/rbutilqt/uninstallwindow.h
@@ -0,0 +1,55 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Wenger
10 * $Id: uninstallwindow.h 14151 2007-08-02 22:27:51Z domonoky $
11 *
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.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#ifndef UNINSTALLWINDOW_H
21#define UNINSTALLWINDOW_H
22
23#include <QtGui>
24
25#include <QSettings>
26
27#include "ui_uninstallfrm.h"
28#include "progressloggergui.h"
29#include "uninstall.h"
30
31class UninstallWindow : public QDialog
32{
33 Q_OBJECT
34 public:
35 UninstallWindow(QWidget *parent = 0);
36 void setUserSettings(QSettings*);
37 void setDeviceSettings(QSettings*);
38
39 public slots:
40 void accept(void);
41
42 private slots:
43 void selectionChanged();
44 void UninstallMethodChanged(bool complete);
45 private:
46 Uninstaller* uninstaller;
47 Ui::UninstallFrm ui;
48 ProgressLoggerGui* logger;
49 QSettings *devices;
50 QSettings *userSettings;
51
52};
53
54
55#endif