]> git.sesse.net Git - kdenlive/blobdiff - src/kdenlivedoc.h
Save zone in/out in kdenlive document:
[kdenlive] / src / kdenlivedoc.h
index 8cc4b42d1f9b29bfa18a09de1c74f20fbe8c4032..2368ca6326157e5a4491ea55a84318493f55a4c5 100644 (file)
@@ -118,6 +118,8 @@ Q_OBJECT public:
     void cachePixmap(const QString &fileId, const QPixmap &pix) const;
     void setProjectFolder(KUrl url);
     QString getLadspaFile() const;
+    void setZone(int start, int end);
+    QPoint zone() const;
 
 private:
     KUrl m_url;
@@ -144,6 +146,8 @@ private:
     KUrl m_projectFolder;
     double m_documentLoadingStep;
     double m_documentLoadingProgress;
+    int m_zoneStart;
+    int m_zoneEnd;
 
     QList <TrackInfo> m_tracksList;