5a8db80d5f3bd6d4d411b2d3475f8eb4be087b24
[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() const
54 {
55     EmuFrontObject *efo = 0;
56     int index = currentIndex();
57     qDebug() << "Selected index " << index << ".";
58     if (index < 0)
59         return 0;
60     QSqlQueryModel *qmodel
61         = dynamic_cast<QSqlQueryModel*>(model());
62     if (!qmodel) {
63         qDebug() << "No data model available!";
64         return 0;
65     }
66     QSqlRecord rec = qmodel->record(index);
67     if (rec.isEmpty()) {
68         qDebug() << "No record available!";
69         return efo;
70     }
71     qDebug() << "Fetching a data object with id "
72         << rec.value(dataModelIndex_id).toInt();
73     EmuFrontObject *o
74         = dbManager->getDataObject(rec.value(dataModelIndex_id).toInt()); /* Throws EmuFrontException */
75     return o;
76 }
77
78 void EFComboBox::setSelected(const EmuFrontObject *efo)
79 {
80     if (!efo)
81         return;
82     qDebug() << "EFCombobox selecting " << efo->getName()
83         << " [" << efo->getId() << "].";
84     QSqlQueryModel *qmodel
85         = dynamic_cast<QSqlQueryModel*>(model());
86     QModelIndex idStart = qmodel->index(0, dataModelIndex_id);
87     int targetId = efo->getId();
88
89     QModelIndexList indLst = qmodel->match(idStart,Qt::DisplayRole, targetId, 1);
90     if (indLst.count() >= 1) {
91         QModelIndex ind = indLst.first();
92         view()->setCurrentIndex(ind);
93         setCurrentIndex(ind.row());
94     }
95 }