Skeletal implementation of EmuLauncher widget.
authorMikko Keinänen <mikko.keinanen@gmail.com>
Tue, 28 Sep 2010 20:44:45 +0000 (23:44 +0300)
committerMikko Keinänen <mikko.keinanen@gmail.com>
Tue, 28 Sep 2010 20:44:45 +0000 (23:44 +0300)
src/emulauncher.cpp
src/emulauncher.h

index cabad79..fe4206a 100644 (file)
@@ -23,3 +23,22 @@ EmuLauncher::EmuLauncher(QWidget *parent) :
     QWidget(parent)
 {
 }
+
+void EmuLauncher::layout()
+{
+    micTable = 0;
+    mediaTypeSelectBox = 0;
+    platformSelectBox = 0;
+}
+
+void EmuLauncher::connectSignals()
+{
+}
+
+void EmuLauncher::populateMediaTypeSelectBox()
+{
+}
+
+void EmuLauncher::populatePlatformSelectBox()
+{
+}
index 060838f..821ccac 100644 (file)
@@ -22,6 +22,9 @@
 
 #include <QWidget>
 
+class QTableView;
+class QComboBox;
+
 class EmuLauncher : public QWidget
 {
 Q_OBJECT
@@ -32,6 +35,14 @@ signals:
 
 public slots:
 
+private:
+    QTableView *micTable;
+    QComboBox *platformSelectBox;
+    QComboBox *mediaTypeSelectBox;
+    void layout();
+    void connectSignals();
+    void populatePlatformSelectBox();
+    void populateMediaTypeSelectBox();
 };
 
 #endif // EMULAUNCHER_H