X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fprojectitem.cpp;h=a462755765335f6a6474784d6d71e51d4a6abb17;hb=c24658bd34221d735f0641c924b890e1a6be7101;hp=12b46be2bff0dde6d12d8a3b5fe4dcc3a74f9139;hpb=e7cc204174b626f1970483faf36ec6d9033b1a7f;p=kdenlive diff --git a/src/projectitem.cpp b/src/projectitem.cpp index 12b46be2..a4627557 100644 --- a/src/projectitem.cpp +++ b/src/projectitem.cpp @@ -24,56 +24,89 @@ #include "docclipbase.h" #include -#include +#include #include +#include + const int DurationRole = Qt::UserRole + 1; +const int JobProgressRole = Qt::UserRole + 5; +const int JobTypeRole = Qt::UserRole + 6; +const int JobStatusMessage = Qt::UserRole + 7; const int itemHeight = 38; -ProjectItem::ProjectItem(QTreeWidget * parent, DocClipBase *clip) : - QTreeWidgetItem(parent, PROJECTCLIPTYPE) +ProjectItem::ProjectItem(QTreeWidget * parent, DocClipBase *clip, const QSize &pixmapSize) : + QTreeWidgetItem(parent, ProjectClipType), + m_clip(clip), + m_clipId(clip->getId()), + m_pixmapSet(false) { - setSizeHint(0, QSize(itemHeight * 3, itemHeight)); - if (clip->isPlaceHolder()) setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); - else 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(0, name); - setText(1, m_clip->description()); - GenTime duration = m_clip->duration(); - if (duration != GenTime()) setData(0, DurationRole, Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps())); - //setFlags(Qt::NoItemFlags); - //kDebug() << "Constructed with clipId: " << m_clipId; + buildItem(pixmapSize); +} + +ProjectItem::ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip, const QSize &pixmapSize) : + QTreeWidgetItem(parent, ProjectClipType), + m_clip(clip), + m_clipId(clip->getId()), + m_pixmapSet(false) + +{ + buildItem(pixmapSize); } -ProjectItem::ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip) : - QTreeWidgetItem(parent, PROJECTCLIPTYPE) +void ProjectItem::buildItem(const QSize &pixmapSize) { setSizeHint(0, QSize(itemHeight * 3, itemHeight)); - if (clip->isPlaceHolder()) setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); - else setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable); - m_clip = clip; - m_clipId = clip->getId(); + 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(); + m_clipType = (ClipType) m_clip->getProperty("type").toInt(); + switch(m_clipType) { + case Audio: + setData(0, Qt::DecorationRole, KIcon("audio-x-generic").pixmap(pixmapSize)); + m_pixmapSet = true; + break; + case Image: + case SlideShow: + setData(0, Qt::DecorationRole, KIcon("image-x-generic").pixmap(pixmapSize)); + break; + default: + setData(0, Qt::DecorationRole, KIcon("video-x-generic").pixmap(pixmapSize)); + } + if (m_clipType != Unknown) slotSetToolTip(); + setText(0, name); setText(1, m_clip->description()); GenTime duration = m_clip->duration(); - if (duration != GenTime()) setData(0, DurationRole, Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps())); - //setFlags(Qt::NoItemFlags); - //kDebug() << "Constructed with clipId: " << m_clipId; + 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); } - ProjectItem::~ProjectItem() { } +bool ProjectItem::hasPixmap() const +{ + return m_pixmapSet; +} + +void ProjectItem::setPixmap(const QPixmap& p) +{ + m_pixmapSet = true; + setData(0, Qt::DecorationRole, p); +} + //static int ProjectItem::itemDefaultHeight() { @@ -91,7 +124,7 @@ const QString &ProjectItem::clipId() const return m_clipId; } -CLIPTYPE ProjectItem::clipType() const +ClipType ProjectItem::clipType() const { return m_clipType; } @@ -101,15 +134,6 @@ int ProjectItem::clipMaxDuration() const return m_clip->getProperty("duration").toInt(); } -QStringList ProjectItem::names() const -{ - QStringList result; - result.append(text(0)); - result.append(text(1)); - result.append(text(2)); - return result; -} - QDomElement ProjectItem::toXml() const { return m_clip->toXML(); @@ -117,17 +141,20 @@ QDomElement ProjectItem::toXml() const const KUrl ProjectItem::clipUrl() const { - if (m_clipType != COLOR && m_clipType != VIRTUAL && m_clipType != UNKNOWN) + if (m_clipType != Color && m_clipType != Virtual && m_clipType != Unknown) return KUrl(m_clip->getProperty("resource")); else return KUrl(); } void ProjectItem::changeDuration(int frames) { - setData(0, DurationRole, Timecode::getEasyTimecode(GenTime(frames, KdenliveSettings::project_fps()), KdenliveSettings::project_fps())); + 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 props) +void ProjectItem::setProperties(const QMap &props) { if (m_clip == NULL) return; m_clip->setProperties(props); @@ -158,42 +185,16 @@ DocClipBase *ProjectItem::referencedClip() void ProjectItem::slotSetToolTip() { - QString tip = ""; + QString tip; if (m_clip->isPlaceHolder()) tip.append(i18n("Missing") + " | "); - switch (m_clipType) { - case AUDIO: - tip.append(i18n("Audio clip") + "
" + clipUrl().path()); - break; - case VIDEO: - tip.append(i18n("Mute video clip") + "
" + clipUrl().path()); - break; - case AV: - tip.append(i18n("Video clip") + "
" + clipUrl().path()); - break; - case COLOR: - tip.append(i18n("Color clip")); - break; - case IMAGE: - tip.append(i18n("Image clip") + "
" + clipUrl().path()); - break; - case TEXT: - if (!clipUrl().isEmpty() && m_clip->getProperty("xmldata").isEmpty()) tip.append(i18n("Template text clip") + "
" + clipUrl().path()); - else tip.append(i18n("Text clip") + "
" + clipUrl().path()); - break; - case SLIDESHOW: - tip.append(i18n("Slideshow clip") + "
" + clipUrl().directory()); - break; - case VIRTUAL: - tip.append(i18n("Virtual clip")); - break; - case PLAYLIST: - tip.append(i18n("Playlist clip") + "
" + clipUrl().path()); - break; - default: - tip.append(i18n("Unknown clip")); - break; + QString jobInfo = data(0, JobStatusMessage).toString(); + if (!jobInfo.isEmpty()) { + tip.append(jobInfo + " | "); } - + if (hasProxy() && data(0, JobTypeRole).toInt() != PROXYJOB) { + tip.append(i18n("Proxy clip") + " | "); + } + tip.append(m_clip->shortInfo()); setToolTip(0, tip); } @@ -201,31 +202,42 @@ void ProjectItem::slotSetToolTip() 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")) { - GenTime duration = GenTime(attributes.value("duration").toInt(), KdenliveSettings::project_fps()); - setData(0, DurationRole, Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps())); - m_clip->setDuration(duration); - } else { - // No duration known, use an arbitrary one until it is. - } + QString prefix; - //extend attributes -reh - - if (m_clipType == UNKNOWN) { + m_clip->setProperties(attributes); + m_clip->setMetadata(metadata); + + if (m_clipType == Unknown) { QString cliptype = attributes.value("type"); - if (cliptype == "audio") m_clipType = AUDIO; - else if (cliptype == "video") m_clipType = VIDEO; + 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 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") + " / "; + } + } + } + else if (attributes.contains("frame_size")) slotSetToolTip(); + + 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. } - m_clip->setProperties(attributes); - m_clip->setMetadata(metadata); if (m_clip->description().isEmpty()) { if (metadata.contains("description")) { @@ -238,3 +250,71 @@ void ProjectItem::setProperties(const QMap < QString, QString > &attributes, con } } +void ProjectItem::setJobStatus(JOBTYPE jobType, ClipJobStatus status, int progress, const QString &statusMessage) +{ + setData(0, JobTypeRole, jobType); + if (progress > 0) setData(0, JobProgressRole, qMin(100, progress)); + else { + setData(0, JobProgressRole, status); + if ((status == JobAborted || status == JobCrashed || status == JobDone) || !statusMessage.isEmpty()) + setData(0, JobStatusMessage, statusMessage); + slotSetToolTip(); + } +} + +void ProjectItem::setConditionalJobStatus(ClipJobStatus status, JOBTYPE requestedJobType) +{ + if (data(0, JobTypeRole).toInt() == requestedJobType) { + setData(0, JobProgressRole, status); + } +} + +bool ProjectItem::hasProxy() const +{ + if (m_clip == NULL) return false; + if (m_clip->getProperty("proxy").size() < 2 || data(0, JobProgressRole).toInt() == JobCrashed) return false; + return true; +} + +bool ProjectItem::isProxyReady() const +{ + return (data(0, JobProgressRole).toInt() == JobDone); +} + +bool ProjectItem::isJobRunning() const +{ + int s = data(0, JobProgressRole).toInt(); + if (s == JobWaiting || s == JobWorking || s > 0) return true; + return false; +} + +bool ProjectItem::isProxyRunning() const +{ + int s = data(0, JobProgressRole).toInt(); + if ((s == JobWorking || s > 0) && data(0, JobTypeRole).toInt() == (int) PROXYJOB) return true; + return false; +} + +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; +} + + +