da3595e626136b8453a203667f1c01aec7abc6eb
[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 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
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     dbMediaImageContainer = new DbMediaImageContainer(this);
35     initDataTable();
36
37     scanButton = new QPushButton(tr("&Scan"));
38     buttonBox->addButton(scanButton, QDialogButtonBox::ActionRole);
39
40     initEditDialog();
41     objectList->hideColumn(DbFilePath::FilePath_Id);
42     objectList->hideColumn(DbFilePath::FilePath_SetupId);
43
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     nameDialog = new MediaImagePathDialog(this, dynamic_cast<FilePathObject*>(dbObject));
57 }
58
59 void MediaImagePathMainDialog::beginScanFilePath()
60 {
61     QModelIndex index = objectList->currentIndex();
62     if (!index.isValid()) return;
63     FileUtil fileUtil(this);
64     EmuFrontObject *ob = dbManager->getDataObjectFromModel(&index);
65     if (!ob) return;
66     FilePathObject *fpo = dynamic_cast<FilePathObject*>(ob);
67     try
68     {
69         QStringList l;
70         l << "*.zip"; // TODO set filters in a global constant class
71
72         dbMediaImageContainer->removeFromFilePath(fpo->getId());
73
74         QProgressDialog progressDialog(this);
75         progressDialog.setWindowTitle("Scanning files...");
76         progressDialog.setCancelButtonText("Abort");
77         progressDialog.setWindowModality(Qt::WindowModal);
78         progressDialog.show();
79
80         int count = fileUtil.scanFilePath(fpo, l, dbMediaImageContainer, progressDialog);
81         progressDialog.hide();
82         QMessageBox msgBox;
83         msgBox.setText(tr("Scanned %1 files to database.").arg(count));
84         msgBox.exec();
85         delete fpo;
86     }
87     catch (EmuFrontException s)
88     {
89         errorMessage->showMessage( s.what() );
90    }
91 }
92
93 EmuFrontObject* MediaImagePathMainDialog::createObject()
94 {
95     return new FilePathObject;
96 }
97
98 MediaImagePathMainDialog::~MediaImagePathMainDialog()
99 {
100     deleteCurrentObject();
101 }
102
103 void MediaImagePathMainDialog::deleteCurrentObject()
104 {
105     delete dynamic_cast<FilePathObject*>(dbObject);
106     dbObject = 0;
107 }