Populating the platform selector.
[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
26 EmuLauncher::EmuLauncher(QWidget *parent) :
27     QWidget(parent)
28 {
29     dbPlatform = 0;
30     dbMediaType = 0;
31     initWidgets();
32     layout();
33     //connectSignals();
34 }
35
36 void EmuLauncher::initWidgets()
37 {
38     //micTable = new QTableView(this);
39     mediaTypeSelectBox = new QComboBox;
40     platformSelectBox = new QComboBox;
41     selectButton = new QPushButton(tr("&Update"));
42     //populateMediaTypeSelectBox();
43     populatePlatformSelectBox();
44 }
45
46 void EmuLauncher::layout()
47 {
48     QGridLayout *grid = new QGridLayout;
49     grid->addWidget(platformSelectBox, 0, 0);
50     grid->addWidget(mediaTypeSelectBox, 1, 0);
51     grid->addWidget(selectButton, 2, 0);
52     //grid->addWidget(micTable, 3, 0);
53     setLayout(grid);
54 }
55
56 void EmuLauncher::connectSignals()
57 {
58     connect(selectButton, SIGNAL(clicked()), this, SLOT(updateMediaImageContainers()));
59 }
60
61 void EmuLauncher::populateMediaTypeSelectBox()
62 {
63     }
64
65 void EmuLauncher::populatePlatformSelectBox()
66 {
67     if (!dbPlatform)
68
69         dbPlatform = new DbPlatform(this);
70     QSqlQueryModel *model = dbPlatform->getDataModel();
71     if (!model)
72         return;
73     platformSelectBox->setModel(model);
74     platformSelectBox->setModelColumn(DbPlatform::EmuFrontFileObject_Name);
75 }
76
77
78 void EmuLauncher::updateMediaImageContainers()
79 {
80 }