6ce4ef73517915e86e73743f6f2c84dfc15846ca
[emufront] / src / dialogs / platformnamedialog.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 "platformnamedialog.h"
22 #include "../db/databasemanager.h"
23
24 PlatformNameDialog::PlatformNameDialog(QWidget *parent, Platform *efObj)
25     : NameDialog(parent, efObj)
26 {
27     setWindowTitle(tr("Set platform name"));
28 }
29
30 PlatformNameDialog::~PlatformNameDialog()
31 {
32     // no need to delete efObject here, the calling widget will take care of it
33     // delete dynamic_cast<Platform*>(efObject);
34 }
35
36 void PlatformNameDialog::setDataObject(QString name)
37 {
38     efObject->setName(name);
39     (dynamic_cast<Platform*>(efObject))->setFile(0);
40 }
41
42 void PlatformNameDialog::setDataObject(EmuFrontObject *ob)
43 {
44     if (!ob) return;
45     efObject = dynamic_cast<Platform*>(ob);    
46     QString name = efObject->getName();
47     nameEdit->setText(name);
48
49     qDebug() << "Setting name to " << efObject->getName();
50     nameEdit->setText(efObject->getName());
51 }
52