Cleaning up.
[emufront] / src / dialogs / mediaimagepathdialog.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 "mediaimagepathdialog.h"
24 #include "../db/dbsetup.h"
25 #include "../dataobjects/filepathobject.h"
26 #include "../widgets/setupcombobox.h"
27
28 MediaImagePathDialog::MediaImagePathDialog(QWidget *parent, EmuFrontObject *efObject)
29     : DataObjectEditDialog(parent, efObject, Qt::Horizontal)
30 {
31     initWidgets();
32     dbPlatform = 0;
33     dbMediaType = 0;
34     dbSetup = 0;
35     connectSignals();
36     layout();
37 }
38
39 MediaImagePathDialog::~MediaImagePathDialog()
40 {
41 }
42
43 void MediaImagePathDialog::connectSignals()
44 {
45     DataObjectEditDialog::connectSignals();
46     connect(filePathButton, SIGNAL(clicked()), this, SLOT(browseFilePath()));
47 }
48
49 void MediaImagePathDialog::browseFilePath()
50 {
51     QString fpath = QFileDialog::getExistingDirectory(this, tr("Select a directory"), ".",
52         QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
53     QDir d(fpath);
54     if (d.exists() && d.isReadable())
55     {
56         filePathLabel->setText(d.path());
57     }
58 }
59
60 void MediaImagePathDialog::initWidgets()
61 {
62     // these widgets will be automatically parented using layout components
63     filePathLabel = new QLabel;
64     filePathButton = new QPushButton(tr("&Browse filepath"));
65     dbSetup = new DbSetup(this);
66     setupComBox = new SetupComboBox(dbSetup, this);
67 }
68
69 void MediaImagePathDialog::layout()
70 {
71    QLabel *setupLabel = new QLabel(tr("&Set up"));
72    setupLabel->setBuddy(setupComBox);
73
74    QGridLayout *gridLayout = new QGridLayout;
75    gridLayout->addWidget(setupLabel, 0, 0);
76    gridLayout->addWidget(setupComBox, 0, 1);
77    gridLayout->addWidget(filePathButton, 1, 0);
78    gridLayout->addWidget(filePathLabel, 1, 1);
79    QVBoxLayout *mainLayout = new QVBoxLayout;
80    mainLayout->addLayout(gridLayout);
81    mainLayout->addWidget(buttonBox);
82    setLayout(mainLayout);
83
84    setWindowTitle(tr("Set media image paths"));
85 }
86
87 void MediaImagePathDialog::setDataObject(EmuFrontObject *ob)
88 {
89     if (!ob) return;
90     efObject = ob;
91     FilePathObject *fpo = dynamic_cast<FilePathObject*>(ob);
92     QString fpath = fpo->getName();
93     filePathLabel->setText(fpath);
94     if (fpo->getSetup()) setSelectedSetup(fpo->getSetup());
95 }
96
97 void MediaImagePathDialog::setSelectedSetup(const Setup *sup)
98 {
99     setupComBox->setSelected(sup);
100 }
101
102 Setup* MediaImagePathDialog::getSelectedSetup()
103 {
104     EmuFrontObject *ob = setupComBox->getSelected();
105     if (!ob) return 0;
106     return dynamic_cast<Setup*>(ob);
107 }
108
109 void MediaImagePathDialog::acceptChanges()
110 {
111     FilePathObject *fpo = dynamic_cast<FilePathObject*>(efObject);
112     Setup *sup = getSelectedSetup();
113     if (!sup)
114     {
115         QMessageBox::information(this, tr("Set up"), tr("Set up not selected"), QMessageBox::Ok);
116         return;
117     }
118     qDebug() << "Setup selected " << sup->getName();
119     QString filePath = filePathLabel->text();
120     if (filePath.isEmpty())
121     {
122         QMessageBox::information(this, tr("File path"), tr("File path was not selected"), QMessageBox::Ok);
123         return;
124     }
125     Setup *tmp = fpo->getSetup();
126     if (sup != tmp)
127     {
128         delete tmp;
129         fpo->setSetup(sup);
130     }
131     fpo->setName(filePath);
132     emit dataObjectUpdated();
133     efObject = 0;
134     close();
135 }
136
137
138 void MediaImagePathDialog::updateData()
139 {
140     setupComBox->updateDataModel();
141 }