Initial (testing) layout for 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 "emulauncher.h"
22
23 EmuLauncher::EmuLauncher(QWidget *parent) :
24     QWidget(parent)
25 {
26     initWidgets();
27     layout();
28     //connectSignals();
29 }
30
31 void EmuLauncher::initWidgets()
32 {
33     //micTable = new QTableView(this);
34     mediaTypeSelectBox = new QComboBox;
35     platformSelectBox = new QComboBox;
36     selectButton = new QPushButton(tr("&Update"));
37     //populateMediaTypeSelectBox();
38     //populatePlatformSelectBox();
39 }
40
41 void EmuLauncher::layout()
42 {
43     QGridLayout *grid = new QGridLayout;
44     grid->addWidget(platformSelectBox, 0, 0);
45     grid->addWidget(mediaTypeSelectBox, 1, 0);
46     grid->addWidget(selectButton, 2, 0);
47     //grid->addWidget(micTable, 3, 0);
48     setLayout(grid);
49 }
50
51 void EmuLauncher::connectSignals()
52 {
53     connect(selectButton, SIGNAL(clicked()), this, SLOT(updateMediaImageContainers()));
54 }
55
56 void EmuLauncher::populateMediaTypeSelectBox()
57 {
58 }
59
60 void EmuLauncher::populatePlatformSelectBox()
61 {
62 }
63
64 void EmuLauncher::updateMediaImageContainers()
65 {
66 }