X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fprojectitem.h;h=64f009209f1776eea03af2575e674e2bc034ccda;hb=1cec8cdc80b27347120c28b8ea2472970d3fd567;hp=34d39f9d813f6600cf12b5aed68b01c68676e124;hpb=187158b0450f465536c15cc31499bcc277d2a451;p=kdenlive diff --git a/src/projectitem.h b/src/projectitem.h index 34d39f9d..64f00920 100644 --- a/src/projectitem.h +++ b/src/projectitem.h @@ -24,33 +24,69 @@ #include #include #include +#include + +#include #include "gentime.h" -#include "docclipbase.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); +public: + ProjectItem(QTreeWidget * parent, DocClipBase *clip); + ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip); virtual ~ProjectItem(); - QDomElement toXml(); + QDomElement toXml() const; + int numReferences() const; void setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata); - int clipId(); - QStringList names(); - bool isGroup(); - - private: - QDomElement m_element; - GenTime m_duration; - bool m_durationKnown; - DocClipBase::CLIPTYPE m_clipType; - int m_clipId; + + /** \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; + const KUrl clipUrl() const; + int clipMaxDuration() const; + CLIPTYPE clipType() const; + void changeDuration(int frames); + DocClipBase *referencedClip(); + void setProperties(QMap props); + void setProperty(const QString &key, const QString &value); + void clearProperty(const QString &key); + QString getClipHash() const; + static int itemDefaultHeight(); void slotSetToolTip(); - bool m_isGroup; + /** \brief Set the status of proxy clip creation. 0 = no proxy, 1 = creating proxy, 2 = proxy created. */ + void setProxyStatus(PROXYSTATUS status, int progress = 0); + /** \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: + CLIPTYPE m_clipType; + 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