ProcessHelper derives from QProcess. New implementation: EmuHelper.
[emufront] / src / emulauncher.h
1 // EmuFront
2 // Copyright 2010 Mikko Keinänen
3 //
4 // This file is part of EmuFront.
5 //
6 //
7 // EmuFront is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License version 2 as published by
9 // the Free Software Foundation and appearing in the file gpl.txt included in the
10 // packaging of this file.
11 //
12 // EmuFront is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with EmuFront.  If not, see <http://www.gnu.org/licenses/>.
19
20 #ifndef EMULAUNCHER_H
21 #define EMULAUNCHER_H
22
23 #include <QWidget>
24 #include <QProcess>
25
26 class QTableView;
27 class QPushButton;
28 class DbMediaType;
29 class DbPlatform;
30 class DbMediaImageContainer;
31 class DbExecutable;
32 class EFFileObjectComboBox;
33 class ExecutableComboBox;
34 class Executable;
35 class MediaImageContainer;
36 class QProcess;
37 class EmuHelper;
38
39 class EmuLauncher : public QWidget
40 {
41 Q_OBJECT
42 public:
43     explicit EmuLauncher(QWidget *parent = 0);
44     ~EmuLauncher();
45     void updateData();
46
47 signals:
48
49 private slots:
50     void updateMediaImageContainers();
51     void launchEmu();
52     void processError(QProcess::ProcessError);
53     void processFinished(int);
54
55 private:
56     QTableView *micTable;
57     EFFileObjectComboBox *platformSelectBox;
58     EFFileObjectComboBox *mediaTypeSelectBox;
59     ExecutableComboBox *execSelectBox;
60     QPushButton *selectButton;
61     QPushButton *launchButton;
62     DbPlatform *dbPlatform;
63     DbMediaType *dbMediaType;
64     DbMediaImageContainer *dbMic;
65     DbExecutable *dbExec;
66     QProcess *proc;
67     EmuHelper *emuHelper;
68     void initWidgets();
69     void layout();
70     void connectSignals();
71     void populatePlatformSelectBox();
72     void populateMediaTypeSelectBox();
73     void launch(const Executable*, const MediaImageContainer*);
74 };
75
76 #endif // EMULAUNCHER_H