e7d18f72e735380e1b46b5db37ab53f61815b162
[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 "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     nameEdit->hide();
45     if (!ob) return;
46     efObject = dynamic_cast<Platform*>(ob);
47     nameEdit->setText(efObject->getName());
48     nameEdit->setFocus(Qt::TabFocusReason);
49     nameEdit->show();
50 }
51
52 /*void PlatformNameDialog::keyPressEvent(QKeyEvent *event)
53 {
54     nameEdit->setText( nameEdit->text().append(event->text()) );
55     QDialog::keyPressEvent(event);
56 }*/
57