Removed unnecessary updating to database if no object
[emufront] / src / dialogs / setupeditdialog.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 version 2 as published by
9 // the Free Software Foundation and appearing in the file gpl.txt included in the
10 // packaging of this file.
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 <QSqlRecord>
23 #include "setupeditdialog.h"
24 #include "../widgets/stringlistwidget.h"
25 #include "../widgets/effileobjectcombobox.h"
26 #include "../db/dbmediatype.h"
27 #include "../db/dbplatform.h"
28 #include "../db/dbsetup.h"
29
30 SetupEditDialog::SetupEditDialog(QWidget *parent, EmuFrontObject* obj)
31     : DataObjectEditDialog(parent, obj)
32 {
33     dbSetup = 0;
34     dbPlatform = new DbPlatform(this);
35     dbMediaType = new DbMediaType(this);
36     initWidgets();
37     connectSignals();
38     emit test();
39     layout();
40 }
41
42 void SetupEditDialog::initWidgets()
43 {
44     mediaTypeComBox = new EFFileObjectComboBox(dbMediaType, this);
45     platformComBox = new EFFileObjectComboBox(dbPlatform, this);
46     supportedFileTypesList = new StringListWidget;
47 }
48
49 void SetupEditDialog::layout()
50 {
51    QLabel *platformLabel = new QLabel(tr("&Platform"));
52    platformLabel->setBuddy(platformComBox);
53    QLabel *mediaTypeLabel = new QLabel(tr("Media&Type"));
54    mediaTypeLabel->setBuddy(mediaTypeComBox);
55    QGridLayout *gridLayout = new QGridLayout;
56    gridLayout->addWidget(platformLabel, 0, 0);
57    gridLayout->addWidget(platformComBox, 0, 1);
58    gridLayout->addWidget(mediaTypeLabel, 1, 0);
59    gridLayout->addWidget(mediaTypeComBox, 1, 1);
60    gridLayout->addWidget(supportedFileTypesList, 2, 0, 2, 2);
61    QVBoxLayout *mainLayout = new QVBoxLayout;
62    mainLayout->addLayout(gridLayout);
63    mainLayout->addWidget(buttonBox);
64    setLayout(mainLayout);
65    setWindowTitle(tr("Edit setup"));
66 }
67
68 void SetupEditDialog::acceptChanges()
69 {
70     Setup *sup = dynamic_cast<Setup*>(efObject);
71     Platform *plf = getSelectedPlatform();
72     if (!plf)
73     {
74         QMessageBox::information(this, tr("Platform"),
75             tr("Platform not selected"), QMessageBox::Ok);
76         return;
77     }
78     qDebug() << "Platform selected " << plf->getName();
79     MediaType *mt = getSelectedMediaType();
80     if (!mt)
81     {
82         QMessageBox::information(this, tr("Media type"), tr("Media type was not selected"), QMessageBox::Ok);
83         return;
84     }
85     qDebug() << "Media type selected " << mt->getName();
86
87
88     bool change = false;
89     Platform *ptmp = sup->getPlatform();
90     if (*plf != *ptmp)
91     {
92         delete ptmp;
93         sup->setPlatform(plf);
94         change = true;
95     }
96     MediaType *mtmp = sup->getMediaType();
97     if (*mt != *mtmp)
98     {
99         delete mtmp;
100         sup->setMediaType(mt);
101         change = true;
102     }
103
104     // "Two lists are considered equal if they contain the same values in the same order."
105     if (supportedFileTypesList->getItems() != sup->getSupportedFileTypeExtensions()) {
106         sup->setSupportedFileTypeExtensions(supportedFileTypesList->getItems());
107         change = true;
108     }
109     if (change) emit dataObjectUpdated();
110     efObject = 0;
111     close();
112 }
113
114 void SetupEditDialog::setDataObject(EmuFrontObject *ob)
115 {
116     if (!ob) return;
117     qDebug() << "Updating Setup edit dialog data object to "
118         << ob->getName() << ".";
119     if (efObject)
120         delete dynamic_cast<Setup*>(efObject); // TODO: caused crash if another instance of setupeditdialog was created and new instance destroyed object being referenced in another existing dialog.
121     efObject = ob;
122     Setup *sup= dynamic_cast<Setup*>(ob);
123     if (sup->getPlatform()) setSelectedPlatform(sup->getPlatform());
124     if (sup->getMediaType()) setSelectedMediaType(sup->getMediaType());
125     supportedFileTypesList->setItems(sup->getSupportedFileTypeExtensions());
126 }
127
128 void SetupEditDialog::setSelectedPlatform(const Platform *plf)
129 {
130     platformComBox->setSelected(plf);
131 }
132
133 void SetupEditDialog::setSelectedMediaType(const MediaType *plf)
134 {
135     mediaTypeComBox->setSelected(plf);
136 }
137
138 Platform* SetupEditDialog::getSelectedPlatform() const
139 {
140     EmuFrontObject *o = platformComBox->getSelected();
141     if (!o) return 0;
142     Platform *plf = dynamic_cast<Platform*>(o);
143     return plf;
144 }
145
146 MediaType* SetupEditDialog::getSelectedMediaType() const
147 {
148     EmuFrontObject *o = mediaTypeComBox->getSelected();
149     if (!o) return 0;
150     MediaType *mt = dynamic_cast<MediaType*>(o);
151     return mt;
152 }
153
154 void SetupEditDialog::updateData()
155 {
156     platformComBox->updateDataModel();
157     mediaTypeComBox->updateDataModel();
158 }