Fixing a bug with selection combo box not updating when editin an
[emufront] / src / widgets / efcombobox.cpp
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 #include "efcombobox.h"
21 #include "../exceptions/emufrontexception.h"
22 #include "../dataobjects/emufrontobject.h"
23 #include <QSqlQueryModel>
24 #include <QSqlRecord>
25 #include <QDebug>
26
27 EFComboBox::EFComboBox(DatabaseManager *dbMan, QWidget *parent)
28     : QComboBox(parent), dbManager(dbMan)
29 {
30     if (!dbManager)
31         throw new EmuFrontException("Database manager is not available!");
32     updateDataModel();
33 }
34
35 EFComboBox::~EFComboBox()
36 {
37 }
38
39 void EFComboBox::updateDataModel()
40 {
41     QSqlQueryModel *model = dbManager->getDataModel();
42     if (model)
43         setModel(model);
44 }
45
46 EmuFrontObject* EFComboBox::getSelected() const
47 {
48     EmuFrontObject *efo = 0;
49     int index = currentIndex();
50     qDebug() << "Selected index " << index << ".";
51     if (index < 0)
52         return 0;
53     QSqlQueryModel *qmodel
54         = dynamic_cast<QSqlQueryModel*>(model());
55     if (!qmodel) {
56         qDebug() << "No data model available!";
57         return 0;
58     }
59     QSqlRecord rec = qmodel->record(index);
60     if (rec.isEmpty()) {
61         qDebug() << "No record available!";
62         return efo;
63     }
64     qDebug() << "Fetching a data object with id "
65         << rec.value(dataModelIndex_id).toInt();
66     EmuFrontObject *o
67         = dbManager->getDataObject(rec.value(dataModelIndex_id).toInt());
68     return o;
69 }
70
71 void EFComboBox::setSelected(const EmuFrontObject *efo)
72 {
73     if (!efo)
74         return;
75     qDebug() << "EFCombobox selecting " << efo->getName()
76         << " [" << efo->getId() << "].";
77     QSqlQueryModel *qmodel
78         = dynamic_cast<QSqlQueryModel*>(model());
79     for (int i = 0; i < qmodel->rowCount(); i++){
80         QSqlRecord rec = qmodel->record(i);
81         int id = rec.value(dataModelIndex_id).toInt();
82         qDebug() << "Checking record with id " << rec.value(dataModelIndex_id)
83             << " and name " << rec.value(dataModelIndex_name);
84         if (id == efo->getId()){
85             qDebug() << "Found!";
86             setCurrentIndex(i);
87             show();
88             break;
89         }
90     }
91
92 }