X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fprojectitem.h;h=3015acf6b94e50a8cccb0884663f9a5db79254d8;hb=1e007c2d73386e714ed480aba390b827e181994a;hp=c5c92a62741d76ee59c73b6ae504137379cc354e;hpb=775ffad14be7ffa9cf277ed0eafff4aa9139950e;p=kdenlive diff --git a/src/projectitem.h b/src/projectitem.h index c5c92a62..3015acf6 100644 --- a/src/projectitem.h +++ b/src/projectitem.h @@ -24,6 +24,7 @@ #include #include #include +#include #include @@ -31,10 +32,13 @@ #include "definitions.h" class DocClipBase; -class ProjectItem : public QTreeWidgetItem { + +/** \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: - /** Create folder item */ - ProjectItem(QTreeWidget * parent, const QStringList & strings, const QString &clipId); ProjectItem(QTreeWidget * parent, DocClipBase *clip); ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip); virtual ~ProjectItem(); @@ -42,9 +46,12 @@ public: int numReferences() const; void setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata); + + /** \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 KUrl clipUrl() const; int clipMaxDuration() const; CLIPTYPE clipType() const; @@ -53,15 +60,33 @@ public: void setProperties(QMap 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 proxy clip creation. 0 = no proxy, 1 = creating proxy, 2 = proxy created. */ + 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(); + 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