tableview activated
[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 "widgets/effileobjectcombobox.h"
26
27 EmuLauncher::EmuLauncher(QWidget *parent) :
28     QWidget(parent)
29 {
30     dbPlatform = new DbPlatform(this);
31     dbMediaType = new DbMediaType(this);
32     initWidgets();
33     layout();
34     //connectSignals();
35 }
36
37 void EmuLauncher::initWidgets()
38 {
39     micTable = new QTableView(this);
40     mediaTypeSelectBox = new EFFileObjectComboBox(dbMediaType, this);
41     platformSelectBox = new EFFileObjectComboBox(dbPlatform, this);
42     selectButton = new QPushButton(tr("&Update"));
43 }
44
45 void EmuLauncher::layout()
46 {
47     QGridLayout *grid = new QGridLayout;
48     grid->addWidget(platformSelectBox, 0, 0);
49     grid->addWidget(mediaTypeSelectBox, 1, 0);
50     grid->addWidget(selectButton, 1, 1);
51     grid->addWidget(micTable, 2, 0, 1, 2);
52     setLayout(grid);
53 }
54
55 void EmuLauncher::connectSignals()
56 {
57     connect(selectButton, SIGNAL(clicked()), this, SLOT(updateMediaImageContainers()));
58 }
59
60 void EmuLauncher::updateMediaImageContainers()
61 {
62 }