Exception handling.
[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 TmpFolderEditDialog;
32 class QLabel;
33 class DatabaseManager;
34 class EmuFrontDialog;
35 class EmuLauncher;
36 class DatFileUtil;
37 class QErrorMessage;
38
39 class MainWindow : public QMainWindow
40 {
41         Q_OBJECT
42
43 public:
44     MainWindow(bool reset = false);
45     //~MainWindow()
46
47 protected:
48         void closeEvent(QCloseEvent *event);
49
50 private slots:
51         void configurePlatforms();
52     void configureMediaTypes();
53     void configureMediaImagePaths();
54     void configureSetups();
55     void configureEmulators();
56     void configureTmpDir();
57     void resetDb();
58     void updateData();
59     void manageDatFiles();
60     void about();
61
62 private:
63     static QString aboutStr;
64     static QString aboutTitle;
65     void createActions();
66         void createMenus();
67         void createStatusBar();
68         void readSettings();
69         void writeSettings();
70         bool okToContinue();
71     void connectSignals();
72     void activateDialog(EmuFrontDialog*) const;
73     bool testDB(bool reset);
74     void createDB() const;
75         PlatformDialog *platformDialog;
76     MediaTypeDialog *mediaTypeDialog;
77     MediaImagePathMainDialog *mediaImagePathDialog;
78     SetupMainDialog *setupMainDialog;
79     ExecutableMainDialog *executableMainDialog;
80     //TmpFolderEditDialog *tmpFolderDialog;
81         QMenu *configMenu;
82     QMenu *fileMenu;
83     QMenu *helpMenu;
84     QAction *configPlatformAction;
85     QAction *configMediaTypeAction;
86     QAction *configMediaImagePathAction;
87     QAction *configSetupAction;
88     QAction *configEmulatorAction;
89     QAction *exitAction;
90     QAction *resetDbAction;
91     QAction *aboutAction;
92     QAction *configTmpDirAction;
93     QAction *manageDatFilesAction;
94         QLabel *messageLabel;
95     DatabaseManager *dbManager;
96     EmuLauncher *launcher;
97     QString tmpDirFilePath;
98     QErrorMessage *errorMessage;
99 };
100
101 #endif