clean up
[emufront] / src / db / databasemanager.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 DATABASEMANAGER_H
21 #define DATABASEMANAGER_H
22
23 #include <QObject>
24 #include <QSqlDatabase>
25
26 class QSqlError;
27 class QFile;
28 class QSqlTableModel;
29
30 class DatabaseManager : public QObject
31 {
32 public:
33         DatabaseManager(QObject *parent = 0);
34         ~DatabaseManager();
35
36     virtual QSqlTableModel* getDataModel() = 0;
37     static bool openDB();
38     void resetModel() const;
39     enum {
40         Filetype_MediaImageContainer = 0,
41         Filetype_Screenshot = 1,
42         Filetype_PlatformIcon = 2,
43         Filetype_MediaTypeIcon = 3 };
44
45 protected:
46     QSqlTableModel *sqlTableModel;
47
48 private:
49         static const QString DB_FILENAME;
50     static const QString DATABASE;
51     virtual QSqlTableModel* getData() = 0;
52     static QString getDbPath();
53 };
54
55 #endif