]> git.sesse.net Git - kdenlive/blob - src/databackup/backupwidget.cpp
Const'ref
[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 BackupWidget::~BackupWidget()
62 {
63 }
64
65 void BackupWidget::slotParseBackupFiles()
66 {
67     QStringList filter;
68     KUrl backupFile = project_url->url();
69     backupFile.addPath(".backup/");
70     QDir dir(backupFile.path());
71
72     filter << m_projectWildcard;
73     dir.setNameFilters(filter);
74     QFileInfoList resultList = dir.entryInfoList(QDir::Files, QDir::Time);
75     QStringList results;
76     backup_list->clear();
77     QListWidgetItem *item;
78     QString label;
79     for (int i = 0; i < resultList.count(); ++i) {
80         label = resultList.at(i).lastModified().toString(Qt::SystemLocaleLongDate);
81         if (m_projectWildcard.startsWith(QLatin1Char('*'))) {
82             // Displaying all backup files, so add project name in the entries
83             label.prepend(resultList.at(i).fileName().section('-', 0, -7) + ".kdenlive - ");
84         }
85         item = new QListWidgetItem(label, backup_list);
86         item->setData(Qt::UserRole, resultList.at(i).absoluteFilePath());
87     }
88     buttonBox->button(QDialogButtonBox::Open)->setEnabled(backup_list->count() > 0);
89 }
90
91 void BackupWidget::slotDisplayBackupPreview()
92 {
93     if (!backup_list->currentItem()) {
94         backup_preview->setPixmap(QPixmap());
95         return;
96     }
97     const QString path = backup_list->currentItem()->data(Qt::UserRole).toString();
98     QPixmap pix(path + ".png");
99     backup_preview->setPixmap(pix);
100 }
101
102 QString BackupWidget::selectedFile() const
103 {
104     if (!backup_list->currentItem())
105         return QString();
106     return backup_list->currentItem()->data(Qt::UserRole).toString();
107 }
108
109
110 #include "backupwidget.moc"