]> git.sesse.net Git - kdenlive/blobdiff - src/projectitem.h
Some proxy / job fixes
[kdenlive] / src / projectitem.h
index 2087ee17a796393eae985fb4d6c776c3c86450bd..ac02e0d41938e1f47991560b2a1934d48a15fa8b 100644 (file)
 #include <QTreeWidgetItem>
 #include <QTreeWidget>
 #include <QDomElement>
+#include <QProcess>
 
 #include <KUrl>
 
 #include "gentime.h"
 #include "definitions.h"
+#include "projecttree/abstractclipjob.h"
+
 
 class DocClipBase;
 
@@ -38,8 +41,6 @@ class DocClipBase;
 class ProjectItem : public QTreeWidgetItem
 {
 public:
-    /** Create folder item */
-    ProjectItem(QTreeWidget * parent, const QStringList & strings, const QString &clipId);
     ProjectItem(QTreeWidget * parent, DocClipBase *clip);
     ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip);
     virtual ~ProjectItem();
@@ -53,7 +54,6 @@ public:
      * The clipId is used both to identify clips and folders (groups) */
     const QString &clipId() const;
     QStringList names() const;
-    bool isGroup() const;
     const KUrl clipUrl() const;
     int clipMaxDuration() const;
     CLIPTYPE clipType() const;
@@ -62,16 +62,39 @@ public:
     void setProperties(QMap <QString, QString> props);
     void setProperty(const QString &key, const QString &value);
     void clearProperty(const QString &key);
-    const QString groupName() const;
-    void setGroupName(const QString name);
     QString getClipHash() const;
+    static int itemDefaultHeight();
+    void slotSetToolTip();
+    /** \brief Set the status of the clip job. */
+    void setJobStatus(JOBTYPE jobType, CLIPJOBSTATUS status, int progress = 0);
+    /** \brief Set the info string for this clip job. */
+    void setJobInfo(const QString &statusMessage);
+    /** \brief Set the status of a clip job if it is of the specified job type. */
+    void setConditionalJobStatus(CLIPJOBSTATUS status, JOBTYPE requestedJobType);
+    /** \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 there is a job currently running for this clip. */
+    bool isJobRunning() 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();
+        if (other.type() != PROJECTFOLDERTYPE)
+            return text(column).toLower() < other.text(column).toLower();
+        else return false;
+    }
 
 private:
-    QString m_groupname;
     CLIPTYPE m_clipType;
-    QString m_clipId;
-    void slotSetToolTip();
     DocClipBase *m_clip;
+    QString m_clipId;
+    /** @brief Setup basic properties */
+    void buildItem();
+    /** @brief Check if an xml project file has proxies */
+    bool playlistHasProxies(const QString path);
 };
 
 #endif