New configuration option: Media image paths (not active yet).
[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 MediaImagePathMainDialog;
29 class QLabel;
30 class DatabaseManager;
31 class EmuFrontDialog;
32
33 class MainWindow : public QMainWindow
34 {
35         Q_OBJECT
36
37 public:
38         MainWindow();
39     //~MainWindow()
40
41 protected:
42         void closeEvent(QCloseEvent *event);
43
44 private slots:
45         void configurePlatforms();
46     void configureMediaTypes();
47     void configureMediaImagePaths();
48
49 private:
50         void createActions();
51         void createMenus();
52         void createStatusBar();
53         void readSettings();
54         void writeSettings();
55         bool okToContinue();
56     void activateDialog(EmuFrontDialog*) const;
57         PlatformDialog *platformDialog;
58     MediaTypeDialog *mediaTypeDialog;
59     MediaImagePathMainDialog *mediaImagePathDialog;
60         QMenu *configMenu;
61         QMenu *fileMenu;
62     QAction *configPlatformAction;
63     QAction *configMediaTypeAction;
64     QAction *configMediaImagePathAction;
65     QAction *exitAction;
66         QLabel *messageLabel;
67     DatabaseManager *dbManager;
68 };
69
70 #endif