499824047d70e1079b72812c4400b1704eeaffa5
[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 QErrorMessage;
29 class DbMediaType;
30 class DbPlatform;
31 class DbMediaImageContainer;
32 class DbExecutable;
33 class EFFileObjectComboBox;
34 class ExecutableComboBox;
35 class Executable;
36 class MediaImageContainer;
37 class EmuHelper;
38
39 class EmuLauncher : public QWidget
40 {
41 Q_OBJECT
42 public:
43     EmuLauncher(QErrorMessage *, QWidget *parent = 0, QString tmp = ".");
44     ~EmuLauncher();
45     void updateData();
46     void setTmpDirPath(QString);
47
48 signals:
49
50 private slots:
51     void updateMediaImageContainers();
52     void launchEmu();
53     void processError(QProcess::ProcessError);
54     void processFinished(int);
55
56 private:
57     QTableView *micTable;
58     EFFileObjectComboBox *platformSelectBox;
59     EFFileObjectComboBox *mediaTypeSelectBox;
60     ExecutableComboBox *execSelectBox;
61     QPushButton *selectButton;
62     QPushButton *launchButton;
63     DbPlatform *dbPlatform;
64     DbMediaType *dbMediaType;
65     DbMediaImageContainer *dbMic;
66     DbExecutable *dbExec;
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     void cleanTmp();
75     QString tmpDirPath;
76     QErrorMessage *errorMessage;
77 };
78
79 #endif // EMULAUNCHER_H