]> git.sesse.net Git - kdenlive/blob - src/databackup/backupwidget.cpp
const'ify. Remove unimplemented function. Fix indent. Optimization
[kdenlive] / src / databackup / backupwidget.cpp
1 /***************************************************************************
2  *   Copyright (C) 2011 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #include "backupwidget.h"
22 #include "kdenlivesettings.h"
23
24 #include <KUrl>
25
26
27 BackupWidget::BackupWidget(const KUrl &projectUrl, const KUrl &projectFolder, const QString &projectId, QWidget * parent) :
28         QDialog(parent)
29 {
30     setupUi(this);
31     setWindowTitle(i18n("Restore Backup File"));
32
33     if (projectUrl.isEmpty()) {
34         // No url, means we opened the backup dialog from an empty project
35         info_label->setText(i18n("Showing all backup files in folder"));
36         m_projectWildcard = '*';
37     } else {
38         info_label->setText(i18n("Showing backup files for %1", projectUrl.fileName()));
39         m_projectWildcard = projectUrl.fileName().section('.', 0, -2);
40         if (!projectId.isEmpty()) m_projectWildcard.append('-' + projectId);
41         else {
42             // No project id, it was lost, add wildcard
43             m_projectWildcard.append('*');
44         }
45     }
46     project_url->setUrl(projectFolder);
47     m_projectWildcard.append("-??");
48     m_projectWildcard.append("??");
49     m_projectWildcard.append("-??");
50     m_projectWildcard.append("-??");
51     m_projectWildcard.append("-??");
52     m_projectWildcard.append("-??.kdenlive");
53
54     slotParseBackupFiles();
55     connect(backup_list, SIGNAL(currentRowChanged(int)), this, SLOT(slotDisplayBackupPreview()));
56     connect(project_url, SIGNAL(textChanged(QString)), this, SLOT(slotParseBackupFiles()));
57     backup_list->setCurrentRow(0);
58     backup_list->setMinimumHeight(QFontMetrics(font()).lineSpacing() * 12);
59     
60 }
61
62
63
64 BackupWidget::~BackupWidget()
65 {
66
67 }
68
69 void BackupWidget::slotParseBackupFiles()
70 {
71     QStringList filter;
72     KUrl backupFile = project_url->url();
73     backupFile.addPath(".backup/");
74     QDir dir(backupFile.path());
75
76     filter << m_projectWildcard;
77     dir.setNameFilters(filter);
78     QFileInfoList resultList = dir.entryInfoList(QDir::Files, QDir::Time);
79     QStringList results;
80     backup_list->clear();
81     QListWidgetItem *item;
82     QString label;
83     for (int i = 0; i < resultList.count(); ++i) {
84         label = resultList.at(i).lastModified().toString(Qt::SystemLocaleLongDate);
85         if (m_projectWildcard.startsWith(QLatin1Char('*'))) {
86             // Displaying all backup files, so add project name in the entries
87             label.prepend(resultList.at(i).fileName().section('-', 0, -7) + ".kdenlive - ");
88         }
89         item = new QListWidgetItem(label, backup_list);
90         item->setData(Qt::UserRole, resultList.at(i).absoluteFilePath());
91     }
92     buttonBox->button(QDialogButtonBox::Open)->setEnabled(backup_list->count() > 0);
93 }
94
95 void BackupWidget::slotDisplayBackupPreview()
96 {
97     if (!backup_list->currentItem()) {
98         backup_preview->setPixmap(QPixmap());
99         return;
100     }
101     const QString path = backup_list->currentItem()->data(Qt::UserRole).toString();
102     QPixmap pix(path + ".png");
103     backup_preview->setPixmap(pix);
104 }
105
106 QString BackupWidget::selectedFile() const
107 {
108     if (!backup_list->currentItem())
109         return QString();
110     return backup_list->currentItem()->data(Qt::UserRole).toString();
111 }
112
113
114 #include "backupwidget.moc"