Commented out all the deprecated stuff.
[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 */#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