]> git.sesse.net Git - kdenlive/blobdiff - src/addclipcommand.h
Disable threads option for rendering Flash.
[kdenlive] / src / addclipcommand.h
index a8b05fa5d5932def8d333ae5674cda385cb17b54..a549ee682a275aca976020cb6352685d99608512 100644 (file)
@@ -1,39 +1,46 @@
+/***************************************************************************
+ *   Copyright (C) 2007 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 ADDCLIPCOMMAND_H
 #define ADDCLIPCOMMAND_H
 
 #include <QUndoCommand>
 #include <KDebug>
+#include <QDomElement>
 
-#include "projectlist.h"
+class KdenliveDoc;
 
 class AddClipCommand : public QUndoCommand
- {
- public:
-     AddClipCommand(ProjectList *list, const QStringList &names, const QDomElement &xml, const int id, const KUrl &url, bool doIt)
-         : m_list(list), m_names(names), m_xml(xml), m_id(id), m_url(url), m_doIt(doIt) {
-           if (doIt) setText(i18n("Add clip"));
-           else setText(i18n("Delete clip"));
-         }
-     virtual void undo()
-         {
-           kDebug()<<"----  undoing action";
-           if (m_doIt) m_list->deleteClip(m_id);
-           else m_list->addClip(m_names, m_xml, m_id, m_url);
-        }
-     virtual void redo()
-         {
-           kDebug()<<"----  redoing action";
-           if (m_doIt) m_list->addClip(m_names, m_xml, m_id, m_url);
-           else m_list->deleteClip(m_id);
-        }
- private:
-     ProjectList *m_list;
-     QStringList m_names;
-     QDomElement m_xml;
-     int m_id;
-     KUrl m_url;
-     bool m_doIt;
- };
+{
+public:
+    AddClipCommand(KdenliveDoc *doc, const QDomElement &xml, const QString &id, bool doIt, QUndoCommand * parent = 0);
+
+    virtual void undo();
+    virtual void redo();
+
+private:
+    KdenliveDoc *m_doc;
+    QDomElement m_xml;
+    QString m_id;
+    bool m_doIt;
+};
 
 #endif