Downgraded GPL license from v3 to v2 to be compatible with OSDaB-ZIP
[emufront] / src / mainwindow.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 MAINWINDOW_H
21 #define MAINWINDOW_H
22
23 #include <QMainWindow>
24
25 class QAction;
26 class PlatformDialog;
27 class MediaTypeDialog;
28 class MediaImagePathMainDialog;
29 class SetupMainDialog;
30 class ExecutableMainDialog;
31 class QLabel;
32 class DatabaseManager;
33 class EmuFrontDialog;
34 class EmuLauncher;
35
36 class MainWindow : public QMainWindow
37 {
38         Q_OBJECT
39
40 public:
41         MainWindow();
42     //~MainWindow()
43
44 protected:
45         void closeEvent(QCloseEvent *event);
46
47 private slots:
48         void configurePlatforms();
49     void configureMediaTypes();
50     void configureMediaImagePaths();
51     void configureSetups();
52     void configureEmulators();
53
54 private:
55         void createActions();
56         void createMenus();
57         void createStatusBar();
58         void readSettings();
59         void writeSettings();
60         bool okToContinue();
61     void activateDialog(EmuFrontDialog*) const;
62         PlatformDialog *platformDialog;
63     MediaTypeDialog *mediaTypeDialog;
64     MediaImagePathMainDialog *mediaImagePathDialog;
65     SetupMainDialog *setupMainDialog;
66     ExecutableMainDialog *executableMainDialog;
67         QMenu *configMenu;
68         QMenu *fileMenu;
69     QAction *configPlatformAction;
70     QAction *configMediaTypeAction;
71     QAction *configMediaImagePathAction;
72     QAction *configSetupAction;
73     QAction *configEmulatorAction;
74     QAction *exitAction;
75         QLabel *messageLabel;
76     DatabaseManager *dbManager;
77     EmuLauncher *launcher;
78 };
79
80 #endif