Cleaning up here and there
[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 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 DBOBJECTDIALOG_H
21 #define DBOBJECTDIALOG_H
22
23 #include "emufrontdialog.h"
24 #include "namedialog.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
41 protected slots:
42         void editButtonClicked();
43         void addButtonClicked();
44         void deleteButtonClicked();
45         void listObjectClicked(const QModelIndex &);
46     virtual void updateData();
47     void updateList() const;
48
49 protected:
50         virtual int deleteObject() =0;
51         virtual void addObject() =0;
52         virtual void editObject() =0;
53     virtual bool deleteItem() = 0;
54     virtual void updateDb(const EmuFrontObject*) const = 0;
55     virtual void insertDb(const EmuFrontObject*) const = 0;
56     void connectSignals();
57     void activateNameDialog();
58     NameDialog *nameDialog;
59     DatabaseManager *dbManager;
60     QTableView *objectList;
61     EmuFrontObject *dbObject;
62
63 private:
64         void setButtonsEnabled(bool);
65     void layout();
66     void disableSelection();
67     QDialogButtonBox *buttonBox;
68     QPushButton *editButton;
69     QPushButton *addButton;
70     QPushButton *deleteButton;
71
72 };
73
74 #endif