Data filtering changes.
[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::initWidgets()
40 {
41     micTable = new QTableView(this);
42     micTable->setSelectionMode(QAbstractItemView::SingleSelection);
43     mediaTypeSelectBox = new EFFileObjectComboBox(dbMediaType, this);
44     platformSelectBox = new EFFileObjectComboBox(dbPlatform, this);
45     selectButton = new QPushButton(tr("&Update"));
46 }
47
48 void EmuLauncher::layout()
49 {
50     QGridLayout *grid = new QGridLayout;
51     grid->addWidget(platformSelectBox, 0, 0);
52     grid->addWidget(mediaTypeSelectBox, 1, 0);
53     grid->addWidget(selectButton, 1, 1);
54     grid->addWidget(micTable, 2, 0, 1, 2);
55     setLayout(grid);
56 }
57
58 void EmuLauncher::connectSignals()
59 {
60     connect(selectButton, SIGNAL(clicked()), this, SLOT(updateMediaImageContainers()));
61 }
62
63 void EmuLauncher::updateMediaImageContainers()
64 {
65     qDebug() << "updateMediaImageContainers slot";
66     int mtid = mediaTypeSelectBox->getSelected()
67         ? mediaTypeSelectBox->getSelected()->getId()
68         : -1;
69     int plfid = platformSelectBox->getSelected()
70         ? platformSelectBox->getSelected()->getId()
71         : -1;
72
73     if (!dbMic) dbMic = new DbMediaImageContainer(this);
74     dbMic->filter(mtid, plfid);
75     micTable->setModel(dbMic->getDataModel());
76     micTable->resizeColumnsToContents();
77 }