]> git.sesse.net Git - kdenlive/blobdiff - src/resizeclipcommand.h
When adding an existing kdenlive title clip to the project , detach embedded images:
[kdenlive] / src / resizeclipcommand.h
index 1b527b46ca3539916a9b14d47906aa4923c50022..9b5a4ae6bbc164ae54a1eb59c5242419e1d5db23 100644 (file)
 
 class CustomTrackView;
 
-class ResizeClipCommand : public QUndoCommand {
+class ResizeClipCommand : public QUndoCommand
+{
 public:
-    ResizeClipCommand(CustomTrackView *view, const ItemInfo start, const ItemInfo end, bool doIt);
+    ResizeClipCommand(CustomTrackView *view, const ItemInfo start, const ItemInfo end, bool doIt, bool dontWorry, QUndoCommand * parent = 0);
     virtual void undo();
     virtual void redo();
 
@@ -42,6 +43,7 @@ private:
     ItemInfo m_startPos;
     ItemInfo m_endPos;
     bool m_doIt;
+    bool m_dontWorry;
 };
 
 #endif