X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fprojectlist.cpp;h=82f6aa31ed7f021ca2f80708e864bb0ecb3406f9;hb=49bda928236824dd6b0b350ab0d1468b2af28f67;hp=08c1582fb37fc99a3098ddc12da4f37df4cf9525;hpb=626fe262b6f9589883be7ea1b910aacec3defc6e;p=kdenlive diff --git a/src/projectlist.cpp b/src/projectlist.cpp index 08c1582f..82f6aa31 100644 --- a/src/projectlist.cpp +++ b/src/projectlist.cpp @@ -23,13 +23,13 @@ #include #include #include +#include #include #include #include #include #include -#include #include #include @@ -38,436 +38,684 @@ #include "projectlist.h" #include "projectitem.h" +#include "addfoldercommand.h" #include "kdenlivesettings.h" +#include "slideshowclip.h" #include "ui_colorclip_ui.h" - -#include "definitions.h" #include "titlewidget.h" - -#include +#include "definitions.h" +#include "clipmanager.h" +#include "docclipbase.h" +#include "kdenlivedoc.h" +#include "renderer.h" +#include "kthumb.h" +#include "projectlistview.h" +#include "editclipcommand.h" +#include "editfoldercommand.h" ProjectList::ProjectList(QWidget *parent) - : QWidget(parent), m_render(NULL), m_fps(-1), m_commandStack(NULL) -{ - - QWidget *vbox = new QWidget; - listView = new ProjectListView(this);; - QVBoxLayout *layout = new QVBoxLayout; - m_clipIdCounter = 0; + : QWidget(parent), m_render(NULL), m_fps(-1), m_commandStack(NULL), m_selectedItem(NULL), m_infoQueue(QMap ()), m_thumbnailQueue(QList ()), m_refreshed(false) { + + QWidget *vbox = new QWidget; + listView = new ProjectListView(this);; + QVBoxLayout *layout = new QVBoxLayout; + layout->setContentsMargins(0, 0, 0, 0); + m_clipIdCounter = 0; + // setup toolbar + searchView = new KTreeWidgetSearchLine(this); + m_toolbar = new QToolBar("projectToolBar", this); + m_toolbar->addWidget(searchView); + + m_addButton = new QToolButton(m_toolbar); + m_addButton->setPopupMode(QToolButton::MenuButtonPopup); + m_toolbar->addWidget(m_addButton); + + m_deleteAction = m_toolbar->addAction(KIcon("edit-delete"), i18n("Delete Clip")); + connect(m_deleteAction, SIGNAL(triggered()), this, SLOT(slotRemoveClip())); + + m_editAction = m_toolbar->addAction(KIcon("document-properties"), i18n("Edit Clip")); + connect(m_editAction, SIGNAL(triggered()), this, SLOT(slotEditClip())); + + layout->addWidget(m_toolbar); + layout->addWidget(listView); + setLayout(layout); + //m_toolbar->setEnabled(false); + + searchView->setTreeWidget(listView); + + connect(listView, SIGNAL(itemSelectionChanged()), this, SLOT(slotClipSelected())); + connect(listView, SIGNAL(focusMonitor()), this, SLOT(slotClipSelected())); + connect(listView, SIGNAL(pauseMonitor()), this, SLOT(slotPauseMonitor())); + connect(listView, SIGNAL(requestMenu(const QPoint &, QTreeWidgetItem *)), this, SLOT(slotContextMenu(const QPoint &, QTreeWidgetItem *))); + connect(listView, SIGNAL(addClip()), this, SLOT(slotAddClip())); + connect(listView, SIGNAL(addClip(KUrl, const QString &)), this, SLOT(slotAddClip(KUrl, const QString &))); + connect(listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int))); + connect(listView, SIGNAL(showProperties(DocClipBase *)), this, SIGNAL(showClipProperties(DocClipBase *))); + + ItemDelegate *listViewDelegate = new ItemDelegate(listView); + listView->setItemDelegate(listViewDelegate); +} + +ProjectList::~ProjectList() { + delete m_menu; + delete m_toolbar; +} - // setup toolbar - searchView = new KTreeWidgetSearchLine (this); - m_toolbar = new QToolBar("projectToolBar", this); - m_toolbar->addWidget (searchView); +void ProjectList::setupMenu(QMenu *addMenu, QAction *defaultAction) { + m_addButton->setMenu(addMenu); + m_addButton->setDefaultAction(defaultAction); + m_menu = new QMenu(); + m_menu->addActions(addMenu->actions()); +} - QToolButton *addButton = new QToolButton( m_toolbar ); - QMenu *addMenu = new QMenu(this); - addButton->setMenu( addMenu ); - addButton->setPopupMode(QToolButton::MenuButtonPopup); - m_toolbar->addWidget (addButton); +void ProjectList::setupGeneratorMenu(QMenu *addMenu) { + if (!addMenu) return; + QMenu *menu = m_addButton->menu(); + menu->addMenu(addMenu); + m_addButton->setMenu(menu); + + m_menu->addMenu(addMenu); + if (addMenu->isEmpty()) addMenu->setEnabled(false); + m_menu->addAction(m_editAction); + m_menu->addAction(m_deleteAction); + m_menu->insertSeparator(m_deleteAction); +} - QAction *addClipButton = addMenu->addAction (KIcon("document-new"), i18n("Add Clip")); - connect(addClipButton, SIGNAL(triggered()), this, SLOT(slotAddClip())); - - QAction *addColorClip = addMenu->addAction (KIcon("document-new"), i18n("Add Color Clip")); - connect(addColorClip, SIGNAL(triggered()), this, SLOT(slotAddColorClip())); - - QAction *addTitleClip = addMenu->addAction (KIcon("document-new"), i18n("Add Title Clip")); - connect(addTitleClip, SIGNAL(triggered()), this, SLOT(slotAddTitleClip())); - - m_deleteAction = m_toolbar->addAction (KIcon("edit-delete"), i18n("Delete Clip")); - connect(m_deleteAction, SIGNAL(triggered()), this, SLOT(slotRemoveClip())); - - m_editAction = m_toolbar->addAction (KIcon("document-properties"), i18n("Edit Clip")); - connect(m_editAction, SIGNAL(triggered()), this, SLOT(slotEditClip())); - - QAction *addFolderButton = addMenu->addAction (KIcon("folder-new"), i18n("Create Folder")); - connect(addFolderButton, SIGNAL(triggered()), this, SLOT(slotAddFolder())); - - addButton->setDefaultAction( addClipButton ); - - layout->addWidget( m_toolbar ); - layout->addWidget( listView ); - setLayout( layout ); - //m_toolbar->setEnabled(false); - - searchView->setTreeWidget(listView); - listView->setColumnCount(3); - QStringList headers; - headers<setHeaderLabels(headers); - listView->sortByColumn(1, Qt::AscendingOrder); - - m_menu = new QMenu(); - m_menu->addAction(addClipButton); - m_menu->addAction(addColorClip); - m_menu->addAction(addTitleClip); - m_menu->addAction(m_editAction); - m_menu->addAction(m_deleteAction); - m_menu->addAction(addFolderButton); - m_menu->insertSeparator(m_deleteAction); - - connect(listView, SIGNAL(itemSelectionChanged()), this, SLOT(slotClipSelected())); - connect(listView, SIGNAL(requestMenu ( const QPoint &, QTreeWidgetItem * )), this, SLOT(slotContextMenu(const QPoint &, QTreeWidgetItem *))); - connect(listView, SIGNAL(addClip ()), this, SLOT(slotAddClip())); - connect(listView, SIGNAL(addClip (QUrl, const QString &)), this, SLOT(slotAddClip(QUrl, const QString &))); - connect(listView, SIGNAL (itemChanged ( QTreeWidgetItem *, int )), this, SLOT(slotUpdateItemDescription(QTreeWidgetItem *, int ))); - - m_listViewDelegate = new ItemDelegate(listView); - listView->setItemDelegate(m_listViewDelegate); - listView->setIconSize(QSize(60, 40)); - listView->setSortingEnabled (true); -} - -ProjectList::~ProjectList() -{ - delete m_menu; - delete m_toolbar; -} - -void ProjectList::setRenderer(Render *projectRender) -{ - m_render = projectRender; -} - -void ProjectList::slotClipSelected() -{ - ProjectItem *item = (ProjectItem*) listView->currentItem(); - if (item && !item->isGroup()) emit clipSelected(item->toXml()); -} - -void ProjectList::slotUpdateItemDescription( QTreeWidgetItem *item, int column) -{ - if (column != 2) return; - ProjectItem *clip = (ProjectItem*) item; - CLIPTYPE type = clip->clipType(); - if (type == AUDIO || type == VIDEO || type == AV || type == IMAGE || type == PLAYLIST) { - // Use Nepomuk system to store clip description - Nepomuk::Resource f( clip->clipUrl().path() ); - f.setDescription(item->text(2)); - kDebug()<<"NEPOMUK, SETTING CLIP: "<clipUrl().path()<<", TO TEXT: "<text(2); - } -} - -void ProjectList::slotEditClip() -{ - kDebug()<<"//////////////////////////////////////// DBL CLK"; -} - - -void ProjectList::slotEditClip(QTreeWidgetItem *item, int column) -{ - kDebug()<<"//////////////////////////////////////// DBL CLK"; -} - -void ProjectList::slotContextMenu( const QPoint &pos, QTreeWidgetItem *item ) -{ - bool enable = false; - if (item) { - QFrame *w = new QFrame; - w->setFrameShape(QFrame::StyledPanel); - w->setLineWidth(2); - w->setAutoFillBackground(true); - QHBoxLayout *layout = new QHBoxLayout; - layout->addWidget( new QLabel(i18n("Color:"))); - layout->addWidget( new KColorButton()); - layout->addWidget( new QLabel(i18n("Duration:"))); - layout->addWidget( new KRestrictedLine()); - w->setLayout( layout ); - m_listViewDelegate->extendItem(w, listView->currentIndex()); - enable = true; - } - m_editAction->setEnabled(enable); - m_deleteAction->setEnabled(enable); - - m_menu->popup(pos); -} - -void ProjectList::slotRemoveClip() -{ - - if (!m_commandStack) kDebug()<<"!!!!!!!!!!!!!!!!  NO CMD STK"; - if (!listView->currentItem()) return; - ProjectItem *item = ((ProjectItem *)listView->currentItem()); - if (item->numReferences() > 0) { - if (KMessageBox::questionYesNo(this, i18n("Delete clip %1 ?
This will also remove its %2 clips in timeline").arg(item->names().at(1)).arg(item->numReferences()), i18n("Delete Clip")) != KMessageBox::Yes) return; - } - m_doc->deleteProjectClip(item->clipId()); -} - -void ProjectList::selectItemById(const int clipId) -{ - ProjectItem *item = getItemById(clipId); - if (item) listView->setCurrentItem(item); -} - -void ProjectList::addClip(const QStringList &name, const QDomElement &elem, const int clipId, const KUrl &url, const QString &group, int parentId) -{ - kDebug()<<"///////// ADDING VCLIP=: "< groupList = listView->findItems(groupName, Qt::MatchExactly, 1); - if (groupList.isEmpty()) { - (void) new ProjectItem(listView, name, clipId); - } - return; - } - - if (parentId != -1) { - groupItem = getItemById(parentId); - } - else if (!groupName.isEmpty()) { - // Clip is in a group - QList groupList = listView->findItems(groupName, Qt::MatchExactly, 1); - - if (groupList.isEmpty()) { - QStringList itemName; - itemName<setText(2, annotation); - QString resource = url.path(); - if (resource.endsWith("westley") || resource.endsWith("kdenlive")) { - QString tmpfile; - QDomDocument doc; - if (KIO::NetAccess::download(url, tmpfile, 0)) { - QFile file(tmpfile); - if (file.open(QIODevice::ReadOnly)) { - doc.setContent(&file, false); - file.close(); - } - KIO::NetAccess::removeTempFile(tmpfile); - - QDomNodeList subProds = doc.elementsByTagName("producer"); - int ct = subProds.count(); - for (int i = 0; i < ct ; i++) - { - QDomElement e = subProds.item(i).toElement(); - if (!e.isNull()) { - addProducer(e, clipId); - } - } - } - } - - } - - if (elem.isNull() ) { - QDomDocument doc; - QDomElement element = doc.createElement("producer"); - element.setAttribute("resource", url.path()); - emit getFileProperties(element, clipId); - } - else emit getFileProperties(elem, clipId); - selectItemById(clipId); -} - -void ProjectList::slotDeleteClip( int clipId) -{ - ProjectItem *item = getItemById(clipId); - if (item) delete item; -} - -void ProjectList::slotAddFolder() -{ -/* - QString folderName = KInputDialog::getText(i18n("New Folder"), i18n("Enter new folder name: ")); - if (folderName.isEmpty()) return; - QStringList itemEntry; - itemEntry.append(QString::null); - itemEntry.append(folderName); - AddClipCommand *command = new AddClipCommand(this, itemEntry, QDomElement(), m_clipIdCounter++, KUrl(), folderName, true); - m_commandStack->push(command);*/ -} - -void ProjectList::slotAddClip(DocClipBase *clip) -{ - ProjectItem *item = new ProjectItem(listView, clip); - listView->setCurrentItem(item); - emit getFileProperties(clip->toXML(), clip->getId()); -} - -void ProjectList::slotUpdateClip(int id) -{ - ProjectItem *item = getItemById(id); - item->setData(1, UsageRole, QString::number(item->numReferences())); -} - -void ProjectList::slotAddClip(QUrl givenUrl, const QString &group) -{ - if (!m_commandStack) kDebug()<<"!!!!!!!!!!!!!!!!  NO CMD STK"; - KUrl::List list; - if (givenUrl.isEmpty()) - list = KFileDialog::getOpenUrls( KUrl(), "application/vnd.kde.kdenlive application/vnd.westley.scenelist application/flv application/vnd.rn-realmedia video/x-dv video/x-msvideo video/mpeg video/x-ms-wmv audio/mpeg audio/x-mp3 audio/x-wav application/ogg *.m2t *.dv video/mp4 video/quicktime image/gif image/jpeg image/png image/x-bmp image/svg+xml image/tiff image/x-xcf-gimp image/x-vnd.adobe.photoshop image/x-pcx image/x-exr"); - else list.append(givenUrl); - if (list.isEmpty()) return; - KUrl::List::Iterator it; - - for (it = list.begin(); it != list.end(); it++) { - m_doc->slotAddClipFile(*it, group); - } -} - -void ProjectList::slotAddColorClip() -{ - if (!m_commandStack) kDebug()<<"!!!!!!!!!!!!!!!!  NO CMD STK"; - QDialog *dia = new QDialog; - Ui::ColorClip_UI *dia_ui = new Ui::ColorClip_UI(); - dia_ui->setupUi(dia); - dia_ui->clip_name->setText(i18n("Color Clip")); - dia_ui->clip_duration->setText(KdenliveSettings::color_duration()); - if (dia->exec() == QDialog::Accepted) - { - QString color = dia_ui->clip_color->color().name(); - color = color.replace(0, 1, "0x") + "ff"; - m_doc->slotAddColorClipFile(dia_ui->clip_name->text(), color, dia_ui->clip_duration->text(), QString::null); - } - delete dia_ui; - delete dia; -} - -void ProjectList::slotAddTitleClip() -{ - - if (!m_commandStack) kDebug()<<"!!!!!!!!!!!!!!!!  NO CMD STK"; - //QDialog *dia = new QDialog; - - TitleWidget *dia_ui = new TitleWidget(); - //dia_ui->setupUi(dia); - //dia_ui->clip_name->setText(i18n("Title Clip")); - //dia_ui->clip_duration->setText(KdenliveSettings::color_duration()); - if (dia_ui->exec() == QDialog::Accepted) - { - //QString color = dia_ui->clip_color->color().name(); - //color = color.replace(0, 1, "0x") + "ff"; - //m_doc->slotAddColorClipFile(dia_ui->clip_name->text(), color, dia_ui->clip_duration->text(), QString::null); - } - delete dia_ui; - //delete dia; -} -void ProjectList::setDocument(KdenliveDoc *doc) -{ - m_fps = doc->fps(); - m_timecode = doc->timecode(); - m_commandStack = doc->commandStack(); - m_doc = doc; - QDomNodeList prods = doc->producersList(); - int ct = prods.count(); - kDebug()<<"//////////// SETTING DOC, FOUND CLIPS: "<clear(); - for (int i = 0; i < ct ; i++) - { - QDomElement e = prods.item(i).toElement(); - kDebug()<<"// IMPORT: "<topLevelItem(0); - if (first) listView->setCurrentItem(first); - m_toolbar->setEnabled(true); -} - -QDomElement ProjectList::producersList() -{ - QDomDocument doc; - QDomElement prods = doc.createElement("producerlist"); - doc.appendChild(prods); - kDebug()<<"//////////// PRO LIST BUILD PRDSLIST "; - QTreeWidgetItemIterator it(listView); - while (*it) { - if (!((ProjectItem *)(*it))->isGroup()) - prods.appendChild(doc.importNode(((ProjectItem *)(*it))->toXml(), true)); - ++it; - } - return prods; + +QByteArray ProjectList::headerInfo() { + return listView->header()->saveState(); +} + +void ProjectList::setHeaderInfo(const QByteArray &state) { + listView->header()->restoreState(state); } +void ProjectList::slotEditClip() { + ProjectItem *item = static_cast (listView->currentItem()); + if (item && !item->isGroup()) { + emit clipSelected(item->referencedClip()); + emit showClipProperties(item->referencedClip()); + } +} + + + +void ProjectList::setRenderer(Render *projectRender) { + m_render = projectRender; +} + +void ProjectList::slotClipSelected() { + if (listView->currentItem()) { + ProjectItem *clip = static_cast (listView->currentItem()); + if (!clip->isGroup()) { + m_selectedItem = clip; + emit clipSelected(clip->referencedClip()); + } + m_editAction->setEnabled(true); + m_deleteAction->setEnabled(true); + } else { + emit clipSelected(NULL); + m_editAction->setEnabled(false); + m_deleteAction->setEnabled(false); + } +} + +void ProjectList::slotPauseMonitor() { + if (m_render) m_render->pause(); +} + +void ProjectList::slotUpdateClipProperties(const QString &id, QMap properties) { + ProjectItem *item = getItemById(id); + if (item) { + slotUpdateClipProperties(item, properties); + if (properties.contains("colour") || properties.contains("resource") || properties.contains("xmldata")) slotRefreshClipThumbnail(item); + if (properties.contains("out")) item->changeDuration(properties.value("out").toInt()); + } +} + +void ProjectList::slotUpdateClipProperties(ProjectItem *clip, QMap properties) { + if (!clip) return; + if (!clip->isGroup()) clip->setProperties(properties); + if (properties.contains("name")) { + listView->blockSignals(true); + clip->setText(1, properties.value("name")); + listView->blockSignals(false); + emit clipNameChanged(clip->clipId(), properties.value("name")); + } + if (properties.contains("description")) { + CLIPTYPE type = clip->clipType(); + listView->blockSignals(true); + clip->setText(2, properties.value("description")); + listView->blockSignals(false); + if (KdenliveSettings::activate_nepomuk() && (type == AUDIO || type == VIDEO || type == AV || type == IMAGE || type == PLAYLIST)) { + // Use Nepomuk system to store clip description + Nepomuk::Resource f(clip->clipUrl().path()); + if (f.isValid()) { + f.setDescription(properties.value("description")); + } else { + KMessageBox::sorry(this, i18n("Cannot access Desktop Search info for %1.\nDisabling Desktop Search integration.", clip->clipUrl().path())); + KdenliveSettings::setActivate_nepomuk(false); + } + } + emit projectModified(); + } +} + +void ProjectList::slotItemEdited(QTreeWidgetItem *item, int column) { + ProjectItem *clip = static_cast (item); + if (column == 2) { + if (clip->referencedClip()) { + QMap oldprops; + QMap newprops; + oldprops["description"] = clip->referencedClip()->getProperty("description"); + newprops["description"] = item->text(2); + slotUpdateClipProperties(clip, newprops); + EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false); + m_commandStack->push(command); + } + } else if (column == 1) { + if (clip->isGroup()) { + editFolder(item->text(1), clip->groupName(), clip->clipId()); + clip->setGroupName(item->text(1)); + m_doc->clipManager()->addFolder(clip->clipId(), item->text(1)); + const int children = item->childCount(); + for (int i = 0; i < children; i++) { + ProjectItem *child = static_cast (item->child(i)); + child->setProperty("groupname", item->text(1)); + } + } else { + if (clip->referencedClip()) { + QMap oldprops; + QMap newprops; + oldprops["name"] = clip->referencedClip()->getProperty("name"); + newprops["name"] = item->text(1); + slotUpdateClipProperties(clip, newprops); + emit projectModified(); + EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false); + m_commandStack->push(command); + } + } + } +} + +void ProjectList::slotContextMenu(const QPoint &pos, QTreeWidgetItem *item) { + bool enable = false; + if (item) { + enable = true; + } + m_editAction->setEnabled(enable); + m_deleteAction->setEnabled(enable); + m_menu->popup(pos); +} + +void ProjectList::slotRemoveClip() { + if (!listView->currentItem()) return; + QList ids; + QMap folderids; + QList selected = listView->selectedItems(); + ProjectItem *item; + for (int i = 0; i < selected.count(); i++) { + item = static_cast (selected.at(i)); + if (item->isGroup()) folderids[item->groupName()] = item->clipId(); + else ids << item->clipId(); + if (item->numReferences() > 0) { + if (KMessageBox::questionYesNo(this, i18np("Delete clip %2 ?
This will also remove the clip in timeline", "Delete clip %2 ?
This will also remove its %1 clips in timeline", item->numReferences(), item->names().at(1)), i18n("Delete Clip")) != KMessageBox::Yes) return; + } else if (item->isGroup() && item->childCount() > 0) { + int children = item->childCount(); + if (KMessageBox::questionYesNo(this, i18n("Delete folder %2 ?
This will also remove the %1 clips in that folder", children, item->names().at(1)), i18n("Delete Folder")) != KMessageBox::Yes) return; + for (int i = 0; i < children; ++i) { + ProjectItem *child = static_cast (item->child(i)); + ids << child->clipId(); + } + } + } + if (!ids.isEmpty()) m_doc->deleteProjectClip(ids); + if (!folderids.isEmpty()) deleteProjectFolder(folderids); + if (listView->topLevelItemCount() == 0) { + m_editAction->setEnabled(false); + m_deleteAction->setEnabled(false); + } +} + +void ProjectList::selectItemById(const QString &clipId) { + ProjectItem *item = getItemById(clipId); + if (item) listView->setCurrentItem(item); +} + + +void ProjectList::slotDeleteClip(const QString &clipId) { + ProjectItem *item = getItemById(clipId); + QTreeWidgetItem *p = item->parent(); + if (p) { + kDebug() << "/////// DELETED CLIP HAS A PARENT... " << p->indexOfChild(item); + QTreeWidgetItem *clone = p->takeChild(p->indexOfChild(item)); + } else if (item) { + delete item; + } +} + + +void ProjectList::editFolder(const QString folderName, const QString oldfolderName, const QString &clipId) { + EditFolderCommand *command = new EditFolderCommand(this, folderName, oldfolderName, clipId, false); + m_commandStack->push(command); + m_doc->setModified(true); +} + +void ProjectList::slotAddFolder() { + AddFolderCommand *command = new AddFolderCommand(this, i18n("Folder"), QString::number(m_doc->clipManager()->getFreeFolderId()), true); + m_commandStack->push(command); +} + +void ProjectList::slotAddFolder(const QString foldername, const QString &clipId, bool remove, bool edit) { + if (remove) { + ProjectItem *item = getFolderItemById(clipId); + if (item) { + m_doc->clipManager()->deleteFolder(clipId); + delete item; + } + } else { + if (edit) { + ProjectItem *item = getFolderItemById(clipId); + QTreeWidgetItemIterator it(listView); + if (item) { + listView->blockSignals(true); + item->setGroupName(foldername); + listView->blockSignals(false); + m_doc->clipManager()->addFolder(clipId, foldername); + const int children = item->childCount(); + for (int i = 0; i < children; i++) { + ProjectItem *child = static_cast (item->child(i)); + child->setProperty("groupname", foldername); + } + } + } else { + QStringList text; + text << QString() << foldername; + listView->blockSignals(true); + (void) new ProjectItem(listView, text, clipId); + m_doc->clipManager()->addFolder(clipId, foldername); + listView->blockSignals(false); + } + } +} + + + +void ProjectList::deleteProjectFolder(QMap map) { + QMapIterator i(map); + QUndoCommand *delCommand = new QUndoCommand(); + delCommand->setText(i18n("Delete Folder")); + while (i.hasNext()) { + i.next(); + new AddFolderCommand(this, i.key(), i.value(), false, delCommand); + } + m_commandStack->push(delCommand); + m_doc->setModified(true); +} -void ProjectList::slotReplyGetFileProperties(int clipId, const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata) -{ - ProjectItem *item = getItemById(clipId); - if (item) { - item->setProperties(properties, metadata); - emit receivedClipDuration(clipId, item->clipMaxDuration()); - } +void ProjectList::slotAddClip(DocClipBase *clip, bool getProperties) { + if (getProperties) listView->setEnabled(false); + listView->blockSignals(true); + const QString parent = clip->getProperty("groupid"); + //kDebug() << "Adding clip with groupid: " << parent; + ProjectItem *item = NULL; + if (!parent.isEmpty()) { + ProjectItem *parentitem = getFolderItemById(parent); + if (!parentitem) { + QStringList text; + QString groupName = clip->getProperty("groupname"); + //kDebug() << "Adding clip to new group: " << groupName; + if (groupName.isEmpty()) groupName = i18n("Folder"); + text << QString() << groupName; + parentitem = new ProjectItem(listView, text, parent); + } else { + //kDebug() << "Adding clip to existing group: " << parentitem->groupName(); + } + if (parentitem) item = new ProjectItem(parentitem, clip); + } + if (item == NULL) item = new ProjectItem(listView, clip); + + KUrl url = clip->fileURL(); + if (!url.isEmpty() && KdenliveSettings::activate_nepomuk()) { + // if file has Nepomuk comment, use it + Nepomuk::Resource f(url.path()); + QString annotation; + if (f.isValid()) { + annotation = f.description(); + /* + Nepomuk::Tag tag("test"); + f.addTag(tag);*/ + } else { + KMessageBox::sorry(this, i18n("Cannot access Desktop Search info for %1.\nDisabling Desktop Search integration.", url.path())); + KdenliveSettings::setActivate_nepomuk(false); + } + if (!annotation.isEmpty()) item->setText(2, annotation); + } + listView->blockSignals(false); } +void ProjectList::requestClipInfo(const QDomElement xml, const QString id) { + kDebug() << " PRG LIST REQUEST CLP INFO: " << id; + m_infoQueue.insert(id, xml); + listView->setEnabled(false); + if (m_infoQueue.count() == 1) QTimer::singleShot(300, this, SLOT(slotProcessNextClipInQueue())); +} +void ProjectList::slotProcessNextClipInQueue() { + if (m_infoQueue.isEmpty()) { + listView->setEnabled(true); + return; + } + QMap::const_iterator i = m_infoQueue.constBegin(); + if (i != m_infoQueue.constEnd()) { + const QDomElement dom = i.value(); + const QString id = i.key(); + m_infoQueue.remove(i.key()); + emit getFileProperties(dom, id); + } + if (m_infoQueue.isEmpty()) listView->setEnabled(true); +} -void ProjectList::slotReplyGetImage(int clipId, int pos, const QPixmap &pix, int w, int h) -{ - ProjectItem *item = getItemById(clipId); - if (item) item->setIcon(0, pix); +void ProjectList::slotUpdateClip(const QString &id) { + ProjectItem *item = getItemById(id); + listView->blockSignals(true); + if (item) item->setData(1, UsageRole, QString::number(item->numReferences())); + listView->blockSignals(false); } -ProjectItem *ProjectList::getItemById(int id) -{ +void ProjectList::updateAllClips() { QTreeWidgetItemIterator it(listView); - while (*it) { - if (((ProjectItem *)(*it))->clipId() == id) - break; - ++it; - } - return ((ProjectItem *)(*it)); + while (*it) { + ProjectItem *item = static_cast (*it); + if (!item->isGroup()) { + if (item->referencedClip()->producer() == NULL) { + DocClipBase *clip = item->referencedClip(); + if (clip->clipType() == TEXT && !QFile::exists(clip->fileURL().path())) { + // regenerate text clip image if required + TitleWidget *dia_ui = new TitleWidget(KUrl(), QString(), m_render, this); + QDomDocument doc; + doc.setContent(clip->getProperty("xmldata")); + dia_ui->setXml(doc); + QImage pix = dia_ui->renderedPixmap(); + pix.save(clip->fileURL().path()); + delete dia_ui; + } + requestClipInfo(clip->toXML(), clip->getId()); + } else { + QString cachedPixmap = m_doc->projectFolder().path() + "/thumbs/" + item->getClipHash() + ".png"; + if (QFile::exists(cachedPixmap)) { + //kDebug()<<"// USING CACHED PIX: "<blockSignals(true); + item->setIcon(0, QPixmap(cachedPixmap)); + listView->blockSignals(false); + } else requestClipThumbnail(item->clipId()); + listView->blockSignals(true); + item->changeDuration(item->referencedClip()->producer()->get_playtime()); + listView->blockSignals(false); + } + listView->blockSignals(true); + item->setData(1, UsageRole, QString::number(item->numReferences())); + listView->blockSignals(false); + qApp->processEvents(); + } + ++it; + } + QTimer::singleShot(500, this, SLOT(slotCheckForEmptyQueue())); +} + +void ProjectList::slotAddClip(KUrl givenUrl, QString group) { + if (!m_commandStack) kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK"; + KUrl::List list; + if (givenUrl.isEmpty()) { + list = KFileDialog::getOpenUrls(KUrl("kfiledialog:///clipfolder"), "application/x-kdenlive video/x-flv application/vnd.rn-realmedia video/x-dv video/dv video/x-msvideo video/mpeg video/x-ms-wmv audio/mpeg audio/x-mp3 audio/x-wav application/ogg video/mp4 video/quicktime image/gif image/jpeg image/png image/x-bmp image/svg+xml image/tiff image/x-xcf-gimp image/x-vnd.adobe.photoshop image/x-pcx image/x-exr video/mlt-playlist audio/x-flac audio/mp4", this); + } else list.append(givenUrl); + if (list.isEmpty()) return; + + QString groupId = QString(); + if (group.isEmpty()) { + ProjectItem *item = static_cast (listView->currentItem()); + if (item && !item->isGroup()) { + while (item->parent()) { + item = static_cast (item->parent()); + if (item->isGroup()) break; + } + } + if (item && item->isGroup()) { + group = item->groupName(); + groupId = item->clipId(); + } + } + m_doc->slotAddClipList(list, group, groupId); +} + +void ProjectList::slotRemoveInvalidClip(const QString &id) { + ProjectItem *item = getItemById(id); + if (item) { + const QString path = item->referencedClip()->fileURL().path(); + if (!path.isEmpty()) KMessageBox::sorry(this, i18n("Clip %1
is invalid, will be removed from project.", path)); + QList ids; + ids << id; + m_doc->deleteProjectClip(ids); + } + if (!m_infoQueue.isEmpty()) QTimer::singleShot(300, this, SLOT(slotProcessNextClipInQueue())); +} + +void ProjectList::slotAddColorClip() { + if (!m_commandStack) kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK"; + QDialog *dia = new QDialog(this); + Ui::ColorClip_UI *dia_ui = new Ui::ColorClip_UI(); + dia_ui->setupUi(dia); + dia_ui->clip_name->setText(i18n("Color Clip")); + dia_ui->clip_duration->setText(KdenliveSettings::color_duration()); + if (dia->exec() == QDialog::Accepted) { + QString color = dia_ui->clip_color->color().name(); + color = color.replace(0, 1, "0x") + "ff"; + + QString group = QString(); + QString groupId = QString(); + ProjectItem *item = static_cast (listView->currentItem()); + if (item && !item->isGroup()) { + while (item->parent()) { + item = static_cast (item->parent()); + if (item->isGroup()) break; + } + } + if (item && item->isGroup()) { + group = item->groupName(); + groupId = item->clipId(); + } + + m_doc->slotAddColorClipFile(dia_ui->clip_name->text(), color, dia_ui->clip_duration->text(), group, groupId); + } + delete dia_ui; + delete dia; } -void ProjectList::addProducer(QDomElement producer, int parentId) -{ - if (!m_commandStack) kDebug()<<"!!!!!!!!!!!!!!!!  NO CMD STK"; - CLIPTYPE type = (CLIPTYPE) producer.attribute("type").toInt(); +void ProjectList::slotAddSlideshowClip() { + if (!m_commandStack) kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK"; + SlideshowClip *dia = new SlideshowClip(this); + + if (dia->exec() == QDialog::Accepted) { + + QString group = QString(); + QString groupId = QString(); + ProjectItem *item = static_cast (listView->currentItem()); + if (item && !item->isGroup()) { + while (item->parent()) { + item = static_cast (item->parent()); + if (item->isGroup()) break; + } + } + if (item && item->isGroup()) { + group = item->groupName(); + groupId = item->clipId(); + } + + m_doc->slotAddSlideshowClipFile(dia->clipName(), dia->selectedPath(), dia->imageCount(), dia->clipDuration(), dia->loop(), dia->fade(), dia->lumaDuration(), dia->lumaFile(), dia->softness(), group, groupId); + } + delete dia; +} + +void ProjectList::slotAddTitleClip() { + QString group = QString(); + QString groupId = QString(); + ProjectItem *item = static_cast (listView->currentItem()); + if (item && !item->isGroup()) { + while (item->parent()) { + item = static_cast (item->parent()); + if (item->isGroup()) break; + } + } + if (item && item->isGroup()) { + group = item->groupName(); + groupId = item->clipId(); + } + + m_doc->slotCreateTextClip(group, groupId); +} + +void ProjectList::setDocument(KdenliveDoc *doc) { + listView->blockSignals(true); + listView->clear(); + m_thumbnailQueue.clear(); + m_infoQueue.clear(); + m_refreshed = false; + QMap flist = doc->clipManager()->documentFolderList(); + QMapIterator f(flist); + while (f.hasNext()) { + f.next(); + (void) new ProjectItem(listView, QStringList() << QString() << f.value(), f.key()); + } + + QList list = doc->clipManager()->documentClipList(); + for (int i = 0; i < list.count(); i++) { + slotAddClip(list.at(i), false); + } + + m_fps = doc->fps(); + m_timecode = doc->timecode(); + m_commandStack = doc->commandStack(); + m_doc = doc; + QTreeWidgetItem *first = listView->topLevelItem(0); + if (first) listView->setCurrentItem(first); + listView->blockSignals(false); + m_toolbar->setEnabled(true); +} - /*QDomDocument doc; - QDomElement prods = doc.createElement("list"); +QDomElement ProjectList::producersList() { + QDomDocument doc; + QDomElement prods = doc.createElement("producerlist"); doc.appendChild(prods); - prods.appendChild(doc.importNode(producer, true));*/ - - - //kDebug()<<"////// ADDING PRODUCER:\n "<= m_clipIdCounter) m_clipIdCounter = id + 1; - else if (id == 0) id = m_clipIdCounter++; - - if (parentId != -1) { - // item is a westley playlist, adjust subproducers ids - id = (parentId + 1) * 10000 + id; - } - if (type == AUDIO || type == VIDEO || type == AV || type == IMAGE || type == PLAYLIST) - { - KUrl resource = KUrl(producer.attribute("resource")); - if (!resource.isEmpty()) { - QStringList itemEntry; - itemEntry.append(QString::null); - itemEntry.append(resource.fileName()); - addClip(itemEntry, producer, id, resource, groupName, parentId); - } - } - else if (type == COLOR) { - QString colour = producer.attribute("colour"); - QPixmap pix(60, 40); - colour = colour.replace(0, 2, "#"); - pix.fill(QColor(colour.left(7))); - QStringList itemEntry; - itemEntry.append(QString::null); - itemEntry.append(producer.attribute("name", i18n("Color clip"))); - addClip(itemEntry, producer, id, KUrl(), groupName, parentId); - } - + kDebug() << "//////////// PRO LIST BUILD PRDSLIST "; + QTreeWidgetItemIterator it(listView); + while (*it) { + if (!((ProjectItem *)(*it))->isGroup()) + prods.appendChild(doc.importNode(((ProjectItem *)(*it))->toXml(), true)); + ++it; + } + return prods; +} + +void ProjectList::slotCheckForEmptyQueue() { + if (!m_refreshed && m_thumbnailQueue.isEmpty() && m_infoQueue.isEmpty()) { + m_refreshed = true; + emit loadingIsOver(); + } else QTimer::singleShot(500, this, SLOT(slotCheckForEmptyQueue())); +} + +void ProjectList::requestClipThumbnail(const QString &id) { + m_thumbnailQueue.append(id); + if (m_thumbnailQueue.count() == 1) QTimer::singleShot(300, this, SLOT(slotProcessNextThumbnail())); +} + +void ProjectList::slotProcessNextThumbnail() { + if (m_thumbnailQueue.isEmpty()) { + return; + } + slotRefreshClipThumbnail(m_thumbnailQueue.takeFirst(), false); +} + +void ProjectList::slotRefreshClipThumbnail(const QString &clipId, bool update) { + ProjectItem *item = getItemById(clipId); + if (item) slotRefreshClipThumbnail(item, update); + else slotProcessNextThumbnail(); +} + +void ProjectList::slotRefreshClipThumbnail(ProjectItem *item, bool update) { + if (item) { + if (!item->referencedClip()) return; + int height = 50; + int width = (int)(height * m_render->dar()); + DocClipBase *clip = item->referencedClip(); + if (!clip) slotProcessNextThumbnail(); + QPixmap pix; + if (clip->clipType() == AUDIO) pix = KIcon("audio-x-generic").pixmap(QSize(width, height)); + else pix = item->referencedClip()->thumbProducer()->extractImage(item->referencedClip()->getClipThumbFrame(), width, height); + listView->blockSignals(true); + item->setIcon(0, pix); + listView->blockSignals(false); + m_doc->cachePixmap(item->getClipHash(), pix); + if (update) emit projectModified(); + if (!m_thumbnailQueue.isEmpty()) QTimer::singleShot(300, this, SLOT(slotProcessNextThumbnail())); + } +} + +void ProjectList::slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata) { + ProjectItem *item = getItemById(clipId); + if (item && producer) { + listView->blockSignals(true); + item->setProperties(properties, metadata); + item->referencedClip()->setProducer(producer); + emit receivedClipDuration(clipId, item->clipMaxDuration()); + listView->blockSignals(false); + } else kDebug() << "//////// COULD NOT FIND CLIP TO UPDATE PRPS..."; + if (!m_infoQueue.isEmpty()) QTimer::singleShot(300, this, SLOT(slotProcessNextClipInQueue())); + else listView->setEnabled(true); +} + +void ProjectList::slotReplyGetImage(const QString &clipId, int pos, const QPixmap &pix, int w, int h) { + ProjectItem *item = getItemById(clipId); + if (item) { + listView->blockSignals(true); + item->setIcon(0, pix); + m_doc->cachePixmap(item->getClipHash(), pix); + listView->blockSignals(false); + } +} + +ProjectItem *ProjectList::getItemById(const QString &id) { + ProjectItem *item; + QTreeWidgetItemIterator it(listView); + while (*it) { + item = static_cast(*it); + if (item->clipId() == id && item->clipType() != FOLDER) + return item; + ++it; + } + return NULL; +} + +ProjectItem *ProjectList::getFolderItemById(const QString &id) { + ProjectItem *item; + QTreeWidgetItemIterator it(listView); + while (*it) { + item = static_cast(*it); + if (item->clipId() == id && item->clipType() == FOLDER) + return item; + ++it; + } + return NULL; +} + +void ProjectList::slotSelectClip(const QString &ix) { + ProjectItem *p = getItemById(ix); + if (p) { + listView->setCurrentItem(p); + listView->scrollToItem(p); + m_editAction->setEnabled(true); + m_deleteAction->setEnabled(true); + } } #include "projectlist.moc"