Updated the git clone command.
[emufront] / src / views / setupeditview.cpp
index 15cdeba..8688945 100644 (file)
@@ -1,39 +1,64 @@
-// EmuFront
-// Copyright 2010 Mikko Keinänen
-//
-// This file is part of EmuFront.
-//
-//
-// EmuFront is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License version 2 as published by
-// the Free Software Foundation and appearing in the file gpl.txt included in the
-// packaging of this file.
-//
-// EmuFront is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with EmuFront.  If not, see <http://www.gnu.org/licenses/>.
-
+/*
+** EmuFront
+** Copyright 2010 Mikko Keinänen
+**
+** This file is part of EmuFront.
+**
+**
+** EmuFront is free software: you can redistribute it and/or modify
+** it under the terms of the GNU General Public License version 2 as published by
+** the Free Software Foundation and appearing in the file gpl.txt included in the
+** packaging of this file.
+**
+** EmuFront is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with EmuFront.  If not, see <http://www.gnu.org/licenses/>.
+*/
 #include <QtGui>
 #include "setupeditview.h"
 #include "setupmodel.h"
 #include "comboboxdelegate.h"
+#include "stringlistdelegate.h"
 #include "platformmodel.h"
+#include "mediatypemodel.h"
 #include <QSqlTableModel>
 
-SetupEditView::SetupEditView(QWidget *parent) :
-    EmuFrontEditView(parent)
+SetupEditView::SetupEditView(PlatformModel *plfModel, MediaTypeModel *mdtModel, SetupModel *supModel, QWidget *parent) :
+    EmuFrontEditView(parent), plfModel(plfModel), mdtModel(mdtModel)
 {
-    model = new SetupModel(this);
+    setWindowTitle(tr("Setups"));
+    model = supModel;
     objectList->setModel(model);
-    /*QSqlTableModel *platformModel = new QSqlTableModel(this);
-    platformModel->setTable("platform");
-    platformModel->removeColumn(Plat)*/
-    PlatformModel *plfModel = new PlatformModel(this);
-    ComboBoxDelegate *platformDelegate = new ComboBoxDelegate(SetupModel::Setup_PlatformId, plfModel, PlatformModel::EmuFrontFileObject_Id, PlatformModel::EmuFrontFileObject_Name, this);
-    objectList->setItemDelegate(platformDelegate);
+    ComboBoxDelegate *platformDelegate = new ComboBoxDelegate(
+            plfModel,
+            PlatformModel::EmuFrontFileObject_Id,
+            PlatformModel::EmuFrontFileObject_Name,
+            this
+        );
+    objectList->setItemDelegateForColumn(SetupModel::Setup_PlatformId, platformDelegate);
+    ComboBoxDelegate *mediatypeDelegate = new ComboBoxDelegate(
+            mdtModel,
+            MediaTypeModel::EmuFrontFileObject_Id,
+            MediaTypeModel::EmuFrontFileObject_Name,
+            this
+        );
+    objectList->setItemDelegateForColumn(SetupModel::Setup_MediaTypeId, mediatypeDelegate);
+
+    StringListDelegate *fileTypeDelegate = new StringListDelegate(SetupModel::FILE_TYPE_EXTENSION_SEPARATOR, this);
+    objectList->setItemDelegateForColumn(SetupModel::Setup_FileTypeExtensions, fileTypeDelegate);
+       //objectList->setColumnWidth(SetupModel::Setup_FileTypeExtensions, StringListDelegate::WIDTH);
+       objectList->resizeColumnToContents(SetupModel::Setup_FileTypeExtensions);
     postInit();
 }
+
+void SetupEditView::setHiddenColumns()
+{
+       hiddenColumns << SetupModel::Setup_Id;
+       hiddenColumns << SetupModel::Setup_Name; 
+}
+
+