]> git.sesse.net Git - kdenlive/blobdiff - src/subprojectitem.h
Clip cuts in project tree can now have a description
[kdenlive] / src / subprojectitem.h
index 4dcb216de38154fb7b6933f210a7f8c4c081fcd3..9a5a01cf94bada5f162c7ba0d64b51de7c7d24c9 100644 (file)
@@ -44,6 +44,9 @@ public:
     int numReferences() const;
     DocClipBase *referencedClip();
     QPoint zone() const;
+    void setZone(QPoint p);
+    QString description() const;
+    void setDescription(QString desc);
 
     /** Make sure folders appear on top of the tree widget */
     virtual bool operator<(const QTreeWidgetItem &other)const {
@@ -56,6 +59,7 @@ public:
 private:
     int m_in;
     int m_out;
+    QString m_description;
 };
 
 #endif