Combo boxes were not properly updated when editing an object [fixed].
[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 #include <QAbstractItemView>
27
28 EFComboBox::EFComboBox(DatabaseManager *dbMan, QWidget *parent)
29     : QComboBox(parent), dbManager(dbMan)
30 {
31     if (!dbManager)
32         throw new EmuFrontException("Database manager is not available!");
33     setSizeAdjustPolicy(QComboBox::AdjustToContents);
34     updateDataModel();
35 }
36
37 EFComboBox::~EFComboBox()
38 {
39 }
40
41 void EFComboBox::updateDataModel()
42 {
43     QSqlQueryModel *model = dbManager->getDataModel();
44     if (model)
45         setModel(model);
46 }
47
48 EmuFrontObject* EFComboBox::getSelected() const
49 {
50     EmuFrontObject *efo = 0;
51     int index = currentIndex();
52     qDebug() << "Selected index " << index << ".";
53     if (index < 0)
54         return 0;
55     QSqlQueryModel *qmodel
56         = dynamic_cast<QSqlQueryModel*>(model());
57     if (!qmodel) {
58         qDebug() << "No data model available!";
59         return 0;
60     }
61     QSqlRecord rec = qmodel->record(index);
62     if (rec.isEmpty()) {
63         qDebug() << "No record available!";
64         return efo;
65     }
66     qDebug() << "Fetching a data object with id "
67         << rec.value(dataModelIndex_id).toInt();
68     EmuFrontObject *o
69         = dbManager->getDataObject(rec.value(dataModelIndex_id).toInt());
70     return o;
71 }
72
73 void EFComboBox::setSelected(const EmuFrontObject *efo)
74 {
75     if (!efo)
76         return;
77     qDebug() << "EFCombobox selecting " << efo->getName()
78         << " [" << efo->getId() << "].";
79     QSqlQueryModel *qmodel
80         = dynamic_cast<QSqlQueryModel*>(model());
81     for (int i = 0; i < qmodel->rowCount(); i++){
82         QSqlRecord rec = qmodel->record(i);
83         int id = rec.value(dataModelIndex_id).toInt();
84         if (id == efo->getId()){
85             QModelIndex ind = qmodel->index(i, 0);
86             //view()->selectionModel()->select(ind, QItemSelectionModel::Select);
87             view()->setCurrentIndex(ind);
88             setCurrentIndex(i);
89             break;
90         }
91     }
92 }