EmuFront ... NOT Foobar :D
[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 as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
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 QLabel;
31 class DatabaseManager;
32 class EmuFrontDialog;
33
34 class MainWindow : public QMainWindow
35 {
36         Q_OBJECT
37
38 public:
39         MainWindow();
40     //~MainWindow()
41
42 protected:
43         void closeEvent(QCloseEvent *event);
44
45 private slots:
46         void configurePlatforms();
47     void configureMediaTypes();
48     void configureMediaImagePaths();
49     void configureSetups();
50
51 private:
52         void createActions();
53         void createMenus();
54         void createStatusBar();
55         void readSettings();
56         void writeSettings();
57         bool okToContinue();
58     void activateDialog(EmuFrontDialog*) const;
59         PlatformDialog *platformDialog;
60     MediaTypeDialog *mediaTypeDialog;
61     MediaImagePathMainDialog *mediaImagePathDialog;
62     SetupMainDialog *setupMainDialog;
63         QMenu *configMenu;
64         QMenu *fileMenu;
65     QAction *configPlatformAction;
66     QAction *configMediaTypeAction;
67     QAction *configMediaImagePathAction;
68     QAction *configSetupAction;
69     QAction *exitAction;
70         QLabel *messageLabel;
71     DatabaseManager *dbManager;
72 };
73
74 #endif