1e881368d30477ee1d6f92be2c8274c88ee28cc2
[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 EmuHelper;
37
38 class EmuLauncher : public QWidget
39 {
40 Q_OBJECT
41 public:
42     EmuLauncher(QWidget *parent = 0, QString tmp = ".");
43     ~EmuLauncher();
44     void updateData();
45     void setTmpDirPath(QString);
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     EmuHelper *emuHelper;
67     void initWidgets();
68     void layout();
69     void connectSignals();
70     void populatePlatformSelectBox();
71     void populateMediaTypeSelectBox();
72     void launch(const Executable*, const MediaImageContainer*);
73     void cleanTmp();
74     QString tmpDirPath;
75 };
76
77 #endif // EMULAUNCHER_H