]> git.sesse.net Git - kdenlive/blobdiff - src/projectitem.cpp
cppcheck fixes, patch by Mikko Rapeli [20/27]
[kdenlive] / src / projectitem.cpp
index 3d7a98fee7a94ca1b5c15562b3e36d2a812fcfee..4f6ab88a7e14d68ed2d41135e2f7e575dbdd6dc2 100644 (file)
  ***************************************************************************/
 
 
-#include <QMouseEvent>
-#include <QStylePainter>
-#include <QLabel>
-#include <QLayout>
+#include "projectitem.h"
+#include "timecode.h"
+#include "kdenlivesettings.h"
+#include "docclipbase.h"
 
 #include <KDebug>
 #include <KLocale>
 #include <KIcon>
 
+#include <QFile>
 
-#include "projectitem.h"
-#include "timecode.h"
-#include "kdenlivesettings.h"
-#include "docclipbase.h"
+const int DurationRole = Qt::UserRole + 1;
+const int ProxyRole = Qt::UserRole + 5;
+const int itemHeight = 38;
 
-const int NameRole = Qt::UserRole;
-const int DurationRole = NameRole + 1;
-const int UsageRole = NameRole + 2;
-
-
-ProjectItem::ProjectItem(QTreeWidget * parent, const QStringList & strings, QDomElement xml, int clipId)
-        : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_clipType(UNKNOWN), m_clipId(clipId) {
-    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(QTreeWidget * parent, DocClipBase *clip) :
+        QTreeWidgetItem(parent, PROJECTCLIPTYPE),
+        m_clip(clip),
+        m_clipId(clip->getId())
+{
+    buildItem();
+}
 
-        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(QTreeWidgetItem * parent, DocClipBase *clip) :
+        QTreeWidgetItem(parent, PROJECTCLIPTYPE),
+        m_clip(clip),
+        m_clipId(clip->getId())
+        
+{
+    buildItem();
 }
 
-ProjectItem::ProjectItem(QTreeWidgetItem * parent, const QStringList & strings, QDomElement xml, int clipId)
-        : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_clipType(UNKNOWN), m_clipId(clipId) {
-    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();
+void ProjectItem::buildItem()
+{
+    setSizeHint(0, QSize(itemHeight * 3, itemHeight));
+    if (m_clip->isPlaceHolder()) setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
+    else setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
+    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(0, name);
+    setText(1, m_clip->description());
+    GenTime duration = m_clip->duration();
+    QString durationText;
+    if (duration != GenTime()) {
+        durationText = Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps());
+    }
+    if (m_clipType == PLAYLIST) {
+        // Check if the playlist xml contains a proxy inside, and inform user
+        if (playlistHasProxies(m_clip->fileURL().path())) {
+            durationText.prepend(i18n("Contains proxies") + " / ");
         }
     }
+    if (!durationText.isEmpty()) setData(0, DurationRole, durationText);
 }
 
-// folder
-ProjectItem::ProjectItem(QTreeWidget * parent, const QStringList & strings, int clipId)
-        : QTreeWidgetItem(parent, strings), m_element(QDomElement()), m_clipType(FOLDER), m_groupName(strings.at(1)), m_clipId(clipId), m_clip(NULL) {
-    setSizeHint(0, QSize(65, 45));
-    setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
-    setIcon(0, KIcon("folder"));
-    setToolTip(1, "<qt><b>" + i18n("Folder"));
+ProjectItem::~ProjectItem()
+{
 }
 
-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_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();
-    setText(1, name);
-    kDebug() << "PROJECT ITE;. ADDING LCIP: " << m_clipId;
+//static
+int ProjectItem::itemDefaultHeight()
+{
+    return itemHeight;
 }
 
-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_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();
-    setText(1, name);
-    kDebug() << "PROJECT ITE;. ADDING LCIP: " << m_clipId;
-}
-
-
-ProjectItem::~ProjectItem() {
-}
-
-int ProjectItem::numReferences() const {
+int ProjectItem::numReferences() const
+{
     if (!m_clip) return 0;
     return m_clip->numReferences();
 }
 
-int ProjectItem::clipId() const {
+const QString &ProjectItem::clipId() const
+{
     return m_clipId;
 }
 
-CLIPTYPE ProjectItem::clipType() const {
+CLIPTYPE ProjectItem::clipType() const
+{
     return m_clipType;
 }
 
-int ProjectItem::clipMaxDuration() const {
-    return m_element.attribute("duration").toInt();
+int ProjectItem::clipMaxDuration() const
+{
+    return m_clip->getProperty("duration").toInt();
 }
 
-bool ProjectItem::isGroup() const {
-    return m_clipType == FOLDER;
-}
-
-const QString ProjectItem::groupName() const {
-    return m_groupName;
-}
-
-void ProjectItem::setGroupName(const QString name) {
-    m_groupName = name;
-}
-
-QStringList ProjectItem::names() const {
+QStringList ProjectItem::names() const
+{
     QStringList result;
     result.append(text(0));
     result.append(text(1));
@@ -151,61 +114,86 @@ QStringList ProjectItem::names() const {
     return result;
 }
 
-QDomElement ProjectItem::toXml() const {
-    return m_element;
+QDomElement ProjectItem::toXml() const
+{
+    return m_clip->toXML();
 }
 
-const KUrl ProjectItem::clipUrl() const {
+const KUrl ProjectItem::clipUrl() const
+{
     if (m_clipType != COLOR && m_clipType != VIRTUAL && m_clipType != UNKNOWN)
-        return KUrl(m_element.attribute("resource"));
+        return KUrl(m_clip->getProperty("resource"));
     else return KUrl();
 }
 
-void ProjectItem::changeDuration(int frames) {
-    m_element.setAttribute("duration", frames);
-    m_duration = GenTime(frames, 25);
-    setData(1, DurationRole, Timecode::getEasyTimecode(m_duration, 25));
-    m_durationKnown = true;
-    m_clip->setDuration(m_duration);
+void ProjectItem::changeDuration(int frames)
+{
+    QString itemdata = data(0, DurationRole).toString();
+    if (itemdata.contains('/')) itemdata = itemdata.section('/', 0, 0) + "/ ";
+    else itemdata.clear();
+    setData(0, DurationRole, itemdata + Timecode::getEasyTimecode(GenTime(frames, KdenliveSettings::project_fps()), KdenliveSettings::project_fps()));
 }
 
-void ProjectItem::setProperties(QMap <QString, QString> props) {
+void ProjectItem::setProperties(QMap <QString, QString> props)
+{
+    if (m_clip == NULL) return;
     m_clip->setProperties(props);
 }
 
-DocClipBase *ProjectItem::referencedClip() {
+QString ProjectItem::getClipHash() const
+{
+    if (m_clip == NULL) return QString();
+    return m_clip->getClipHash();
+}
+
+void ProjectItem::setProperty(const QString &key, const QString &value)
+{
+    if (m_clip == NULL) return;
+    m_clip->setProperty(key, value);
+}
+
+void ProjectItem::clearProperty(const QString &key)
+{
+    if (m_clip == NULL) return;
+    m_clip->clearProperty(key);
+}
+
+DocClipBase *ProjectItem::referencedClip()
+{
     return m_clip;
 }
 
-void ProjectItem::slotSetToolTip() {
-    QString tip = "<qt><b>";
+void ProjectItem::slotSetToolTip()
+{
+    QString tip = "<b>";
+    if (m_clip->isPlaceHolder()) tip.append(i18n("Missing") + " | ");
     switch (m_clipType) {
-    case 1:
+    case AUDIO:
         tip.append(i18n("Audio clip") + "</b><br />" + clipUrl().path());
         break;
-    case 2:
+    case VIDEO:
         tip.append(i18n("Mute video clip") + "</b><br />" + clipUrl().path());
         break;
-    case 3:
+    case AV:
         tip.append(i18n("Video clip") + "</b><br />" + clipUrl().path());
         break;
-    case 4:
+    case COLOR:
         tip.append(i18n("Color clip"));
-        setData(1, DurationRole, Timecode::getEasyTimecode(GenTime(m_element.attribute("out", "250").toInt(), 25), 25));
         break;
-    case 5:
+    case IMAGE:
         tip.append(i18n("Image clip") + "</b><br />" + clipUrl().path());
         break;
-    case 6:
-        tip.append(i18n("Text clip"));
+    case TEXT:
+        if (!clipUrl().isEmpty() && m_clip->getProperty("xmldata").isEmpty()) tip.append(i18n("Template text clip") + "</b><br />" + clipUrl().path());
+        else tip.append(i18n("Text clip") + "</b><br />" + clipUrl().path());
         break;
-    case 7:
-        tip.append(i18n("Slideshow clip"));
+    case SLIDESHOW:
+        tip.append(i18n("Slideshow clip") + "</b><br />" + clipUrl().directory());
         break;
-    case 8:
+    case VIRTUAL:
         tip.append(i18n("Virtual clip"));
         break;
-    case 9:
+    case PLAYLIST:
         tip.append(i18n("Playlist clip") + "</b><br />" + clipUrl().path());
         break;
     default:
@@ -213,64 +201,102 @@ void ProjectItem::slotSetToolTip() {
         break;
     }
 
-    setToolTip(1, tip);
+    setToolTip(0, 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
+void ProjectItem::setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata)
+{
+    if (m_clip == NULL) return;
 
+    QString prefix;
     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;
-        }
+        QString cliptype = attributes.value("type");
+        if (cliptype == "audio") m_clipType = AUDIO;
+        else if (cliptype == "video") m_clipType = VIDEO;
+        else if (cliptype == "av") m_clipType = AV;
+        else if (cliptype == "playlist") m_clipType = PLAYLIST;
+        else m_clipType = AV;
+
         m_clip->setClipType(m_clipType);
+        slotSetToolTip();
+        if (m_clipType == PLAYLIST) {
+            // Check if the playlist xml contains a proxy inside, and inform user
+            if (playlistHasProxies(m_clip->fileURL().path())) {
+                prefix = i18n("Contains proxies") + " / ";
+            }
+        }
     }
-    slotSetToolTip();
-    if (m_element.isNull()) {
-        QDomDocument doc;
-        m_element = doc.createElement("producer");
+    if (attributes.contains("duration")) {
+        GenTime duration = GenTime(attributes.value("duration").toInt(), KdenliveSettings::project_fps());
+        QString itemdata = data(0, DurationRole).toString();
+        if (itemdata.contains('/')) itemdata = itemdata.section('/', 0, 0) + "/ ";
+        else itemdata.clear();
+        if (prefix.isEmpty()) prefix = itemdata;
+        setData(0, DurationRole, prefix + Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps()));
+        m_clip->setDuration(duration);
+    } else  {
+        // No duration known, use an arbitrary one until it is.
     }
-    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 (KdenliveSettings::audiothumbnails()) m_clip->slotRequestAudioThumbs();
 
     m_clip->setProperties(attributes);
-    /*
-         m_metadata = metadata;
+    m_clip->setMetadata(metadata);
+
+    if (m_clip->description().isEmpty()) {
+        if (metadata.contains("description")) {
+            m_clip->setProperty("description", metadata.value("description"));
+            setText(1, m_clip->description());
+        } else if (metadata.contains("comment")) {
+            m_clip->setProperty("description", metadata.value("comment"));
+            setText(1, m_clip->description());
+        }
+    }
+}
+
+void ProjectItem::setProxyStatus(PROXYSTATUS status)
+{
+    setData(0, ProxyRole, status);
+}
 
-         if (m_metadata.contains("description")) {
-             setDescription (m_metadata["description"]);
-         }
-         else if (m_metadata.contains("comment")) {
-             setDescription (m_metadata["comment"]);
-         }
-    */
+bool ProjectItem::hasProxy() const
+{
+    if (m_clip == NULL) return false;
+    if (m_clip->getProperty("proxy").isEmpty() || m_clip->getProperty("proxy") == "-" || data(0, ProxyRole).toInt() == PROXYCRASHED) return false;
+    return true;
+}
+
+bool ProjectItem::isProxyReady() const
+{
+     return (data(0, ProxyRole).toInt() == PROXYDONE);
+}
 
+bool ProjectItem::isProxyRunning() const
+{
+    PROXYSTATUS s = (PROXYSTATUS) data(0, ProxyRole).toInt();
+    if (s == PROXYWAITING || s == CREATINGPROXY) return true;
+    return false;
 }
 
-#include "projectitem.moc"
+bool ProjectItem::playlistHasProxies(const QString path)
+{
+    kDebug()<<"// CHECKING FOR PROXIES";
+    QFile file(path);
+    QDomDocument doc;
+    if (!file.open(QIODevice::ReadOnly))
+    return false;
+    if (!doc.setContent(&file)) {
+        file.close();
+        return false;
+    }
+    file.close();
+    QString root = doc.documentElement().attribute("root");
+    QDomNodeList kdenliveProducers = doc.elementsByTagName("kdenlive_producer");
+    for (int i = 0; i < kdenliveProducers.count(); i++) {
+        QString proxy = kdenliveProducers.at(i).toElement().attribute("proxy");
+        if (!proxy.isEmpty() && proxy != "-") return true;
+    }
+    return false;
+}
+
+
+