Case insensitive comparison of the supported file type extensions.
[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 // 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
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     setWindowTitle(tr("Set media image paths"));
33     dbManager = new DbFilePath(this);
34     initDataTable();
35
36     scanButton = new QPushButton(tr("&Scan"));
37     buttonBox->addButton(scanButton, QDialogButtonBox::ActionRole);
38
39     initEditDialog();
40     objectList->hideColumn(DbFilePath::FilePath_Id);
41     objectList->hideColumn(DbFilePath::FilePath_SetupId);
42     // do not move to parent class:
43     connectSignals();
44 }
45
46 void MediaImagePathMainDialog::connectSignals()
47 {
48     DbObjectDialog::connectSignals();
49     connect(scanButton, SIGNAL(clicked()), this, SLOT(beginScanFilePath()));
50 }
51
52 void MediaImagePathMainDialog::initEditDialog()
53 {
54     nameDialog = new MediaImagePathDialog(this, dynamic_cast<FilePathObject*>(dbObject));
55 }
56
57 void MediaImagePathMainDialog::beginScanFilePath()
58 {
59     QModelIndex index = objectList->currentIndex();
60     if (!index.isValid()) return;
61     FileUtil fileUtil(this);
62     EmuFrontObject *ob = dbManager->getDataObjectFromModel(&index);
63     if (!ob) return;
64     FilePathObject *fpo = dynamic_cast<FilePathObject*>(ob);
65     try
66     {
67         QStringList l;
68         l << "*.zip"; // TODO set filters in a global constant class
69
70         QList<MediaImageContainer*> files = fileUtil.scanFilePath(fpo, l);
71
72         qDebug();
73
74         // TODO
75     }
76     catch (EmuFrontException s)
77     {
78         errorMessage->showMessage( s.what() );
79    }
80 }
81
82 EmuFrontObject* MediaImagePathMainDialog::createObject()
83 {
84     return new FilePathObject;
85 }
86
87 MediaImagePathMainDialog::~MediaImagePathMainDialog()
88 {
89     deleteCurrentObject();
90 }
91
92 void MediaImagePathMainDialog::deleteCurrentObject()
93 {
94     delete dynamic_cast<FilePathObject*>(dbObject);
95     dbObject = 0;
96 }