]> git.sesse.net Git - kdenlive/blobdiff - src/projectitem.h
* Allow to edit transparent background for images in group properties
[kdenlive] / src / projectitem.h
index 95b4e14fb1fed588d78033c016768fe269936eea..c4e5b1bc8e039f1c63d74c67f6299525eadf115b 100644 (file)
 #include <QTreeWidgetItem>
 #include <QTreeWidget>
 #include <QDomElement>
+#include <QProcess>
 
 #include <KUrl>
 
 #include "gentime.h"
 #include "definitions.h"
 
+class DocClipBase;
+
+/** \brief Represents a clip or a folder in the projecttree
+ *
+ * This class represents a clip or folder in the projecttree and in the document(?) */
 class ProjectItem : public QTreeWidgetItem
 {
-  public:
-    ProjectItem(QTreeWidget * parent, const QStringList & strings, QDomElement xml, int clipId);
-    ProjectItem(QTreeWidgetItem * parent, const QStringList & strings, QDomElement xml, int clipId);
-    ProjectItem(QTreeWidget * parent, const QStringList & strings, int clipId);
+public:
+    ProjectItem(QTreeWidget * parent, DocClipBase *clip);
+    ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip);
     virtual ~ProjectItem();
     QDomElement toXml() const;
+    int numReferences() const;
 
     void setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata);
-    int clipId() const;
+
+    /** \brief The id of the clip or folder.
+     *
+     * The clipId is used both to identify clips and folders (groups) */
+    const QString &clipId() const;
     QStringList names() const;
-    bool isGroup() const;
-    const QString groupName() const;
     const KUrl clipUrl() const;
     int clipMaxDuration() const;
     CLIPTYPE clipType() const;
+    void changeDuration(int frames);
+    DocClipBase *referencedClip();
+    void setProperties(QMap <QString, QString> props);
+    void setProperty(const QString &key, const QString &value);
+    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();
+        if (other.type() != PROJECTFOLDERTYPE)
+            return text(column).toLower() < other.text(column).toLower();
+        else return false;
+    }
 
-  private:
-    QDomElement m_element;
-    GenTime m_duration;
-    bool m_durationKnown;
+private:
     CLIPTYPE m_clipType;
-    int m_clipId;
-    void slotSetToolTip();
-    bool m_isGroup;
-    QString m_groupName;
+    QString m_clipId;
+    DocClipBase *m_clip;
+
+    void buildItem();
+
 };
 
 #endif