]> git.sesse.net Git - kdenlive/blobdiff - src/commands/moveclipcommand.h
Move undo commands to their own subdirectory
[kdenlive] / src / commands / moveclipcommand.h
diff --git a/src/commands/moveclipcommand.h b/src/commands/moveclipcommand.h
new file mode 100644 (file)
index 0000000..5b7d99f
--- /dev/null
@@ -0,0 +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 MOVECLIPCOMMAND_H
+#define MOVECLIPCOMMAND_H
+
+
+#include "definitions.h"
+#include <QUndoCommand>
+
+class CustomTrackView;
+
+class MoveClipCommand : public QUndoCommand
+{
+public:
+    MoveClipCommand(CustomTrackView *view, const ItemInfo start, const ItemInfo end, bool doIt, QUndoCommand * parent = 0);
+    virtual void undo();
+    virtual void redo();
+
+private:
+    CustomTrackView *m_view;
+    const ItemInfo m_startPos;
+    const ItemInfo m_endPos;
+    bool m_doIt;
+    bool m_refresh;
+};
+
+#endif
+