Fixed a bug: When window was closed from window manager e.g. X-button,
[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 initEditDialog() = 0;
57     virtual EmuFrontObject* createObject() = 0;
58     void initDataTable();
59     virtual void connectSignals();
60     DataObjectEditDialog *nameDialog;
61     EmuFrontObject *dbObject;
62     DatabaseManager *dbManager;
63     QDialogButtonBox *buttonBox;
64     QTableView *objectList;
65     QList<int> hiddenColumns;
66     void hideColumns();
67
68 private:
69     bool deleteItem();
70     void addObject();
71     void insertDb(const EmuFrontObject*) const;
72     void updateDb(const EmuFrontObject*) const;
73     void editObject();
74     void activateNameDialog(bool updateData = true);
75     bool confirmDelete(QString name, int numRefs);
76     void setButtonsEnabled(bool);
77     void setUIEnabled(bool);
78     void layout();
79     void disableSelection();
80     QPushButton *editButton;
81     QPushButton *addButton;
82     QPushButton *deleteButton;
83 };
84
85 #endif