Fixed search results and combo box updating in emulauncher.
[emufront] / src / emulauncher.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 as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
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 <QtGui>
21 #include <QSqlTableModel>
22 #include "emulauncher.h"
23 #include "db/dbmediatype.h"
24 #include "db/dbplatform.h"
25 #include "db/dbmediaimagecontainer.h"
26 #include "widgets/effileobjectcombobox.h"
27
28 EmuLauncher::EmuLauncher(QWidget *parent) :
29     QWidget(parent)
30 {
31     dbPlatform = new DbPlatform(this);
32     dbMediaType = new DbMediaType(this);
33     dbMic = 0;
34     initWidgets();
35     layout();
36     connectSignals();
37 }
38
39 void EmuLauncher::updateData()
40 {
41     platformSelectBox->updateDataModel();
42     mediaTypeSelectBox->updateDataModel();
43 }
44
45 void EmuLauncher::initWidgets()
46 {
47     micTable = new QTableView(this);
48     micTable->setSelectionMode(QAbstractItemView::SingleSelection);
49     mediaTypeSelectBox = new EFFileObjectComboBox(dbMediaType, this);
50     platformSelectBox = new EFFileObjectComboBox(dbPlatform, this);
51     selectButton = new QPushButton(tr("&Update"));
52 }
53
54 void EmuLauncher::layout()
55 {
56     QGridLayout *grid = new QGridLayout;
57     grid->addWidget(platformSelectBox, 0, 0);
58     grid->addWidget(mediaTypeSelectBox, 1, 0);
59     grid->addWidget(selectButton, 1, 1);
60     grid->addWidget(micTable, 2, 0, 1, 2);
61     setLayout(grid);
62 }
63
64 void EmuLauncher::connectSignals()
65 {
66     connect(selectButton, SIGNAL(clicked()), this, SLOT(updateMediaImageContainers()));
67 }
68
69 void EmuLauncher::updateMediaImageContainers()
70 {
71     qDebug() << "updateMediaImageContainers slot";
72     int mtid = mediaTypeSelectBox->getSelected()
73         ? mediaTypeSelectBox->getSelected()->getId()
74         : -1;
75     int plfid = platformSelectBox->getSelected()
76         ? platformSelectBox->getSelected()->getId()
77         : -1;
78
79     if (!dbMic) dbMic = new DbMediaImageContainer(this);
80     dbMic->filter(mtid, plfid);
81     micTable->setModel(dbMic->getDataModel());
82     micTable->resizeColumnsToContents();
83     platformSelectBox->updateDataModel();
84     mediaTypeSelectBox->updateDataModel();
85 }
86