summaryrefslogtreecommitdiff
path: root/utils/rbutilqt/installtalkwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rbutilqt/installtalkwindow.h')
-rw-r--r--utils/rbutilqt/installtalkwindow.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/utils/rbutilqt/installtalkwindow.h b/utils/rbutilqt/installtalkwindow.h
new file mode 100644
index 0000000000..f965e4cb09
--- /dev/null
+++ b/utils/rbutilqt/installtalkwindow.h
@@ -0,0 +1,56 @@
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 INSTALLTALKWINDOW_H
22#define INSTALLTALKWINDOW_H
23
24#include <QDialog>
25#include <QFileSystemModel>
26
27#include "ui_installtalkfrm.h"
28#include "progressloggergui.h"
29#include "talkfile.h"
30
31class InstallTalkWindow : public QDialog
32{
33 Q_OBJECT
34 public:
35 InstallTalkWindow(QWidget *parent = nullptr);
36
37 public slots:
38 void accept(void);
39 void change(void);
40
41 private slots:
42 void updateSettings(void);
43 void saveSettings(void);
44
45 signals:
46 void settingsUpdated(void);
47
48 private:
49 void changeEvent(QEvent *event);
50 TalkFileCreator* talkcreator;
51 Ui::InstallTalkFrm ui;
52 ProgressLoggerGui* logger;
53 QFileSystemModel *fsm;
54};
55
56#endif