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