]> git.sesse.net Git - kdenlive/blobdiff - src/projectitem.cpp
Start caching of project tree thumbnails for faster project opening
[kdenlive] / src / projectitem.cpp
index 342496c9cebbcc24b6eace975844720e37e5af43..fe25876e06be04a49dfe879cb8114e1e89f21d9d 100644 (file)
 
 #include "projectitem.h"
 #include "timecode.h"
+#include "kdenlivesettings.h"
+#include "docclipbase.h"
+
+const int NameRole = Qt::UserRole;
+const int DurationRole = NameRole + 1;
+const int UsageRole = NameRole + 2;
+
+
+// folder
+ProjectItem::ProjectItem(QTreeWidget * parent, const QStringList & strings, const QString &clipId)
+        : QTreeWidgetItem(parent, strings), m_clipType(FOLDER), m_clipId(clipId), m_clip(NULL), m_groupname(strings.at(1)) {
+    setSizeHint(0, QSize(65, 45));
+    setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
+    setIcon(0, KIcon("folder"));
+    setToolTip(1, "<qt><b>" + i18n("Folder"));
+    //kDebug() << "Constructed as folder, with clipId: " << m_clipId << ", and groupname: " << m_groupname;
+}
 
+ProjectItem::ProjectItem(QTreeWidget * parent, DocClipBase *clip)
+        : QTreeWidgetItem(parent) {
+    setSizeHint(0, QSize(65, 45));
+    setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
+    m_clip = clip;
+    m_clipId = clip->getId();
+    QString name = m_clip->getProperty("name");
+    if (name.isEmpty()) name = KUrl(m_clip->getProperty("resource")).fileName();
+    m_clipType = (CLIPTYPE) m_clip->getProperty("type").toInt();
+    if (m_clipType != UNKNOWN) slotSetToolTip();
+    setText(1, name);
+    setText(2, m_clip->description());
+    if ((m_clip->clipType() == AV || m_clip->clipType() == AUDIO) && KdenliveSettings::audiothumbnails()) m_clip->askForAudioThumbs();
+    //setFlags(Qt::NoItemFlags);
+    //kDebug() << "Constructed with clipId: " << m_clipId;
+}
 
-  const int NameRole = Qt::UserRole;
-  const int DurationRole = NameRole + 1;
-  const int FullPathRole = NameRole + 2;
-  const int ClipTypeRole = NameRole + 3;
-
-ProjectItem::ProjectItem(QTreeWidget * parent, const QStringList & strings, QDomElement xml, int clipId)
-    : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_clipType(UNKNOWN), m_clipId(clipId), m_isGroup(false), m_groupName(QString::null)
-{
-  m_element = xml.cloneNode().toElement();
-  setSizeHint(0, QSize(65, 45));
-  setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
-  if (!m_element.isNull()) {
-    m_element.setAttribute("id", clipId);
-    QString cType = m_element.attribute("type", QString::null);
-    if (!cType.isEmpty()) {
-      m_clipType = (CLIPTYPE) cType.toInt();
-      slotSetToolTip();
-    }
+ProjectItem::ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip)
+        : QTreeWidgetItem(parent) {
+    setSizeHint(0, QSize(65, 45));
+    setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
+    m_clip = clip;
+    m_clipId = clip->getId();
+    QString name = m_clip->getProperty("name");
+    if (name.isEmpty()) name = KUrl(m_clip->getProperty("resource")).fileName();
+    m_clipType = (CLIPTYPE) m_clip->getProperty("type").toInt();
+    setText(1, name);
+    setText(2, m_clip->description());
+    if ((m_clip->clipType() == AV || m_clip->clipType() == AUDIO) && KdenliveSettings::audiothumbnails()) m_clip->askForAudioThumbs();
+    //setFlags(Qt::NoItemFlags);
+    //kDebug() << "Constructed with clipId: " << m_clipId;
+}
 
-    if (m_clipType == COLOR || m_clipType == IMAGE) m_element.setAttribute("duration", MAXCLIPDURATION);
-    else if (m_element.attribute("duration").isEmpty() && !m_element.attribute("out").isEmpty()) {
-      m_element.setAttribute("duration", m_element.attribute("out").toInt() - m_element.attribute("in").toInt());
-    }
-  }
+
+ProjectItem::~ProjectItem() {
 }
 
-ProjectItem::ProjectItem(QTreeWidgetItem * parent, const QStringList & strings, QDomElement xml, int clipId)
-    : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_clipType(UNKNOWN), m_clipId(clipId), m_isGroup(false), m_groupName(QString::null)
-{
-  m_element = xml.cloneNode().toElement();
-  setSizeHint(0, QSize(65, 45));
-  setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
-  if (!m_element.isNull()) {
-    m_element.setAttribute("id", clipId);
-    QString cType = m_element.attribute("type", QString::null);
-    if (!cType.isEmpty()) {
-      m_clipType = (CLIPTYPE) cType.toInt();
-      slotSetToolTip();
-    }
-  }
+int ProjectItem::numReferences() const {
+    if (!m_clip) return 0;
+    return m_clip->numReferences();
 }
 
-ProjectItem::ProjectItem(QTreeWidget * parent, const QStringList & strings, int clipId)
-    : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_element(QDomElement()), m_clipType(UNKNOWN), m_clipId(clipId), m_isGroup(true), m_groupName(strings.at(1))
-{
-  setSizeHint(0, QSize(65, 45));
-  setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
-  setIcon(0, KIcon("folder"));
+const QString &ProjectItem::clipId() const {
+    return m_clipId;
 }
 
-ProjectItem::ProjectItem(QTreeWidget * parent, DocClipBase *clip)
-    : QTreeWidgetItem(parent, QStringList(), QTreeWidgetItem::UserType), m_isGroup(false)
-{
-  setSizeHint(0, QSize(65, 45));
-  setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
-  m_clip = clip;
-  m_element = clip->toXML();
-  m_clipId = clip->getId();
-  QString name = m_element.attribute("name");
-  if (name.isEmpty()) name = KUrl(m_element.attribute("resource")).fileName();
-  m_clipType = (CLIPTYPE) m_element.attribute("type").toInt();
-  m_groupName = m_element.attribute("group");
-  setText(1, name);
-  kDebug()<<"PROJECT ITE;. ADDING LCIP: "<< m_clipId;
+CLIPTYPE ProjectItem::clipType() const {
+    return m_clipType;
 }
 
+int ProjectItem::clipMaxDuration() const {
+    return m_clip->getProperty("duration").toInt();
+}
 
-ProjectItem::~ProjectItem()
-{
+bool ProjectItem::isGroup() const {
+    return m_clipType == FOLDER;
 }
 
-int ProjectItem::clipId() const
-{
-  return m_clipId;
+QStringList ProjectItem::names() const {
+    QStringList result;
+    result.append(text(0));
+    result.append(text(1));
+    result.append(text(2));
+    return result;
 }
 
-CLIPTYPE ProjectItem::clipType() const
-{
- return m_clipType;
+QDomElement ProjectItem::toXml() const {
+    return m_clip->toXML();
 }
 
-int ProjectItem::clipMaxDuration() const
-{
-  return m_element.attribute("duration").toInt();
+const KUrl ProjectItem::clipUrl() const {
+    if (m_clipType != COLOR && m_clipType != VIRTUAL && m_clipType != UNKNOWN && m_clipType != FOLDER)
+        return KUrl(m_clip->getProperty("resource"));
+    else return KUrl();
 }
 
-bool ProjectItem::isGroup() const
-{
-  return m_isGroup;
+void ProjectItem::changeDuration(int frames) {
+    setData(1, DurationRole, Timecode::getEasyTimecode(GenTime(frames, KdenliveSettings::project_fps()), KdenliveSettings::project_fps()));
 }
 
-const QString ProjectItem::groupName() const
-{
-  return m_groupName;
+void ProjectItem::setProperties(QMap <QString, QString> props) {
+    if (m_clip == NULL) return;
+    m_clip->setProperties(props);
 }
 
-QStringList ProjectItem::names() const
-{
-  QStringList result;
-  result.append(text(0));
-  result.append(text(1));
-  result.append(text(2));
-  return result;
+QString ProjectItem::getClipHash() const {
+    if (m_clip == NULL) return QString();
+    return m_clip->getClipHash();
 }
 
-QDomElement ProjectItem::toXml() const
-{
-    return m_element;
+void ProjectItem::setProperty(const QString &key, const QString &value) {
+    if (m_clip == NULL) return;
+    m_clip->setProperty(key, value);
 }
 
-const KUrl ProjectItem::clipUrl() const
-{
-    if (m_clipType != COLOR && m_clipType != VIRTUAL && m_clipType != UNKNOWN)
-      return KUrl(m_element.attribute("resource"));
-    else return KUrl();
+void ProjectItem::clearProperty(const QString &key) {
+    if (m_clip == NULL) return;
+    m_clip->clearProperty(key);
 }
 
+const QString ProjectItem::groupName() const {
+    return m_groupname;
+}
+
+void ProjectItem::setGroupName(const QString name) {
+    m_groupname = name;
+    setText(1, name);
+}
 
-void ProjectItem::slotSetToolTip()
-{
-  QString tip = "<qt><b>";
-  switch (m_clipType) {
-    case 1:
-      tip.append(i18n("Audio clip"));
-      break;
-    case 2:
-      tip.append(i18n("Mute video clip"));
-      break;
-    case 3:
-      tip.append(i18n("Video clip"));
-      break;
-    case 4:
-      tip.append(i18n("Color clip"));
-      setData(1, DurationRole, Timecode::getEasyTimecode(GenTime(m_element.attribute("out", "250").toInt(), 25), 25));
-      break;
-    case 5:
-      tip.append(i18n("Image clip"));
-      break;
-    case 6:
-      tip.append(i18n("Text clip"));
-      break;
-    case 7:
-      tip.append(i18n("Slideshow clip"));
-      break;
-    case 8:
-      tip.append(i18n("Virtual clip"));
-      break;
-    case 9:
-      tip.append(i18n("Playlist clip"));
-      break;
+DocClipBase *ProjectItem::referencedClip() {
+    return m_clip;
+}
+
+void ProjectItem::slotSetToolTip() {
+    QString tip = "<qt><b>";
+    switch (m_clipType) {
+    case AUDIO:
+        tip.append(i18n("Audio clip") + "</b><br />" + clipUrl().path());
+        break;
+    case VIDEO:
+        tip.append(i18n("Mute video clip") + "</b><br />" + clipUrl().path());
+        break;
+    case AV:
+        tip.append(i18n("Video clip") + "</b><br />" + clipUrl().path());
+        break;
+    case COLOR:
+        tip.append(i18n("Color clip"));
+        break;
+    case IMAGE:
+        tip.append(i18n("Image clip") + "</b><br />" + clipUrl().path());
+        break;
+    case TEXT:
+        tip.append(i18n("Text clip"));
+        break;
+    case SLIDESHOW:
+        tip.append(i18n("Slideshow clip"));
+        break;
+    case VIRTUAL:
+        tip.append(i18n("Virtual clip"));
+        break;
+    case PLAYLIST:
+        tip.append(i18n("Playlist clip") + "</b><br />" + clipUrl().path());
+        break;
     default:
-      tip.append(i18n("Unknown clip"));
-    break;
-  }
+        tip.append(i18n("Unknown clip"));
+        break;
+    }
 
-  setToolTip(1, tip);
+    setToolTip(1, tip);
 }
 
-void ProjectItem::setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata)
-{
-  if (attributes.contains("duration")) {
-    if (m_clipType == AUDIO || m_clipType == VIDEO || m_clipType == AV) m_element.setAttribute("duration", attributes["duration"].toInt());
-    m_duration = GenTime(attributes["duration"].toInt(), 25);
-    setData(1, DurationRole, Timecode::getEasyTimecode(m_duration, 25));
-    m_durationKnown = true;
-    m_clip->setDuration(m_duration);
-    kDebug()<<"//// LOADED CLIP, DURATION SET TO: "<<m_duration.frames(25);
-  } else {
-           // No duration known, use an arbitrary one until it is.
-           m_duration = GenTime(0.0);
-           m_durationKnown = false;
-       }
-
-
-       //extend attributes -reh
-
-  if (m_clipType == UNKNOWN) {
-         if (attributes.contains("type")) {
-           if (attributes["type"] == "audio")
-               m_clipType = AUDIO;
-           else if (attributes["type"] == "video")
-               m_clipType = VIDEO;
-           else if (attributes["type"] == "av")
-               m_clipType = AV;
-           else if (attributes["type"] == "playlist")
-               m_clipType = PLAYLIST;
-         } else {
-           m_clipType = AV;
-         }
-       m_clip->setClipType(m_clipType);
-       }
-       slotSetToolTip();
-
-       if (m_element.isNull()) {
-         QDomDocument doc;
-         m_element = doc.createElement("producer");
-       }
-       if (m_element.attribute("duration") == QString::null) m_element.setAttribute("duration", attributes["duration"].toInt());
-       m_element.setAttribute("resource", attributes["filename"]);
-       m_element.setAttribute("type", (int) m_clipType);
-/*
-       if (attributes.contains("height")) {
-           m_height = attributes["height"].toInt();
-       } else {
-           m_height = 0;
-       }
-       if (attributes.contains("width")) {
-           m_width = attributes["width"].toInt();
-       } else {
-           m_width = 0;
-       }
-       //decoder name
-       if (attributes.contains("name")) {
-           m_decompressor = attributes["name"];
-       } else {
-           m_decompressor = "n/a";
-       }
-       //video type ntsc/pal
-       if (attributes.contains("system")) {
-           m_system = attributes["system"];
-       } else {
-           m_system = "n/a";
-       }
-       if (attributes.contains("fps")) {
-           m_framesPerSecond = attributes["fps"].toInt();
-       } else {
-           // No frame rate known.
-           m_framesPerSecond = 0;
-       }
-       //audio attributes -reh
-       if (attributes.contains("channels")) {
-           m_channels = attributes["channels"].toInt();
-       } else {
-           m_channels = 0;
-       }
-       if (attributes.contains("format")) {
-           m_format = attributes["format"];
-       } else {
-           m_format = "n/a";
-       }
-       if (attributes.contains("frequency")) {
-           m_frequency = attributes["frequency"].toInt();
-       } else {
-           m_frequency = 0;
-       }
-       if (attributes.contains("videocodec")) {
-           m_videoCodec = attributes["videocodec"];
-       }
-       if (attributes.contains("audiocodec")) {
-           m_audioCodec = attributes["audiocodec"];
-       }
-
-       m_metadata = metadata;
-
-       if (m_metadata.contains("description")) {
-           setDescription (m_metadata["description"]);
-       }
-       else if (m_metadata.contains("comment")) {
-           setDescription (m_metadata["comment"]);
-       }
-*/
 
+void ProjectItem::setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata) {
+    if (m_clip == NULL) return;
+    //setFlags(Qt::ItemIsSelectable | Qt::ItemIsEditable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled);
+    if (attributes.contains("duration")) {
+        //if (m_clipType == AUDIO || m_clipType == VIDEO || m_clipType == AV)
+        //m_clip->setProperty("duration", attributes["duration"]);
+        GenTime duration = GenTime(attributes["duration"].toInt(), KdenliveSettings::project_fps());
+        setData(1, DurationRole, Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps()));
+        m_clip->setDuration(duration);
+        //kDebug() << "//// LOADED CLIP, DURATION SET TO: " << duration.frames(KdenliveSettings::project_fps());
+    } else  {
+        // No duration known, use an arbitrary one until it is.
+    }
+
+
+    //extend attributes -reh
+
+    if (m_clipType == UNKNOWN) {
+        if (attributes.contains("type")) {
+            if (attributes["type"] == "audio")
+                m_clipType = AUDIO;
+            else if (attributes["type"] == "video")
+                m_clipType = VIDEO;
+            else if (attributes["type"] == "av")
+                m_clipType = AV;
+            else if (attributes["type"] == "playlist")
+                m_clipType = PLAYLIST;
+        } else {
+            m_clipType = AV;
+        }
+        m_clip->setClipType(m_clipType);
+        slotSetToolTip();
+    }
+    m_clip->setProperties(attributes);
+
+    if ((m_clipType == AV || m_clipType == AUDIO) && KdenliveSettings::audiothumbnails()) m_clip->askForAudioThumbs();
+
+    if (m_clip->description().isEmpty()) {
+        if (metadata.contains("description")) {
+            m_clip->setProperty("description", metadata["description"]);
+            setText(2, m_clip->description());
+        } else if (metadata.contains("comment")) {
+            m_clip->setProperty("description", metadata["comment"]);
+            setText(2, m_clip->description());
+        }
+    }
 }
 
-#include "projectitem.moc"