Fixed Emulator selection combo box, preserves state after emulator
[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 <QTime>
27 #include <QAbstractItemView>
28
29 EFComboBox::EFComboBox(DatabaseManager *dbMan, QWidget *parent)
30     : QComboBox(parent), dbManager(dbMan)
31 {
32     setSizeAdjustPolicy(QComboBox::AdjustToContents);
33     updateDataModel();
34 }
35
36 EFComboBox::~EFComboBox()
37 {
38 }
39
40 void EFComboBox::updateDataModel(bool reset)
41 {
42     QSqlQueryModel *model = dbManager->getDataModel(reset);
43     if (model)
44         setModel(model);
45 }
46
47 /*
48     Returns a pointer to EmuFrontObject which should be deleted
49     later by calling code!
50
51     Throws EmuFrontException
52 */
53 EmuFrontObject* EFComboBox::getSelected()
54 {
55     EmuFrontObject *efo = 0;
56     int index = currentIndex();
57     if (index < 0)
58         return 0;
59     QSqlQueryModel *qmodel
60         = dynamic_cast<QSqlQueryModel*>(model());
61     if (!qmodel) {
62         throw EmuFrontException(tr("No data model available!"));
63     }
64     QSqlRecord rec = qmodel->record(index);
65     if (rec.isEmpty()) {
66         throw EmuFrontException(tr("No data available for selected item!"));
67     }
68     int id = rec.value(dataModelIndex_id).toInt();
69     EmuFrontObject *o = dbManager->getDataObject(id); /* Throws EmuFrontException */
70     reset();
71     setCurrentIndex(index);
72     if (!o) throw EmuFrontException(tr("Failed creating selected data object!"));
73     return o;
74 }
75
76 void EFComboBox::reset()
77 {
78     dbManager->resetModel();
79 }
80
81 void EFComboBox::setSelected(const EmuFrontObject *efo)
82 {
83     if (!efo)
84         return;
85     qDebug() << "EFCombobox selecting " << efo->getName()
86         << " [" << efo->getId() << "].";
87     QSqlQueryModel *qmodel
88         = dynamic_cast<QSqlQueryModel*>(model());
89     QModelIndex idStart = qmodel->index(0, dataModelIndex_id);
90     int targetId = efo->getId();
91
92     QModelIndexList indLst = qmodel->match(idStart,Qt::DisplayRole, targetId, 1);
93     if (indLst.count() >= 1) {
94         QModelIndex ind = indLst.first();
95         view()->setCurrentIndex(ind);
96         setCurrentIndex(ind.row());
97     }
98 }