X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fprojectitem.cpp;h=da80d71c3c3492ccc4d5949033e4753fa34e6198;hb=19af9d6551d9d3bd38c1710ffbbbfde837c08681;hp=3b4cdf40adf77c521998b980f4b6359cfa50c178;hpb=5ac61d0ef08900a046b8baaf8570ab016352766f;p=kdenlive diff --git a/src/projectitem.cpp b/src/projectitem.cpp index 3b4cdf40..da80d71c 100644 --- a/src/projectitem.cpp +++ b/src/projectitem.cpp @@ -30,238 +30,230 @@ #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; - 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(DocClipBase::NONE), 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); - if (!m_element.isNull()) { - m_element.setAttribute("id", clipId); - QString cType = m_element.attribute("type", QString::null); - if (!cType.isEmpty()) { - m_clipType = (DocClipBase::CLIPTYPE) cType.toInt(); - slotSetToolTip(); + : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_clipType(UNKNOWN), m_clipId(clipId) { + QDomElement element = xml.cloneNode().toElement(); + setSizeHint(0, QSize(65, 45)); + setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable); + if (!element.isNull()) { + element.setAttribute("id", clipId); + QString cType = element.attribute("type", QString::null); + if (!cType.isEmpty()) { + m_clipType = (CLIPTYPE) cType.toInt(); + slotSetToolTip(); + } + + if (m_clipType == COLOR || m_clipType == IMAGE) element.setAttribute("duration", MAXCLIPDURATION); + else if (element.attribute("duration").isEmpty() && !element.attribute("out").isEmpty()) { + element.setAttribute("duration", element.attribute("out").toInt() - element.attribute("in").toInt()); + } } - } } ProjectItem::ProjectItem(QTreeWidgetItem * parent, const QStringList & strings, QDomElement xml, int clipId) - : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_clipType(DocClipBase::NONE), 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); - if (!m_element.isNull()) { - m_element.setAttribute("id", clipId); - QString cType = m_element.attribute("type", QString::null); - if (!cType.isEmpty()) { - m_clipType = (DocClipBase::CLIPTYPE) cType.toInt(); - slotSetToolTip(); + : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_clipType(UNKNOWN), m_clipId(clipId) { + QDomElement element = xml.cloneNode().toElement(); + setSizeHint(0, QSize(65, 45)); + setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable); + if (!element.isNull()) { + element.setAttribute("id", clipId); + QString cType = element.attribute("type", QString::null); + if (!cType.isEmpty()) { + m_clipType = (CLIPTYPE) cType.toInt(); + slotSetToolTip(); + } } - } } +// folder ProjectItem::ProjectItem(QTreeWidget * parent, const QStringList & strings, int clipId) - : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_element(QDomElement()), m_clipType(DocClipBase::NONE), m_clipId(clipId), m_isGroup(true), m_groupName(strings.at(1)) -{ - setSizeHint(0, QSize(65, 45)); - setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled); - setIcon(0, KIcon("folder")); + : QTreeWidgetItem(parent, strings), 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, "" + i18n("Folder")); +} + +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(); + setText(1, name); + kDebug() << "PROJECT ITE;. ADDING LCIP: " << m_clipId; +} + +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); + kDebug() << "PROJECT ITE;. ADDING LCIP: " << m_clipId; +} + + +ProjectItem::~ProjectItem() { +} + +int ProjectItem::numReferences() const { + if (!m_clip) return 0; + return m_clip->numReferences(); } -ProjectItem::~ProjectItem() -{ +int ProjectItem::clipId() const { + return m_clipId; } -int ProjectItem::clipId() const -{ - return m_clipId; +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_isGroup; +bool ProjectItem::isGroup() const { + return m_clipType == FOLDER; } -const QString ProjectItem::groupName() const -{ - return m_groupName; +const QString ProjectItem::groupName() const { + return m_groupName; } -QStringList ProjectItem::names() const -{ - QStringList result; - result.append(text(0)); - result.append(text(1)); - result.append(text(2)); - return result; +void ProjectItem::setGroupName(const QString name) { + m_groupName = name; } -QDomElement ProjectItem::toXml() const -{ - return m_element; +QStringList ProjectItem::names() const { + QStringList result; + result.append(text(0)); + result.append(text(1)); + result.append(text(2)); + return result; } -const KUrl ProjectItem::clipUrl() const -{ - if (m_clipType != DocClipBase::COLOR && m_clipType != DocClipBase::VIRTUAL && m_clipType != DocClipBase::NONE) - return KUrl(m_element.attribute("resouce")); +QDomElement ProjectItem::toXml() const { + return m_clip->toXML(); +} + +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(); } +void ProjectItem::changeDuration(int frames) { + setData(1, DurationRole, Timecode::getEasyTimecode(GenTime(frames, KdenliveSettings::project_fps()), KdenliveSettings::project_fps())); +} -void ProjectItem::slotSetToolTip() -{ - QString tip = ""; - switch (m_clipType) { +void ProjectItem::setProperties(QMap props) { + m_clip->setProperties(props); +} + +DocClipBase *ProjectItem::referencedClip() { + return m_clip; +} + +void ProjectItem::slotSetToolTip() { + QString tip = ""; + switch (m_clipType) { case 1: - tip.append(i18n("Audio clip")); - break; + tip.append(i18n("Audio clip") + "
" + clipUrl().path()); + break; case 2: - tip.append(i18n("Mute video clip")); - break; + tip.append(i18n("Mute video clip") + "

" + clipUrl().path()); + break; case 3: - tip.append(i18n("Video clip")); - break; + tip.append(i18n("Video clip") + "

" + clipUrl().path()); + break; case 4: - tip.append(i18n("Color clip")); - setData(1, DurationRole, Timecode::getEasyTimecode(GenTime(m_element.attribute("out", "250").toInt(), 25), 25)); - break; + tip.append(i18n("Color clip")); + setData(1, DurationRole, Timecode::getEasyTimecode(GenTime(m_clip->getProperty("out").toInt(), 25), 25)); + break; case 5: - tip.append(i18n("Image clip")); - break; + tip.append(i18n("Image clip") + "
" + clipUrl().path()); + break; case 6: - tip.append(i18n("Text clip")); - break; + tip.append(i18n("Text clip")); + break; case 7: - tip.append(i18n("Slideshow clip")); - break; + tip.append(i18n("Slideshow clip")); + break; case 8: - tip.append(i18n("Virtual clip")); - break; + tip.append(i18n("Virtual clip")); + break; case 9: - tip.append(i18n("Playlist clip")); - break; + tip.append(i18n("Playlist clip") + "
" + 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 == DocClipBase::AUDIO || m_clipType == DocClipBase::VIDEO || m_clipType == DocClipBase::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; - } 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 == DocClipBase::NONE) { - if (attributes.contains("type")) { - if (attributes["type"] == "audio") - m_clipType = DocClipBase::AUDIO; - else if (attributes["type"] == "video") - m_clipType = DocClipBase::VIDEO; - else if (attributes["type"] == "av") - m_clipType = DocClipBase::AV; - else if (attributes["type"] == "playlist") - m_clipType = DocClipBase::PLAYLIST; - } else { - m_clipType = DocClipBase::AV; - } - } - slotSetToolTip(); - - if (m_element.isNull()) { - QDomDocument doc; - m_element = doc.createElement("producer"); - 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 (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(); + if (KdenliveSettings::audiothumbnails()) m_clip->slotRequestAudioThumbs(); + + m_clip->setProperties(attributes); + /* + m_metadata = metadata; + + if (m_metadata.contains("description")) { + setDescription (m_metadata["description"]); + } + else if (m_metadata.contains("comment")) { + setDescription (m_metadata["comment"]); + } + */ }