Update / reject signals were not emitted. Fixed.
[emufront] / src / dialogs / mediaimagepathmaindialog.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 as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // Foobar 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 Foobar.  If not, see <http://www.gnu.org/licenses/>.
19
20 #include <QtGui>
21
22 #include "../dataobjects/filepathobject.h"
23 #include "../dataobjects/emufrontfileobject.h"
24 #include "../db/dbfilepath.h"
25 #include "../utils/fileutil.h"
26 #include "mediaimagepathmaindialog.h"
27 #include "mediaimagepathdialog.h"
28
29 MediaImagePathMainDialog::MediaImagePathMainDialog(QWidget *parent)
30     : DbObjectDialog(parent)
31 {
32     qDebug() << "MediaImagePathMainDialog";
33     setWindowTitle(tr("Set media image paths"));
34     qDebug() << "Creating DbFilePath";
35     dbManager = new DbFilePath(this);
36     qDebug() << "Initializing data table";
37     initDataTable();
38
39     scanButton = new QPushButton(tr("&Scan"));
40     buttonBox->addButton(scanButton, QDialogButtonBox::ActionRole);
41
42     initEditDialog();
43     qDebug() << "Connecting signals";
44     // do not move to parent class:
45     connectSignals();
46 }
47
48 void MediaImagePathMainDialog::connectSignals()
49 {
50     DbObjectDialog::connectSignals();
51     connect(scanButton, SIGNAL(clicked()), this, SLOT(beginScanFilePath()));
52 }
53
54 void MediaImagePathMainDialog::initEditDialog()
55 {
56     qDebug() << "Creating MediaImagePathDialog";
57     nameDialog = new MediaImagePathDialog(this, dynamic_cast<FilePathObject*>(dbObject));
58 }
59
60 void MediaImagePathMainDialog::beginScanFilePath()
61 {
62     qDebug() << "Scan file path requested";
63     QModelIndex index = objectList->currentIndex();
64     FileUtil fileUtil(this);
65     if (!index.isValid()) return;
66     EmuFrontObject *ob = dbManager->getDataObjectFromModel(&index);
67     if (!ob) return;
68     FilePathObject *fpo = dynamic_cast<FilePathObject*>(ob);
69     try
70     {
71         QStringList l;
72         l << "*.zip"; // TODO set filters in a global constant class
73
74         QList<EmuFrontFileObject*> files = fileUtil.scanFilePath(fpo, l);
75     }
76     catch (QString s)
77     {
78         QMessageBox::warning(this, tr("Warning"), s, QMessageBox::Ok);
79     }
80 }
81
82 void MediaImagePathMainDialog::scanFilePath(const QString fp, const QStringList filters)
83 {
84     qDebug() << "Will scan file path " << fp;
85     QDir dir(fp);
86     if (!dir.exists() || !dir.isReadable())
87         throw QString(tr("Directory %1 doesn't exists or isn't readable!").arg(fp));
88
89     dir.setFilter(QDir::Files | QDir::NoSymLinks | QDir::NoDotAndDotDot | QDir::Readable);
90
91     if (filters.count() > 0) dir.setNameFilters(filters);
92
93     QFileInfoList list = dir.entryInfoList();
94     for (int i = 0; i < list.size(); ++i)
95     {
96         QFileInfo fileInfo = list.at(i);
97         qDebug() << QString("%1 %2").arg(fileInfo.size(), 10).arg(fileInfo.absoluteFilePath());
98
99         QFile f(fileInfo.absoluteFilePath());
100
101     }
102 }
103
104 EmuFrontObject* MediaImagePathMainDialog::createObject()
105 {
106     return new FilePathObject;
107 }
108
109 MediaImagePathMainDialog::~MediaImagePathMainDialog()
110 {
111     deleteCurrentObject();
112 }
113
114 void MediaImagePathMainDialog::deleteCurrentObject()
115 {
116     delete dynamic_cast<FilePathObject*>(dbObject);
117     dbObject = 0;
118 }