Enabled media type editor to main window
[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 // Foobar 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 Foobar.  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 QLabel;
29 class DatabaseManager;
30
31 class MainWindow : public QMainWindow
32 {
33         Q_OBJECT
34
35 public:
36         MainWindow();
37     //~MainWindow()
38
39 protected:
40         void closeEvent(QCloseEvent *event);
41
42 private slots:
43         void configurePlatforms();
44     void configureMediaTypes();
45
46 private:
47         void createActions();
48         void createMenus();
49         void createStatusBar();
50         void readSettings();
51         void writeSettings();
52         bool okToContinue();
53         PlatformDialog *platformDialog;
54     MediaTypeDialog *mediaTypeDialog;
55         QMenu *configMenu;
56         QMenu *fileMenu;
57     QAction *configPlatformAction;
58     QAction *configMediaTypeAction;
59         QAction *exitAction;
60         QLabel *messageLabel;
61     DatabaseManager *dbManager;
62 };
63
64 #endif