X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fprojectitem.h;h=18917d961372c034791491f75ea16fa1bfcd9656;hb=c24658bd34221d735f0641c924b890e1a6be7101;hp=c39fa7376a616499c74c54238e4a2ea0f16c0101;hpb=fa3e80a657cee943715b5db1340004e62fd352cc;p=kdenlive diff --git a/src/projectitem.h b/src/projectitem.h index c39fa737..18917d96 100644 --- a/src/projectitem.h +++ b/src/projectitem.h @@ -24,43 +24,79 @@ #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: - /** Create folder item */ - ProjectItem(QTreeWidget * parent, const QStringList & strings, const QString &clipId); - ProjectItem(QTreeWidget * parent, DocClipBase *clip); - ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip); + ProjectItem(QTreeWidget * parent, DocClipBase *clip, const QSize &pixmapSize); + ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip, const QSize &pixmapSize); virtual ~ProjectItem(); QDomElement toXml() const; 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 QString groupName() const; - void setGroupName(const QString name); const KUrl clipUrl() const; int clipMaxDuration() const; - CLIPTYPE clipType() const; + ClipType clipType() const; void changeDuration(int frames); DocClipBase *referencedClip(); - void setProperties(QMap props); + void setProperties(const 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, const QString &statusMessage = QString()); + /** \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; + /** \brief Returns true if the thumbnail for this clip has been loaded. */ + bool hasPixmap() const; + /** \brief Sets the thumbnail for this clip. */ + void setPixmap(const QPixmap& p); + + virtual bool operator<(const QTreeWidgetItem &other)const { + int column = treeWidget()->sortColumn(); + if (other.type() != ProjectFoldeType) + return text(column).toLower() < other.text(column).toLower(); + else return false; + } private: - QString m_groupName; - CLIPTYPE m_clipType; - QString m_clipId; - void slotSetToolTip(); + ClipType m_clipType; DocClipBase *m_clip; + QString m_clipId; + bool m_pixmapSet; + /** @brief Setup basic properties */ + void buildItem(const QSize &pixmapSize); + /** @brief Check if an xml project file has proxies */ + bool playlistHasProxies(const QString& path); }; #endif