]> git.sesse.net Git - kdenlive/blobdiff - src/addtimelineclipcommand.h
some work on settings dialog (mlt path) and start of profiles management dialog
[kdenlive] / src / addtimelineclipcommand.h
index 38d245b5882544c1c49e188b7a9ee4448fb5f70e..8e398941029033b472ba411e9eff08477cf7de6b 100644 (file)
 class AddTimelineClipCommand : public QUndoCommand
  {
  public:
-     AddTimelineClipCommand(CustomTrackView *view, int clipType, QString clipName, int clipProducer, QRectF rect, bool doIt);
+     AddTimelineClipCommand(CustomTrackView *view, QDomElement xml, int clipId, int track, int startpos, QRectF rect, int duration, bool doIt, bool doRemove);
     virtual void undo();
     virtual void redo();
 
  private:
      CustomTrackView *m_view;
-     int m_clipType;
-     QString m_clipName;
-     int m_clipProducer;
+     int m_clipDuration;
+     int m_clipId;
+     QDomElement m_xml;
+     int m_clipTrack;
+     int m_clipPos;
      QRectF m_clipRect;
      bool m_doIt;
+     bool m_remove;
  };
 
 #endif