X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fprojectitem.cpp;h=6b5f573e6e0b711d368e85193d3cb42086364c1d;hb=b6d6c25f1bd07f11a0ceaf32a3a5bcaeab367336;hp=8d280912085e0c2fc007d827031942fb1e3baf2a;hpb=7d83f7bc4349abb58dceac82b301469857db9733;p=kdenlive diff --git a/src/projectitem.cpp b/src/projectitem.cpp index 8d280912..6b5f573e 100644 --- a/src/projectitem.cpp +++ b/src/projectitem.cpp @@ -30,27 +30,31 @@ #include const int DurationRole = Qt::UserRole + 1; -const int ProxyRole = Qt::UserRole + 5; +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) : +ProjectItem::ProjectItem(QTreeWidget * parent, DocClipBase *clip, const QSize &pixmapSize) : QTreeWidgetItem(parent, PROJECTCLIPTYPE), m_clip(clip), - m_clipId(clip->getId()) + m_clipId(clip->getId()), + m_pixmapSet(false) { - buildItem(); + buildItem(pixmapSize); } -ProjectItem::ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip) : +ProjectItem::ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip, const QSize &pixmapSize) : QTreeWidgetItem(parent, PROJECTCLIPTYPE), m_clip(clip), - m_clipId(clip->getId()) + m_clipId(clip->getId()), + m_pixmapSet(false) { - buildItem(); + buildItem(pixmapSize); } -void ProjectItem::buildItem() +void ProjectItem::buildItem(const QSize &pixmapSize) { setSizeHint(0, QSize(itemHeight * 3, itemHeight)); if (m_clip->isPlaceHolder()) setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled); @@ -58,6 +62,20 @@ void ProjectItem::buildItem() QString name = m_clip->getProperty("name"); if (name.isEmpty()) name = KUrl(m_clip->getProperty("resource")).fileName(); 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(); @@ -78,6 +96,17 @@ 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() { @@ -105,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(); @@ -134,7 +154,7 @@ void ProjectItem::changeDuration(int frames) 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); @@ -167,50 +187,14 @@ void ProjectItem::slotSetToolTip() { QString tip; if (m_clip->isPlaceHolder()) tip.append(i18n("Missing") + " | "); - int s = data(0, ProxyRole).toInt(); - if (s == CREATINGPROXY || s > 0) { - tip.append(i18n("Building proxy clip") + " | "); + QString jobInfo = data(0, JobStatusMessage).toString(); + if (!jobInfo.isEmpty()) { + tip.append(jobInfo + " | "); } - else if (s == PROXYWAITING) { - tip.append(i18n("Waiting - proxy clip") + " | "); - } - else if (hasProxy()) { + if (hasProxy() && data(0, JobTypeRole).toInt() != PROXYJOB) { tip.append(i18n("Proxy clip") + " | "); } - tip.append(""); - 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; - } + tip.append(m_clip->shortInfo()); setToolTip(0, tip); } @@ -220,6 +204,10 @@ void ProjectItem::setProperties(const QMap < QString, QString > &attributes, con if (m_clip == NULL) return; QString prefix; + + m_clip->setProperties(attributes); + m_clip->setMetadata(metadata); + if (m_clipType == UNKNOWN) { QString cliptype = attributes.value("type"); if (cliptype == "audio") m_clipType = AUDIO; @@ -237,6 +225,8 @@ void ProjectItem::setProperties(const QMap < QString, QString > &attributes, con } } } + 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(); @@ -249,9 +239,6 @@ void ProjectItem::setProperties(const QMap < QString, QString > &attributes, con // 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")) { m_clip->setProperty("description", metadata.value("description")); @@ -263,35 +250,52 @@ void ProjectItem::setProperties(const QMap < QString, QString > &attributes, con } } -void ProjectItem::setProxyStatus(PROXYSTATUS status, int progress) +void ProjectItem::setJobStatus(JOBTYPE jobType, CLIPJOBSTATUS status, int progress, const QString &statusMessage) { - if (progress > 0) setData(0, ProxyRole, progress); + setData(0, JobTypeRole, jobType); + if (progress > 0) setData(0, JobProgressRole, qMin(100, progress)); else { - setData(0, ProxyRole, status); + 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").isEmpty() || m_clip->getProperty("proxy") == "-" || data(0, ProxyRole).toInt() == PROXYCRASHED) 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, ProxyRole).toInt() == PROXYDONE); + 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, ProxyRole).toInt(); - if (s == PROXYWAITING || s == CREATINGPROXY || s > 0) return true; + 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) +bool ProjectItem::playlistHasProxies(const QString& path) { kDebug()<<"// CHECKING FOR PROXIES"; QFile file(path); @@ -305,7 +309,7 @@ bool ProjectItem::playlistHasProxies(const QString path) file.close(); QString root = doc.documentElement().attribute("root"); QDomNodeList kdenliveProducers = doc.elementsByTagName("kdenlive_producer"); - for (int i = 0; i < kdenliveProducers.count(); i++) { + for (int i = 0; i < kdenliveProducers.count(); ++i) { QString proxy = kdenliveProducers.at(i).toElement().attribute("proxy"); if (!proxy.isEmpty() && proxy != "-") return true; }