]> git.sesse.net Git - kdenlive/blobdiff - src/changespeedcommand.h
Rewrite generation of timeline thumbnails when zooming at frame level, using separate...
[kdenlive] / src / changespeedcommand.h
index a95463cb317c2380210157b4887ce07ff8316f36..8adb5fc5092c7fde1d508c7f96b9d3546cea6ac5 100644 (file)
 
 class CustomTrackView;
 
-class ChangeSpeedCommand : public QUndoCommand {
+class ChangeSpeedCommand : public QUndoCommand
+{
 public:
-    ChangeSpeedCommand(CustomTrackView *view, ItemInfo info, double old_speed, double new_speed, const QString &clipId, bool doIt, QUndoCommand * parent = 0);
+    ChangeSpeedCommand(CustomTrackView *view, ItemInfo info, ItemInfo speedIndependantInfo, double old_speed, double new_speed, int old_strobe, int new_strobe, const QString &clipId, QUndoCommand * parent = 0);
     virtual void undo();
     virtual void redo();
 
 private:
     CustomTrackView *m_view;
     ItemInfo m_clipInfo;
+    ItemInfo m_speedIndependantInfo;
     QString m_clipId;
-    bool m_doIt;
     double m_old_speed;
     double m_new_speed;
+    int m_old_strobe;
+    int m_new_strobe;
 };
 
 #endif