]> git.sesse.net Git - kdenlive/blobdiff - src/projectitem.h
* Allow to edit transparent background for images in group properties
[kdenlive] / src / projectitem.h
index 30321386b1dc15563fe092dccff3eb3909b21b4c..c4e5b1bc8e039f1c63d74c67f6299525eadf115b 100644 (file)
@@ -24,6 +24,7 @@
 #include <QTreeWidgetItem>
 #include <QTreeWidget>
 #include <QDomElement>
+#include <QProcess>
 
 #include <KUrl>
 
@@ -61,6 +62,13 @@ public:
     void clearProperty(const QString &key);
     QString getClipHash() const;
     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);
+    /** \brief Returns the proxy status for this clip (true means there is a proxy clip). */
+    bool hasProxy() 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();
@@ -72,8 +80,10 @@ public:
 private:
     CLIPTYPE m_clipType;
     QString m_clipId;
-    void slotSetToolTip();
     DocClipBase *m_clip;
+
+    void buildItem();
+
 };
 
 #endif