Fixed memory loss cases (parent was missing from objects).
[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     explicit EmuLauncher(QWidget *parent = 0);
43     ~EmuLauncher();
44     void updateData();
45
46 signals:
47
48 private slots:
49     void updateMediaImageContainers();
50     void launchEmu();
51     void processError(QProcess::ProcessError);
52     void processFinished(int);
53
54 private:
55     QTableView *micTable;
56     EFFileObjectComboBox *platformSelectBox;
57     EFFileObjectComboBox *mediaTypeSelectBox;
58     ExecutableComboBox *execSelectBox;
59     QPushButton *selectButton;
60     QPushButton *launchButton;
61     DbPlatform *dbPlatform;
62     DbMediaType *dbMediaType;
63     DbMediaImageContainer *dbMic;
64     DbExecutable *dbExec;
65     EmuHelper *emuHelper;
66     void initWidgets();
67     void layout();
68     void connectSignals();
69     void populatePlatformSelectBox();
70     void populateMediaTypeSelectBox();
71     void launch(const Executable*, const MediaImageContainer*);
72     void cleanTmp();
73 };
74
75 #endif // EMULAUNCHER_H