]> git.sesse.net Git - kdenlive/blob - src/projectlist.cpp
Make "reload clip" work on folders
[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 "editclipcutcommand.h"
36 #include "editfoldercommand.h"
37 #include "addclipcutcommand.h"
38
39 #include "ui_templateclip_ui.h"
40
41 #include <KDebug>
42 #include <KAction>
43 #include <KLocale>
44 #include <KFileDialog>
45 #include <KInputDialog>
46 #include <KMessageBox>
47 #include <KIO/NetAccess>
48 #include <KFileItem>
49 #ifdef NEPOMUK
50 #include <nepomuk/global.h>
51 #include <nepomuk/resourcemanager.h>
52 //#include <nepomuk/tag.h>
53 #endif
54
55 #include <QMouseEvent>
56 #include <QStylePainter>
57 #include <QPixmap>
58 #include <QIcon>
59 #include <QMenu>
60 #include <QProcess>
61 #include <QHeaderView>
62
63 ProjectList::ProjectList(QWidget *parent) :
64         QWidget(parent),
65         m_render(NULL),
66         m_fps(-1),
67         m_commandStack(NULL),
68         m_editAction(NULL),
69         m_deleteAction(NULL),
70         m_openAction(NULL),
71         m_reloadAction(NULL),
72         m_transcodeAction(NULL),
73         m_doc(NULL),
74         m_refreshed(false),
75         m_infoQueue(),
76         m_thumbnailQueue()
77 {
78
79     m_listView = new ProjectListView(this);;
80     QVBoxLayout *layout = new QVBoxLayout;
81     layout->setContentsMargins(0, 0, 0, 0);
82     layout->setSpacing(0);
83
84     // setup toolbar
85     KTreeWidgetSearchLine *searchView = new KTreeWidgetSearchLine(this);
86     m_toolbar = new QToolBar("projectToolBar", this);
87     m_toolbar->addWidget(searchView);
88     int s = style()->pixelMetric(QStyle::PM_SmallIconSize);
89     m_toolbar->setIconSize(QSize(s, s));
90     searchView->setTreeWidget(m_listView);
91
92     m_addButton = new QToolButton(m_toolbar);
93     m_addButton->setPopupMode(QToolButton::MenuButtonPopup);
94     m_toolbar->addWidget(m_addButton);
95
96     layout->addWidget(m_toolbar);
97     layout->addWidget(m_listView);
98     setLayout(layout);
99
100     m_queueTimer.setInterval(100);
101     connect(&m_queueTimer, SIGNAL(timeout()), this, SLOT(slotProcessNextClipInQueue()));
102     m_queueTimer.setSingleShot(true);
103
104
105     connect(m_listView, SIGNAL(projectModified()), this, SIGNAL(projectModified()));
106     connect(m_listView, SIGNAL(itemSelectionChanged()), this, SLOT(slotClipSelected()));
107     connect(m_listView, SIGNAL(focusMonitor()), this, SLOT(slotClipSelected()));
108     connect(m_listView, SIGNAL(pauseMonitor()), this, SLOT(slotPauseMonitor()));
109     connect(m_listView, SIGNAL(requestMenu(const QPoint &, QTreeWidgetItem *)), this, SLOT(slotContextMenu(const QPoint &, QTreeWidgetItem *)));
110     connect(m_listView, SIGNAL(addClip()), this, SLOT(slotAddClip()));
111     connect(m_listView, SIGNAL(addClip(const QList <QUrl>, const QString &, const QString &)), this, SLOT(slotAddClip(const QList <QUrl>, const QString &, const QString &)));
112     connect(m_listView, SIGNAL(addClipCut(const QString &, int, int)), this, SLOT(slotAddClipCut(const QString &, int, int)));
113     connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));
114     connect(m_listView, SIGNAL(showProperties(DocClipBase *)), this, SIGNAL(showClipProperties(DocClipBase *)));
115
116     m_listViewDelegate = new ItemDelegate(m_listView);
117     m_listView->setItemDelegate(m_listViewDelegate);
118 #ifdef NEPOMUK
119     if (KdenliveSettings::activate_nepomuk()) {
120         Nepomuk::ResourceManager::instance()->init();
121         if (!Nepomuk::ResourceManager::instance()->initialized()) {
122             kDebug() << "Cannot communicate with Nepomuk, DISABLING it";
123             KdenliveSettings::setActivate_nepomuk(false);
124         }
125     }
126 #endif
127 }
128
129 ProjectList::~ProjectList()
130 {
131     delete m_menu;
132     delete m_toolbar;
133     m_listView->blockSignals(true);
134     m_listView->clear();
135     delete m_listViewDelegate;
136 }
137
138 void ProjectList::focusTree() const
139 {
140     m_listView->setFocus();
141 }
142
143 void ProjectList::setupMenu(QMenu *addMenu, QAction *defaultAction)
144 {
145     QList <QAction *> actions = addMenu->actions();
146     for (int i = 0; i < actions.count(); i++) {
147         if (actions.at(i)->data().toString() == "clip_properties") {
148             m_editAction = actions.at(i);
149             m_toolbar->addAction(m_editAction);
150             actions.removeAt(i);
151             i--;
152         } else if (actions.at(i)->data().toString() == "delete_clip") {
153             m_deleteAction = actions.at(i);
154             m_toolbar->addAction(m_deleteAction);
155             actions.removeAt(i);
156             i--;
157         } else if (actions.at(i)->data().toString() == "edit_clip") {
158             m_openAction = actions.at(i);
159             actions.removeAt(i);
160             i--;
161         } else if (actions.at(i)->data().toString() == "reload_clip") {
162             m_reloadAction = actions.at(i);
163             actions.removeAt(i);
164             i--;
165         }
166     }
167
168     QMenu *m = new QMenu();
169     m->addActions(actions);
170     m_addButton->setMenu(m);
171     m_addButton->setDefaultAction(defaultAction);
172     m_menu = new QMenu();
173     m_menu->addActions(addMenu->actions());
174 }
175
176 void ProjectList::setupGeneratorMenu(QMenu *addMenu, QMenu *transcodeMenu, QMenu *inTimelineMenu)
177 {
178     if (!addMenu) return;
179     QMenu *menu = m_addButton->menu();
180     menu->addMenu(addMenu);
181     m_addButton->setMenu(menu);
182
183     m_menu->addMenu(addMenu);
184     if (addMenu->isEmpty()) addMenu->setEnabled(false);
185     m_menu->addMenu(transcodeMenu);
186     if (transcodeMenu->isEmpty()) transcodeMenu->setEnabled(false);
187     m_transcodeAction = transcodeMenu;
188     m_menu->addAction(m_reloadAction);
189     m_menu->addMenu(inTimelineMenu);
190     inTimelineMenu->setEnabled(false);
191     m_menu->addAction(m_editAction);
192     m_menu->addAction(m_openAction);
193     m_menu->addAction(m_deleteAction);
194     m_menu->insertSeparator(m_deleteAction);
195 }
196
197
198 QByteArray ProjectList::headerInfo() const
199 {
200     return m_listView->header()->saveState();
201 }
202
203 void ProjectList::setHeaderInfo(const QByteArray &state)
204 {
205     m_listView->header()->restoreState(state);
206 }
207
208 void ProjectList::updateProjectFormat(Timecode t)
209 {
210     m_timecode = t;
211 }
212
213 void ProjectList::slotEditClip()
214 {
215     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
216     if (list.count() > 1) {
217         editClipSelection(list);
218         return;
219     }
220     ProjectItem *item;
221     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE) return;
222     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
223         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
224     } else item = static_cast <ProjectItem*>(m_listView->currentItem());
225     if (!(item->flags() & Qt::ItemIsDragEnabled)) return;
226     if (item) {
227         emit clipSelected(item->referencedClip());
228         emit showClipProperties(item->referencedClip());
229     }
230 }
231
232 void ProjectList::editClipSelection(QList<QTreeWidgetItem *> list)
233 {
234     // Gather all common properties
235     QMap <QString, QString> commonproperties;
236     QList <DocClipBase *> clipList;
237     commonproperties.insert("force_aspect_ratio", "-");
238     commonproperties.insert("force_fps", "-");
239     commonproperties.insert("force_progressive", "-");
240     commonproperties.insert("threads", "-");
241     commonproperties.insert("video_index", "-");
242     commonproperties.insert("audio_index", "-");
243
244     bool allowDurationChange = true;
245     int commonDuration = -1;
246     ProjectItem *item;
247     for (int i = 0; i < list.count(); i++) {
248         item = NULL;
249         if (list.at(i)->type() == PROJECTFOLDERTYPE) continue;
250         if (list.at(i)->type() == PROJECTSUBCLIPTYPE) {
251             item = static_cast <ProjectItem*>(list.at(i)->parent());
252         } else item = static_cast <ProjectItem*>(list.at(i));
253         if (!(item->flags() & Qt::ItemIsDragEnabled)) continue;
254         if (item) {
255             // check properties
256             DocClipBase *clip = item->referencedClip();
257             if (clipList.contains(clip)) continue;
258             if (clip->clipType() != COLOR && clip->clipType() != IMAGE && clip->clipType() != TEXT) {
259                 allowDurationChange = false;
260             }
261             if (allowDurationChange && commonDuration != 0) {
262                 if (commonDuration == -1) {
263                     commonDuration = clip->duration().frames(m_fps);
264                 } else if (commonDuration != clip->duration().frames(m_fps)) {
265                     commonDuration = 0;
266                 }
267             }
268             clipList.append(clip);
269             QMap <QString, QString> clipprops = clip->properties();
270             QMapIterator<QString, QString> p(commonproperties);
271             while (p.hasNext()) {
272                 p.next();
273                 if (p.value().isEmpty()) continue;
274                 if (clipprops.contains(p.key())) {
275                     if (p.value() == "-") commonproperties.insert(p.key(), clipprops.value(p.key()));
276                     else if (p.value() != clipprops.value(p.key())) commonproperties.insert(p.key(), QString());
277                 } else commonproperties.insert(p.key(), QString());
278             }
279         }
280     }
281     if (allowDurationChange) commonproperties.insert("out", QString::number(commonDuration));
282     QMapIterator<QString, QString> p(commonproperties);
283     while (p.hasNext()) {
284         p.next();
285         kDebug() << "Result: " << p.key() << " = " << p.value();
286     }
287     emit showClipProperties(clipList, commonproperties);
288 }
289
290 void ProjectList::slotOpenClip()
291 {
292     ProjectItem *item;
293     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE) return;
294     if (m_listView->currentItem()->type() == QTreeWidgetItem::UserType + 1) {
295         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
296     } else item = static_cast <ProjectItem*>(m_listView->currentItem());
297     if (item) {
298         if (item->clipType() == IMAGE) {
299             if (KdenliveSettings::defaultimageapp().isEmpty()) KMessageBox::sorry(this, i18n("Please set a default application to open images in the Settings dialog"));
300             else QProcess::startDetached(KdenliveSettings::defaultimageapp(), QStringList() << item->clipUrl().path());
301         }
302         if (item->clipType() == AUDIO) {
303             if (KdenliveSettings::defaultaudioapp().isEmpty()) KMessageBox::sorry(this, i18n("Please set a default application to open audio files in the Settings dialog"));
304             else QProcess::startDetached(KdenliveSettings::defaultaudioapp(), QStringList() << item->clipUrl().path());
305         }
306     }
307 }
308
309 void ProjectList::cleanup()
310 {
311     m_listView->clearSelection();
312     QTreeWidgetItemIterator it(m_listView);
313     ProjectItem *item;
314     while (*it) {
315         if ((*it)->type() != PROJECTCLIPTYPE) {
316             it++;
317             continue;
318         }
319         item = static_cast <ProjectItem *>(*it);
320         if (item->numReferences() == 0) item->setSelected(true);
321         it++;
322     }
323     slotRemoveClip();
324 }
325
326 void ProjectList::trashUnusedClips()
327 {
328     QTreeWidgetItemIterator it(m_listView);
329     ProjectItem *item;
330     QStringList ids;
331     QStringList urls;
332     while (*it) {
333         if ((*it)->type() != PROJECTCLIPTYPE) {
334             it++;
335             continue;
336         }
337         item = static_cast <ProjectItem *>(*it);
338         if (item->numReferences() == 0) {
339             ids << item->clipId();
340             KUrl url = item->clipUrl();
341             if (!url.isEmpty() && !urls.contains(url.path())) urls << url.path();
342         }
343         it++;
344     }
345
346     // Check that we don't use the URL in another clip
347     QTreeWidgetItemIterator it2(m_listView);
348     while (*it2) {
349         if ((*it2)->type() != PROJECTCLIPTYPE) {
350             it2++;
351             continue;
352         }
353         item = static_cast <ProjectItem *>(*it2);
354         if (item->numReferences() > 0) {
355             KUrl url = item->clipUrl();
356             if (!url.isEmpty() && urls.contains(url.path())) urls.removeAll(url.path());
357         }
358         it2++;
359     }
360
361     emit deleteProjectClips(ids, QMap <QString, QString>());
362     for (int i = 0; i < urls.count(); i++) {
363         KIO::NetAccess::del(KUrl(urls.at(i)), this);
364     }
365 }
366
367 void ProjectList::slotReloadClip(const QString &id)
368 {
369     QList<QTreeWidgetItem *> selected;
370     if (id.isEmpty()) selected = m_listView->selectedItems();
371     else selected.append(getItemById(id));
372     ProjectItem *item;
373     for (int i = 0; i < selected.count(); i++) {
374         if (selected.at(i)->type() != PROJECTCLIPTYPE) {
375             if (selected.at(i)->type() == PROJECTFOLDERTYPE) {
376                     for (int j = 0; j < selected.at(i)->childCount(); j++)
377                         selected.append(selected.at(i)->child(j));
378             }
379             continue;
380         }
381         item = static_cast <ProjectItem *>(selected.at(i));
382         if (item) {
383             if (item->clipType() == TEXT) {
384                 if (!item->referencedClip()->getProperty("xmltemplate").isEmpty()) regenerateTemplate(item);
385             } else if (item->clipType() != COLOR && item->clipType() != SLIDESHOW && item->referencedClip() &&  item->referencedClip()->checkHash() == false) {
386                 item->referencedClip()->setPlaceHolder(true);
387                 item->setProperty("file_hash", QString());
388             } else if (item->clipType() == IMAGE) {
389                 item->referencedClip()->producer()->set("force_reload", 1);
390             }
391             //requestClipInfo(item->toXml(), item->clipId(), true);
392             // Clear the file_hash value, which will cause a complete reload of the clip
393             emit getFileProperties(item->toXml(), item->clipId(), m_listView->iconSize().height(), true);
394         }
395     }
396 }
397
398 void ProjectList::slotMissingClip(const QString &id)
399 {
400     ProjectItem *item = getItemById(id);
401     if (item) {
402         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
403         if (item->referencedClip()) {
404             item->referencedClip()->setPlaceHolder(true);
405             if (m_render == NULL) kDebug() << "*********  ERROR, NULL RENDR";
406             item->referencedClip()->setProducer(m_render->invalidProducer(id), true);
407             item->slotSetToolTip();
408             emit clipNeedsReload(id, true);
409         }
410     }
411     update();
412     emit displayMessage(i18n("Check missing clips"), -2);
413     emit updateRenderStatus();
414 }
415
416 void ProjectList::slotAvailableClip(const QString &id)
417 {
418     ProjectItem *item = getItemById(id);
419     if (item == NULL) return;
420     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
421     if (item->referencedClip()) { // && item->referencedClip()->checkHash() == false) {
422         item->setProperty("file_hash", QString());
423         slotReloadClip(id);
424     }
425     /*else {
426     item->referencedClip()->setValid();
427     item->slotSetToolTip();
428     }
429     update();*/
430     emit updateRenderStatus();
431 }
432
433 bool ProjectList::hasMissingClips()
434 {
435     bool missing = false;
436     QTreeWidgetItemIterator it(m_listView);
437     while (*it) {
438         if ((*it)->type() == PROJECTCLIPTYPE && !((*it)->flags() & Qt::ItemIsDragEnabled)) {
439             missing = true;
440             break;
441         }
442         it++;
443     }
444     return missing;
445 }
446
447 void ProjectList::setRenderer(Render *projectRender)
448 {
449     m_render = projectRender;
450     m_listView->setIconSize(QSize((ProjectItem::itemDefaultHeight() - 2) * m_render->dar(), ProjectItem::itemDefaultHeight() - 2));
451 }
452
453 void ProjectList::slotClipSelected()
454 {
455     if (!m_listView->isEnabled()) return;
456     if (m_listView->currentItem()) {
457         if (m_listView->currentItem()->type() == PROJECTFOLDERTYPE) {
458             emit clipSelected(NULL);
459             m_editAction->setEnabled(false);
460             m_deleteAction->setEnabled(true);
461             m_openAction->setEnabled(false);
462             m_reloadAction->setEnabled(false);
463             m_transcodeAction->setEnabled(false);
464         } else {
465             ProjectItem *clip;
466             if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
467                 // this is a sub item, use base clip
468                 m_deleteAction->setEnabled(true);
469                 clip = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
470                 if (clip == NULL) kDebug() << "-----------ERROR";
471                 SubProjectItem *sub = static_cast <SubProjectItem*>(m_listView->currentItem());
472                 emit clipSelected(clip->referencedClip(), sub->zone());
473                 m_transcodeAction->setEnabled(false);
474                 return;
475             }
476             clip = static_cast <ProjectItem*>(m_listView->currentItem());
477             if (clip) emit clipSelected(clip->referencedClip());
478             m_editAction->setEnabled(true);
479             m_deleteAction->setEnabled(true);
480             m_reloadAction->setEnabled(true);
481             m_transcodeAction->setEnabled(true);
482             if (clip && clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
483                 m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
484                 m_openAction->setEnabled(true);
485             } else if (clip && clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
486                 m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
487                 m_openAction->setEnabled(true);
488             } else m_openAction->setEnabled(false);
489             // Display relevant transcoding actions only
490             adjustTranscodeActions(clip);
491             // Display uses in timeline
492             emit findInTimeline(clip->clipId());
493         }
494     } else {
495         emit clipSelected(NULL);
496         m_editAction->setEnabled(false);
497         m_deleteAction->setEnabled(false);
498         m_openAction->setEnabled(false);
499         m_reloadAction->setEnabled(false);
500         m_transcodeAction->setEnabled(false);
501     }
502 }
503
504 void ProjectList::adjustTranscodeActions(ProjectItem *clip) const
505 {
506     if (clip == NULL || clip->type() != PROJECTCLIPTYPE || clip->clipType() == COLOR || clip->clipType() == TEXT || clip->clipType() == PLAYLIST) {
507         m_transcodeAction->setEnabled(false);
508         return;
509     }
510     m_transcodeAction->setEnabled(true);
511     QList<QAction *> transcodeActions = m_transcodeAction->actions();
512     QStringList data;
513     QString condition;
514     for (int i = 0; i < transcodeActions.count(); i++) {
515         data = transcodeActions.at(i)->data().toStringList();
516         if (data.count() > 2) {
517             condition = data.at(2);
518             if (condition.startsWith("vcodec")) transcodeActions.at(i)->setEnabled(clip->referencedClip()->hasVideoCodec(condition.section("=", 1, 1)));
519             else if (condition.startsWith("acodec")) transcodeActions.at(i)->setEnabled(clip->referencedClip()->hasVideoCodec(condition.section("=", 1, 1)));
520         }
521     }
522
523 }
524
525 void ProjectList::slotPauseMonitor()
526 {
527     if (m_render) m_render->pause();
528 }
529
530 void ProjectList::slotUpdateClipProperties(const QString &id, QMap <QString, QString> properties)
531 {
532     ProjectItem *item = getItemById(id);
533     if (item) {
534         slotUpdateClipProperties(item, properties);
535         if (properties.contains("out") || properties.contains("force_fps")) {
536             slotReloadClip(id);
537         } else if (properties.contains("colour") || properties.contains("resource") || properties.contains("xmldata") || properties.contains("force_aspect_ratio") || properties.contains("templatetext")) {
538             slotRefreshClipThumbnail(item);
539             emit refreshClip();
540         }
541     }
542 }
543
544 void ProjectList::slotUpdateClipProperties(ProjectItem *clip, QMap <QString, QString> properties)
545 {
546     if (!clip) return;
547     clip->setProperties(properties);
548     if (properties.contains("name")) {
549         m_listView->blockSignals(true);
550         clip->setText(0, properties.value("name"));
551         m_listView->blockSignals(false);
552         emit clipNameChanged(clip->clipId(), properties.value("name"));
553     }
554     if (properties.contains("description")) {
555         CLIPTYPE type = clip->clipType();
556         m_listView->blockSignals(true);
557         clip->setText(1, properties.value("description"));
558         m_listView->blockSignals(false);
559 #ifdef NEPOMUK
560         if (KdenliveSettings::activate_nepomuk() && (type == AUDIO || type == VIDEO || type == AV || type == IMAGE || type == PLAYLIST)) {
561             // Use Nepomuk system to store clip description
562             Nepomuk::Resource f(clip->clipUrl().path());
563             f.setDescription(properties.value("description"));
564         }
565 #endif
566         emit projectModified();
567     }
568 }
569
570 void ProjectList::slotItemEdited(QTreeWidgetItem *item, int column)
571 {
572     if (item->type() == PROJECTSUBCLIPTYPE) {
573         // this is a sub-item
574         if (column == 1) {
575             // user edited description
576             SubProjectItem *sub = static_cast <SubProjectItem*>(item);
577             ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
578             EditClipCutCommand *command = new EditClipCutCommand(this, item->clipId(), sub->zone(), sub->zone(), sub->description(), sub->text(1), true);
579             m_commandStack->push(command);
580             //slotUpdateCutClipProperties(sub->clipId(), sub->zone(), sub->text(1), sub->text(1));
581         }
582         return;
583     }
584     if (item->type() == PROJECTFOLDERTYPE) {
585         if (column != 0) return;
586         FolderProjectItem *folder = static_cast <FolderProjectItem*>(item);
587         editFolder(item->text(0), folder->groupName(), folder->clipId());
588         folder->setGroupName(item->text(0));
589         m_doc->clipManager()->addFolder(folder->clipId(), item->text(0));
590         const int children = item->childCount();
591         for (int i = 0; i < children; i++) {
592             ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
593             child->setProperty("groupname", item->text(0));
594         }
595         return;
596     }
597
598     ProjectItem *clip = static_cast <ProjectItem*>(item);
599     if (column == 1) {
600         if (clip->referencedClip()) {
601             QMap <QString, QString> oldprops;
602             QMap <QString, QString> newprops;
603             oldprops["description"] = clip->referencedClip()->getProperty("description");
604             newprops["description"] = item->text(1);
605
606             if (clip->clipType() == TEXT) {
607                 // This is a text template clip, update the image
608                 /*oldprops.insert("xmldata", clip->referencedClip()->getProperty("xmldata"));
609                 newprops.insert("xmldata", generateTemplateXml(clip->referencedClip()->getProperty("xmltemplate"), item->text(2)).toString());*/
610                 oldprops.insert("templatetext", clip->referencedClip()->getProperty("templatetext"));
611                 newprops.insert("templatetext", item->text(1));
612             }
613             slotUpdateClipProperties(clip->clipId(), newprops);
614             EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false);
615             m_commandStack->push(command);
616         }
617     } else if (column == 0) {
618         if (clip->referencedClip()) {
619             QMap <QString, QString> oldprops;
620             QMap <QString, QString> newprops;
621             oldprops["name"] = clip->referencedClip()->getProperty("name");
622             newprops["name"] = item->text(0);
623             slotUpdateClipProperties(clip, newprops);
624             emit projectModified();
625             EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false);
626             m_commandStack->push(command);
627         }
628     }
629 }
630
631 void ProjectList::slotContextMenu(const QPoint &pos, QTreeWidgetItem *item)
632 {
633     bool enable = false;
634     if (item) {
635         enable = true;
636     }
637     m_editAction->setEnabled(enable);
638     m_deleteAction->setEnabled(enable);
639     m_reloadAction->setEnabled(enable);
640     m_transcodeAction->setEnabled(enable);
641     if (enable) {
642         ProjectItem *clip = NULL;
643         if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
644             clip = static_cast <ProjectItem*>(item->parent());
645             m_transcodeAction->setEnabled(false);
646         } else if (m_listView->currentItem()->type() == PROJECTCLIPTYPE) {
647             clip = static_cast <ProjectItem*>(item);
648             // Display relevant transcoding actions only
649             adjustTranscodeActions(clip);
650             // Display uses in timeline
651             emit findInTimeline(clip->clipId());
652         } else m_transcodeAction->setEnabled(false);
653         if (clip && clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
654             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
655             m_openAction->setEnabled(true);
656         } else if (clip && clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
657             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
658             m_openAction->setEnabled(true);
659         } else m_openAction->setEnabled(false);
660
661     } else m_openAction->setEnabled(false);
662     m_menu->popup(pos);
663 }
664
665 void ProjectList::slotRemoveClip()
666 {
667     if (!m_listView->currentItem()) return;
668     QStringList ids;
669     QMap <QString, QString> folderids;
670     QList<QTreeWidgetItem *> selected = m_listView->selectedItems();
671
672     QUndoCommand *delCommand = new QUndoCommand();
673     delCommand->setText(i18n("Delete Clip Zone"));
674
675     for (int i = 0; i < selected.count(); i++) {
676         if (selected.at(i)->type() == PROJECTSUBCLIPTYPE) {
677             // subitem
678             SubProjectItem *sub = static_cast <SubProjectItem *>(selected.at(i));
679             ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
680             new AddClipCutCommand(this, item->clipId(), sub->zone().x(), sub->zone().y(), sub->description(), false, true, delCommand);
681         } else if (selected.at(i)->type() == PROJECTFOLDERTYPE) {
682             // folder
683             FolderProjectItem *folder = static_cast <FolderProjectItem *>(selected.at(i));
684             folderids[folder->groupName()] = folder->clipId();
685             int children = folder->childCount();
686
687             if (children > 0 && KMessageBox::questionYesNo(this, i18np("Delete folder <b>%2</b>?<br />This will also remove the clip in that folder", "Delete folder <b>%2</b>?<br />This will also remove the %1 clips in that folder",  children, folder->text(1)), i18n("Delete Folder")) != KMessageBox::Yes) return;
688             for (int i = 0; i < children; ++i) {
689                 ProjectItem *child = static_cast <ProjectItem *>(folder->child(i));
690                 ids << child->clipId();
691             }
692         } else {
693             ProjectItem *item = static_cast <ProjectItem *>(selected.at(i));
694             ids << item->clipId();
695             if (item->numReferences() > 0) {
696                 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;
697             }
698         }
699     }
700
701     if (delCommand->childCount() == 0) delete delCommand;
702     else m_commandStack->push(delCommand);
703     emit deleteProjectClips(ids, folderids);
704 }
705
706 void ProjectList::updateButtons() const
707 {
708     if (m_listView->topLevelItemCount() == 0) {
709         m_deleteAction->setEnabled(false);
710     } else {
711         m_deleteAction->setEnabled(true);
712         if (!m_listView->currentItem()) m_listView->setCurrentItem(m_listView->topLevelItem(0));
713         QTreeWidgetItem *item = m_listView->currentItem();
714         if (item && item->type() == PROJECTCLIPTYPE) {
715             m_editAction->setEnabled(true);
716             m_openAction->setEnabled(true);
717             m_reloadAction->setEnabled(true);
718             m_transcodeAction->setEnabled(true);
719             return;
720         }
721     }
722
723     m_editAction->setEnabled(false);
724     m_openAction->setEnabled(false);
725     m_reloadAction->setEnabled(false);
726     m_transcodeAction->setEnabled(false);
727 }
728
729 void ProjectList::selectItemById(const QString &clipId)
730 {
731     ProjectItem *item = getItemById(clipId);
732     if (item) m_listView->setCurrentItem(item);
733 }
734
735
736 void ProjectList::slotDeleteClip(const QString &clipId)
737 {
738     ProjectItem *item = getItemById(clipId);
739     if (!item) {
740         kDebug() << "/// Cannot find clip to delete";
741         return;
742     }
743     m_listView->blockSignals(true);
744     QTreeWidgetItem *newSelectedItem = m_listView->itemAbove(item);
745     if (!newSelectedItem) newSelectedItem = m_listView->itemBelow(item);
746     delete item;
747     m_doc->clipManager()->deleteClip(clipId);
748     m_listView->blockSignals(false);
749     if (newSelectedItem) m_listView->setCurrentItem(newSelectedItem);
750     else updateButtons();
751 }
752
753
754 void ProjectList::editFolder(const QString folderName, const QString oldfolderName, const QString &clipId)
755 {
756     EditFolderCommand *command = new EditFolderCommand(this, folderName, oldfolderName, clipId, false);
757     m_commandStack->push(command);
758     m_doc->setModified(true);
759 }
760
761 void ProjectList::slotAddFolder()
762 {
763     AddFolderCommand *command = new AddFolderCommand(this, i18n("Folder"), QString::number(m_doc->clipManager()->getFreeFolderId()), true);
764     m_commandStack->push(command);
765 }
766
767 void ProjectList::slotAddFolder(const QString foldername, const QString &clipId, bool remove, bool edit)
768 {
769     if (remove) {
770         FolderProjectItem *item = getFolderItemById(clipId);
771         if (item) {
772             m_doc->clipManager()->deleteFolder(clipId);
773             QTreeWidgetItem *newSelectedItem = m_listView->itemAbove(item);
774             if (!newSelectedItem) newSelectedItem = m_listView->itemBelow(item);
775             delete item;
776             if (newSelectedItem) m_listView->setCurrentItem(newSelectedItem);
777             else updateButtons();
778         }
779     } else {
780         if (edit) {
781             FolderProjectItem *item = getFolderItemById(clipId);
782             if (item) {
783                 m_listView->blockSignals(true);
784                 item->setGroupName(foldername);
785                 m_listView->blockSignals(false);
786                 m_doc->clipManager()->addFolder(clipId, foldername);
787                 const int children = item->childCount();
788                 for (int i = 0; i < children; i++) {
789                     ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
790                     child->setProperty("groupname", foldername);
791                 }
792             }
793         } else {
794             QStringList text;
795             text << foldername;
796             m_listView->blockSignals(true);
797             m_listView->setCurrentItem(new FolderProjectItem(m_listView, text, clipId));
798             m_doc->clipManager()->addFolder(clipId, foldername);
799             m_listView->blockSignals(false);
800         }
801         updateButtons();
802     }
803     m_doc->setModified(true);
804 }
805
806
807
808 void ProjectList::deleteProjectFolder(QMap <QString, QString> map)
809 {
810     QMapIterator<QString, QString> i(map);
811     QUndoCommand *delCommand = new QUndoCommand();
812     delCommand->setText(i18n("Delete Folder"));
813     while (i.hasNext()) {
814         i.next();
815         new AddFolderCommand(this, i.key(), i.value(), false, delCommand);
816     }
817     m_commandStack->push(delCommand);
818 }
819
820 void ProjectList::slotAddClip(DocClipBase *clip, bool getProperties)
821 {
822     m_listView->setEnabled(false);
823     if (getProperties) {
824         m_listView->blockSignals(true);
825         m_refreshed = false;
826         // remove file_hash so that we load all properties for the clip
827         QDomElement e = clip->toXML().cloneNode().toElement();
828         e.removeAttribute("file_hash");
829         m_infoQueue.insert(clip->getId(), e);
830         clip->askForAudioThumbs();
831         //m_render->getFileProperties(clip->toXML(), clip->getId(), true);
832     }
833     const QString parent = clip->getProperty("groupid");
834     ProjectItem *item = NULL;
835     if (!parent.isEmpty()) {
836         FolderProjectItem *parentitem = getFolderItemById(parent);
837         if (!parentitem) {
838             QStringList text;
839             QString groupName = clip->getProperty("groupname");
840             //kDebug() << "Adding clip to new group: " << groupName;
841             if (groupName.isEmpty()) groupName = i18n("Folder");
842             text << groupName;
843             parentitem = new FolderProjectItem(m_listView, text, parent);
844         } else {
845             //kDebug() << "Adding clip to existing group: " << parentitem->groupName();
846         }
847         if (parentitem) item = new ProjectItem(parentitem, clip);
848     }
849     if (item == NULL) item = new ProjectItem(m_listView, clip);
850     KUrl url = clip->fileURL();
851
852     if (getProperties == false && !clip->getClipHash().isEmpty()) {
853         QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + ".png";
854         if (QFile::exists(cachedPixmap)) {
855             QPixmap pix(cachedPixmap);
856             if (pix.isNull()) KIO::NetAccess::del(KUrl(cachedPixmap), this);
857             item->setData(0, Qt::DecorationRole, pix);
858         }
859     }
860 #ifdef NEPOMUK
861     if (!url.isEmpty() && KdenliveSettings::activate_nepomuk()) {
862         // if file has Nepomuk comment, use it
863         Nepomuk::Resource f(url.path());
864         QString annotation = f.description();
865         if (!annotation.isEmpty()) item->setText(1, annotation);
866         item->setText(2, QString::number(f.rating()));
867     }
868 #endif
869     // Add cut zones
870     QList <CutZoneInfo> cuts = clip->cutZones();
871     if (!cuts.isEmpty()) {
872         for (int i = 0; i < cuts.count(); i++) {
873             SubProjectItem *sub = new SubProjectItem(item, cuts.at(i).zone.x(), cuts.at(i).zone.y(), cuts.at(i).description);
874             if (!clip->getClipHash().isEmpty()) {
875                 QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + '#' + QString::number(cuts.at(i).zone.x()) + ".png";
876                 if (QFile::exists(cachedPixmap)) {
877                     QPixmap pix(cachedPixmap);
878                     if (pix.isNull()) KIO::NetAccess::del(KUrl(cachedPixmap), this);
879                     sub->setData(0, Qt::DecorationRole, pix);
880                 }
881             }
882         }
883     }
884     if (m_listView->isEnabled()) {
885         updateButtons();
886         if (getProperties) m_listView->blockSignals(false);
887     }
888     if (getProperties && !m_queueTimer.isActive()) m_queueTimer.start();
889 }
890
891 void ProjectList::slotResetProjectList()
892 {
893     m_listView->clear();
894     emit clipSelected(NULL);
895     m_thumbnailQueue.clear();
896     m_infoQueue.clear();
897     m_refreshed = false;
898 }
899
900 void ProjectList::requestClipInfo(const QDomElement xml, const QString id)
901 {
902     m_refreshed = false;
903     m_infoQueue.insert(id, xml);
904     //if (m_infoQueue.count() == 1 || ) QTimer::singleShot(300, this, SLOT(slotProcessNextClipInQueue()));
905 }
906
907 void ProjectList::slotProcessNextClipInQueue()
908 {
909     if (m_infoQueue.isEmpty()) {
910         slotProcessNextThumbnail();
911         return;
912     }
913
914     QMap<QString, QDomElement>::const_iterator j = m_infoQueue.constBegin();
915     if (j != m_infoQueue.constEnd()) {
916         const QDomElement dom = j.value();
917         const QString id = j.key();
918         m_infoQueue.remove(j.key());
919         emit getFileProperties(dom, id, m_listView->iconSize().height(), false);
920     }
921 }
922
923 void ProjectList::slotUpdateClip(const QString &id)
924 {
925     ProjectItem *item = getItemById(id);
926     m_listView->blockSignals(true);
927     if (item) item->setData(0, UsageRole, QString::number(item->numReferences()));
928     m_listView->blockSignals(false);
929 }
930
931 void ProjectList::updateAllClips()
932 {
933     m_listView->setSortingEnabled(false);
934     kDebug() << "// UPDATE ALL CLPY";
935
936     QTreeWidgetItemIterator it(m_listView);
937     DocClipBase *clip;
938     ProjectItem *item;
939     m_listView->blockSignals(true);
940     while (*it) {
941         if ((*it)->type() == PROJECTSUBCLIPTYPE) {
942             // subitem
943             SubProjectItem *sub = static_cast <SubProjectItem *>(*it);
944             if (sub->data(0, Qt::DecorationRole).isNull()) {
945                 item = static_cast <ProjectItem *>((*it)->parent());
946                 requestClipThumbnail(item->clipId() + '#' + QString::number(sub->zone().x()));
947             }
948             ++it;
949             continue;
950         } else if ((*it)->type() == PROJECTFOLDERTYPE) {
951             // folder
952             ++it;
953             continue;
954         } else {
955             item = static_cast <ProjectItem *>(*it);
956             clip = item->referencedClip();
957             if (item->referencedClip()->producer() == NULL) {
958                 if (clip->isPlaceHolder() == false) {
959                     requestClipInfo(clip->toXML(), clip->getId());
960                 } else if (!clip->isPlaceHolder()) item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
961             } else {
962                 if (item->data(0, Qt::DecorationRole).isNull()) {
963                     requestClipThumbnail(clip->getId());
964                 }
965                 if (item->data(0, DurationRole).toString().isEmpty()) {
966                     item->changeDuration(item->referencedClip()->producer()->get_playtime());
967                 }
968             }
969             item->setData(0, UsageRole, QString::number(item->numReferences()));
970         }
971         //qApp->processEvents();
972         ++it;
973     }
974     if (!m_queueTimer.isActive()) m_queueTimer.start();
975     if (m_listView->isEnabled()) m_listView->blockSignals(false);
976     m_listView->setSortingEnabled(true);
977     if (m_infoQueue.isEmpty()) slotProcessNextThumbnail();
978 }
979
980 void ProjectList::slotAddClip(const QList <QUrl> givenList, const QString &groupName, const QString &groupId)
981 {
982     if (!m_commandStack) {
983         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
984     }
985     KUrl::List list;
986     if (givenList.isEmpty()) {
987         // Build list of mime types
988         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" << "image/x-xcf-gimp" << "image/x-vnd.adobe.photoshop" << "image/x-pcx" << "image/x-exr";
989
990         QString allExtensions;
991         foreach(const QString& mimeType, mimeTypes) {
992             KMimeType::Ptr mime(KMimeType::mimeType(mimeType));
993             if (mime) {
994                 allExtensions.append(mime->patterns().join(" "));
995                 allExtensions.append(' ');
996             }
997         }
998         const QString dialogFilter = allExtensions.simplified() + ' ' + QLatin1Char('|') + i18n("All Supported Files") + "\n* " + QLatin1Char('|') + i18n("All Files");
999         list = KFileDialog::getOpenUrls(KUrl("kfiledialog:///clipfolder"), dialogFilter, this);
1000
1001     } else {
1002         for (int i = 0; i < givenList.count(); i++)
1003             list << givenList.at(i);
1004     }
1005
1006     foreach(const KUrl &file, list) {
1007         // Check there is no folder here
1008         KMimeType::Ptr type = KMimeType::findByUrl(file);
1009         if (type->is("inode/directory")) {
1010             // user dropped a folder
1011             list.removeAll(file);
1012         }
1013     }
1014
1015     if (list.isEmpty()) return;
1016
1017     if (givenList.isEmpty()) {
1018         QStringList groupInfo = getGroup();
1019         m_doc->slotAddClipList(list, groupInfo.at(0), groupInfo.at(1));
1020     } else m_doc->slotAddClipList(list, groupName, groupId);
1021 }
1022
1023 void ProjectList::slotRemoveInvalidClip(const QString &id, bool replace)
1024 {
1025     ProjectItem *item = getItemById(id);
1026     QTimer::singleShot(300, this, SLOT(slotProcessNextClipInQueue()));
1027     if (item) {
1028         const QString path = item->referencedClip()->fileURL().path();
1029         if (item->referencedClip()->isPlaceHolder()) replace = false;
1030         if (!path.isEmpty()) {
1031             if (replace) KMessageBox::sorry(this, i18n("Clip <b>%1</b><br />is invalid, will be removed from project.", path));
1032             else {
1033                 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;
1034             }
1035         }
1036         QStringList ids;
1037         ids << id;
1038         if (replace) emit deleteProjectClips(ids, QMap <QString, QString>());
1039     }
1040 }
1041
1042 void ProjectList::slotAddColorClip()
1043 {
1044     if (!m_commandStack) {
1045         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1046     }
1047     QDialog *dia = new QDialog(this);
1048     Ui::ColorClip_UI dia_ui;
1049     dia_ui.setupUi(dia);
1050     dia->setWindowTitle(i18n("Color Clip"));
1051     dia_ui.clip_name->setText(i18n("Color Clip"));
1052     dia_ui.clip_duration->setInputMask(m_timecode.inputMask());
1053     dia_ui.clip_duration->setText(m_timecode.reformatSeparators(KdenliveSettings::color_duration()));
1054     if (dia->exec() == QDialog::Accepted) {
1055         QString color = dia_ui.clip_color->color().name();
1056         color = color.replace(0, 1, "0x") + "ff";
1057         QStringList groupInfo = getGroup();
1058         m_doc->slotCreateColorClip(dia_ui.clip_name->text(), color, dia_ui.clip_duration->text(), groupInfo.at(0), groupInfo.at(1));
1059     }
1060     delete dia;
1061 }
1062
1063
1064 void ProjectList::slotAddSlideshowClip()
1065 {
1066     if (!m_commandStack) {
1067         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1068     }
1069     SlideshowClip *dia = new SlideshowClip(m_timecode, this);
1070
1071     if (dia->exec() == QDialog::Accepted) {
1072         QStringList groupInfo = getGroup();
1073         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));
1074     }
1075     delete dia;
1076 }
1077
1078 void ProjectList::slotAddTitleClip()
1079 {
1080     QStringList groupInfo = getGroup();
1081     m_doc->slotCreateTextClip(groupInfo.at(0), groupInfo.at(1));
1082 }
1083
1084 void ProjectList::slotAddTitleTemplateClip()
1085 {
1086     QStringList groupInfo = getGroup();
1087     if (!m_commandStack) {
1088         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1089     }
1090
1091     // Get the list of existing templates
1092     QStringList filter;
1093     filter << "*.kdenlivetitle";
1094     const QString path = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
1095     QStringList templateFiles = QDir(path).entryList(filter, QDir::Files);
1096
1097     QDialog *dia = new QDialog(this);
1098     Ui::TemplateClip_UI dia_ui;
1099     dia_ui.setupUi(dia);
1100     for (int i = 0; i < templateFiles.size(); ++i) {
1101         dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), path + templateFiles.at(i));
1102     }
1103     dia_ui.template_list->fileDialog()->setFilter("*.kdenlivetitle");
1104     //warning: setting base directory doesn't work??
1105     KUrl startDir(path);
1106     dia_ui.template_list->fileDialog()->setUrl(startDir);
1107     dia_ui.text_box->setHidden(true);
1108     if (dia->exec() == QDialog::Accepted) {
1109         QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
1110         if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
1111         // Create a cloned template clip
1112         m_doc->slotCreateTextTemplateClip(groupInfo.at(0), groupInfo.at(1), KUrl(textTemplate));
1113     }
1114     delete dia;
1115 }
1116
1117 QStringList ProjectList::getGroup() const
1118 {
1119     QStringList result;
1120     QTreeWidgetItem *item = m_listView->currentItem();
1121     while (item && item->type() != PROJECTFOLDERTYPE) {
1122         item = item->parent();
1123     }
1124
1125     if (item) {
1126         FolderProjectItem *folder = static_cast <FolderProjectItem *>(item);
1127         result << folder->groupName();
1128         result << folder->clipId();
1129     } else result << QString() << QString();
1130     return result;
1131 }
1132
1133 void ProjectList::setDocument(KdenliveDoc *doc)
1134 {
1135     m_listView->blockSignals(true);
1136     m_listView->clear();
1137     m_listView->setSortingEnabled(false);
1138     emit clipSelected(NULL);
1139     m_thumbnailQueue.clear();
1140     m_infoQueue.clear();
1141     m_refreshed = false;
1142     m_fps = doc->fps();
1143     m_timecode = doc->timecode();
1144     m_commandStack = doc->commandStack();
1145     m_doc = doc;
1146
1147     QMap <QString, QString> flist = doc->clipManager()->documentFolderList();
1148     QMapIterator<QString, QString> f(flist);
1149     while (f.hasNext()) {
1150         f.next();
1151         (void) new FolderProjectItem(m_listView, QStringList() << f.value(), f.key());
1152     }
1153
1154     QList <DocClipBase*> list = doc->clipManager()->documentClipList();
1155     for (int i = 0; i < list.count(); i++) {
1156         slotAddClip(list.at(i), false);
1157     }
1158
1159     m_listView->blockSignals(false);
1160     m_toolbar->setEnabled(true);
1161     connect(m_doc->clipManager(), SIGNAL(reloadClip(const QString &)), this, SLOT(slotReloadClip(const QString &)));
1162     connect(m_doc->clipManager(), SIGNAL(missingClip(const QString &)), this, SLOT(slotMissingClip(const QString &)));
1163     connect(m_doc->clipManager(), SIGNAL(availableClip(const QString &)), this, SLOT(slotAvailableClip(const QString &)));
1164     connect(m_doc->clipManager(), SIGNAL(checkAllClips()), this, SLOT(updateAllClips()));
1165 }
1166
1167 QList <DocClipBase*> ProjectList::documentClipList() const
1168 {
1169     if (m_doc == NULL) return QList <DocClipBase*> ();
1170     return m_doc->clipManager()->documentClipList();
1171 }
1172
1173 QDomElement ProjectList::producersList()
1174 {
1175     QDomDocument doc;
1176     QDomElement prods = doc.createElement("producerlist");
1177     doc.appendChild(prods);
1178     kDebug() << "////////////  PRO LIST BUILD PRDSLIST ";
1179     QTreeWidgetItemIterator it(m_listView);
1180     while (*it) {
1181         if ((*it)->type() != PROJECTCLIPTYPE) {
1182             // subitem
1183             ++it;
1184             continue;
1185         }
1186         prods.appendChild(doc.importNode(((ProjectItem *)(*it))->toXml(), true));
1187         ++it;
1188     }
1189     return prods;
1190 }
1191
1192 void ProjectList::slotCheckForEmptyQueue()
1193 {
1194     if (!m_refreshed && m_thumbnailQueue.isEmpty() && m_infoQueue.isEmpty()) {
1195         m_refreshed = true;
1196         emit loadingIsOver();
1197         emit displayMessage(QString(), -1);
1198         m_listView->blockSignals(false);
1199         m_listView->setEnabled(true);
1200         updateButtons();
1201     } else if (!m_refreshed) QTimer::singleShot(300, this, SLOT(slotCheckForEmptyQueue()));
1202 }
1203
1204 void ProjectList::reloadClipThumbnails()
1205 {
1206     kDebug() << "//////////////  RELOAD CLIPS THUMBNAILS!!!";
1207     m_thumbnailQueue.clear();
1208     QTreeWidgetItemIterator it(m_listView);
1209     while (*it) {
1210         if ((*it)->type() != PROJECTCLIPTYPE) {
1211             // subitem
1212             ++it;
1213             continue;
1214         }
1215         m_thumbnailQueue << ((ProjectItem *)(*it))->clipId();
1216         ++it;
1217     }
1218     QTimer::singleShot(300, this, SLOT(slotProcessNextThumbnail()));
1219 }
1220
1221 void ProjectList::requestClipThumbnail(const QString id)
1222 {
1223     if (!m_thumbnailQueue.contains(id)) m_thumbnailQueue.append(id);
1224 }
1225
1226 void ProjectList::slotProcessNextThumbnail()
1227 {
1228     if (m_thumbnailQueue.isEmpty() && m_infoQueue.isEmpty()) {
1229         slotCheckForEmptyQueue();
1230         return;
1231     }
1232     if (!m_infoQueue.isEmpty()) {
1233         //QTimer::singleShot(300, this, SLOT(slotProcessNextThumbnail()));
1234         return;
1235     }
1236     if (m_thumbnailQueue.count() > 1) {
1237         int max = m_doc->clipManager()->clipsCount();
1238         emit displayMessage(i18n("Loading thumbnails"), (int)(100 *(max - m_thumbnailQueue.count()) / max));
1239     }
1240     slotRefreshClipThumbnail(m_thumbnailQueue.takeFirst(), false);
1241 }
1242
1243 void ProjectList::slotRefreshClipThumbnail(const QString &clipId, bool update)
1244 {
1245     QTreeWidgetItem *item = getAnyItemById(clipId);
1246     if (item) slotRefreshClipThumbnail(item, update);
1247     else slotProcessNextThumbnail();
1248 }
1249
1250 void ProjectList::slotRefreshClipThumbnail(QTreeWidgetItem *it, bool update)
1251 {
1252     if (it == NULL) return;
1253     ProjectItem *item = NULL;
1254     bool isSubItem = false;
1255     int frame;
1256     if (it->type() == PROJECTFOLDERTYPE) return;
1257     if (it->type() == PROJECTSUBCLIPTYPE) {
1258         item = static_cast <ProjectItem *>(it->parent());
1259         frame = static_cast <SubProjectItem *>(it)->zone().x();
1260         isSubItem = true;
1261     } else {
1262         item = static_cast <ProjectItem *>(it);
1263         frame = item->referencedClip()->getClipThumbFrame();
1264     }
1265
1266     if (item) {
1267         DocClipBase *clip = item->referencedClip();
1268         if (!clip) {
1269             slotProcessNextThumbnail();
1270             return;
1271         }
1272         QPixmap pix;
1273         int height = m_listView->iconSize().height();
1274         int width = (int)(height  * m_render->dar());
1275         if (clip->clipType() == AUDIO) pix = KIcon("audio-x-generic").pixmap(QSize(width, height));
1276         else if (clip->clipType() == IMAGE) pix = QPixmap::fromImage(KThumb::getFrame(item->referencedClip()->producer(), 0, width, height));
1277         else pix = item->referencedClip()->thumbProducer()->extractImage(frame, width, height);
1278
1279         if (!pix.isNull()) {
1280             m_listView->blockSignals(true);
1281             it->setData(0, Qt::DecorationRole, pix);
1282             if (m_listView->isEnabled()) m_listView->blockSignals(false);
1283             if (!isSubItem) m_doc->cachePixmap(item->getClipHash(), pix);
1284             else m_doc->cachePixmap(item->getClipHash() + '#' + QString::number(frame), pix);
1285         }
1286         if (update) emit projectModified();
1287         QTimer::singleShot(30, this, SLOT(slotProcessNextThumbnail()));
1288     }
1289 }
1290
1291 void ProjectList::slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata, bool replace)
1292 {
1293     QString toReload;
1294     ProjectItem *item = getItemById(clipId);
1295     if (item && producer) {
1296         m_listView->blockSignals(true);
1297         item->setProperties(properties, metadata);
1298         if (item->referencedClip()->isPlaceHolder() && producer->is_valid()) {
1299             item->referencedClip()->setValid();
1300             item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
1301             toReload = clipId;
1302         }
1303         //Q_ASSERT_X(item->referencedClip(), "void ProjectList::slotReplyGetFileProperties", QString("Item with groupName %1 does not have a clip associated").arg(item->groupName()).toLatin1());
1304         item->referencedClip()->setProducer(producer, replace);
1305         item->referencedClip()->askForAudioThumbs();
1306         if (!replace && item->data(0, Qt::DecorationRole).isNull()) {
1307             requestClipThumbnail(clipId);
1308         }
1309         if (!toReload.isEmpty()) {
1310             item->slotSetToolTip();
1311
1312         }
1313         //emit receivedClipDuration(clipId);
1314         if (m_listView->isEnabled() && replace) {
1315             // update clip in clip monitor
1316             emit clipSelected(NULL);
1317             emit clipSelected(item->referencedClip());
1318             //TODO: Make sure the line below has no side effect
1319             toReload = clipId;
1320         }
1321         /*else {
1322             // Check if duration changed.
1323             emit receivedClipDuration(clipId);
1324             delete producer;
1325         }*/
1326         if (m_listView->isEnabled()) m_listView->blockSignals(false);
1327         /*if (item->icon(0).isNull()) {
1328             requestClipThumbnail(clipId);
1329         }*/
1330     } else kDebug() << "////////  COULD NOT FIND CLIP TO UPDATE PRPS...";
1331     int max = m_doc->clipManager()->clipsCount();
1332     if (item && m_infoQueue.isEmpty() && m_thumbnailQueue.isEmpty()) {
1333         m_listView->setCurrentItem(item);
1334         emit clipSelected(item->referencedClip());
1335     } else emit displayMessage(i18n("Loading clips"), (int)(100 *(max - m_infoQueue.count()) / max));
1336     if (!toReload.isEmpty()) emit clipNeedsReload(toReload, true);
1337     // small delay so that the app can display the progress info
1338     QTimer::singleShot(30, this, SLOT(slotProcessNextClipInQueue()));
1339 }
1340
1341 void ProjectList::slotReplyGetImage(const QString &clipId, const QPixmap &pix)
1342 {
1343     ProjectItem *item = getItemById(clipId);
1344     if (item && !pix.isNull()) {
1345         m_listView->blockSignals(true);
1346         item->setData(0, Qt::DecorationRole, pix);
1347         m_doc->cachePixmap(item->getClipHash(), pix);
1348         if (m_listView->isEnabled()) m_listView->blockSignals(false);
1349     }
1350 }
1351
1352 QTreeWidgetItem *ProjectList::getAnyItemById(const QString &id)
1353 {
1354     QTreeWidgetItemIterator it(m_listView);
1355     QString lookId = id;
1356     if (id.contains('#')) {
1357         lookId = id.section('#', 0, 0);
1358     }
1359
1360     ProjectItem *result = NULL;
1361     while (*it) {
1362         if ((*it)->type() != PROJECTCLIPTYPE) {
1363             // subitem
1364             ++it;
1365             continue;
1366         }
1367         ProjectItem *item = static_cast<ProjectItem *>(*it);
1368         if (item->clipId() == lookId) {
1369             result = item;
1370             break;
1371         }
1372         ++it;
1373     }
1374     if (result == NULL || !id.contains('#')) return result;
1375     else for (int i = 0; i < result->childCount(); i++) {
1376             SubProjectItem *sub = static_cast <SubProjectItem *>(result->child(i));
1377             if (sub && sub->zone().x() == id.section('#', 1, 1).toInt()) {
1378                 return sub;
1379             }
1380         }
1381
1382     return NULL;
1383 }
1384
1385
1386 ProjectItem *ProjectList::getItemById(const QString &id)
1387 {
1388     ProjectItem *item;
1389     QTreeWidgetItemIterator it(m_listView);
1390     while (*it) {
1391         if ((*it)->type() != PROJECTCLIPTYPE) {
1392             // subitem
1393             ++it;
1394             continue;
1395         }
1396         item = static_cast<ProjectItem *>(*it);
1397         if (item->clipId() == id)
1398             return item;
1399         ++it;
1400     }
1401     return NULL;
1402 }
1403
1404 FolderProjectItem *ProjectList::getFolderItemById(const QString &id)
1405 {
1406     FolderProjectItem *item;
1407     QTreeWidgetItemIterator it(m_listView);
1408     while (*it) {
1409         if ((*it)->type() == PROJECTFOLDERTYPE) {
1410             item = static_cast<FolderProjectItem *>(*it);
1411             if (item->clipId() == id) return item;
1412         }
1413         ++it;
1414     }
1415     return NULL;
1416 }
1417
1418 void ProjectList::slotSelectClip(const QString &ix)
1419 {
1420     ProjectItem *clip = getItemById(ix);
1421     if (clip) {
1422         m_listView->setCurrentItem(clip);
1423         m_listView->scrollToItem(clip);
1424         m_editAction->setEnabled(true);
1425         m_deleteAction->setEnabled(true);
1426         m_reloadAction->setEnabled(true);
1427         m_transcodeAction->setEnabled(true);
1428         if (clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
1429             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
1430             m_openAction->setEnabled(true);
1431         } else if (clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
1432             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
1433             m_openAction->setEnabled(true);
1434         } else m_openAction->setEnabled(false);
1435     }
1436 }
1437
1438 QString ProjectList::currentClipUrl() const
1439 {
1440     ProjectItem *item;
1441     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE) return QString();
1442     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
1443         // subitem
1444         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
1445     } else item = static_cast <ProjectItem*>(m_listView->currentItem());
1446     if (item == NULL) return QString();
1447     return item->clipUrl().path();
1448 }
1449
1450 KUrl::List ProjectList::getConditionalUrls(const QString &condition) const
1451 {
1452     KUrl::List result;
1453     ProjectItem *item;
1454     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
1455     for (int i = 0; i < list.count(); i++) {
1456         if (list.at(i)->type() == PROJECTFOLDERTYPE) continue;
1457         if (list.at(i)->type() == PROJECTSUBCLIPTYPE) {
1458             // subitem
1459             item = static_cast <ProjectItem*>(list.at(i)->parent());
1460         } else item = static_cast <ProjectItem*>(list.at(i));
1461         if (item == NULL) continue;
1462         if (item->type() == COLOR || item->type() == SLIDESHOW || item->type() == TEXT) continue;
1463         DocClipBase *clip = item->referencedClip();
1464         if (!condition.isEmpty()) {
1465             if (condition.startsWith("vcodec") && !clip->hasVideoCodec(condition.section("=", 1, 1))) continue;
1466             else if (condition.startsWith("acodec") && !clip->hasAudioCodec(condition.section("=", 1, 1))) continue;
1467         }
1468         result.append(item->clipUrl());
1469     }
1470     return result;
1471 }
1472
1473 void ProjectList::regenerateTemplate(const QString &id)
1474 {
1475     ProjectItem *clip = getItemById(id);
1476     if (clip) regenerateTemplate(clip);
1477 }
1478
1479 void ProjectList::regenerateTemplate(ProjectItem *clip)
1480 {
1481     //TODO: remove this unused method, only force_reload is necessary
1482     clip->referencedClip()->producer()->set("force_reload", 1);
1483 }
1484
1485 QDomDocument ProjectList::generateTemplateXml(QString path, const QString &replaceString)
1486 {
1487     QDomDocument doc;
1488     QFile file(path);
1489     if (!file.open(QIODevice::ReadOnly)) {
1490         kWarning() << "ERROR, CANNOT READ: " << path;
1491         return doc;
1492     }
1493     if (!doc.setContent(&file)) {
1494         kWarning() << "ERROR, CANNOT READ: " << path;
1495         file.close();
1496         return doc;
1497     }
1498     file.close();
1499     QDomNodeList texts = doc.elementsByTagName("content");
1500     for (int i = 0; i < texts.count(); i++) {
1501         QString data = texts.item(i).firstChild().nodeValue();
1502         data.replace("%s", replaceString);
1503         texts.item(i).firstChild().setNodeValue(data);
1504     }
1505     return doc;
1506 }
1507
1508
1509 void ProjectList::slotAddClipCut(const QString &id, int in, int out)
1510 {
1511     ProjectItem *clip = getItemById(id);
1512     if (clip == NULL) return;
1513     if (clip->referencedClip()->hasCutZone(QPoint(in, out))) return;
1514     AddClipCutCommand *command = new AddClipCutCommand(this, id, in, out, QString(), true, false);
1515     m_commandStack->push(command);
1516 }
1517
1518 void ProjectList::addClipCut(const QString &id, int in, int out, const QString desc, bool newItem)
1519 {
1520     ProjectItem *clip = getItemById(id);
1521     if (clip) {
1522         DocClipBase *base = clip->referencedClip();
1523         base->addCutZone(in, out);
1524         m_listView->blockSignals(true);
1525         SubProjectItem *sub = new SubProjectItem(clip, in, out, desc);
1526         if (newItem && desc.isEmpty() && !m_listView->isColumnHidden(1)) {
1527             if (!clip->isExpanded()) clip->setExpanded(true);
1528             m_listView->editItem(sub, 1);
1529         }
1530         QPixmap p = clip->referencedClip()->thumbProducer()->extractImage(in, (int)(sub->sizeHint(0).height()  * m_render->dar()), sub->sizeHint(0).height() - 2);
1531         sub->setData(0, Qt::DecorationRole, p);
1532         m_doc->cachePixmap(clip->getClipHash() + '#' + QString::number(in), p);
1533         m_listView->blockSignals(false);
1534     }
1535     emit projectModified();
1536 }
1537
1538 void ProjectList::removeClipCut(const QString &id, int in, int out)
1539 {
1540     ProjectItem *clip = getItemById(id);
1541     if (clip) {
1542         DocClipBase *base = clip->referencedClip();
1543         base->removeCutZone(in, out);
1544         SubProjectItem *sub = getSubItem(clip, QPoint(in, out));
1545         if (sub) {
1546             m_listView->blockSignals(true);
1547             delete sub;
1548             m_listView->blockSignals(false);
1549         }
1550     }
1551     emit projectModified();
1552 }
1553
1554 SubProjectItem *ProjectList::getSubItem(ProjectItem *clip, QPoint zone)
1555 {
1556     SubProjectItem *sub = NULL;
1557     if (clip) {
1558         for (int i = 0; i < clip->childCount(); i++) {
1559             QTreeWidgetItem *it = clip->child(i);
1560             if (it->type() == PROJECTSUBCLIPTYPE) {
1561                 sub = static_cast <SubProjectItem*>(it);
1562                 if (sub->zone() == zone) break;
1563                 else sub = NULL;
1564             }
1565         }
1566     }
1567     return sub;
1568 }
1569
1570 void ProjectList::slotUpdateClipCut(QPoint p)
1571 {
1572     if (!m_listView->currentItem() || m_listView->currentItem()->type() != PROJECTSUBCLIPTYPE) return;
1573     SubProjectItem *sub = static_cast <SubProjectItem*>(m_listView->currentItem());
1574     ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
1575     EditClipCutCommand *command = new EditClipCutCommand(this, item->clipId(), sub->zone(), p, sub->text(1), sub->text(1), true);
1576     m_commandStack->push(command);
1577 }
1578
1579 void ProjectList::doUpdateClipCut(const QString &id, const QPoint oldzone, const QPoint zone, const QString &comment)
1580 {
1581     ProjectItem *clip = getItemById(id);
1582     SubProjectItem *sub = getSubItem(clip, oldzone);
1583     if (sub == NULL || clip == NULL) return;
1584     DocClipBase *base = clip->referencedClip();
1585     base->updateCutZone(oldzone.x(), oldzone.y(), zone.x(), zone.y(), comment);
1586     m_listView->blockSignals(true);
1587     sub->setZone(zone);
1588     sub->setDescription(comment);
1589     m_listView->blockSignals(false);
1590     emit projectModified();
1591 }
1592
1593 #include "projectlist.moc"