X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fprojectitem.h;h=ac02e0d41938e1f47991560b2a1934d48a15fa8b;hb=8def756a0a2a6ddb22e48d917ff59d78606a9557;hp=184d89dc43a6631de0e794fb8c74c62ac078501a;hpb=ddbfd46a476d99869653afc86a92f7450ca6583d;p=kdenlive diff --git a/src/projectitem.h b/src/projectitem.h index 184d89dc..ac02e0d4 100644 --- a/src/projectitem.h +++ b/src/projectitem.h @@ -24,19 +24,23 @@ #include #include #include +#include #include #include "gentime.h" #include "definitions.h" +#include "projecttree/abstractclipjob.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: - ProjectItem(QTreeWidget * parent, const QStringList & strings, QDomElement xml, int clipId); - ProjectItem(QTreeWidgetItem * parent, const QStringList & strings, QDomElement xml, int clipId); - /** Create folder item */ - ProjectItem(QTreeWidget * parent, const QStringList & strings, int clipId); ProjectItem(QTreeWidget * parent, DocClipBase *clip); ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip); virtual ~ProjectItem(); @@ -44,25 +48,53 @@ public: 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; - void setGroupName(const QString name); const KUrl clipUrl() const; int clipMaxDuration() const; CLIPTYPE clipType() const; - void setGroup(const QString name, const QString id); + 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(); + /** \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: - QDomElement m_element; - GenTime m_duration; - QString m_groupName; - bool m_durationKnown; CLIPTYPE m_clipType; - int 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