]> git.sesse.net Git - kdenlive/blobdiff - src/clipdurationdialog.h
Fix clip and transition move / resize through the double click move / resize widget
[kdenlive] / src / clipdurationdialog.h
index 7791f7c75a15e2159af53c9b020bd943a2f5efb0..17cfe06b5d139eb5a3ff4cc287dde1bc3d3efc91 100644 (file)
@@ -37,9 +37,11 @@ public:
     GenTime startPos() const;
     GenTime cropStart() const;
     GenTime duration() const;
+    void setMargins(GenTime min, GenTime max);
 
 protected:
     void wheelEvent(QWheelEvent * event);
+
 private slots:
     void slotPosUp();
     void slotPosDown();
@@ -47,13 +49,16 @@ private slots:
     void slotDurDown();
     void slotCropUp();
     void slotCropDown();
+    void slotCheckDuration();
+    void slotCheckStart();
 
 private:
     Ui::ClipDurationDialog_UI m_view;
     AbstractClipItem *m_clip;
     Timecode m_tc;
     double m_fps;
-
+    GenTime m_min;
+    GenTime m_max;
 };