]> git.sesse.net Git - kdenlive/blob - src/projectlist.cpp
Fix template title clips & some other title issues
[kdenlive] / src / projectlist.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20 #include "projectlist.h"
21 #include "projectitem.h"
22 #include "addfoldercommand.h"
23 #include "kdenlivesettings.h"
24 #include "slideshowclip.h"
25 #include "ui_colorclip_ui.h"
26 #include "titlewidget.h"
27 #include "definitions.h"
28 #include "clipmanager.h"
29 #include "docclipbase.h"
30 #include "kdenlivedoc.h"
31 #include "renderer.h"
32 #include "kthumb.h"
33 #include "projectlistview.h"
34 #include "editclipcommand.h"
35 #include "editfoldercommand.h"
36 #include "ui_templateclip_ui.h"
37
38 #include <KDebug>
39 #include <KAction>
40 #include <KLocale>
41 #include <KFileDialog>
42 #include <KInputDialog>
43 #include <KMessageBox>
44
45 #include <nepomuk/global.h>
46 #include <nepomuk/resourcemanager.h>
47 //#include <nepomuk/tag.h>
48
49 #include <QMouseEvent>
50 #include <QStylePainter>
51 #include <QPixmap>
52 #include <QIcon>
53 #include <QMenu>
54 #include <QProcess>
55 #include <QHeaderView>
56
57 ProjectList::ProjectList(QWidget *parent) :
58         QWidget(parent),
59         m_render(NULL),
60         m_fps(-1),
61         m_commandStack(NULL),
62         m_editAction(NULL),
63         m_deleteAction(NULL),
64         m_openAction(NULL),
65         m_reloadAction(NULL),
66         m_transcodeAction(NULL),
67         m_selectedItem(NULL),
68         m_refreshed(false),
69         m_infoQueue(),
70         m_thumbnailQueue()
71 {
72
73     m_listView = new ProjectListView(this);;
74     QVBoxLayout *layout = new QVBoxLayout;
75     layout->setContentsMargins(0, 0, 0, 0);
76
77     // setup toolbar
78     KTreeWidgetSearchLine *searchView = new KTreeWidgetSearchLine(this);
79     m_toolbar = new QToolBar("projectToolBar", this);
80     m_toolbar->addWidget(searchView);
81     searchView->setTreeWidget(m_listView);
82
83     m_addButton = new QToolButton(m_toolbar);
84     m_addButton->setPopupMode(QToolButton::MenuButtonPopup);
85     m_toolbar->addWidget(m_addButton);
86
87     layout->addWidget(m_toolbar);
88     layout->addWidget(m_listView);
89     setLayout(layout);
90
91     m_queueTimer.setInterval(100);
92     connect(&m_queueTimer, SIGNAL(timeout()), this, SLOT(slotProcessNextClipInQueue()));
93     m_queueTimer.setSingleShot(true);
94
95
96
97     connect(m_listView, SIGNAL(itemSelectionChanged()), this, SLOT(slotClipSelected()));
98     connect(m_listView, SIGNAL(focusMonitor()), this, SLOT(slotClipSelected()));
99     connect(m_listView, SIGNAL(pauseMonitor()), this, SLOT(slotPauseMonitor()));
100     connect(m_listView, SIGNAL(requestMenu(const QPoint &, QTreeWidgetItem *)), this, SLOT(slotContextMenu(const QPoint &, QTreeWidgetItem *)));
101     connect(m_listView, SIGNAL(addClip()), this, SLOT(slotAddClip()));
102     connect(m_listView, SIGNAL(addClip(const QList <QUrl>, const QString &, const QString &)), this, SLOT(slotAddClip(const QList <QUrl>, const QString &, const QString &)));
103     connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));
104     connect(m_listView, SIGNAL(showProperties(DocClipBase *)), this, SIGNAL(showClipProperties(DocClipBase *)));
105
106     m_listViewDelegate = new ItemDelegate(m_listView);
107     m_listView->setItemDelegate(m_listViewDelegate);
108
109     if (KdenliveSettings::activate_nepomuk()) {
110         Nepomuk::ResourceManager::instance()->init();
111         if (!Nepomuk::ResourceManager::instance()->initialized()) {
112             kDebug() << "Cannot communicate with Nepomuk, DISABLING it";
113             KdenliveSettings::setActivate_nepomuk(false);
114         }
115     }
116 }
117
118 ProjectList::~ProjectList()
119 {
120     delete m_menu;
121     delete m_toolbar;
122     m_listView->blockSignals(true);
123     m_listView->clear();
124     delete m_listViewDelegate;
125 }
126
127 void ProjectList::setupMenu(QMenu *addMenu, QAction *defaultAction)
128 {
129     QList <QAction *> actions = addMenu->actions();
130     for (int i = 0; i < actions.count(); i++) {
131         if (actions.at(i)->data().toString() == "clip_properties") {
132             m_editAction = actions.at(i);
133             m_toolbar->addAction(m_editAction);
134             actions.removeAt(i);
135             i--;
136         } else if (actions.at(i)->data().toString() == "delete_clip") {
137             m_deleteAction = actions.at(i);
138             m_toolbar->addAction(m_deleteAction);
139             actions.removeAt(i);
140             i--;
141         } else if (actions.at(i)->data().toString() == "edit_clip") {
142             m_openAction = actions.at(i);
143             actions.removeAt(i);
144             i--;
145         } else if (actions.at(i)->data().toString() == "reload_clip") {
146             m_reloadAction = actions.at(i);
147             actions.removeAt(i);
148             i--;
149         }
150     }
151
152     QMenu *m = new QMenu();
153     m->addActions(actions);
154     m_addButton->setMenu(m);
155     m_addButton->setDefaultAction(defaultAction);
156     m_menu = new QMenu();
157     m_menu->addActions(addMenu->actions());
158 }
159
160 void ProjectList::setupGeneratorMenu(QMenu *addMenu, QMenu *transcodeMenu)
161 {
162     if (!addMenu) return;
163     QMenu *menu = m_addButton->menu();
164     menu->addMenu(addMenu);
165     m_addButton->setMenu(menu);
166
167     m_menu->addMenu(addMenu);
168     if (addMenu->isEmpty()) addMenu->setEnabled(false);
169     m_menu->addMenu(transcodeMenu);
170     if (transcodeMenu->isEmpty()) transcodeMenu->setEnabled(false);
171     m_transcodeAction = transcodeMenu;
172     m_menu->addAction(m_reloadAction);
173     m_menu->addAction(m_editAction);
174     m_menu->addAction(m_openAction);
175     m_menu->addAction(m_deleteAction);
176     m_menu->insertSeparator(m_deleteAction);
177 }
178
179
180 QByteArray ProjectList::headerInfo() const
181 {
182     return m_listView->header()->saveState();
183 }
184
185 void ProjectList::setHeaderInfo(const QByteArray &state)
186 {
187     m_listView->header()->restoreState(state);
188 }
189
190 void ProjectList::slotEditClip()
191 {
192     ProjectItem *item = static_cast <ProjectItem*>(m_listView->currentItem());
193     if (!(item->flags() & Qt::ItemIsDragEnabled)) return;
194     if (item && !item->isGroup()) {
195         emit clipSelected(item->referencedClip());
196         emit showClipProperties(item->referencedClip());
197     }
198 }
199
200 void ProjectList::slotOpenClip()
201 {
202     ProjectItem *item = static_cast <ProjectItem*>(m_listView->currentItem());
203     if (item && !item->isGroup()) {
204         if (item->clipType() == IMAGE) {
205             if (KdenliveSettings::defaultimageapp().isEmpty()) KMessageBox::sorry(this, i18n("Please set a default application to open images in the Settings dialog"));
206             else QProcess::startDetached(KdenliveSettings::defaultimageapp(), QStringList() << item->clipUrl().path());
207         }
208         if (item->clipType() == AUDIO) {
209             if (KdenliveSettings::defaultaudioapp().isEmpty()) KMessageBox::sorry(this, i18n("Please set a default application to open audio files in the Settings dialog"));
210             else QProcess::startDetached(KdenliveSettings::defaultaudioapp(), QStringList() << item->clipUrl().path());
211         }
212     }
213 }
214
215 void ProjectList::slotReloadClip(const QString &id)
216 {
217     QList<QTreeWidgetItem *> selected;
218     if (id.isEmpty()) selected = m_listView->selectedItems();
219     else selected.append(getItemById(id));
220     ProjectItem *item;
221     for (int i = 0; i < selected.count(); i++) {
222         item = static_cast <ProjectItem *>(selected.at(i));
223         if (item && !item->isGroup()) {
224             if (item->clipType() == IMAGE) {
225                 item->referencedClip()->producer()->set("force_reload", 1);
226             } else if (item->clipType() == TEXT) {
227                 if (!item->referencedClip()->getProperty("xmltemplate").isEmpty()) regenerateTemplate(item);
228             }
229             //requestClipInfo(item->toXml(), item->clipId(), true);
230             // Clear the file_hash value, which will cause a complete reload of the clip
231             emit getFileProperties(item->toXml(), item->clipId(), true);
232         }
233     }
234 }
235
236 void ProjectList::setRenderer(Render *projectRender)
237 {
238     m_render = projectRender;
239     m_listView->setIconSize(QSize(40 * m_render->dar(), 40));
240 }
241
242 void ProjectList::slotClipSelected()
243 {
244     if (m_listView->currentItem()) {
245         ProjectItem *clip = static_cast <ProjectItem*>(m_listView->currentItem());
246         if (!clip->isGroup()) {
247             m_selectedItem = clip;
248             emit clipSelected(clip->referencedClip());
249         }
250         m_editAction->setEnabled(true);
251         m_deleteAction->setEnabled(true);
252         m_reloadAction->setEnabled(true);
253         m_transcodeAction->setEnabled(true);
254         if (clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
255             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
256             m_openAction->setEnabled(true);
257         } else if (clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
258             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
259             m_openAction->setEnabled(true);
260         } else m_openAction->setEnabled(false);
261     } else {
262         emit clipSelected(NULL);
263         m_editAction->setEnabled(false);
264         m_deleteAction->setEnabled(false);
265         m_openAction->setEnabled(false);
266         m_reloadAction->setEnabled(false);
267         m_transcodeAction->setEnabled(false);
268     }
269 }
270
271 void ProjectList::slotPauseMonitor()
272 {
273     if (m_render) m_render->pause();
274 }
275
276 void ProjectList::slotUpdateClipProperties(const QString &id, QMap <QString, QString> properties)
277 {
278     ProjectItem *item = getItemById(id);
279     if (item) {
280         slotUpdateClipProperties(item, properties);
281         if (properties.contains("colour") || properties.contains("resource") || properties.contains("xmldata") || properties.contains("force_aspect_ratio") || properties.contains("templatetext")) {
282             slotRefreshClipThumbnail(item);
283             emit refreshClip();
284         }
285         if (properties.contains("out")) item->changeDuration(properties.value("out").toInt());
286     }
287 }
288
289 void ProjectList::slotUpdateClipProperties(ProjectItem *clip, QMap <QString, QString> properties)
290 {
291     if (!clip) return;
292     if (!clip->isGroup()) clip->setProperties(properties);
293     if (properties.contains("name")) {
294         m_listView->blockSignals(true);
295         clip->setText(1, properties.value("name"));
296         m_listView->blockSignals(false);
297         emit clipNameChanged(clip->clipId(), properties.value("name"));
298     }
299     if (properties.contains("description")) {
300         CLIPTYPE type = clip->clipType();
301         m_listView->blockSignals(true);
302         clip->setText(2, properties.value("description"));
303         m_listView->blockSignals(false);
304         if (KdenliveSettings::activate_nepomuk() && (type == AUDIO || type == VIDEO || type == AV || type == IMAGE || type == PLAYLIST)) {
305             // Use Nepomuk system to store clip description
306             Nepomuk::Resource f(clip->clipUrl().path());
307             f.setDescription(properties.value("description"));
308         }
309         emit projectModified();
310     }
311 }
312
313 void ProjectList::slotItemEdited(QTreeWidgetItem *item, int column)
314 {
315     ProjectItem *clip = static_cast <ProjectItem*>(item);
316     if (column == 2) {
317         if (clip->referencedClip()) {
318             QMap <QString, QString> oldprops;
319             QMap <QString, QString> newprops;
320             oldprops["description"] = clip->referencedClip()->getProperty("description");
321             newprops["description"] = item->text(2);
322
323             if (clip->clipType() == TEXT) {
324                 // This is a text template clip, update the image
325                 /*oldprops.insert("xmldata", clip->referencedClip()->getProperty("xmldata"));
326                 newprops.insert("xmldata", generateTemplateXml(clip->referencedClip()->getProperty("xmltemplate"), item->text(2)).toString());*/
327                 oldprops.insert("templatetext", clip->referencedClip()->getProperty("templatetext"));
328                 newprops.insert("templatetext", item->text(2));
329             }
330
331             slotUpdateClipProperties(clip->clipId(), newprops);
332             EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false);
333             m_commandStack->push(command);
334         }
335     } else if (column == 1) {
336         if (clip->isGroup()) {
337             editFolder(item->text(1), clip->groupName(), clip->clipId());
338             clip->setGroupName(item->text(1));
339             m_doc->clipManager()->addFolder(clip->clipId(), item->text(1));
340             const int children = item->childCount();
341             for (int i = 0; i < children; i++) {
342                 ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
343                 child->setProperty("groupname", item->text(1));
344             }
345         } else {
346             if (clip->referencedClip()) {
347                 QMap <QString, QString> oldprops;
348                 QMap <QString, QString> newprops;
349                 oldprops["name"] = clip->referencedClip()->getProperty("name");
350                 newprops["name"] = item->text(1);
351                 slotUpdateClipProperties(clip, newprops);
352                 emit projectModified();
353                 EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false);
354                 m_commandStack->push(command);
355             }
356         }
357     }
358 }
359
360 void ProjectList::slotContextMenu(const QPoint &pos, QTreeWidgetItem *item)
361 {
362     bool enable = false;
363     if (item) {
364         enable = true;
365     }
366     m_editAction->setEnabled(enable);
367     m_deleteAction->setEnabled(enable);
368     m_reloadAction->setEnabled(enable);
369     m_transcodeAction->setEnabled(enable);
370     if (enable) {
371         ProjectItem *clip = static_cast <ProjectItem*>(item);
372         if (clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
373             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
374             m_openAction->setEnabled(true);
375         } else if (clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
376             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
377             m_openAction->setEnabled(true);
378         } else m_openAction->setEnabled(false);
379     } else m_openAction->setEnabled(false);
380     m_menu->popup(pos);
381 }
382
383 void ProjectList::slotRemoveClip()
384 {
385     if (!m_listView->currentItem()) return;
386     QList <QString> ids;
387     QMap <QString, QString> folderids;
388     QList<QTreeWidgetItem *> selected = m_listView->selectedItems();
389     ProjectItem *item;
390     for (int i = 0; i < selected.count(); i++) {
391         item = static_cast <ProjectItem *>(selected.at(i));
392         if (item->isGroup()) folderids[item->groupName()] = item->clipId();
393         else ids << item->clipId();
394         if (item->numReferences() > 0) {
395             if (KMessageBox::questionYesNo(this, i18np("Delete clip <b>%2</b>?<br>This will also remove the clip in timeline", "Delete clip <b>%2</b>?<br>This will also remove its %1 clips in timeline", item->numReferences(), item->names().at(1)), i18n("Delete Clip")) != KMessageBox::Yes) return;
396         } else if (item->isGroup() && item->childCount() > 0) {
397             int children = item->childCount();
398             if (KMessageBox::questionYesNo(this, i18n("Delete folder <b>%2</b>?<br>This will also remove the %1 clips in that folder", children, item->names().at(1)), i18n("Delete Folder")) != KMessageBox::Yes) return;
399             for (int i = 0; i < children; ++i) {
400                 ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
401                 ids << child->clipId();
402             }
403         }
404     }
405     if (!ids.isEmpty()) m_doc->deleteProjectClip(ids);
406     if (!folderids.isEmpty()) deleteProjectFolder(folderids);
407     if (m_listView->topLevelItemCount() == 0) {
408         m_editAction->setEnabled(false);
409         m_deleteAction->setEnabled(false);
410         m_openAction->setEnabled(false);
411         m_reloadAction->setEnabled(false);
412         m_transcodeAction->setEnabled(false);
413     }
414 }
415
416 void ProjectList::selectItemById(const QString &clipId)
417 {
418     ProjectItem *item = getItemById(clipId);
419     if (item) m_listView->setCurrentItem(item);
420 }
421
422
423 void ProjectList::slotDeleteClip(const QString &clipId)
424 {
425     ProjectItem *item = getItemById(clipId);
426     if (!item) {
427         kDebug() << "/// Cannot find clip to delete";
428         return;
429     }
430     m_listView->blockSignals(true);
431     delete item;
432     m_doc->clipManager()->deleteClip(clipId);
433     m_listView->blockSignals(false);
434     slotClipSelected();
435 }
436
437
438 void ProjectList::editFolder(const QString folderName, const QString oldfolderName, const QString &clipId)
439 {
440     EditFolderCommand *command = new EditFolderCommand(this, folderName, oldfolderName, clipId, false);
441     m_commandStack->push(command);
442     m_doc->setModified(true);
443 }
444
445 void ProjectList::slotAddFolder()
446 {
447     AddFolderCommand *command = new AddFolderCommand(this, i18n("Folder"), QString::number(m_doc->clipManager()->getFreeFolderId()), true);
448     m_commandStack->push(command);
449 }
450
451 void ProjectList::slotAddFolder(const QString foldername, const QString &clipId, bool remove, bool edit)
452 {
453     if (remove) {
454         ProjectItem *item = getFolderItemById(clipId);
455         if (item) {
456             m_doc->clipManager()->deleteFolder(clipId);
457             delete item;
458         }
459     } else {
460         if (edit) {
461             ProjectItem *item = getFolderItemById(clipId);
462             if (item) {
463                 m_listView->blockSignals(true);
464                 item->setGroupName(foldername);
465                 m_listView->blockSignals(false);
466                 m_doc->clipManager()->addFolder(clipId, foldername);
467                 const int children = item->childCount();
468                 for (int i = 0; i < children; i++) {
469                     ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
470                     child->setProperty("groupname", foldername);
471                 }
472             }
473         } else {
474             QStringList text;
475             text << QString() << foldername;
476             m_listView->blockSignals(true);
477             m_listView->setCurrentItem(new ProjectItem(m_listView, text, clipId));
478             m_doc->clipManager()->addFolder(clipId, foldername);
479             m_listView->blockSignals(false);
480         }
481     }
482 }
483
484
485
486 void ProjectList::deleteProjectFolder(QMap <QString, QString> map)
487 {
488     QMapIterator<QString, QString> i(map);
489     QUndoCommand *delCommand = new QUndoCommand();
490     delCommand->setText(i18n("Delete Folder"));
491     while (i.hasNext()) {
492         i.next();
493         new AddFolderCommand(this, i.key(), i.value(), false, delCommand);
494     }
495     m_commandStack->push(delCommand);
496     m_doc->setModified(true);
497 }
498
499 void ProjectList::slotAddClip(DocClipBase *clip, bool getProperties)
500 {
501     if (getProperties) {
502         m_listView->setEnabled(false);
503         m_listView->blockSignals(true);
504     }
505     const QString parent = clip->getProperty("groupid");
506     kDebug() << "Adding clip with groupid: " << parent;
507     ProjectItem *item = NULL;
508     if (!parent.isEmpty()) {
509         ProjectItem *parentitem = getFolderItemById(parent);
510         if (!parentitem) {
511             QStringList text;
512             QString groupName = clip->getProperty("groupname");
513             //kDebug() << "Adding clip to new group: " << groupName;
514             if (groupName.isEmpty()) groupName = i18n("Folder");
515             text << QString() << groupName;
516             parentitem = new ProjectItem(m_listView, text, parent);
517         } else {
518             //kDebug() << "Adding clip to existing group: " << parentitem->groupName();
519         }
520         if (parentitem) item = new ProjectItem(parentitem, clip);
521     }
522     if (item == NULL) item = new ProjectItem(m_listView, clip);
523     KUrl url = clip->fileURL();
524
525     if (getProperties == false && !clip->getClipHash().isEmpty()) {
526         QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + ".png";
527         if (QFile::exists(cachedPixmap)) {
528             item->setIcon(0, QPixmap(cachedPixmap));
529         }
530     }
531
532     if (!url.isEmpty() && KdenliveSettings::activate_nepomuk()) {
533         // if file has Nepomuk comment, use it
534         Nepomuk::Resource f(url.path());
535         QString annotation = f.description();
536         if (!annotation.isEmpty()) item->setText(2, annotation);
537         item->setText(3, QString::number(f.rating()));
538     }
539     if (getProperties) m_listView->blockSignals(false);
540 }
541
542 void ProjectList::slotResetProjectList()
543 {
544     m_listView->clear();
545     emit clipSelected(NULL);
546     m_thumbnailQueue.clear();
547     m_infoQueue.clear();
548     m_refreshed = false;
549 }
550
551 void ProjectList::requestClipInfo(const QDomElement xml, const QString id)
552 {
553     m_infoQueue.insert(id, xml);
554     m_listView->setEnabled(false);
555     if (!m_queueTimer.isActive()) m_queueTimer.start();
556     //if (m_infoQueue.count() == 1 || ) QTimer::singleShot(300, this, SLOT(slotProcessNextClipInQueue()));
557 }
558
559 void ProjectList::slotProcessNextClipInQueue()
560 {
561     if (m_infoQueue.isEmpty()) {
562         slotProcessNextThumbnail();
563         return;
564     }
565
566     QMap<QString, QDomElement>::const_iterator j = m_infoQueue.constBegin();
567     if (j != m_infoQueue.constEnd()) {
568         const QDomElement dom = j.value();
569         const QString id = j.key();
570         m_infoQueue.remove(j.key());
571         emit getFileProperties(dom, id, false);
572     }
573     if (!m_infoQueue.isEmpty()) m_queueTimer.start();
574 }
575
576 void ProjectList::slotUpdateClip(const QString &id)
577 {
578     ProjectItem *item = getItemById(id);
579     m_listView->blockSignals(true);
580     if (item) item->setData(1, UsageRole, QString::number(item->numReferences()));
581     m_listView->blockSignals(false);
582 }
583
584 void ProjectList::updateAllClips()
585 {
586     m_listView->setSortingEnabled(false);
587
588     QTreeWidgetItemIterator it(m_listView);
589     DocClipBase *clip;
590     ProjectItem *item;
591     m_listView->blockSignals(true);
592     while (*it) {
593         item = static_cast <ProjectItem *>(*it);
594         if (!item->isGroup()) {
595             clip = item->referencedClip();
596             if (item->referencedClip()->producer() == NULL) {
597                 if (clip->isPlaceHolder() == false) {
598                     requestClipInfo(clip->toXML(), clip->getId());
599                 } else item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
600             } else {
601                 if (item->icon(0).isNull()) {
602                     requestClipThumbnail(clip->getId());
603                 }
604                 if (item->data(1, DurationRole).toString().isEmpty()) {
605                     item->changeDuration(item->referencedClip()->producer()->get_playtime());
606                 }
607             }
608             item->setData(1, UsageRole, QString::number(item->numReferences()));
609             qApp->processEvents();
610         }
611         ++it;
612     }
613
614     m_listView->blockSignals(false);
615     m_listView->setSortingEnabled(true);
616     if (m_infoQueue.isEmpty()) slotProcessNextThumbnail();
617 }
618
619 void ProjectList::slotAddClip(const QList <QUrl> givenList, const QString &groupName, const QString &groupId)
620 {
621     if (!m_commandStack) {
622         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
623     }
624     KUrl::List list;
625     if (givenList.isEmpty()) {
626         // Build list of mime types
627         QStringList mimeTypes = QStringList() << "application/x-kdenlive" << "application/x-kdenlivetitle" << "video/x-flv" << "application/vnd.rn-realmedia" << "video/x-dv" << "video/dv" << "video/x-msvideo" << "video/x-matroska" << "video/mlt-playlist" << "video/mpeg" << "video/ogg" << "video/x-ms-wmv" << "audio/x-flac" << "audio/x-matroska" << "audio/mp4" << "audio/mpeg" << "audio/x-mp3" << "audio/ogg" << "audio/x-wav" << "application/ogg" << "video/mp4" << "video/quicktime" << "image/gif" << "image/jpeg" << "image/png" << "image/x-tga" << "image/x-bmp" << "image/svg+xml" << "image/tiff" << "image/x-xcf-gimp" << "image/x-vnd.adobe.photoshop" << "image/x-pcx" << "image/x-exr";
628
629         QString allExtensions;
630         foreach(const QString& mimeType, mimeTypes) {
631             KMimeType::Ptr mime(KMimeType::mimeType(mimeType));
632             if (mime) {
633                 allExtensions.append(mime->patterns().join(" "));
634                 allExtensions.append(' ');
635             }
636         }
637         const QString dialogFilter = allExtensions.simplified() + ' ' + QLatin1Char('|') + i18n("All Supported Files") + "\n* " + QLatin1Char('|') + i18n("All Files");
638         list = KFileDialog::getOpenUrls(KUrl("kfiledialog:///clipfolder"), dialogFilter, this);
639
640     } else {
641         for (int i = 0; i < givenList.count(); i++)
642             list << givenList.at(i);
643     }
644     if (list.isEmpty()) return;
645
646     if (givenList.isEmpty()) {
647         QStringList groupInfo = getGroup();
648         m_doc->slotAddClipList(list, groupInfo.at(0), groupInfo.at(1));
649     } else m_doc->slotAddClipList(list, groupName, groupId);
650 }
651
652 void ProjectList::slotRemoveInvalidClip(const QString &id, bool replace)
653 {
654     ProjectItem *item = getItemById(id);
655     QTimer::singleShot(300, this, SLOT(slotProcessNextClipInQueue()));
656     if (item) {
657         const QString path = item->referencedClip()->fileURL().path();
658         if (!path.isEmpty()) {
659             if (replace) KMessageBox::sorry(this, i18n("Clip <b>%1</b><br>is invalid, will be removed from project.", path));
660             else {
661                 if (KMessageBox::questionYesNo(this, i18n("Clip <b>%1</b><br>is missing or invalid. Remove it from project?", path), i18n("Invalid clip")) == KMessageBox::Yes) replace = true;
662             }
663         }
664         QList <QString> ids;
665         ids << id;
666         if (replace) m_doc->deleteProjectClip(ids);
667     }
668 }
669
670 void ProjectList::slotAddColorClip()
671 {
672     if (!m_commandStack) {
673         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
674     }
675     QDialog *dia = new QDialog(this);
676     Ui::ColorClip_UI dia_ui;
677     dia_ui.setupUi(dia);
678     dia_ui.clip_name->setText(i18n("Color Clip"));
679     dia_ui.clip_duration->setText(KdenliveSettings::color_duration());
680     if (dia->exec() == QDialog::Accepted) {
681         QString color = dia_ui.clip_color->color().name();
682         color = color.replace(0, 1, "0x") + "ff";
683         QStringList groupInfo = getGroup();
684         m_doc->slotCreateColorClip(dia_ui.clip_name->text(), color, dia_ui.clip_duration->text(), groupInfo.at(0), groupInfo.at(1));
685     }
686     delete dia;
687 }
688
689
690 void ProjectList::slotAddSlideshowClip()
691 {
692     if (!m_commandStack) {
693         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
694     }
695     SlideshowClip *dia = new SlideshowClip(m_timecode, this);
696
697     if (dia->exec() == QDialog::Accepted) {
698         QStringList groupInfo = getGroup();
699         m_doc->slotCreateSlideshowClipFile(dia->clipName(), dia->selectedPath(), dia->imageCount(), dia->clipDuration(), dia->loop(), dia->fade(), dia->lumaDuration(), dia->lumaFile(), dia->softness(), groupInfo.at(0), groupInfo.at(1));
700     }
701     delete dia;
702 }
703
704 void ProjectList::slotAddTitleClip()
705 {
706     QStringList groupInfo = getGroup();
707     m_doc->slotCreateTextClip(groupInfo.at(0), groupInfo.at(1));
708 }
709
710 void ProjectList::slotAddTitleTemplateClip()
711 {
712     QStringList groupInfo = getGroup();
713     if (!m_commandStack) {
714         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
715     }
716
717     // Get the list of existing templates
718     QStringList filter;
719     filter << "*.kdenlivetitle";
720     const QString path = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
721     QStringList templateFiles = QDir(path).entryList(filter, QDir::Files);
722
723     QDialog *dia = new QDialog(this);
724     Ui::TemplateClip_UI dia_ui;
725     dia_ui.setupUi(dia);
726     for (int i = 0; i < templateFiles.size(); ++i) {
727         dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), path + templateFiles.at(i));
728     }
729     dia_ui.template_list->fileDialog()->setFilter("*.kdenlivetitle");
730     //warning: setting base directory doesn't work??
731     KUrl startDir(path);
732     dia_ui.template_list->fileDialog()->setUrl(startDir);
733     dia_ui.text_box->setHidden(true);
734     if (dia->exec() == QDialog::Accepted) {
735         QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
736         if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
737         // Create a cloned template clip
738         m_doc->slotCreateTextTemplateClip(groupInfo.at(0), groupInfo.at(1), KUrl(textTemplate));
739     }
740     delete dia;
741 }
742
743 QStringList ProjectList::getGroup() const
744 {
745     QStringList result;
746     ProjectItem *item = static_cast <ProjectItem*>(m_listView->currentItem());
747     if (item && !item->isGroup()) {
748         while (item->parent()) {
749             item = static_cast <ProjectItem*>(item->parent());
750             if (item->isGroup()) break;
751         }
752     }
753     if (item && item->isGroup()) {
754         result << item->groupName();
755         result << item->clipId();
756     } else result << QString() << QString();
757     return result;
758 }
759
760 void ProjectList::setDocument(KdenliveDoc *doc)
761 {
762     m_listView->blockSignals(true);
763     m_listView->clear();
764     m_listView->setSortingEnabled(false);
765     emit clipSelected(NULL);
766     m_thumbnailQueue.clear();
767     m_infoQueue.clear();
768     m_refreshed = false;
769     m_fps = doc->fps();
770     m_timecode = doc->timecode();
771     m_commandStack = doc->commandStack();
772     m_doc = doc;
773
774     QMap <QString, QString> flist = doc->clipManager()->documentFolderList();
775     QMapIterator<QString, QString> f(flist);
776     while (f.hasNext()) {
777         f.next();
778         (void) new ProjectItem(m_listView, QStringList() << QString() << f.value(), f.key());
779     }
780
781     QList <DocClipBase*> list = doc->clipManager()->documentClipList();
782     for (int i = 0; i < list.count(); i++) {
783         slotAddClip(list.at(i), false);
784     }
785
786     m_listView->blockSignals(false);
787     m_toolbar->setEnabled(true);
788     connect(m_doc->clipManager(), SIGNAL(reloadClip(const QString &)), this, SLOT(slotReloadClip(const QString &)));
789     connect(m_doc->clipManager(), SIGNAL(checkAllClips()), this, SLOT(updateAllClips()));
790 }
791
792 QDomElement ProjectList::producersList()
793 {
794     QDomDocument doc;
795     QDomElement prods = doc.createElement("producerlist");
796     doc.appendChild(prods);
797     kDebug() << "////////////  PRO LISTĀ BUILD PRDSLIST ";
798     QTreeWidgetItemIterator it(m_listView);
799     while (*it) {
800         if (!((ProjectItem *)(*it))->isGroup())
801             prods.appendChild(doc.importNode(((ProjectItem *)(*it))->toXml(), true));
802         ++it;
803     }
804     return prods;
805 }
806
807 void ProjectList::slotCheckForEmptyQueue()
808 {
809     if (!m_refreshed && m_thumbnailQueue.isEmpty() && m_infoQueue.isEmpty()) {
810         m_refreshed = true;
811         emit loadingIsOver();
812     } else QTimer::singleShot(300, this, SLOT(slotCheckForEmptyQueue()));
813 }
814
815 void ProjectList::reloadClipThumbnails()
816 {
817     m_thumbnailQueue.clear();
818     QTreeWidgetItemIterator it(m_listView);
819     while (*it) {
820         if (!((ProjectItem *)(*it))->isGroup())
821             m_thumbnailQueue << ((ProjectItem *)(*it))->clipId();
822         ++it;
823     }
824     QTimer::singleShot(300, this, SLOT(slotProcessNextThumbnail()));
825 }
826
827 void ProjectList::requestClipThumbnail(const QString id)
828 {
829     m_thumbnailQueue.append(id);
830 }
831
832 void ProjectList::slotProcessNextThumbnail()
833 {
834     if (m_thumbnailQueue.isEmpty() && m_infoQueue.isEmpty()) {
835         m_listView->setEnabled(true);
836         slotCheckForEmptyQueue();
837         return;
838     }
839     if (!m_infoQueue.isEmpty()) {
840         //QTimer::singleShot(300, this, SLOT(slotProcessNextThumbnail()));
841         return;
842     }
843     slotRefreshClipThumbnail(m_thumbnailQueue.takeFirst(), false);
844 }
845
846 void ProjectList::slotRefreshClipThumbnail(const QString &clipId, bool update)
847 {
848     ProjectItem *item = getItemById(clipId);
849     if (item) slotRefreshClipThumbnail(item, update);
850     else slotProcessNextThumbnail();
851 }
852
853 void ProjectList::slotRefreshClipThumbnail(ProjectItem *item, bool update)
854 {
855     if (item) {
856         DocClipBase *clip = item->referencedClip();
857         if (!clip) {
858             slotProcessNextThumbnail();
859             return;
860         }
861         QPixmap pix;
862         int height = 50;
863         int width = (int)(height  * m_render->dar());
864         if (clip->clipType() == AUDIO) pix = KIcon("audio-x-generic").pixmap(QSize(width, height));
865         else if (clip->clipType() == IMAGE) pix = KThumb::getFrame(item->referencedClip()->producer(), 0, width, height);
866         else pix = item->referencedClip()->thumbProducer()->extractImage(item->referencedClip()->getClipThumbFrame(), width, height);
867         if (!pix.isNull()) {
868             m_listView->blockSignals(true);
869             item->setIcon(0, pix);
870             m_listView->blockSignals(false);
871             m_doc->cachePixmap(item->getClipHash(), pix);
872         }
873         if (update) emit projectModified();
874         QTimer::singleShot(100, this, SLOT(slotProcessNextThumbnail()));
875     }
876 }
877
878 void ProjectList::slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata, bool replace)
879 {
880     ProjectItem *item = getItemById(clipId);
881     if (item && producer) {
882         m_listView->blockSignals(true);
883         item->setProperties(properties, metadata);
884         Q_ASSERT_X(item->referencedClip(), "void ProjectList::slotReplyGetFileProperties", QString("Item with groupName %1 does not have a clip associated").arg(item->groupName()).toLatin1());
885         item->referencedClip()->setProducer(producer, replace);
886         emit receivedClipDuration(clipId);
887         if (replace) {
888             // update clip in clip monitor
889             emit clipSelected(NULL);
890             emit clipSelected(item->referencedClip());
891         }
892         /*else {
893             // Check if duration changed.
894             emit receivedClipDuration(clipId);
895             delete producer;
896         }*/
897         m_listView->blockSignals(false);
898         if (item->icon(0).isNull()) {
899             requestClipThumbnail(clipId);
900         }
901     } else kDebug() << "////////  COULD NOT FIND CLIP TO UPDATE PRPS...";
902
903     slotProcessNextClipInQueue();
904 }
905
906 void ProjectList::slotReplyGetImage(const QString &clipId, const QPixmap &pix)
907 {
908     ProjectItem *item = getItemById(clipId);
909     if (item && !pix.isNull()) {
910         m_listView->blockSignals(true);
911         item->setIcon(0, pix);
912         m_doc->cachePixmap(item->getClipHash(), pix);
913         m_listView->blockSignals(false);
914     }
915 }
916
917 ProjectItem *ProjectList::getItemById(const QString &id)
918 {
919     ProjectItem *item;
920     QTreeWidgetItemIterator it(m_listView);
921     while (*it) {
922         item = static_cast<ProjectItem *>(*it);
923         if (item->clipId() == id && item->clipType() != FOLDER)
924             return item;
925         ++it;
926     }
927     return NULL;
928 }
929
930 ProjectItem *ProjectList::getFolderItemById(const QString &id)
931 {
932     ProjectItem *item;
933     QTreeWidgetItemIterator it(m_listView);
934     while (*it) {
935         item = static_cast<ProjectItem *>(*it);
936         if (item->clipId() == id && item->clipType() == FOLDER)
937             return item;
938         ++it;
939     }
940     return NULL;
941 }
942
943 void ProjectList::slotSelectClip(const QString &ix)
944 {
945     ProjectItem *clip = getItemById(ix);
946     if (clip) {
947         m_listView->setCurrentItem(clip);
948         m_listView->scrollToItem(clip);
949         m_editAction->setEnabled(true);
950         m_deleteAction->setEnabled(true);
951         m_reloadAction->setEnabled(true);
952         m_transcodeAction->setEnabled(true);
953         if (clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
954             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
955             m_openAction->setEnabled(true);
956         } else if (clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
957             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
958             m_openAction->setEnabled(true);
959         } else m_openAction->setEnabled(false);
960     }
961 }
962
963 QString ProjectList::currentClipUrl() const
964 {
965     ProjectItem *item = static_cast <ProjectItem*>(m_listView->currentItem());
966     if (item == NULL) return QString();
967     return item->clipUrl().path();
968 }
969
970 void ProjectList::regenerateTemplate(const QString &id)
971 {
972     ProjectItem *clip = getItemById(id);
973     if (clip) regenerateTemplate(clip);
974 }
975
976 void ProjectList::regenerateTemplate(ProjectItem *clip)
977 {
978     //TODO: remove this unused method, only force_reload is necessary
979     clip->referencedClip()->producer()->set("force_reload", 1);
980 }
981
982 QDomDocument ProjectList::generateTemplateXml(QString path, const QString &replaceString)
983 {
984     QDomDocument doc;
985     QFile file(path);
986     if (!file.open(QIODevice::ReadOnly)) {
987         kWarning() << "ERROR, CANNOT READ: " << path;
988         return doc;
989     }
990     if (!doc.setContent(&file)) {
991         kWarning() << "ERROR, CANNOT READ: " << path;
992         file.close();
993         return doc;
994     }
995     file.close();
996     QDomNodeList texts = doc.elementsByTagName("content");
997     for (int i = 0; i < texts.count(); i++) {
998         QString data = texts.item(i).firstChild().nodeValue();
999         data.replace("%s", replaceString);
1000         texts.item(i).firstChild().setNodeValue(data);
1001     }
1002     return doc;
1003 }
1004
1005 #include "projectlist.moc"