Combo boxes were not properly updated when editing an object [fixed].
[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
52 protected:
53     // implementation specific, deletes current data object from memory
54     virtual void deleteCurrentObject();
55     virtual void initEditDialog() = 0;
56     virtual EmuFrontObject* createObject() = 0;
57     void initDataTable();
58     virtual void connectSignals();
59     DataObjectEditDialog *nameDialog;
60     EmuFrontObject *dbObject;
61     DatabaseManager *dbManager;
62     QDialogButtonBox *buttonBox;
63     QTableView *objectList;
64
65 private:
66     bool deleteItem();
67     void addObject();
68     void insertDb(const EmuFrontObject*) const;
69     void updateDb(const EmuFrontObject*) const;
70     void editObject();
71     void activateNameDialog(bool updateData = true);
72     bool confirmDelete(QString name, int numRefs);
73         void setButtonsEnabled(bool);
74     void layout();
75     void disableSelection();
76     QPushButton *editButton;
77     QPushButton *addButton;
78     QPushButton *deleteButton;
79 };
80
81 #endif