]> git.sesse.net Git - kdenlive/blobdiff - src/projectitem.h
Make 2 pass option available to custom profiles
[kdenlive] / src / projectitem.h
index 06ff6979e0f8b452fa89627517277472da101169..9a017f0c43c45c49d7865afabd76edbc1ed9d969 100644 (file)
@@ -64,7 +64,13 @@ public:
     static int itemDefaultHeight();
     void slotSetToolTip();
     /** \brief Set the status of proxy clip creation. 0 = no proxy, 1 = creating proxy, 2 = proxy created. */
-    void setProxyStatus(int status);
+    void setProxyStatus(PROXYSTATUS status);
+    /** \brief Returns the proxy status for this clip (true means there is a proxy clip). */
+    bool hasProxy() const;
+    /** \brief Returns true if the proxy for this clip is ready. */
+    bool isProxyReady() const;
+    /** \brief Returns true if we are currently creating the proxy for this clip. */
+    bool isProxyRunning() const;
 
     virtual bool operator<(const QTreeWidgetItem &other)const {
         int column = treeWidget()->sortColumn();
@@ -75,8 +81,10 @@ public:
 
 private:
     CLIPTYPE m_clipType;
-    QString m_clipId;
     DocClipBase *m_clip;
+    QString m_clipId;
+
+    void buildItem();
 
 };