Added about box.
[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     void updateData();
54     void about();
55
56 private:
57         void createActions();
58         void createMenus();
59         void createStatusBar();
60         void readSettings();
61         void writeSettings();
62         bool okToContinue();
63     void connectSignals();
64     void activateDialog(EmuFrontDialog*) const;
65         PlatformDialog *platformDialog;
66     MediaTypeDialog *mediaTypeDialog;
67     MediaImagePathMainDialog *mediaImagePathDialog;
68     SetupMainDialog *setupMainDialog;
69     ExecutableMainDialog *executableMainDialog;
70         QMenu *configMenu;
71     QMenu *fileMenu;
72     QMenu *helpMenu;
73     QAction *configPlatformAction;
74     QAction *configMediaTypeAction;
75     QAction *configMediaImagePathAction;
76     QAction *configSetupAction;
77     QAction *configEmulatorAction;
78     QAction *exitAction;
79     QAction *aboutAction;
80         QLabel *messageLabel;
81     DatabaseManager *dbManager;
82     EmuLauncher *launcher;
83 };
84
85 #endif