summaryrefslogtreecommitdiff
path: root/utils/rbutilqt/uninstallwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rbutilqt/uninstallwindow.h')
-rw-r--r--utils/rbutilqt/uninstallwindow.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/utils/rbutilqt/uninstallwindow.h b/utils/rbutilqt/uninstallwindow.h
new file mode 100644
index 0000000000..74e149aa02
--- /dev/null
+++ b/utils/rbutilqt/uninstallwindow.h
@@ -0,0 +1,51 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Wenger
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 UNINSTALLWINDOW_H
22#define UNINSTALLWINDOW_H
23
24#include <QtGui>
25
26#include "ui_uninstallfrm.h"
27#include "progressloggergui.h"
28#include "uninstall.h"
29
30class UninstallWindow : public QDialog
31{
32 Q_OBJECT
33 public:
34 UninstallWindow(QWidget *parent = nullptr);
35
36 public slots:
37 void accept(void);
38
39 private slots:
40 void selectionChanged();
41 void UninstallMethodChanged(bool complete);
42
43 private:
44 void changeEvent(QEvent *event);
45 Uninstaller* uninstaller;
46 Ui::UninstallFrm ui;
47 ProgressLoggerGui* logger;
48};
49
50
51#endif