]> git.sesse.net Git - kdenlive/blobdiff - src/documentchecker.h
Start of the new document checker (check for missing clips,...) not fully functionnal yet
[kdenlive] / src / documentchecker.h
diff --git a/src/documentchecker.h b/src/documentchecker.h
new file mode 100644 (file)
index 0000000..ef8e4c5
--- /dev/null
@@ -0,0 +1,61 @@
+/***************************************************************************
+ *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
+ ***************************************************************************/
+
+
+#ifndef DOCUMENTCHECKER_H
+#define DOCUMENTCHECKER_H
+
+#include "ui_missingclips_ui.h"
+
+#include <KUrl>
+
+#include <QDir>
+#include <QPushButton>
+#include <QDomElement>
+
+
+class DocumentChecker : public QDialog
+{
+    Q_OBJECT
+
+public:
+    explicit DocumentChecker(QDomDocument doc, QWidget * parent = 0);
+    ~DocumentChecker();
+    KUrl::List importFiles();
+
+private slots:
+    virtual void accept();
+    void slotSearchClips();
+    void slotEditItem(QTreeWidgetItem *item, int);
+
+protected:
+    //void wheelEvent(QWheelEvent * event);
+
+private:
+    Ui::MissingClips_UI m_view;
+    QDomDocument m_doc;
+    QString searchFileRecursively(const QDir &dir, const QString &matchSize, const QString &matchHash) const;
+
+signals:
+    //void updateThumb();
+};
+
+
+#endif
+