]> git.sesse.net Git - kdenlive/blob - src/databackup/backupwidget.h
Integrate with the required MLT hooks for getting Movit to work.
[kdenlive] / src / databackup / backupwidget.h
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 #ifndef BACKUPWIDGET_H
22 #define BACKUPWIDGET_H
23
24
25 #include "ui_backupdialog_ui.h"
26
27
28
29 /**
30  * @class BackupWidget
31  * @brief A widget allowing to parse backup project files
32  * @author Jean-Baptiste Mardelle
33  */
34
35 class BackupWidget : public QDialog, public Ui::BackupDialog_UI
36 {
37     Q_OBJECT
38
39 public:
40     BackupWidget(const KUrl &projectUrl, const KUrl &projectFolder, const QString &projectId, QWidget * parent = 0);
41     // Constructor for extracting widget
42     ~BackupWidget();
43     /** @brief Return the path for selected backup file. */
44     QString selectedFile() const;
45     
46 private slots:
47     /** @brief Parse the backup files in project folder. */
48     void slotParseBackupFiles();
49     /** @brief Display a thumbnail preview of selected backup. */
50     void slotDisplayBackupPreview();
51
52 private:
53     QString m_projectWildcard;
54 };
55
56
57 #endif
58