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