Disable mediaimagepath dialog while scanning files and enable after
[emufront] / src / dialogs / dbobjectdialog.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 DBOBJECTDIALOG_H
21 #define DBOBJECTDIALOG_H
22
23 #include "emufrontdialog.h"
24 #include "dataobjecteditdialog.h"
25 #include "../db/databasemanager.h"
26 #include "../dataobjects/emufrontobject.h"
27
28 class QPushButton;
29 class QModelIndex;
30 class QDialogButtonBox;
31 class QTableView;
32
33 class DbObjectDialog : public EmuFrontDialog
34 {
35     Q_OBJECT
36
37 public:
38     DbObjectDialog(QWidget *parent = 0);
39     ~DbObjectDialog();
40     virtual void refreshDataModel();
41
42 private slots:
43         void editButtonClicked();
44         void addButtonClicked();
45         void deleteButtonClicked();
46         void listObjectClicked(const QModelIndex &);
47     void updateData();
48     void updateReject();
49     void updateList() const;
50     void testSlot();
51     void enableUi();
52
53 protected:
54     // implementation specific, deletes current data object from memory
55     virtual void deleteCurrentObject() = 0;
56     virtual void cleanUp() = 0;
57     virtual void initEditDialog() = 0;
58     virtual EmuFrontObject* createObject() = 0;
59     virtual void closeEvent(QCloseEvent *);
60     void initDataTable();
61     virtual void connectSignals();
62     virtual void connectNameDialogSignals();
63     DataObjectEditDialog *nameDialog;
64     EmuFrontObject *dbObject;
65     DatabaseManager *dbManager;
66     QDialogButtonBox *buttonBox;
67     QTableView *objectList;
68     QList<int> hiddenColumns;
69     void hideColumns();
70     void setUIEnabled(bool);
71
72 private:
73     bool deleteItem();
74     void addObject();
75     void insertDb(const EmuFrontObject*) const;
76     void updateDb(const EmuFrontObject*) const;
77     void editObject();
78     void activateNameDialog(bool updateData = true);
79     bool confirmDelete(QString name, int numRefs);
80     void setButtonsEnabled(bool);
81     void layout();
82     void disableSelection();
83     void createEditDialog();
84     QPushButton *editButton;
85     QPushButton *addButton;
86     QPushButton *deleteButton;
87 };
88
89 #endif