]> git.sesse.net Git - kdenlive/blob - src/projectlist.cpp
Improve proxy handling (missing or broken proxies)
[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 "timecodedisplay.h"
35 #include "profilesdialog.h"
36 #include "editclipcommand.h"
37 #include "editclipcutcommand.h"
38 #include "editfoldercommand.h"
39 #include "addclipcutcommand.h"
40
41 #include "ui_templateclip_ui.h"
42
43 #include <KDebug>
44 #include <KAction>
45 #include <KLocale>
46 #include <KFileDialog>
47 #include <KInputDialog>
48 #include <KMessageBox>
49 #include <KIO/NetAccess>
50 #include <KFileItem>
51 #include <KApplication>
52 #include <KStandardDirs>
53
54 #ifdef NEPOMUK
55 #include <nepomuk/global.h>
56 #include <nepomuk/resourcemanager.h>
57 //#include <nepomuk/tag.h>
58 #endif
59
60 #include <QMouseEvent>
61 #include <QStylePainter>
62 #include <QPixmap>
63 #include <QIcon>
64 #include <QMenu>
65 #include <QProcess>
66 #include <QHeaderView>
67 #include <QInputDialog>
68 #include <QtConcurrentRun>
69 #include <QVBoxLayout>
70
71 InvalidDialog::InvalidDialog(const QString &caption, const QString &message, bool infoOnly, QWidget *parent) : KDialog(parent)
72 {
73     setCaption(caption);
74     if (infoOnly) setButtons(KDialog::Ok);
75     else setButtons(KDialog::Yes | KDialog::No);
76     QWidget *w = new QWidget(this);
77     QVBoxLayout *l = new QVBoxLayout;
78     l->addWidget(new QLabel(message));
79     m_clipList = new QListWidget;
80     l->addWidget(m_clipList);
81     w->setLayout(l);
82     setMainWidget(w);
83 }
84
85 InvalidDialog::~InvalidDialog()
86 {
87     delete m_clipList;
88 }
89
90
91 void InvalidDialog::addClip(const QString &id, const QString &path)
92 {
93     QListWidgetItem *item = new QListWidgetItem(path);
94     item->setData(Qt::UserRole, id);
95     m_clipList->addItem(item);
96 }
97
98 QStringList InvalidDialog::getIds() const
99 {
100     QStringList ids;
101     for (int i = 0; i < m_clipList->count(); i++) {
102         ids << m_clipList->item(i)->data(Qt::UserRole).toString();
103     }
104     return ids;
105 }
106
107
108 ProjectList::ProjectList(QWidget *parent) :
109     QWidget(parent),
110     m_render(NULL),
111     m_fps(-1),
112     m_commandStack(NULL),
113     m_openAction(NULL),
114     m_reloadAction(NULL),
115     m_transcodeAction(NULL),
116     m_doc(NULL),
117     m_refreshed(false),
118     m_allClipsProcessed(false),
119     m_thumbnailQueue(),
120     m_abortAllProxies(false),
121     m_invalidClipDialog(NULL)
122 {
123     QVBoxLayout *layout = new QVBoxLayout;
124     layout->setContentsMargins(0, 0, 0, 0);
125     layout->setSpacing(0);
126     qRegisterMetaType<QDomElement>("QDomElement");
127     // setup toolbar
128     QFrame *frame = new QFrame;
129     frame->setFrameStyle(QFrame::NoFrame);
130     QHBoxLayout *box = new QHBoxLayout;
131     KTreeWidgetSearchLine *searchView = new KTreeWidgetSearchLine;
132
133     box->addWidget(searchView);
134     //int s = style()->pixelMetric(QStyle::PM_SmallIconSize);
135     //m_toolbar->setIconSize(QSize(s, s));
136
137     m_addButton = new QToolButton;
138     m_addButton->setPopupMode(QToolButton::MenuButtonPopup);
139     m_addButton->setAutoRaise(true);
140     box->addWidget(m_addButton);
141
142     m_editButton = new QToolButton;
143     m_editButton->setAutoRaise(true);
144     box->addWidget(m_editButton);
145
146     m_deleteButton = new QToolButton;
147     m_deleteButton->setAutoRaise(true);
148     box->addWidget(m_deleteButton);
149     frame->setLayout(box);
150     layout->addWidget(frame);
151
152     m_listView = new ProjectListView;
153     layout->addWidget(m_listView);
154     setLayout(layout);
155     searchView->setTreeWidget(m_listView);
156
157     connect(this, SIGNAL(processNextThumbnail()), this, SLOT(slotProcessNextThumbnail()));
158     connect(m_listView, SIGNAL(projectModified()), this, SIGNAL(projectModified()));
159     connect(m_listView, SIGNAL(itemSelectionChanged()), this, SLOT(slotClipSelected()));
160     connect(m_listView, SIGNAL(focusMonitor()), this, SIGNAL(raiseClipMonitor()));
161     connect(m_listView, SIGNAL(pauseMonitor()), this, SLOT(slotPauseMonitor()));
162     connect(m_listView, SIGNAL(requestMenu(const QPoint &, QTreeWidgetItem *)), this, SLOT(slotContextMenu(const QPoint &, QTreeWidgetItem *)));
163     connect(m_listView, SIGNAL(addClip()), this, SLOT(slotAddClip()));
164     connect(m_listView, SIGNAL(addClip(const QList <QUrl>, const QString &, const QString &)), this, SLOT(slotAddClip(const QList <QUrl>, const QString &, const QString &)));
165     connect(m_listView, SIGNAL(addClipCut(const QString &, int, int)), this, SLOT(slotAddClipCut(const QString &, int, int)));
166     connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));
167     connect(m_listView, SIGNAL(showProperties(DocClipBase *)), this, SIGNAL(showClipProperties(DocClipBase *)));
168
169     m_listViewDelegate = new ItemDelegate(m_listView);
170     m_listView->setItemDelegate(m_listViewDelegate);
171 #ifdef NEPOMUK
172     if (KdenliveSettings::activate_nepomuk()) {
173         Nepomuk::ResourceManager::instance()->init();
174         if (!Nepomuk::ResourceManager::instance()->initialized()) {
175             kDebug() << "Cannot communicate with Nepomuk, DISABLING it";
176             KdenliveSettings::setActivate_nepomuk(false);
177         }
178     }
179 #endif
180 }
181
182 ProjectList::~ProjectList()
183 {
184     m_abortAllProxies = true;
185     m_thumbnailQueue.clear();
186     delete m_menu;
187     m_listView->blockSignals(true);
188     m_listView->clear();
189     delete m_listViewDelegate;
190 }
191
192 void ProjectList::focusTree() const
193 {
194     m_listView->setFocus();
195 }
196
197 void ProjectList::setupMenu(QMenu *addMenu, QAction *defaultAction)
198 {
199     QList <QAction *> actions = addMenu->actions();
200     for (int i = 0; i < actions.count(); i++) {
201         if (actions.at(i)->data().toString() == "clip_properties") {
202             m_editButton->setDefaultAction(actions.at(i));
203             actions.removeAt(i);
204             i--;
205         } else if (actions.at(i)->data().toString() == "delete_clip") {
206             m_deleteButton->setDefaultAction(actions.at(i));
207             actions.removeAt(i);
208             i--;
209         } else if (actions.at(i)->data().toString() == "edit_clip") {
210             m_openAction = actions.at(i);
211             actions.removeAt(i);
212             i--;
213         } else if (actions.at(i)->data().toString() == "reload_clip") {
214             m_reloadAction = actions.at(i);
215             actions.removeAt(i);
216             i--;
217         } else if (actions.at(i)->data().toString() == "proxy_clip") {
218             m_proxyAction = actions.at(i);
219             actions.removeAt(i);
220             i--;
221         }
222     }
223
224     QMenu *m = new QMenu();
225     m->addActions(actions);
226     m_addButton->setMenu(m);
227     m_addButton->setDefaultAction(defaultAction);
228     m_menu = new QMenu();
229     m_menu->addActions(addMenu->actions());
230 }
231
232 void ProjectList::setupGeneratorMenu(QMenu *addMenu, QMenu *transcodeMenu, QMenu *inTimelineMenu)
233 {
234     if (!addMenu)
235         return;
236     QMenu *menu = m_addButton->menu();
237     menu->addMenu(addMenu);
238     m_addButton->setMenu(menu);
239
240     m_menu->addMenu(addMenu);
241     if (addMenu->isEmpty())
242         addMenu->setEnabled(false);
243     m_menu->addMenu(transcodeMenu);
244     if (transcodeMenu->isEmpty())
245         transcodeMenu->setEnabled(false);
246     m_transcodeAction = transcodeMenu;
247     m_menu->addAction(m_reloadAction);
248     m_menu->addAction(m_proxyAction);
249     m_menu->addMenu(inTimelineMenu);
250     inTimelineMenu->setEnabled(false);
251     m_menu->addAction(m_editButton->defaultAction());
252     m_menu->addAction(m_openAction);
253     m_menu->addAction(m_deleteButton->defaultAction());
254     m_menu->insertSeparator(m_deleteButton->defaultAction());
255 }
256
257 void ProjectList::clearSelection()
258 {
259     m_listView->clearSelection();
260 }
261
262 QByteArray ProjectList::headerInfo() const
263 {
264     return m_listView->header()->saveState();
265 }
266
267 void ProjectList::setHeaderInfo(const QByteArray &state)
268 {
269     m_listView->header()->restoreState(state);
270 }
271
272 void ProjectList::updateProjectFormat(Timecode t)
273 {
274     m_timecode = t;
275 }
276
277 void ProjectList::slotEditClip()
278 {
279     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
280     if (list.isEmpty()) return;
281     if (list.count() > 1 || list.at(0)->type() == PROJECTFOLDERTYPE) {
282         editClipSelection(list);
283         return;
284     }
285     ProjectItem *item;
286     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE)
287         return;
288     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE)
289         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
290     else
291         item = static_cast <ProjectItem*>(m_listView->currentItem());
292     if (item && (item->flags() & Qt::ItemIsDragEnabled)) {
293         emit clipSelected(item->referencedClip());
294         emit showClipProperties(item->referencedClip());
295     }
296 }
297
298 void ProjectList::editClipSelection(QList<QTreeWidgetItem *> list)
299 {
300     // Gather all common properties
301     QMap <QString, QString> commonproperties;
302     QList <DocClipBase *> clipList;
303     commonproperties.insert("force_aspect_num", "-");
304     commonproperties.insert("force_aspect_den", "-");
305     commonproperties.insert("force_fps", "-");
306     commonproperties.insert("force_progressive", "-");
307     commonproperties.insert("force_tff", "-");
308     commonproperties.insert("threads", "-");
309     commonproperties.insert("video_index", "-");
310     commonproperties.insert("audio_index", "-");
311     commonproperties.insert("force_colorspace", "-");
312     commonproperties.insert("full_luma", "-");
313     QString transparency = "-";
314
315     bool allowDurationChange = true;
316     int commonDuration = -1;
317     bool hasImages = false;;
318     ProjectItem *item;
319     for (int i = 0; i < list.count(); i++) {
320         item = NULL;
321         if (list.at(i)->type() == PROJECTFOLDERTYPE) {
322             // Add folder items to the list
323             int ct = list.at(i)->childCount();
324             for (int j = 0; j < ct; j++) {
325                 list.append(list.at(i)->child(j));
326             }
327             continue;
328         }
329         else if (list.at(i)->type() == PROJECTSUBCLIPTYPE)
330             item = static_cast <ProjectItem*>(list.at(i)->parent());
331         else
332             item = static_cast <ProjectItem*>(list.at(i));
333         if (!(item->flags() & Qt::ItemIsDragEnabled))
334             continue;
335         if (item) {
336             // check properties
337             DocClipBase *clip = item->referencedClip();
338             if (clipList.contains(clip)) continue;
339             if (clip->clipType() == IMAGE) {
340                 hasImages = true;
341                 if (clip->getProperty("transparency").isEmpty() || clip->getProperty("transparency").toInt() == 0) {
342                     if (transparency == "-") {
343                         // first non transparent image
344                         transparency = "0";
345                     }
346                     else if (transparency == "1") {
347                         // we have transparent and non transparent clips
348                         transparency = "-1";
349                     }
350                 }
351                 else {
352                     if (transparency == "-") {
353                         // first transparent image
354                         transparency = "1";
355                     }
356                     else if (transparency == "0") {
357                         // we have transparent and non transparent clips
358                         transparency = "-1";
359                     }
360                 }
361             }
362             if (clip->clipType() != COLOR && clip->clipType() != IMAGE && clip->clipType() != TEXT)
363                 allowDurationChange = false;
364             if (allowDurationChange && commonDuration != 0) {
365                 if (commonDuration == -1)
366                     commonDuration = clip->duration().frames(m_fps);
367                 else if (commonDuration != clip->duration().frames(m_fps))
368                     commonDuration = 0;
369             }
370             clipList.append(clip);
371             QMap <QString, QString> clipprops = clip->properties();
372             QMapIterator<QString, QString> p(commonproperties);
373             while (p.hasNext()) {
374                 p.next();
375                 if (p.value().isEmpty()) continue;
376                 if (clipprops.contains(p.key())) {
377                     if (p.value() == "-")
378                         commonproperties.insert(p.key(), clipprops.value(p.key()));
379                     else if (p.value() != clipprops.value(p.key()))
380                         commonproperties.insert(p.key(), QString());
381                 } else {
382                     commonproperties.insert(p.key(), QString());
383                 }
384             }
385         }
386     }
387     if (allowDurationChange)
388         commonproperties.insert("out", QString::number(commonDuration));
389     if (hasImages)
390         commonproperties.insert("transparency", transparency);
391     /*QMapIterator<QString, QString> p(commonproperties);
392     while (p.hasNext()) {
393         p.next();
394         kDebug() << "Result: " << p.key() << " = " << p.value();
395     }*/
396     emit showClipProperties(clipList, commonproperties);
397 }
398
399 void ProjectList::slotOpenClip()
400 {
401     ProjectItem *item;
402     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE)
403         return;
404     if (m_listView->currentItem()->type() == QTreeWidgetItem::UserType + 1)
405         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
406     else
407         item = static_cast <ProjectItem*>(m_listView->currentItem());
408     if (item) {
409         if (item->clipType() == IMAGE) {
410             if (KdenliveSettings::defaultimageapp().isEmpty())
411                 KMessageBox::sorry(kapp->activeWindow(), i18n("Please set a default application to open images in the Settings dialog"));
412             else
413                 QProcess::startDetached(KdenliveSettings::defaultimageapp(), QStringList() << item->clipUrl().path());
414         }
415         if (item->clipType() == AUDIO) {
416             if (KdenliveSettings::defaultaudioapp().isEmpty())
417                 KMessageBox::sorry(kapp->activeWindow(), i18n("Please set a default application to open audio files in the Settings dialog"));
418             else
419                 QProcess::startDetached(KdenliveSettings::defaultaudioapp(), QStringList() << item->clipUrl().path());
420         }
421     }
422 }
423
424 void ProjectList::cleanup()
425 {
426     m_listView->clearSelection();
427     QTreeWidgetItemIterator it(m_listView);
428     ProjectItem *item;
429     while (*it) {
430         if ((*it)->type() != PROJECTCLIPTYPE) {
431             it++;
432             continue;
433         }
434         item = static_cast <ProjectItem *>(*it);
435         if (item->numReferences() == 0)
436             item->setSelected(true);
437         it++;
438     }
439     slotRemoveClip();
440 }
441
442 void ProjectList::trashUnusedClips()
443 {
444     QTreeWidgetItemIterator it(m_listView);
445     ProjectItem *item;
446     QStringList ids;
447     QStringList urls;
448     while (*it) {
449         if ((*it)->type() != PROJECTCLIPTYPE) {
450             it++;
451             continue;
452         }
453         item = static_cast <ProjectItem *>(*it);
454         if (item->numReferences() == 0) {
455             ids << item->clipId();
456             KUrl url = item->clipUrl();
457             if (!url.isEmpty() && !urls.contains(url.path()))
458                 urls << url.path();
459         }
460         it++;
461     }
462
463     // Check that we don't use the URL in another clip
464     QTreeWidgetItemIterator it2(m_listView);
465     while (*it2) {
466         if ((*it2)->type() != PROJECTCLIPTYPE) {
467             it2++;
468             continue;
469         }
470         item = static_cast <ProjectItem *>(*it2);
471         if (item->numReferences() > 0) {
472             KUrl url = item->clipUrl();
473             if (!url.isEmpty() && urls.contains(url.path())) urls.removeAll(url.path());
474         }
475         it2++;
476     }
477
478     emit deleteProjectClips(ids, QMap <QString, QString>());
479     for (int i = 0; i < urls.count(); i++)
480         KIO::NetAccess::del(KUrl(urls.at(i)), this);
481 }
482
483 void ProjectList::slotReloadClip(const QString &id)
484 {
485     QList<QTreeWidgetItem *> selected;
486     if (id.isEmpty())
487         selected = m_listView->selectedItems();
488     else {
489         ProjectItem *itemToReLoad = getItemById(id);
490         if (itemToReLoad) selected.append(itemToReLoad);
491     }
492     ProjectItem *item;
493     for (int i = 0; i < selected.count(); i++) {
494         if (selected.at(i)->type() != PROJECTCLIPTYPE) {
495             if (selected.at(i)->type() == PROJECTFOLDERTYPE) {
496                 for (int j = 0; j < selected.at(i)->childCount(); j++)
497                     selected.append(selected.at(i)->child(j));
498             }
499             continue;
500         }
501         item = static_cast <ProjectItem *>(selected.at(i));
502         if (item && !item->isProxyRunning()) {
503             DocClipBase *clip = item->referencedClip();
504             if (!clip || !clip->isClean() || m_render->isProcessing(item->clipId())) {
505                 kDebug()<<"//// TRYING TO RELOAD: "<<item->clipId()<<", but it is busy";
506                 continue;
507             }
508             CLIPTYPE t = item->clipType();
509             if (t == TEXT) {
510                 if (clip && !clip->getProperty("xmltemplate").isEmpty())
511                     regenerateTemplate(item);
512             } else if (t != COLOR && t != SLIDESHOW && clip && clip->checkHash() == false) {
513                 item->referencedClip()->setPlaceHolder(true);
514                 item->setProperty("file_hash", QString());
515             } else if (t == IMAGE) {
516                 clip->getProducer()->set("force_reload", 1);
517             }
518
519             QDomElement e = item->toXml();
520             // Make sure we get the correct producer length if it was adjusted in timeline
521             if (t == COLOR || t == IMAGE || t == SLIDESHOW || t == TEXT) {
522                 int length = QString(clip->producerProperty("length")).toInt();
523                 if (length > 0 && !e.hasAttribute("length")) {
524                     e.setAttribute("length", length);
525                 }
526             }
527             resetThumbsProducer(clip);
528             m_render->getFileProperties(e, item->clipId(), m_listView->iconSize().height(), true);
529         }
530     }
531 }
532
533 void ProjectList::slotModifiedClip(const QString &id)
534 {
535     ProjectItem *item = getItemById(id);
536     if (item) {
537         QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
538         if (!pixmap.isNull()) {
539             QPainter p(&pixmap);
540             p.fillRect(0, 0, pixmap.width(), pixmap.height(), QColor(255, 255, 255, 200));
541             p.drawPixmap(0, 0, KIcon("view-refresh").pixmap(m_listView->iconSize()));
542             p.end();
543         } else {
544             pixmap = KIcon("view-refresh").pixmap(m_listView->iconSize());
545         }
546         item->setData(0, Qt::DecorationRole, pixmap);
547     }
548 }
549
550 void ProjectList::slotMissingClip(const QString &id)
551 {
552     ProjectItem *item = getItemById(id);
553     if (item) {
554         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
555         int height = m_listView->iconSize().height();
556         int width = (int)(height  * m_render->dar());
557         QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
558         if (pixmap.isNull()) {
559             pixmap = QPixmap(width, height);
560             pixmap.fill(Qt::transparent);
561         }
562         KIcon icon("dialog-close");
563         QPainter p(&pixmap);
564         p.drawPixmap(3, 3, icon.pixmap(width - 6, height - 6));
565         p.end();
566         item->setData(0, Qt::DecorationRole, pixmap);
567         if (item->referencedClip()) {
568             item->referencedClip()->setPlaceHolder(true);
569             if (m_render == NULL) {
570                 kDebug() << "*********  ERROR, NULL RENDR";
571                 return;
572             }
573             Mlt::Producer *newProd = m_render->invalidProducer(id);
574             if (item->referencedClip()->getProducer()) {
575                 Mlt::Properties props(newProd->get_properties());
576                 Mlt::Properties src_props(item->referencedClip()->getProducer()->get_properties());
577                 props.inherit(src_props);
578             }
579             item->referencedClip()->setProducer(newProd, true);
580             item->slotSetToolTip();
581             emit clipNeedsReload(id);
582         }
583     }
584     update();
585     emit displayMessage(i18n("Check missing clips"), -2);
586     emit updateRenderStatus();
587 }
588
589 void ProjectList::slotAvailableClip(const QString &id)
590 {
591     ProjectItem *item = getItemById(id);
592     if (item == NULL)
593         return;
594     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
595     if (item->referencedClip()) { // && item->referencedClip()->checkHash() == false) {
596         item->setProperty("file_hash", QString());
597         slotReloadClip(id);
598     }
599     /*else {
600     item->referencedClip()->setValid();
601     item->slotSetToolTip();
602     }
603     update();*/
604     emit updateRenderStatus();
605 }
606
607 bool ProjectList::hasMissingClips()
608 {
609     bool missing = false;
610     QTreeWidgetItemIterator it(m_listView);
611     while (*it) {
612         if ((*it)->type() == PROJECTCLIPTYPE && !((*it)->flags() & Qt::ItemIsDragEnabled)) {
613             missing = true;
614             break;
615         }
616         it++;
617     }
618     return missing;
619 }
620
621 void ProjectList::setRenderer(Render *projectRender)
622 {
623     m_render = projectRender;
624     m_listView->setIconSize(QSize((ProjectItem::itemDefaultHeight() - 2) * m_render->dar(), ProjectItem::itemDefaultHeight() - 2));
625 }
626
627 void ProjectList::slotClipSelected()
628 {
629     QTreeWidgetItem *item = m_listView->currentItem();
630     ProjectItem *clip = NULL;
631     if (item) {
632         if (item->type() == PROJECTFOLDERTYPE) {
633             emit clipSelected(NULL);
634             m_editButton->defaultAction()->setEnabled(item->childCount() > 0);
635             m_deleteButton->defaultAction()->setEnabled(true);
636             m_openAction->setEnabled(false);
637             m_reloadAction->setEnabled(false);
638             m_transcodeAction->setEnabled(false);
639         } else {
640             if (item->type() == PROJECTSUBCLIPTYPE) {
641                 // this is a sub item, use base clip
642                 m_deleteButton->defaultAction()->setEnabled(true);
643                 clip = static_cast <ProjectItem*>(item->parent());
644                 if (clip == NULL) kDebug() << "-----------ERROR";
645                 SubProjectItem *sub = static_cast <SubProjectItem*>(item);
646                 emit clipSelected(clip->referencedClip(), sub->zone());
647                 m_transcodeAction->setEnabled(false);
648                 m_reloadAction->setEnabled(false);
649                 adjustProxyActions(clip);
650                 return;
651             }
652             clip = static_cast <ProjectItem*>(item);
653             if (clip && clip->referencedClip())
654                 emit clipSelected(clip->referencedClip());
655             m_editButton->defaultAction()->setEnabled(true);
656             m_deleteButton->defaultAction()->setEnabled(true);
657             m_reloadAction->setEnabled(true);
658             m_transcodeAction->setEnabled(true);
659             if (clip && clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
660                 m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
661                 m_openAction->setEnabled(true);
662             } else if (clip && clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
663                 m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
664                 m_openAction->setEnabled(true);
665             } else {
666                 m_openAction->setEnabled(false);
667             }
668             // Display relevant transcoding actions only
669             adjustTranscodeActions(clip);
670             // Display uses in timeline
671             emit findInTimeline(clip->clipId());
672         }
673     } else {
674         emit clipSelected(NULL);
675         m_editButton->defaultAction()->setEnabled(false);
676         m_deleteButton->defaultAction()->setEnabled(false);
677         m_openAction->setEnabled(false);
678         m_reloadAction->setEnabled(false);
679         m_transcodeAction->setEnabled(false);
680     }
681     adjustProxyActions(clip);
682 }
683
684 void ProjectList::adjustProxyActions(ProjectItem *clip) const
685 {
686     if (clip == NULL || clip->type() != PROJECTCLIPTYPE || clip->clipType() == COLOR || clip->clipType() == TEXT || clip->clipType() == SLIDESHOW || clip->clipType() == AUDIO) {
687         m_proxyAction->setEnabled(false);
688         return;
689     }
690     m_proxyAction->setEnabled(useProxy());
691     m_proxyAction->blockSignals(true);
692     m_proxyAction->setChecked(clip->hasProxy());
693     m_proxyAction->blockSignals(false);
694 }
695
696 void ProjectList::adjustTranscodeActions(ProjectItem *clip) const
697 {
698     if (clip == NULL || clip->type() != PROJECTCLIPTYPE || clip->clipType() == COLOR || clip->clipType() == TEXT || clip->clipType() == PLAYLIST || clip->clipType() == SLIDESHOW) {
699         m_transcodeAction->setEnabled(false);
700         return;
701     }
702     m_transcodeAction->setEnabled(true);
703     QList<QAction *> transcodeActions = m_transcodeAction->actions();
704     QStringList data;
705     QString condition;
706     for (int i = 0; i < transcodeActions.count(); i++) {
707         data = transcodeActions.at(i)->data().toStringList();
708         if (data.count() > 2) {
709             condition = data.at(2);
710             if (condition.startsWith("vcodec"))
711                 transcodeActions.at(i)->setEnabled(clip->referencedClip()->hasVideoCodec(condition.section('=', 1, 1)));
712             else if (condition.startsWith("acodec"))
713                 transcodeActions.at(i)->setEnabled(clip->referencedClip()->hasVideoCodec(condition.section('=', 1, 1)));
714         }
715     }
716
717 }
718
719 void ProjectList::slotPauseMonitor()
720 {
721     if (m_render)
722         m_render->pause();
723 }
724
725 void ProjectList::slotUpdateClipProperties(const QString &id, QMap <QString, QString> properties)
726 {
727     ProjectItem *item = getItemById(id);
728     if (item) {
729         slotUpdateClipProperties(item, properties);
730         if (properties.contains("out") || properties.contains("force_fps") || properties.contains("resource")) {
731             slotReloadClip(id);
732         } else if (properties.contains("colour") ||
733                    properties.contains("xmldata") ||
734                    properties.contains("force_aspect_num") ||
735                    properties.contains("force_aspect_den") ||
736                    properties.contains("templatetext")) {
737             slotRefreshClipThumbnail(item);
738             emit refreshClip(id, true);
739         } else if (properties.contains("full_luma") || properties.contains("force_colorspace") || properties.contains("loop")) {
740             emit refreshClip(id, false);
741         }
742     }
743 }
744
745 void ProjectList::slotUpdateClipProperties(ProjectItem *clip, QMap <QString, QString> properties)
746 {
747     if (!clip)
748         return;
749     clip->setProperties(properties);
750     if (properties.contains("name")) {
751         monitorItemEditing(false);
752         clip->setText(0, properties.value("name"));
753         monitorItemEditing(true);
754         emit clipNameChanged(clip->clipId(), properties.value("name"));
755     }
756     if (properties.contains("description")) {
757         CLIPTYPE type = clip->clipType();
758         monitorItemEditing(false);
759         clip->setText(1, properties.value("description"));
760         monitorItemEditing(true);
761 #ifdef NEPOMUK
762         if (KdenliveSettings::activate_nepomuk() && (type == AUDIO || type == VIDEO || type == AV || type == IMAGE || type == PLAYLIST)) {
763             // Use Nepomuk system to store clip description
764             Nepomuk::Resource f(clip->clipUrl().path());
765             f.setDescription(properties.value("description"));
766         }
767 #endif
768         emit projectModified();
769     }
770 }
771
772 void ProjectList::slotItemEdited(QTreeWidgetItem *item, int column)
773 {
774     if (item->type() == PROJECTSUBCLIPTYPE) {
775         // this is a sub-item
776         if (column == 1) {
777             // user edited description
778             SubProjectItem *sub = static_cast <SubProjectItem*>(item);
779             ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
780             EditClipCutCommand *command = new EditClipCutCommand(this, item->clipId(), sub->zone(), sub->zone(), sub->description(), sub->text(1), true);
781             m_commandStack->push(command);
782             //slotUpdateCutClipProperties(sub->clipId(), sub->zone(), sub->text(1), sub->text(1));
783         }
784         return;
785     }
786     if (item->type() == PROJECTFOLDERTYPE) {
787         if (column == 0) {
788             FolderProjectItem *folder = static_cast <FolderProjectItem*>(item);
789             editFolder(item->text(0), folder->groupName(), folder->clipId());
790             folder->setGroupName(item->text(0));
791             m_doc->clipManager()->addFolder(folder->clipId(), item->text(0));
792             const int children = item->childCount();
793             for (int i = 0; i < children; i++) {
794                 ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
795                 child->setProperty("groupname", item->text(0));
796             }
797         }
798         return;
799     }
800
801     ProjectItem *clip = static_cast <ProjectItem*>(item);
802     if (column == 1) {
803         if (clip->referencedClip()) {
804             QMap <QString, QString> oldprops;
805             QMap <QString, QString> newprops;
806             oldprops["description"] = clip->referencedClip()->getProperty("description");
807             newprops["description"] = item->text(1);
808
809             if (clip->clipType() == TEXT) {
810                 // This is a text template clip, update the image
811                 /*oldprops.insert("xmldata", clip->referencedClip()->getProperty("xmldata"));
812                 newprops.insert("xmldata", generateTemplateXml(clip->referencedClip()->getProperty("xmltemplate"), item->text(2)).toString());*/
813                 oldprops.insert("templatetext", clip->referencedClip()->getProperty("templatetext"));
814                 newprops.insert("templatetext", item->text(1));
815             }
816             slotUpdateClipProperties(clip->clipId(), newprops);
817             EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false);
818             m_commandStack->push(command);
819         }
820     } else if (column == 0) {
821         if (clip->referencedClip()) {
822             QMap <QString, QString> oldprops;
823             QMap <QString, QString> newprops;
824             oldprops["name"] = clip->referencedClip()->getProperty("name");
825             if (oldprops.value("name") != item->text(0)) {
826                 newprops["name"] = item->text(0);
827                 slotUpdateClipProperties(clip, newprops);
828                 emit projectModified();
829                 EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false);
830                 m_commandStack->push(command);
831             }
832         }
833     }
834 }
835
836 void ProjectList::slotContextMenu(const QPoint &pos, QTreeWidgetItem *item)
837 {
838     bool enable = item ? true : false;
839     m_editButton->defaultAction()->setEnabled(enable);
840     m_deleteButton->defaultAction()->setEnabled(enable);
841     m_reloadAction->setEnabled(enable);
842     m_transcodeAction->setEnabled(enable);
843     if (enable) {
844         ProjectItem *clip = NULL;
845         if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
846             clip = static_cast <ProjectItem*>(item->parent());
847             m_transcodeAction->setEnabled(false);
848             adjustProxyActions(clip);
849         } else if (m_listView->currentItem()->type() == PROJECTCLIPTYPE) {
850             clip = static_cast <ProjectItem*>(item);
851             // Display relevant transcoding actions only
852             adjustTranscodeActions(clip);
853             adjustProxyActions(clip);
854             // Display uses in timeline
855             emit findInTimeline(clip->clipId());
856         } else {
857             m_transcodeAction->setEnabled(false);
858         }
859         if (clip && clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
860             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
861             m_openAction->setEnabled(true);
862         } else if (clip && clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
863             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
864             m_openAction->setEnabled(true);
865         } else {
866             m_openAction->setEnabled(false);
867         }
868
869     } else {
870         m_openAction->setEnabled(false);
871     }
872     m_menu->popup(pos);
873 }
874
875 void ProjectList::slotRemoveClip()
876 {
877     if (!m_listView->currentItem())
878         return;
879     QStringList ids;
880     QMap <QString, QString> folderids;
881     QList<QTreeWidgetItem *> selected = m_listView->selectedItems();
882
883     QUndoCommand *delCommand = new QUndoCommand();
884     delCommand->setText(i18n("Delete Clip Zone"));
885     for (int i = 0; i < selected.count(); i++) {
886         if (selected.at(i)->type() == PROJECTSUBCLIPTYPE) {
887             // subitem
888             SubProjectItem *sub = static_cast <SubProjectItem *>(selected.at(i));
889             ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
890             new AddClipCutCommand(this, item->clipId(), sub->zone().x(), sub->zone().y(), sub->description(), false, true, delCommand);
891         } else if (selected.at(i)->type() == PROJECTFOLDERTYPE) {
892             // folder
893             FolderProjectItem *folder = static_cast <FolderProjectItem *>(selected.at(i));
894             folderids[folder->groupName()] = folder->clipId();
895             int children = folder->childCount();
896
897             if (children > 0 && KMessageBox::questionYesNo(kapp->activeWindow(), 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)
898                 return;
899             for (int i = 0; i < children; ++i) {
900                 ProjectItem *child = static_cast <ProjectItem *>(folder->child(i));
901                 ids << child->clipId();
902             }
903         } else {
904             ProjectItem *item = static_cast <ProjectItem *>(selected.at(i));
905             ids << item->clipId();
906             if (item->numReferences() > 0 && KMessageBox::questionYesNo(kapp->activeWindow(), 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"), KStandardGuiItem::yes(), KStandardGuiItem::no(), "DeleteAll") == KMessageBox::No) {
907                 KMessageBox::enableMessage("DeleteAll");
908                 return;
909             }
910         }
911     }
912     KMessageBox::enableMessage("DeleteAll");
913     if (delCommand->childCount() == 0)
914         delete delCommand;
915     else
916         m_commandStack->push(delCommand);
917     emit deleteProjectClips(ids, folderids);
918 }
919
920 void ProjectList::updateButtons() const
921 {
922     if (m_listView->topLevelItemCount() == 0) {
923         m_deleteButton->defaultAction()->setEnabled(false);
924         m_editButton->defaultAction()->setEnabled(false);
925     } else {
926         m_deleteButton->defaultAction()->setEnabled(true);
927         if (!m_listView->currentItem())
928             m_listView->setCurrentItem(m_listView->topLevelItem(0));
929         QTreeWidgetItem *item = m_listView->currentItem();
930         if (item && item->type() == PROJECTCLIPTYPE) {
931             m_editButton->defaultAction()->setEnabled(true);
932             m_openAction->setEnabled(true);
933             m_reloadAction->setEnabled(true);
934             m_transcodeAction->setEnabled(true);
935             return;
936         }
937         else if (item && item->type() == PROJECTFOLDERTYPE && item->childCount() > 0) {
938             m_editButton->defaultAction()->setEnabled(true);
939         }
940         else m_editButton->defaultAction()->setEnabled(false);
941     }
942     m_openAction->setEnabled(false);
943     m_reloadAction->setEnabled(false);
944     m_transcodeAction->setEnabled(false);
945     m_proxyAction->setEnabled(false);
946 }
947
948 void ProjectList::selectItemById(const QString &clipId)
949 {
950     ProjectItem *item = getItemById(clipId);
951     if (item)
952         m_listView->setCurrentItem(item);
953 }
954
955
956 void ProjectList::slotDeleteClip(const QString &clipId)
957 {
958     ProjectItem *item = getItemById(clipId);
959     if (!item) {
960         kDebug() << "/// Cannot find clip to delete";
961         return;
962     }
963     if (item->isProxyRunning()) m_abortProxy.append(item->referencedClip()->getProperty("proxy"));
964     m_listView->blockSignals(true);
965     QTreeWidgetItem *newSelectedItem = m_listView->itemAbove(item);
966     if (!newSelectedItem)
967         newSelectedItem = m_listView->itemBelow(item);
968     delete item;
969     // Pause playing to prevent crash while deleting clip
970     slotPauseMonitor();
971     m_doc->clipManager()->deleteClip(clipId);
972     m_listView->blockSignals(false);
973     if (newSelectedItem) {
974         m_listView->setCurrentItem(newSelectedItem);
975     } else {
976         updateButtons();
977         emit clipSelected(NULL);
978     }
979 }
980
981
982 void ProjectList::editFolder(const QString folderName, const QString oldfolderName, const QString &clipId)
983 {
984     EditFolderCommand *command = new EditFolderCommand(this, folderName, oldfolderName, clipId, false);
985     m_commandStack->push(command);
986     m_doc->setModified(true);
987 }
988
989 void ProjectList::slotAddFolder()
990 {
991     AddFolderCommand *command = new AddFolderCommand(this, i18n("Folder"), QString::number(m_doc->clipManager()->getFreeFolderId()), true);
992     m_commandStack->push(command);
993 }
994
995 void ProjectList::slotAddFolder(const QString foldername, const QString &clipId, bool remove, bool edit)
996 {
997     if (remove) {
998         FolderProjectItem *item = getFolderItemById(clipId);
999         if (item) {
1000             m_doc->clipManager()->deleteFolder(clipId);
1001             QTreeWidgetItem *newSelectedItem = m_listView->itemAbove(item);
1002             if (!newSelectedItem)
1003                 newSelectedItem = m_listView->itemBelow(item);
1004             delete item;
1005             if (newSelectedItem)
1006                 m_listView->setCurrentItem(newSelectedItem);
1007             else
1008                 updateButtons();
1009         }
1010     } else {
1011         if (edit) {
1012             FolderProjectItem *item = getFolderItemById(clipId);
1013             if (item) {
1014                 m_listView->blockSignals(true);
1015                 item->setGroupName(foldername);
1016                 m_listView->blockSignals(false);
1017                 m_doc->clipManager()->addFolder(clipId, foldername);
1018                 const int children = item->childCount();
1019                 for (int i = 0; i < children; i++) {
1020                     ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
1021                     child->setProperty("groupname", foldername);
1022                 }
1023             }
1024         } else {
1025             m_listView->blockSignals(true);
1026             m_listView->setCurrentItem(new FolderProjectItem(m_listView, QStringList() << foldername, clipId));
1027             m_doc->clipManager()->addFolder(clipId, foldername);
1028             m_listView->blockSignals(false);
1029             m_listView->editItem(m_listView->currentItem(), 0);
1030         }
1031         updateButtons();
1032     }
1033     m_doc->setModified(true);
1034 }
1035
1036
1037
1038 void ProjectList::deleteProjectFolder(QMap <QString, QString> map)
1039 {
1040     QMapIterator<QString, QString> i(map);
1041     QUndoCommand *delCommand = new QUndoCommand();
1042     delCommand->setText(i18n("Delete Folder"));
1043     while (i.hasNext()) {
1044         i.next();
1045         new AddFolderCommand(this, i.key(), i.value(), false, delCommand);
1046     }
1047     if (delCommand->childCount() > 0) m_commandStack->push(delCommand);
1048     else delete delCommand;
1049 }
1050
1051 void ProjectList::slotAddClip(DocClipBase *clip, bool getProperties)
1052 {
1053     //m_listView->setEnabled(false);
1054     const QString parent = clip->getProperty("groupid");
1055     ProjectItem *item = NULL;
1056     monitorItemEditing(false);
1057     if (!parent.isEmpty()) {
1058         FolderProjectItem *parentitem = getFolderItemById(parent);
1059         if (!parentitem) {
1060             QStringList text;
1061             QString groupName = clip->getProperty("groupname");
1062             //kDebug() << "Adding clip to new group: " << groupName;
1063             if (groupName.isEmpty()) groupName = i18n("Folder");
1064             text << groupName;
1065             parentitem = new FolderProjectItem(m_listView, text, parent);
1066         }
1067
1068         if (parentitem)
1069             item = new ProjectItem(parentitem, clip);
1070     }
1071     if (item == NULL) {
1072         item = new ProjectItem(m_listView, clip);
1073     }
1074     if (item->data(0, DurationRole).isNull()) item->setData(0, DurationRole, i18n("Loading"));
1075     QString proxy = clip->getProperty("proxy");
1076     if (!proxy.isEmpty() && proxy != "-") slotCreateProxy(clip->getId());
1077     connect(clip, SIGNAL(createProxy(const QString &)), this, SLOT(slotCreateProxy(const QString &)));
1078     connect(clip, SIGNAL(abortProxy(const QString &, const QString &)), this, SLOT(slotAbortProxy(const QString, const QString)));
1079     if (getProperties) {
1080         int height = m_listView->iconSize().height();
1081         int width = (int)(height  * m_render->dar());
1082         QPixmap pix =  KIcon("video-x-generic").pixmap(QSize(width, height));
1083         item->setData(0, Qt::DecorationRole, pix);
1084         //item->setFlags(Qt::ItemIsSelectable);
1085         m_listView->processLayout();
1086         QDomElement e = clip->toXML().cloneNode().toElement();
1087         e.removeAttribute("file_hash");
1088         resetThumbsProducer(clip);
1089         m_render->getFileProperties(e, clip->getId(), m_listView->iconSize().height(), true);
1090     }
1091     else if (item->hasProxy() && !item->isProxyRunning()) {
1092         slotCreateProxy(clip->getId());
1093     }
1094     clip->askForAudioThumbs();
1095     
1096     KUrl url = clip->fileURL();
1097 #ifdef NEPOMUK
1098     if (!url.isEmpty() && KdenliveSettings::activate_nepomuk()) {
1099         // if file has Nepomuk comment, use it
1100         Nepomuk::Resource f(url.path());
1101         QString annotation = f.description();
1102         if (!annotation.isEmpty()) item->setText(1, annotation);
1103         item->setText(2, QString::number(f.rating()));
1104     }
1105 #endif
1106     // Add cut zones
1107     QList <CutZoneInfo> cuts = clip->cutZones();
1108     if (!cuts.isEmpty()) {
1109         for (int i = 0; i < cuts.count(); i++) {
1110             SubProjectItem *sub = new SubProjectItem(item, cuts.at(i).zone.x(), cuts.at(i).zone.y(), cuts.at(i).description);
1111             if (!clip->getClipHash().isEmpty()) {
1112                 QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + '#' + QString::number(cuts.at(i).zone.x()) + ".png";
1113                 if (QFile::exists(cachedPixmap)) {
1114                     QPixmap pix(cachedPixmap);
1115                     if (pix.isNull())
1116                         KIO::NetAccess::del(KUrl(cachedPixmap), this);
1117                     sub->setData(0, Qt::DecorationRole, pix);
1118                 }
1119             }
1120         }
1121     }
1122     monitorItemEditing(true);
1123     updateButtons();
1124 }
1125
1126 void ProjectList::slotGotProxy(const QString &proxyPath)
1127 {
1128     if (proxyPath.isEmpty() || m_abortAllProxies) return;
1129     QTreeWidgetItemIterator it(m_listView);
1130     ProjectItem *item;
1131
1132     while (*it && !m_abortAllProxies) {
1133         if ((*it)->type() == PROJECTCLIPTYPE) {
1134             item = static_cast <ProjectItem *>(*it);
1135             if (item->referencedClip()->getProperty("proxy") == proxyPath)
1136                 slotGotProxy(item);
1137         }
1138         ++it;
1139     }
1140 }
1141
1142 void ProjectList::slotGotProxy(ProjectItem *item)
1143 {
1144     if (item == NULL || !m_refreshed) return;
1145     DocClipBase *clip = item->referencedClip();
1146     if (!clip || !clip->isClean() || m_render->isProcessing(item->clipId())) {
1147         // Clip is being reprocessed, abort
1148         kDebug()<<"//// TRYING TO PROXY: "<<item->clipId()<<", but it is busy";
1149         return;
1150     }
1151     
1152     // Proxy clip successfully created
1153     QDomElement e = clip->toXML().cloneNode().toElement();
1154
1155     // Make sure we get the correct producer length if it was adjusted in timeline
1156     CLIPTYPE t = item->clipType();
1157     if (t == COLOR || t == IMAGE || t == SLIDESHOW || t == TEXT) {
1158         int length = QString(clip->producerProperty("length")).toInt();
1159         if (length > 0 && !e.hasAttribute("length")) {
1160             e.setAttribute("length", length);
1161         }
1162     }
1163     resetThumbsProducer(clip);
1164     m_render->getFileProperties(e, clip->getId(), m_listView->iconSize().height(), true);
1165 }
1166
1167 void ProjectList::slotResetProjectList()
1168 {
1169     m_listView->blockSignals(true);
1170     m_abortAllProxies = true;
1171     m_proxyThreads.waitForFinished();
1172     m_proxyThreads.clearFutures();
1173     m_thumbnailQueue.clear();
1174     m_listView->clear();
1175     m_listView->setEnabled(true);
1176     emit clipSelected(NULL);
1177     m_refreshed = false;
1178     m_allClipsProcessed = false;
1179     m_abortAllProxies = false;
1180     m_listView->blockSignals(false);
1181 }
1182
1183 void ProjectList::slotUpdateClip(const QString &id)
1184 {
1185     ProjectItem *item = getItemById(id);
1186     monitorItemEditing(false);
1187     if (item) item->setData(0, UsageRole, QString::number(item->numReferences()));
1188     monitorItemEditing(true);
1189 }
1190
1191 void ProjectList::getCachedThumbnail(ProjectItem *item)
1192 {
1193     if (!item) return;
1194     DocClipBase *clip = item->referencedClip();
1195     if (!clip) return;
1196     QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + ".png";
1197     if (QFile::exists(cachedPixmap)) {
1198         QPixmap pix(cachedPixmap);
1199         if (pix.isNull()) {
1200             KIO::NetAccess::del(KUrl(cachedPixmap), this);
1201             requestClipThumbnail(item->clipId());
1202         }
1203         else item->setData(0, Qt::DecorationRole, pix);
1204     }
1205     else {
1206         requestClipThumbnail(item->clipId());
1207     }
1208 }
1209
1210 void ProjectList::getCachedThumbnail(SubProjectItem *item)
1211 {
1212     if (!item) return;
1213     ProjectItem *parentItem = static_cast <ProjectItem *>(item->parent());
1214     if (!parentItem) return;
1215     DocClipBase *clip = parentItem->referencedClip();
1216     if (!clip) return;
1217     int pos = item->zone().x();
1218     QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + "#" + QString::number(pos) + ".png";
1219     if (QFile::exists(cachedPixmap)) {
1220         QPixmap pix(cachedPixmap);
1221         if (pix.isNull()) {
1222             KIO::NetAccess::del(KUrl(cachedPixmap), this);
1223             requestClipThumbnail(parentItem->clipId() + '#' + QString::number(pos));
1224         }
1225         else item->setData(0, Qt::DecorationRole, pix);
1226     }
1227     else requestClipThumbnail(parentItem->clipId() + '#' + QString::number(pos));
1228 }
1229
1230 void ProjectList::updateAllClips(bool displayRatioChanged, bool fpsChanged, QStringList brokenClips)
1231 {
1232     if (!m_allClipsProcessed) m_listView->setEnabled(false);
1233     m_listView->setSortingEnabled(false);
1234     QTreeWidgetItemIterator it(m_listView);
1235     DocClipBase *clip;
1236     ProjectItem *item;
1237     monitorItemEditing(false);
1238     int height = m_listView->iconSize().height();
1239     int width = (int)(height  * m_render->dar());
1240     QPixmap missingPixmap = QPixmap(width, height);
1241     missingPixmap.fill(Qt::transparent);
1242     KIcon icon("dialog-close");
1243     QPainter p(&missingPixmap);
1244     p.drawPixmap(3, 3, icon.pixmap(width - 6, height - 6));
1245     p.end();
1246     
1247     int max = m_doc->clipManager()->clipsCount();
1248     max = qMax(1, max);
1249     int ct = 0;
1250
1251     while (*it) {
1252         emit displayMessage(i18n("Loading thumbnails"), (int)(100 *(max - ct++) / max));
1253         if ((*it)->type() == PROJECTSUBCLIPTYPE) {
1254             // subitem
1255             SubProjectItem *sub = static_cast <SubProjectItem *>(*it);
1256             if (displayRatioChanged) {
1257                 item = static_cast <ProjectItem *>((*it)->parent());
1258                 requestClipThumbnail(item->clipId() + '#' + QString::number(sub->zone().x()));
1259             }
1260             else if (sub->data(0, Qt::DecorationRole).isNull()) {
1261                 getCachedThumbnail(sub);
1262             }
1263             ++it;
1264             continue;
1265         } else if ((*it)->type() == PROJECTFOLDERTYPE) {
1266             // folder
1267             ++it;
1268             continue;
1269         } else {
1270             item = static_cast <ProjectItem *>(*it);
1271             clip = item->referencedClip();
1272             if (item->referencedClip()->getProducer() == NULL) {
1273                 bool replace = false;
1274                 if (brokenClips.contains(item->clipId())) {
1275                     // if this is a proxy clip, disable proxy
1276                     item->setProxyStatus(NOPROXY);
1277                     clip->setProperty("proxy", "-");
1278                     replace = true;
1279                 }
1280                 if (clip->isPlaceHolder() == false && !item->isProxyRunning()) {
1281                     QDomElement xml = clip->toXML();
1282                     if (fpsChanged) {
1283                         xml.removeAttribute("out");
1284                         xml.removeAttribute("file_hash");
1285                         xml.removeAttribute("proxy_out");
1286                     }
1287                     if (!replace) replace = xml.attribute("replace") == "1";
1288                     if (replace) resetThumbsProducer(clip);
1289                     m_render->getFileProperties(xml, clip->getId(), m_listView->iconSize().height(), replace);
1290                 }
1291                 else if (clip->isPlaceHolder()) {
1292                     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
1293                     if (item->data(0, Qt::DecorationRole).isNull()) {
1294                         item->setData(0, Qt::DecorationRole, missingPixmap);
1295                     }
1296                     else {
1297                         QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
1298                         QPainter p(&pixmap);
1299                         p.drawPixmap(3, 3, KIcon("dialog-close").pixmap(pixmap.width() - 6, pixmap.height() - 6));
1300                         p.end();
1301                         item->setData(0, Qt::DecorationRole, pixmap);
1302                     }
1303                 }
1304             } else {              
1305                 if (displayRatioChanged)
1306                     requestClipThumbnail(clip->getId());
1307                 else if (item->data(0, Qt::DecorationRole).isNull()) {
1308                     getCachedThumbnail(item);
1309                 }
1310                 if (item->data(0, DurationRole).toString().isEmpty()) {
1311                     item->changeDuration(item->referencedClip()->getProducer()->get_playtime());
1312                 }
1313                 if (clip->isPlaceHolder()) {
1314                     QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
1315                     if (pixmap.isNull()) {
1316                         pixmap = QPixmap(width, height);
1317                         pixmap.fill(Qt::transparent);
1318                     }
1319                     QPainter p(&pixmap);
1320                     p.drawPixmap(3, 3, KIcon("dialog-close").pixmap(pixmap.width() - 6, pixmap.height() - 6));
1321                     p.end();
1322                     item->setData(0, Qt::DecorationRole, pixmap);
1323                 }
1324             }
1325             item->setData(0, UsageRole, QString::number(item->numReferences()));
1326         }
1327         ++it;
1328     }
1329
1330     m_listView->setSortingEnabled(true);
1331     m_allClipsProcessed = true;
1332     if (m_render->processingItems() == 0) {
1333        monitorItemEditing(true);
1334        slotProcessNextThumbnail();
1335     }
1336 }
1337
1338 // static
1339 QString ProjectList::getExtensions()
1340 {
1341     // Build list of mime types
1342     QStringList mimeTypes = QStringList() << "application/x-kdenlive" << "application/x-kdenlivetitle" << "video/mlt-playlist" << "text/plain"
1343                             << "video/x-flv" << "application/vnd.rn-realmedia" << "video/x-dv" << "video/dv" << "video/x-msvideo" << "video/x-matroska" << "video/mpeg" << "video/ogg" << "video/x-ms-wmv" << "video/mp4" << "video/quicktime" << "video/webm"
1344                             << "audio/x-flac" << "audio/x-matroska" << "audio/mp4" << "audio/mpeg" << "audio/x-mp3" << "audio/ogg" << "audio/x-wav" << "audio/x-aiff" << "audio/aiff" << "application/ogg" << "application/mxf" << "application/x-shockwave-flash"
1345                             << "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";
1346
1347     QString allExtensions;
1348     foreach(const QString & mimeType, mimeTypes) {
1349         KMimeType::Ptr mime(KMimeType::mimeType(mimeType));
1350         if (mime) {
1351             allExtensions.append(mime->patterns().join(" "));
1352             allExtensions.append(' ');
1353         }
1354     }
1355     return allExtensions.simplified();
1356 }
1357
1358 void ProjectList::slotAddClip(const QList <QUrl> givenList, const QString &groupName, const QString &groupId)
1359 {
1360     if (!m_commandStack)
1361         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1362
1363     KUrl::List list;
1364     if (givenList.isEmpty()) {
1365         QString allExtensions = getExtensions();
1366         const QString dialogFilter = allExtensions + ' ' + QLatin1Char('|') + i18n("All Supported Files") + "\n* " + QLatin1Char('|') + i18n("All Files");
1367         QCheckBox *b = new QCheckBox(i18n("Import image sequence"));
1368         b->setChecked(KdenliveSettings::autoimagesequence());
1369         QCheckBox *c = new QCheckBox(i18n("Transparent background for images"));
1370         c->setChecked(KdenliveSettings::autoimagetransparency());
1371         QFrame *f = new QFrame;
1372         f->setFrameShape(QFrame::NoFrame);
1373         QHBoxLayout *l = new QHBoxLayout;
1374         l->addWidget(b);
1375         l->addWidget(c);
1376         l->addStretch(5);
1377         f->setLayout(l);
1378         KFileDialog *d = new KFileDialog(KUrl("kfiledialog:///clipfolder"), dialogFilter, kapp->activeWindow(), f);
1379         d->setOperationMode(KFileDialog::Opening);
1380         d->setMode(KFile::Files);
1381         if (d->exec() == QDialog::Accepted) {
1382             KdenliveSettings::setAutoimagetransparency(c->isChecked());
1383         }
1384         list = d->selectedUrls();
1385         if (b->isChecked() && list.count() == 1) {
1386             // Check for image sequence
1387             KUrl url = list.at(0);
1388             QString fileName = url.fileName().section('.', 0, -2);
1389             if (fileName.at(fileName.size() - 1).isDigit()) {
1390                 KFileItem item(KFileItem::Unknown, KFileItem::Unknown, url);
1391                 if (item.mimetype().startsWith("image")) {
1392                     // import as sequence if we found more than one image in the sequence
1393                     QStringList list;
1394                     QString pattern = SlideshowClip::selectedPath(url.path(), false, QString(), &list);
1395                     int count = list.count();
1396                     if (count > 1) {
1397                         delete d;
1398                         QStringList groupInfo = getGroup();
1399
1400                         // get image sequence base name
1401                         while (fileName.at(fileName.size() - 1).isDigit()) {
1402                             fileName.chop(1);
1403                         }
1404
1405                         m_doc->slotCreateSlideshowClipFile(fileName, pattern, count, m_timecode.reformatSeparators(KdenliveSettings::sequence_duration()),
1406                                                            false, false, false,
1407                                                            m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))), QString(), 0,
1408                                                            QString(), groupInfo.at(0), groupInfo.at(1));
1409                         return;
1410                     }
1411                 }
1412             }
1413         }
1414         delete d;
1415     } else {
1416         for (int i = 0; i < givenList.count(); i++)
1417             list << givenList.at(i);
1418     }
1419
1420     foreach(const KUrl & file, list) {
1421         // Check there is no folder here
1422         KMimeType::Ptr type = KMimeType::findByUrl(file);
1423         if (type->is("inode/directory")) {
1424             // user dropped a folder
1425             list.removeAll(file);
1426         }
1427     }
1428
1429     if (list.isEmpty())
1430         return;
1431
1432     if (givenList.isEmpty()) {
1433         QStringList groupInfo = getGroup();
1434         m_doc->slotAddClipList(list, groupInfo.at(0), groupInfo.at(1));
1435     } else {
1436         m_doc->slotAddClipList(list, groupName, groupId);
1437     }
1438 }
1439
1440 void ProjectList::slotRemoveInvalidClip(const QString &id, bool replace)
1441 {
1442     ProjectItem *item = getItemById(id);
1443     m_processingClips.removeAll(id);
1444     m_thumbnailQueue.removeAll(id);
1445     if (item) {
1446         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1447         const QString path = item->referencedClip()->fileURL().path();
1448         if (item->referencedClip()->isPlaceHolder()) replace = false;
1449         if (!path.isEmpty()) {
1450             if (m_invalidClipDialog) {
1451                 m_invalidClipDialog->addClip(id, path);
1452                 return;
1453             }
1454             else {
1455                 if (replace)
1456                     m_invalidClipDialog = new InvalidDialog(i18n("Invalid clip"),  i18n("Clip <b>%1</b><br />is invalid, will be removed from project.", QString()), replace, kapp->activeWindow());
1457                 else {
1458                     m_invalidClipDialog = new InvalidDialog(i18n("Invalid clip"),  i18n("Clip <b>%1</b><br />is missing or invalid. Remove it from project?", QString()), replace, kapp->activeWindow());
1459                 }
1460                 m_invalidClipDialog->addClip(id, path);
1461                 int result = m_invalidClipDialog->exec();
1462                 if (result == KDialog::Yes) replace = true;
1463             }
1464         }
1465         if (m_invalidClipDialog) {
1466             if (replace)
1467                 emit deleteProjectClips(m_invalidClipDialog->getIds(), QMap <QString, QString>());
1468             delete m_invalidClipDialog;
1469             m_invalidClipDialog = NULL;
1470         }
1471         
1472     }
1473 }
1474
1475 void ProjectList::slotRemoveInvalidProxy(const QString &id, bool durationError)
1476 {
1477     ProjectItem *item = getItemById(id);
1478     if (item) {
1479         kDebug()<<"// Proxy for clip "<<id<<" is invalid, delete";
1480         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1481         if (durationError) {
1482             kDebug() << "Proxy duration is wrong, try changing transcoding parameters.";
1483             emit displayMessage(i18n("Proxy clip unusable (duration is different from original)."), -2);
1484         }
1485         item->setProxyStatus(PROXYCRASHED);
1486         QString path = item->referencedClip()->getProperty("proxy");
1487         KUrl proxyFolder(m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/");
1488
1489         //Security check: make sure the invalid proxy file is in the proxy folder
1490         if (proxyFolder.isParentOf(KUrl(path))) {
1491             QFile::remove(path);
1492         }
1493         if (item->referencedClip()->getProducer() == NULL) {
1494             // Clip has no valid producer, request it
1495             slotProxyCurrentItem(false, item);
1496         }
1497         else {
1498             // refresh thumbs producer
1499             item->referencedClip()->reloadThumbProducer();
1500         }
1501     }
1502     m_processingClips.removeAll(id);
1503     m_thumbnailQueue.removeAll(id);
1504 }
1505
1506 void ProjectList::slotAddColorClip()
1507 {
1508     if (!m_commandStack)
1509         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1510
1511     QDialog *dia = new QDialog(this);
1512     Ui::ColorClip_UI dia_ui;
1513     dia_ui.setupUi(dia);
1514     dia->setWindowTitle(i18n("Color Clip"));
1515     dia_ui.clip_name->setText(i18n("Color Clip"));
1516
1517     TimecodeDisplay *t = new TimecodeDisplay(m_timecode);
1518     t->setValue(KdenliveSettings::color_duration());
1519     t->setTimeCodeFormat(false);
1520     dia_ui.clip_durationBox->addWidget(t);
1521     dia_ui.clip_color->setColor(KdenliveSettings::colorclipcolor());
1522
1523     if (dia->exec() == QDialog::Accepted) {
1524         QString color = dia_ui.clip_color->color().name();
1525         KdenliveSettings::setColorclipcolor(color);
1526         color = color.replace(0, 1, "0x") + "ff";
1527         QStringList groupInfo = getGroup();
1528         m_doc->slotCreateColorClip(dia_ui.clip_name->text(), color, m_timecode.getTimecode(t->gentime()), groupInfo.at(0), groupInfo.at(1));
1529     }
1530     delete t;
1531     delete dia;
1532 }
1533
1534
1535 void ProjectList::slotAddSlideshowClip()
1536 {
1537     if (!m_commandStack)
1538         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1539
1540     SlideshowClip *dia = new SlideshowClip(m_timecode, this);
1541
1542     if (dia->exec() == QDialog::Accepted) {
1543         QStringList groupInfo = getGroup();
1544         m_doc->slotCreateSlideshowClipFile(dia->clipName(), dia->selectedPath(), dia->imageCount(), dia->clipDuration(),
1545                                            dia->loop(), dia->crop(), dia->fade(),
1546                                            dia->lumaDuration(), dia->lumaFile(), dia->softness(),
1547                                            dia->animation(), groupInfo.at(0), groupInfo.at(1));
1548     }
1549     delete dia;
1550 }
1551
1552 void ProjectList::slotAddTitleClip()
1553 {
1554     QStringList groupInfo = getGroup();
1555     m_doc->slotCreateTextClip(groupInfo.at(0), groupInfo.at(1));
1556 }
1557
1558 void ProjectList::slotAddTitleTemplateClip()
1559 {
1560     if (!m_commandStack)
1561         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1562
1563     QStringList groupInfo = getGroup();
1564
1565     // Get the list of existing templates
1566     QStringList filter;
1567     filter << "*.kdenlivetitle";
1568     const QString path = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
1569     QStringList templateFiles = QDir(path).entryList(filter, QDir::Files);
1570
1571     QDialog *dia = new QDialog(this);
1572     Ui::TemplateClip_UI dia_ui;
1573     dia_ui.setupUi(dia);
1574     for (int i = 0; i < templateFiles.size(); ++i)
1575         dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), path + templateFiles.at(i));
1576
1577     if (!templateFiles.isEmpty())
1578         dia_ui.buttonBox->button(QDialogButtonBox::Ok)->setFocus();
1579     dia_ui.template_list->fileDialog()->setFilter("application/x-kdenlivetitle");
1580     //warning: setting base directory doesn't work??
1581     KUrl startDir(path);
1582     dia_ui.template_list->fileDialog()->setUrl(startDir);
1583     dia_ui.text_box->setHidden(true);
1584     if (dia->exec() == QDialog::Accepted) {
1585         QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
1586         if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
1587         // Create a cloned template clip
1588         m_doc->slotCreateTextTemplateClip(groupInfo.at(0), groupInfo.at(1), KUrl(textTemplate));
1589     }
1590     delete dia;
1591 }
1592
1593 QStringList ProjectList::getGroup() const
1594 {
1595     QStringList result;
1596     QTreeWidgetItem *item = m_listView->currentItem();
1597     while (item && item->type() != PROJECTFOLDERTYPE)
1598         item = item->parent();
1599
1600     if (item) {
1601         FolderProjectItem *folder = static_cast <FolderProjectItem *>(item);
1602         result << folder->groupName() << folder->clipId();
1603     } else {
1604         result << QString() << QString();
1605     }
1606     return result;
1607 }
1608
1609 void ProjectList::setDocument(KdenliveDoc *doc)
1610 {
1611     m_listView->blockSignals(true);
1612     m_abortAllProxies = true;
1613     m_proxyThreads.waitForFinished();
1614     m_proxyThreads.clearFutures();
1615     m_thumbnailQueue.clear();
1616     m_listView->clear();
1617     m_processingClips.clear();
1618     
1619     m_listView->setSortingEnabled(false);
1620     emit clipSelected(NULL);
1621     m_refreshed = false;
1622     m_allClipsProcessed = false;
1623     m_fps = doc->fps();
1624     m_timecode = doc->timecode();
1625     m_commandStack = doc->commandStack();
1626     m_doc = doc;
1627     m_abortAllProxies = false;
1628
1629     QMap <QString, QString> flist = doc->clipManager()->documentFolderList();
1630     QStringList openedFolders = doc->getExpandedFolders();
1631     QMapIterator<QString, QString> f(flist);
1632     while (f.hasNext()) {
1633         f.next();
1634         FolderProjectItem *folder = new FolderProjectItem(m_listView, QStringList() << f.value(), f.key());
1635         folder->setExpanded(openedFolders.contains(f.key()));
1636     }
1637
1638     QList <DocClipBase*> list = doc->clipManager()->documentClipList();
1639     if (list.isEmpty()) {
1640         // blank document
1641         m_refreshed = true;
1642         m_allClipsProcessed = true;
1643     }
1644     for (int i = 0; i < list.count(); i++)
1645         slotAddClip(list.at(i), false);
1646
1647     m_listView->blockSignals(false);
1648     connect(m_doc->clipManager(), SIGNAL(reloadClip(const QString &)), this, SLOT(slotReloadClip(const QString &)));
1649     connect(m_doc->clipManager(), SIGNAL(modifiedClip(const QString &)), this, SLOT(slotModifiedClip(const QString &)));
1650     connect(m_doc->clipManager(), SIGNAL(missingClip(const QString &)), this, SLOT(slotMissingClip(const QString &)));
1651     connect(m_doc->clipManager(), SIGNAL(availableClip(const QString &)), this, SLOT(slotAvailableClip(const QString &)));
1652     connect(m_doc->clipManager(), SIGNAL(checkAllClips(bool, bool, QStringList)), this, SLOT(updateAllClips(bool, bool, QStringList)));
1653 }
1654
1655 QList <DocClipBase*> ProjectList::documentClipList() const
1656 {
1657     if (m_doc == NULL)
1658         return QList <DocClipBase*> ();
1659
1660     return m_doc->clipManager()->documentClipList();
1661 }
1662
1663 QDomElement ProjectList::producersList()
1664 {
1665     QDomDocument doc;
1666     QDomElement prods = doc.createElement("producerlist");
1667     doc.appendChild(prods);
1668     QTreeWidgetItemIterator it(m_listView);
1669     while (*it) {
1670         if ((*it)->type() != PROJECTCLIPTYPE) {
1671             // subitem
1672             ++it;
1673             continue;
1674         }
1675         prods.appendChild(doc.importNode(((ProjectItem *)(*it))->toXml(), true));
1676         ++it;
1677     }
1678     return prods;
1679 }
1680
1681 void ProjectList::slotCheckForEmptyQueue()
1682 {
1683     if (m_render->processingItems() == 0 && m_thumbnailQueue.isEmpty()) {
1684         if (!m_refreshed && m_allClipsProcessed) {
1685             m_refreshed = true;
1686             m_listView->setEnabled(true);
1687             slotClipSelected();
1688             QTimer::singleShot(500, this, SIGNAL(loadingIsOver()));
1689             emit displayMessage(QString(), -1);
1690         }
1691         updateButtons();
1692     } else if (!m_refreshed) {
1693         QTimer::singleShot(300, this, SLOT(slotCheckForEmptyQueue()));
1694     }
1695 }
1696
1697
1698 void ProjectList::requestClipThumbnail(const QString id)
1699 {
1700     if (!m_thumbnailQueue.contains(id)) m_thumbnailQueue.append(id);
1701     slotProcessNextThumbnail();
1702 }
1703
1704 void ProjectList::resetThumbsProducer(DocClipBase *clip)
1705 {
1706     if (!clip) return;
1707     clip->clearThumbProducer();
1708     QString id = clip->getId();
1709     m_thumbnailQueue.removeAll(id);
1710 }
1711
1712 void ProjectList::slotProcessNextThumbnail()
1713 {
1714     if (m_render->processingItems() > 0) {
1715         return;
1716     }
1717     if (m_thumbnailQueue.isEmpty()) {
1718         slotCheckForEmptyQueue();
1719         return;
1720     }
1721     int max = m_doc->clipManager()->clipsCount();
1722     emit displayMessage(i18n("Loading thumbnails"), (int)(100 *(max - m_thumbnailQueue.count()) / max));
1723     slotRefreshClipThumbnail(m_thumbnailQueue.takeFirst(), false);
1724 }
1725
1726 void ProjectList::slotRefreshClipThumbnail(const QString &clipId, bool update)
1727 {
1728     QTreeWidgetItem *item = getAnyItemById(clipId);
1729     if (item)
1730         slotRefreshClipThumbnail(item, update);
1731     else {
1732         slotProcessNextThumbnail();
1733     }
1734 }
1735
1736 void ProjectList::slotRefreshClipThumbnail(QTreeWidgetItem *it, bool update)
1737 {
1738     if (it == NULL) return;
1739     ProjectItem *item = NULL;
1740     bool isSubItem = false;
1741     int frame;
1742     if (it->type() == PROJECTFOLDERTYPE) return;
1743     if (it->type() == PROJECTSUBCLIPTYPE) {
1744         item = static_cast <ProjectItem *>(it->parent());
1745         frame = static_cast <SubProjectItem *>(it)->zone().x();
1746         isSubItem = true;
1747     } else {
1748         item = static_cast <ProjectItem *>(it);
1749         frame = item->referencedClip()->getClipThumbFrame();
1750     }
1751
1752     if (item) {
1753         DocClipBase *clip = item->referencedClip();
1754         if (!clip) {
1755             slotProcessNextThumbnail();
1756             return;
1757         }
1758         QPixmap pix;
1759         int height = m_listView->iconSize().height();
1760         int swidth = (int)(height  * m_render->frameRenderWidth() / m_render->renderHeight()+ 0.5);
1761         int dwidth = (int)(height  * m_render->dar() + 0.5);
1762         if (clip->clipType() == AUDIO)
1763             pix = KIcon("audio-x-generic").pixmap(QSize(dwidth, height));
1764         else if (clip->clipType() == IMAGE)
1765             pix = QPixmap::fromImage(KThumb::getFrame(item->referencedClip()->getProducer(), 0, swidth, dwidth, height));
1766         else {
1767             pix = item->referencedClip()->extractImage(frame, dwidth, height);
1768         }
1769
1770         if (!pix.isNull()) {
1771             monitorItemEditing(false);
1772             it->setData(0, Qt::DecorationRole, pix);
1773             monitorItemEditing(true);
1774             
1775             QString clipId = item->getClipHash();
1776             if (!clipId.isEmpty()) {
1777                 if (!isSubItem)
1778                     m_doc->cachePixmap(clipId, pix);
1779                 else
1780                     m_doc->cachePixmap(clipId + '#' + QString::number(frame), pix);
1781             }
1782         }
1783         if (update)
1784             emit projectModified();
1785         slotProcessNextThumbnail();
1786     }
1787 }
1788
1789
1790 void ProjectList::slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const stringMap &properties, const stringMap &metadata, bool replace)
1791 {
1792     QString toReload;
1793     ProjectItem *item = getItemById(clipId);
1794
1795     int queue = m_render->processingItems();
1796     if (item && producer) {
1797         monitorItemEditing(false);
1798         DocClipBase *clip = item->referencedClip();
1799         if (producer->is_valid()) {
1800             if (clip->isPlaceHolder()) {
1801                 clip->setValid();
1802                 toReload = clipId;
1803             }
1804             item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1805         }
1806         item->setProperties(properties, metadata);
1807         clip->setProducer(producer, replace);
1808         clip->askForAudioThumbs();
1809
1810         // Proxy stuff
1811         QString size = properties.value("frame_size");
1812         if (!useProxy() && clip->getProperty("proxy").isEmpty()) setProxyStatus(item, NOPROXY);
1813         if (useProxy() && generateProxy() && clip->getProperty("proxy") == "-") setProxyStatus(item, NOPROXY);
1814         else if (useProxy() && !item->hasProxy() && !item->isProxyRunning()) {
1815             // proxy video and image clips
1816             int maxSize;
1817             CLIPTYPE t = item->clipType();
1818             if (t == IMAGE) maxSize = m_doc->getDocumentProperty("proxyimageminsize").toInt();
1819             else maxSize = m_doc->getDocumentProperty("proxyminsize").toInt();
1820             if ((((t == AV || t == VIDEO || t == PLAYLIST) && generateProxy()) || (t == IMAGE && generateImageProxy())) && (size.section('x', 0, 0).toInt() > maxSize || size.section('x', 1, 1).toInt() > maxSize)) {
1821                 if (clip->getProperty("proxy").isEmpty()) {
1822                     KUrl proxyPath = m_doc->projectFolder();
1823                     proxyPath.addPath("proxy/");
1824                     proxyPath.addPath(clip->getClipHash() + "." + (t == IMAGE ? "png" : m_doc->getDocumentProperty("proxyextension")));
1825                     QMap <QString, QString> newProps;
1826                     // insert required duration for proxy
1827                     if (t != IMAGE) newProps.insert("proxy_out", clip->producerProperty("out"));
1828                     newProps.insert("proxy", proxyPath.path());
1829                     QMap <QString, QString> oldProps = clip->properties();
1830                     oldProps.insert("proxy", QString());
1831                     EditClipCommand *command = new EditClipCommand(this, clipId, oldProps, newProps, true);
1832                     m_doc->commandStack()->push(command);
1833                 }
1834             }
1835         }
1836
1837         if (!replace && m_allClipsProcessed && item->data(0, Qt::DecorationRole).isNull()) {
1838             getCachedThumbnail(item);
1839         }
1840         if (!toReload.isEmpty())
1841             item->slotSetToolTip();
1842     } else kDebug() << "////////  COULD NOT FIND CLIP TO UPDATE PRPS...";
1843     if (queue == 0) {
1844         monitorItemEditing(true);
1845         if (item && m_thumbnailQueue.isEmpty()) {
1846             m_listView->setCurrentItem(item);
1847             bool updatedProfile = false;
1848             if (item->parent()) {
1849                 if (item->parent()->type() == PROJECTFOLDERTYPE)
1850                     static_cast <FolderProjectItem *>(item->parent())->switchIcon();
1851             } else if (KdenliveSettings::checkfirstprojectclip() &&  m_listView->topLevelItemCount() == 1 && m_refreshed && m_allClipsProcessed) {
1852                 // this is the first clip loaded in project, check if we want to adjust project settings to the clip
1853                 updatedProfile = adjustProjectProfileToItem(item);
1854             }
1855             if (updatedProfile == false) {
1856                 //emit clipSelected(item->referencedClip());
1857             }
1858         } else {
1859             int max = m_doc->clipManager()->clipsCount();
1860             if (max > 0) emit displayMessage(i18n("Loading clips"), (int)(100 *(max - queue) / max));
1861         }
1862         if (m_allClipsProcessed) emit processNextThumbnail();
1863     }
1864     if (!item) {
1865         // no item for producer, delete it
1866         delete producer;
1867         return;
1868     }
1869     if (replace) toReload = clipId;
1870     if (!toReload.isEmpty())
1871         emit clipNeedsReload(toReload);
1872 }
1873
1874 bool ProjectList::adjustProjectProfileToItem(ProjectItem *item)
1875 {
1876     if (item == NULL) {
1877         if (m_listView->currentItem() && m_listView->currentItem()->type() != PROJECTFOLDERTYPE)
1878             item = static_cast <ProjectItem*>(m_listView->currentItem());
1879     }
1880     if (item == NULL || item->referencedClip() == NULL) {
1881         KMessageBox::information(kapp->activeWindow(), i18n("Cannot find profile from current clip"));
1882         return false;
1883     }
1884     bool profileUpdated = false;
1885     QString size = item->referencedClip()->getProperty("frame_size");
1886     int width = size.section('x', 0, 0).toInt();
1887     int height = size.section('x', -1).toInt();
1888     double fps = item->referencedClip()->getProperty("fps").toDouble();
1889     double par = item->referencedClip()->getProperty("aspect_ratio").toDouble();
1890     if (item->clipType() == IMAGE || item->clipType() == AV || item->clipType() == VIDEO) {
1891         if (ProfilesDialog::matchProfile(width, height, fps, par, item->clipType() == IMAGE, m_doc->mltProfile()) == false) {
1892             // get a list of compatible profiles
1893             QMap <QString, QString> suggestedProfiles = ProfilesDialog::getProfilesFromProperties(width, height, fps, par, item->clipType() == IMAGE);
1894             if (!suggestedProfiles.isEmpty()) {
1895                 KDialog *dialog = new KDialog(this);
1896                 dialog->setCaption(i18n("Change project profile"));
1897                 dialog->setButtons(KDialog::Ok | KDialog::Cancel);
1898
1899                 QWidget container;
1900                 QVBoxLayout *l = new QVBoxLayout;
1901                 QLabel *label = new QLabel(i18n("Your clip does not match current project's profile.\nDo you want to change the project profile?\n\nThe following profiles match the clip (size: %1, fps: %2)", size, fps));
1902                 l->addWidget(label);
1903                 QListWidget *list = new QListWidget;
1904                 list->setAlternatingRowColors(true);
1905                 QMapIterator<QString, QString> i(suggestedProfiles);
1906                 while (i.hasNext()) {
1907                     i.next();
1908                     QListWidgetItem *item = new QListWidgetItem(i.value(), list);
1909                     item->setData(Qt::UserRole, i.key());
1910                     item->setToolTip(i.key());
1911                 }
1912                 list->setCurrentRow(0);
1913                 l->addWidget(list);
1914                 container.setLayout(l);
1915                 dialog->setButtonText(KDialog::Ok, i18n("Update profile"));
1916                 dialog->setMainWidget(&container);
1917                 if (dialog->exec() == QDialog::Accepted) {
1918                     //Change project profile
1919                     profileUpdated = true;
1920                     if (list->currentItem())
1921                         emit updateProfile(list->currentItem()->data(Qt::UserRole).toString());
1922                 }
1923                 delete list;
1924                 delete label;
1925             } else if (fps > 0) {
1926                 KMessageBox::information(kapp->activeWindow(), i18n("Your clip does not match current project's profile.\nNo existing profile found to match the clip's properties.\nClip size: %1\nFps: %2\n", size, fps));
1927             }
1928         }
1929     }
1930     return profileUpdated;
1931 }
1932
1933 QString ProjectList::getDocumentProperty(const QString &key) const
1934 {
1935     return m_doc->getDocumentProperty(key);
1936 }
1937
1938 bool ProjectList::useProxy() const
1939 {
1940     return m_doc->getDocumentProperty("enableproxy").toInt();
1941 }
1942
1943 bool ProjectList::generateProxy() const
1944 {
1945     return m_doc->getDocumentProperty("generateproxy").toInt();
1946 }
1947
1948 bool ProjectList::generateImageProxy() const
1949 {
1950     return m_doc->getDocumentProperty("generateimageproxy").toInt();
1951 }
1952
1953 void ProjectList::slotReplyGetImage(const QString &clipId, const QImage &img)
1954 {
1955     QPixmap pix = QPixmap::fromImage(img);
1956     setThumbnail(clipId, pix);
1957 }
1958
1959 void ProjectList::slotReplyGetImage(const QString &clipId, const QString &name, int width, int height)
1960 {
1961     QPixmap pix =  KIcon(name).pixmap(QSize(width, height));
1962     setThumbnail(clipId, pix);
1963 }
1964
1965 void ProjectList::setThumbnail(const QString &clipId, const QPixmap &pix)
1966 {
1967     ProjectItem *item = getItemById(clipId);
1968     if (item && !pix.isNull()) {
1969         monitorItemEditing(false);
1970         item->setData(0, Qt::DecorationRole, pix);
1971         monitorItemEditing(true);
1972         //update();
1973         QString clipId = item->getClipHash();
1974         if (!clipId.isEmpty()) m_doc->cachePixmap(clipId, pix);
1975     }
1976 }
1977
1978 QTreeWidgetItem *ProjectList::getAnyItemById(const QString &id)
1979 {
1980     QTreeWidgetItemIterator it(m_listView);
1981     QString lookId = id;
1982     if (id.contains('#'))
1983         lookId = id.section('#', 0, 0);
1984
1985     ProjectItem *result = NULL;
1986     while (*it) {
1987         if ((*it)->type() != PROJECTCLIPTYPE) {
1988             // subitem
1989             ++it;
1990             continue;
1991         }
1992         ProjectItem *item = static_cast<ProjectItem *>(*it);
1993         if (item->clipId() == lookId) {
1994             result = item;
1995             break;
1996         }
1997         ++it;
1998     }
1999     if (result == NULL || !id.contains('#')) {
2000         return result;
2001     } else {
2002         for (int i = 0; i < result->childCount(); i++) {
2003             SubProjectItem *sub = static_cast <SubProjectItem *>(result->child(i));
2004             if (sub && sub->zone().x() == id.section('#', 1, 1).toInt())
2005                 return sub;
2006         }
2007     }
2008
2009     return NULL;
2010 }
2011
2012
2013 ProjectItem *ProjectList::getItemById(const QString &id)
2014 {
2015     ProjectItem *item;
2016     QTreeWidgetItemIterator it(m_listView);
2017     while (*it) {
2018         if ((*it)->type() != PROJECTCLIPTYPE) {
2019             // subitem or folder
2020             ++it;
2021             continue;
2022         }
2023         item = static_cast<ProjectItem *>(*it);
2024         if (item->clipId() == id)
2025             return item;
2026         ++it;
2027     }
2028     return NULL;
2029 }
2030
2031 FolderProjectItem *ProjectList::getFolderItemById(const QString &id)
2032 {
2033     FolderProjectItem *item;
2034     QTreeWidgetItemIterator it(m_listView);
2035     while (*it) {
2036         if ((*it)->type() == PROJECTFOLDERTYPE) {
2037             item = static_cast<FolderProjectItem *>(*it);
2038             if (item->clipId() == id)
2039                 return item;
2040         }
2041         ++it;
2042     }
2043     return NULL;
2044 }
2045
2046 void ProjectList::slotSelectClip(const QString &ix)
2047 {
2048     ProjectItem *clip = getItemById(ix);
2049     if (clip) {
2050         m_listView->setCurrentItem(clip);
2051         m_listView->scrollToItem(clip);
2052         m_editButton->defaultAction()->setEnabled(true);
2053         m_deleteButton->defaultAction()->setEnabled(true);
2054         m_reloadAction->setEnabled(true);
2055         m_transcodeAction->setEnabled(true);
2056         if (clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
2057             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
2058             m_openAction->setEnabled(true);
2059         } else if (clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
2060             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
2061             m_openAction->setEnabled(true);
2062         } else {
2063             m_openAction->setEnabled(false);
2064         }
2065     }
2066 }
2067
2068 QString ProjectList::currentClipUrl() const
2069 {
2070     ProjectItem *item;
2071     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE) return QString();
2072     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
2073         // subitem
2074         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
2075     } else {
2076         item = static_cast <ProjectItem*>(m_listView->currentItem());
2077     }
2078     if (item == NULL)
2079         return QString();
2080     return item->clipUrl().path();
2081 }
2082
2083 KUrl::List ProjectList::getConditionalUrls(const QString &condition) const
2084 {
2085     KUrl::List result;
2086     ProjectItem *item;
2087     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
2088     for (int i = 0; i < list.count(); i++) {
2089         if (list.at(i)->type() == PROJECTFOLDERTYPE)
2090             continue;
2091         if (list.at(i)->type() == PROJECTSUBCLIPTYPE) {
2092             // subitem
2093             item = static_cast <ProjectItem*>(list.at(i)->parent());
2094         } else {
2095             item = static_cast <ProjectItem*>(list.at(i));
2096         }
2097         if (item == NULL || item->type() == COLOR || item->type() == SLIDESHOW || item->type() == TEXT)
2098             continue;
2099         DocClipBase *clip = item->referencedClip();
2100         if (!condition.isEmpty()) {
2101             if (condition.startsWith("vcodec") && !clip->hasVideoCodec(condition.section('=', 1, 1)))
2102                 continue;
2103             else if (condition.startsWith("acodec") && !clip->hasAudioCodec(condition.section('=', 1, 1)))
2104                 continue;
2105         }
2106         result.append(item->clipUrl());
2107     }
2108     return result;
2109 }
2110
2111 void ProjectList::regenerateTemplate(const QString &id)
2112 {
2113     ProjectItem *clip = getItemById(id);
2114     if (clip)
2115         regenerateTemplate(clip);
2116 }
2117
2118 void ProjectList::regenerateTemplate(ProjectItem *clip)
2119 {
2120     //TODO: remove this unused method, only force_reload is necessary
2121     clip->referencedClip()->getProducer()->set("force_reload", 1);
2122 }
2123
2124 QDomDocument ProjectList::generateTemplateXml(QString path, const QString &replaceString)
2125 {
2126     QDomDocument doc;
2127     QFile file(path);
2128     if (!file.open(QIODevice::ReadOnly)) {
2129         kWarning() << "ERROR, CANNOT READ: " << path;
2130         return doc;
2131     }
2132     if (!doc.setContent(&file)) {
2133         kWarning() << "ERROR, CANNOT READ: " << path;
2134         file.close();
2135         return doc;
2136     }
2137     file.close();
2138     QDomNodeList texts = doc.elementsByTagName("content");
2139     for (int i = 0; i < texts.count(); i++) {
2140         QString data = texts.item(i).firstChild().nodeValue();
2141         data.replace("%s", replaceString);
2142         texts.item(i).firstChild().setNodeValue(data);
2143     }
2144     return doc;
2145 }
2146
2147
2148 void ProjectList::slotAddClipCut(const QString &id, int in, int out)
2149 {
2150     ProjectItem *clip = getItemById(id);
2151     if (clip == NULL || clip->referencedClip()->hasCutZone(QPoint(in, out)))
2152         return;
2153     AddClipCutCommand *command = new AddClipCutCommand(this, id, in, out, QString(), true, false);
2154     m_commandStack->push(command);
2155 }
2156
2157 void ProjectList::addClipCut(const QString &id, int in, int out, const QString desc, bool newItem)
2158 {
2159     ProjectItem *clip = getItemById(id);
2160     if (clip) {
2161         DocClipBase *base = clip->referencedClip();
2162         base->addCutZone(in, out);
2163         monitorItemEditing(false);
2164         SubProjectItem *sub = new SubProjectItem(clip, in, out, desc);
2165         if (newItem && desc.isEmpty() && !m_listView->isColumnHidden(1)) {
2166             if (!clip->isExpanded())
2167                 clip->setExpanded(true);
2168             m_listView->scrollToItem(sub);
2169             m_listView->editItem(sub, 1);
2170         }
2171         QPixmap p = clip->referencedClip()->extractImage(in, (int)(sub->sizeHint(0).height()  * m_render->dar()), sub->sizeHint(0).height() - 2);
2172         sub->setData(0, Qt::DecorationRole, p);
2173         QString clipId = clip->getClipHash();
2174         if (!clipId.isEmpty()) m_doc->cachePixmap(clipId + '#' + QString::number(in), p);
2175         monitorItemEditing(true);
2176     }
2177     emit projectModified();
2178 }
2179
2180 void ProjectList::removeClipCut(const QString &id, int in, int out)
2181 {
2182     ProjectItem *clip = getItemById(id);
2183     if (clip) {
2184         DocClipBase *base = clip->referencedClip();
2185         base->removeCutZone(in, out);
2186         SubProjectItem *sub = getSubItem(clip, QPoint(in, out));
2187         if (sub) {
2188             monitorItemEditing(false);
2189             delete sub;
2190             monitorItemEditing(true);
2191         }
2192     }
2193     emit projectModified();
2194 }
2195
2196 SubProjectItem *ProjectList::getSubItem(ProjectItem *clip, QPoint zone)
2197 {
2198     SubProjectItem *sub = NULL;
2199     if (clip) {
2200         for (int i = 0; i < clip->childCount(); i++) {
2201             QTreeWidgetItem *it = clip->child(i);
2202             if (it->type() == PROJECTSUBCLIPTYPE) {
2203                 sub = static_cast <SubProjectItem*>(it);
2204                 if (sub->zone() == zone)
2205                     break;
2206                 else
2207                     sub = NULL;
2208             }
2209         }
2210     }
2211     return sub;
2212 }
2213
2214 void ProjectList::slotUpdateClipCut(QPoint p)
2215 {
2216     if (!m_listView->currentItem() || m_listView->currentItem()->type() != PROJECTSUBCLIPTYPE)
2217         return;
2218     SubProjectItem *sub = static_cast <SubProjectItem*>(m_listView->currentItem());
2219     ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
2220     EditClipCutCommand *command = new EditClipCutCommand(this, item->clipId(), sub->zone(), p, sub->text(1), sub->text(1), true);
2221     m_commandStack->push(command);
2222 }
2223
2224 void ProjectList::doUpdateClipCut(const QString &id, const QPoint oldzone, const QPoint zone, const QString &comment)
2225 {
2226     ProjectItem *clip = getItemById(id);
2227     SubProjectItem *sub = getSubItem(clip, oldzone);
2228     if (sub == NULL || clip == NULL)
2229         return;
2230     DocClipBase *base = clip->referencedClip();
2231     base->updateCutZone(oldzone.x(), oldzone.y(), zone.x(), zone.y(), comment);
2232     monitorItemEditing(false);
2233     sub->setZone(zone);
2234     sub->setDescription(comment);
2235     monitorItemEditing(true);
2236     emit projectModified();
2237 }
2238
2239 void ProjectList::slotForceProcessing(const QString &id)
2240 {
2241     m_render->forceProcessing(id);
2242 }
2243
2244 void ProjectList::slotAddOrUpdateSequence(const QString frameName)
2245 {
2246     QString fileName = KUrl(frameName).fileName().section('_', 0, -2);
2247     QStringList list;
2248     QString pattern = SlideshowClip::selectedPath(frameName, false, QString(), &list);
2249     int count = list.count();
2250     if (count > 1) {
2251         const QList <DocClipBase *> existing = m_doc->clipManager()->getClipByResource(pattern);
2252         if (!existing.isEmpty()) {
2253             // Sequence already exists, update
2254             QString id = existing.at(0)->getId();
2255             //ProjectItem *item = getItemById(id);
2256             QMap <QString, QString> oldprops;
2257             QMap <QString, QString> newprops;
2258             int ttl = existing.at(0)->getProperty("ttl").toInt();
2259             oldprops["out"] = existing.at(0)->getProperty("out");
2260             newprops["out"] = QString::number(ttl * count - 1);
2261             slotUpdateClipProperties(id, newprops);
2262             EditClipCommand *command = new EditClipCommand(this, id, oldprops, newprops, false);
2263             m_commandStack->push(command);
2264         } else {
2265             // Create sequence
2266             QStringList groupInfo = getGroup();
2267             m_doc->slotCreateSlideshowClipFile(fileName, pattern, count, m_timecode.reformatSeparators(KdenliveSettings::sequence_duration()),
2268                                                false, false, false,
2269                                                m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))), QString(), 0,
2270                                                QString(), groupInfo.at(0), groupInfo.at(1));
2271         }
2272     } else emit displayMessage(i18n("Sequence not found"), -2);
2273 }
2274
2275 QMap <QString, QString> ProjectList::getProxies()
2276 {
2277     QMap <QString, QString> list;
2278     ProjectItem *item;
2279     QTreeWidgetItemIterator it(m_listView);
2280     while (*it) {
2281         if ((*it)->type() != PROJECTCLIPTYPE) {
2282             ++it;
2283             continue;
2284         }
2285         item = static_cast<ProjectItem *>(*it);
2286         if (item && item->referencedClip() != NULL) {
2287             if (item->hasProxy()) {
2288                 QString proxy = item->referencedClip()->getProperty("proxy");
2289                 list.insert(proxy, item->clipUrl().path());
2290             }
2291         }
2292         ++it;
2293     }
2294     return list;
2295 }
2296
2297 void ProjectList::slotCreateProxy(const QString id)
2298 {
2299     ProjectItem *item = getItemById(id);
2300     if (!item || item->isProxyRunning() || item->referencedClip()->isPlaceHolder()) return;
2301     QString path = item->referencedClip()->getProperty("proxy");
2302     if (path.isEmpty()) {
2303         setProxyStatus(path, PROXYCRASHED);
2304         return;
2305     }
2306     setProxyStatus(path, PROXYWAITING);
2307     if (m_abortProxy.contains(path)) m_abortProxy.removeAll(path);
2308     if (m_processingProxy.contains(path)) {
2309         // Proxy is already being generated
2310         return;
2311     }
2312     if (QFile::exists(path)) {
2313         // Proxy already created
2314         setProxyStatus(path, PROXYDONE);
2315         slotGotProxy(path);
2316         return;
2317     }
2318     m_processingProxy.append(path);
2319
2320     PROXYINFO info;
2321     info.dest = path;
2322     info.src = item->clipUrl().path();
2323     info.type = item->clipType();
2324     info.exif = QString(item->referencedClip()->producerProperty("_exif_orientation")).toInt();
2325     m_proxyList.append(info);
2326     m_proxyThreads.addFuture(QtConcurrent::run(this, &ProjectList::slotGenerateProxy));
2327 }
2328
2329 void ProjectList::slotAbortProxy(const QString id, const QString path)
2330 {
2331     QTreeWidgetItemIterator it(m_listView);
2332     ProjectItem *item = getItemById(id);
2333     setProxyStatus(item, NOPROXY);
2334     slotGotProxy(item);
2335     if (!path.isEmpty() && m_processingProxy.contains(path)) {
2336         m_abortProxy << path;
2337         setProxyStatus(path, NOPROXY);
2338     }
2339 }
2340
2341 void ProjectList::slotGenerateProxy()
2342 {
2343     if (m_proxyList.isEmpty() || m_abortAllProxies) return;
2344     emit projectModified();
2345     PROXYINFO info = m_proxyList.takeFirst();
2346     if (m_abortProxy.contains(info.dest)) {
2347         m_abortProxy.removeAll(info.dest);
2348         return;
2349     }
2350
2351     // Make sure proxy path is writable
2352     QFile file(info.dest);
2353     if (!file.open(QIODevice::WriteOnly)) {
2354         setProxyStatus(info.dest, PROXYCRASHED);
2355         m_processingProxy.removeAll(info.dest);
2356         return;
2357     }
2358     file.close();
2359     QFile::remove(info.dest);
2360     
2361     setProxyStatus(info.dest, CREATINGPROXY);
2362     
2363     // Get the list of clips that will need to get progress info
2364     QTreeWidgetItemIterator it(m_listView);
2365     QList <ProjectItem *> processingItems;
2366     while (*it && !m_abortAllProxies) {
2367         if ((*it)->type() == PROJECTCLIPTYPE) {
2368             ProjectItem *item = static_cast <ProjectItem *>(*it);
2369             if (item->referencedClip()->getProperty("proxy") == info.dest) {
2370                 processingItems.append(item);
2371             }
2372         }
2373         ++it;
2374     }
2375
2376     // Special case: playlist clips (.mlt or .kdenlive project files)
2377     if (info.type == PLAYLIST) {
2378         // change FFmpeg params to MLT format
2379         QStringList parameters;
2380         parameters << info.src;
2381         parameters << "-consumer" << "avformat:" + info.dest;
2382         QStringList params = m_doc->getDocumentProperty("proxyparams").simplified().split('-', QString::SkipEmptyParts);
2383         
2384         foreach(QString s, params) {
2385             s = s.simplified();
2386             if (s.count(' ') == 0) {
2387                 s.append("=1");
2388             }
2389             else s.replace(' ', '=');
2390             parameters << s;
2391         }
2392         
2393         parameters.append(QString("real_time=-%1").arg(KdenliveSettings::mltthreads()));
2394
2395         //TODO: currently, when rendering an xml file through melt, the display ration is lost, so we enforce it manualy
2396         double display_ratio = KdenliveDoc::getDisplayRatio(info.src);
2397         parameters << "aspect=" + QString::number(display_ratio);
2398
2399         //kDebug()<<"TRANSCOD: "<<parameters;
2400         QProcess myProcess;
2401         myProcess.setProcessChannelMode(QProcess::MergedChannels);
2402         myProcess.start(KdenliveSettings::rendererpath(), parameters);
2403         myProcess.waitForStarted();
2404         int result = -1;
2405         int duration = 0;
2406         while (myProcess.state() != QProcess::NotRunning) {
2407             // building proxy file
2408             if (m_abortProxy.contains(info.dest) || m_abortAllProxies) {
2409                 myProcess.close();
2410                 myProcess.waitForFinished();
2411                 QFile::remove(info.dest);
2412                 m_abortProxy.removeAll(info.dest);
2413                 m_processingProxy.removeAll(info.dest);
2414                 setProxyStatus(info.dest, NOPROXY);
2415                 result = -2;
2416             }
2417             else {
2418                 QString log = QString(myProcess.readAll());
2419                 processLogInfo(processingItems, &duration, log);
2420             }
2421             myProcess.waitForFinished(500);
2422         }
2423         myProcess.waitForFinished();
2424         m_processingProxy.removeAll(info.dest);
2425         if (result == -1) result = myProcess.exitStatus();
2426         if (result == 0) {
2427             // proxy successfully created
2428             setProxyStatus(info.dest, PROXYDONE);
2429             slotGotProxy(info.dest);
2430         }
2431         else if (result == 1) {
2432             // Proxy process crashed
2433             QFile::remove(info.dest);
2434             setProxyStatus(info.dest, PROXYCRASHED);
2435         }
2436         return;
2437     }
2438     
2439     if (info.type == IMAGE) {
2440         // Image proxy
2441         QImage i(info.src);
2442         if (i.isNull()) {
2443             // Cannot load image
2444             setProxyStatus(info.dest, PROXYCRASHED);
2445             return;
2446         }
2447         QImage proxy;
2448         // Images are scaled to profile size. 
2449         //TODO: Make it be configurable?
2450         if (i.width() > i.height()) proxy = i.scaledToWidth(m_render->frameRenderWidth());
2451         else proxy = i.scaledToHeight(m_render->renderHeight());
2452         if (info.exif > 1) {
2453             // Rotate image according to exif data
2454             QImage processed;
2455             QMatrix matrix;
2456
2457             switch ( info.exif ) {
2458                 case 2:
2459                   matrix.scale( -1, 1 );
2460                   break;
2461                 case 3:
2462                   matrix.rotate( 180 );
2463                   break;
2464                 case 4:
2465                   matrix.scale( 1, -1 );
2466                   break;
2467                 case 5:
2468                   matrix.rotate( 270 );
2469                   matrix.scale( -1, 1 );
2470                   break;
2471                 case 6:
2472                   matrix.rotate( 90 );
2473                   break;
2474                 case 7:
2475                   matrix.rotate( 90 );
2476                   matrix.scale( -1, 1 );
2477                   break;
2478                 case 8:
2479                   matrix.rotate( 270 );
2480                   break;
2481               }
2482               processed = proxy.transformed( matrix );
2483               processed.save(info.dest);
2484         }
2485         else proxy.save(info.dest);
2486         setProxyStatus(info.dest, PROXYDONE);
2487         slotGotProxy(info.dest);
2488         m_abortProxy.removeAll(info.dest);
2489         m_processingProxy.removeAll(info.dest);
2490         return;
2491     }
2492
2493     QStringList parameters;
2494     parameters << "-i" << info.src;
2495     QString params = m_doc->getDocumentProperty("proxyparams").simplified();
2496     foreach(QString s, params.split(' '))
2497     parameters << s;
2498
2499     // Make sure we don't block when proxy file already exists
2500     parameters << "-y";
2501     parameters << info.dest;
2502     QProcess myProcess;
2503     myProcess.setProcessChannelMode(QProcess::MergedChannels);
2504     myProcess.start("ffmpeg", parameters);
2505     myProcess.waitForStarted();
2506     int result = -1;
2507     int duration = 0;
2508    
2509     while (myProcess.state() != QProcess::NotRunning) {
2510         // building proxy file
2511         if (m_abortProxy.contains(info.dest) || m_abortAllProxies) {
2512             myProcess.close();
2513             myProcess.waitForFinished();
2514             m_abortProxy.removeAll(info.dest);
2515             m_processingProxy.removeAll(info.dest);
2516             QFile::remove(info.dest);
2517             if (!m_abortAllProxies) setProxyStatus(info.dest, NOPROXY);
2518             result = -2;
2519             
2520         }
2521         else {
2522             QString log = QString(myProcess.readAll());
2523             processLogInfo(processingItems, &duration, log);
2524         }
2525         myProcess.waitForFinished(500);
2526     }
2527     myProcess.waitForFinished();
2528     m_abortProxy.removeAll(info.dest);
2529     m_processingProxy.removeAll(info.dest);
2530     if (result == -1) result = myProcess.exitStatus();
2531     if (result == 0) {
2532         // proxy successfully created
2533         setProxyStatus(info.dest, PROXYDONE);
2534         slotGotProxy(info.dest);
2535     }
2536     else if (result == 1) {
2537         // Proxy process crashed
2538         QFile::remove(info.dest);
2539         setProxyStatus(info.dest, PROXYCRASHED);
2540     }
2541 }
2542
2543
2544 void ProjectList::processLogInfo(QList <ProjectItem *>items, int *duration, const QString &log)
2545 {
2546     int progress;
2547     if (*duration == 0) {
2548         if (log.contains("Duration:")) {
2549             QString data = log.section("Duration:", 1, 1).section(',', 0, 0).simplified();
2550             QStringList numbers = data.split(':');
2551             *duration = (int) (numbers.at(0).toInt() * 3600 + numbers.at(1).toInt() * 60 + numbers.at(2).toDouble());
2552         }
2553     }
2554     else if (log.contains("time=")) {
2555         QString time = log.section("time=", 1, 1).simplified().section(' ', 0, 0);
2556         if (time.contains(':')) {
2557             QStringList numbers = time.split(':');
2558             progress = numbers.at(0).toInt() * 3600 + numbers.at(1).toInt() * 60 + numbers.at(2).toDouble();
2559         }
2560         else progress = (int) time.toDouble();
2561         for (int i = 0; i < items.count(); i++)
2562             setProxyStatus(items.at(i), CREATINGPROXY, (int) (100.0 * progress / (*duration)));
2563     }
2564 }
2565
2566 void ProjectList::updateProxyConfig()
2567 {
2568     ProjectItem *item;
2569     QTreeWidgetItemIterator it(m_listView);
2570     QUndoCommand *command = new QUndoCommand();
2571     command->setText(i18n("Update proxy settings"));
2572     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
2573     while (*it) {
2574         if ((*it)->type() != PROJECTCLIPTYPE) {
2575             ++it;
2576             continue;
2577         }
2578         item = static_cast<ProjectItem *>(*it);
2579         if (item == NULL) {
2580             ++it;
2581             continue;
2582         }
2583         CLIPTYPE t = item->clipType();
2584         if ((t == VIDEO || t == AV || t == UNKNOWN) && item->referencedClip() != NULL) {
2585             if  (generateProxy() && useProxy() && !item->isProxyRunning()) {
2586                 DocClipBase *clip = item->referencedClip();
2587                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > m_doc->getDocumentProperty("proxyminsize").toInt()) {
2588                     if (clip->getProperty("proxy").isEmpty()) {
2589                         // We need to insert empty proxy in old properties so that undo will work
2590                         QMap <QString, QString> oldProps;// = clip->properties();
2591                         oldProps.insert("proxy", QString());
2592                         QMap <QString, QString> newProps;
2593                         newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + "." + m_doc->getDocumentProperty("proxyextension"));
2594                         new EditClipCommand(this, clip->getId(), oldProps, newProps, true, command);
2595                     }
2596                 }
2597             }
2598             else if (item->hasProxy()) {
2599                 // remove proxy
2600                 QMap <QString, QString> newProps;
2601                 newProps.insert("proxy", QString());
2602                 newProps.insert("replace", "1");
2603                 // insert required duration for proxy
2604                 newProps.insert("proxy_out", item->referencedClip()->producerProperty("out"));
2605                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), newProps, true, command);
2606             }
2607         }
2608         else if (t == IMAGE && item->referencedClip() != NULL) {
2609             if  (generateImageProxy() && useProxy()) {
2610                 DocClipBase *clip = item->referencedClip();
2611                 int maxImageSize = m_doc->getDocumentProperty("proxyimageminsize").toInt();
2612                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > maxImageSize || clip->getProperty("frame_size").section('x', 1, 1).toInt() > maxImageSize) {
2613                     if (clip->getProperty("proxy").isEmpty()) {
2614                         // We need to insert empty proxy in old properties so that undo will work
2615                         QMap <QString, QString> oldProps = clip->properties();
2616                         oldProps.insert("proxy", QString());
2617                         QMap <QString, QString> newProps;
2618                         newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + ".png");
2619                         new EditClipCommand(this, clip->getId(), oldProps, newProps, true, command);
2620                     }
2621                 }
2622             }
2623             else if (item->hasProxy()) {
2624                 // remove proxy
2625                 QMap <QString, QString> newProps;
2626                 newProps.insert("proxy", QString());
2627                 newProps.insert("replace", "1");
2628                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), newProps, true, command);
2629             }
2630         }
2631         ++it;
2632     }
2633     if (command->childCount() > 0) m_doc->commandStack()->push(command);
2634     else delete command;
2635 }
2636
2637 void ProjectList::slotProxyCurrentItem(bool doProxy, ProjectItem *itemToProxy)
2638 {
2639     QList<QTreeWidgetItem *> list;
2640     if (itemToProxy == NULL) list = m_listView->selectedItems();
2641     else list << itemToProxy;
2642     QTreeWidgetItem *listItem;
2643     QUndoCommand *command = new QUndoCommand();
2644     if (doProxy) command->setText(i18np("Add proxy clip", "Add proxy clips", list.count()));
2645     else command->setText(i18np("Remove proxy clip", "Remove proxy clips", list.count()));
2646     
2647     // Make sure the proxy folder exists
2648     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
2649     KStandardDirs::makeDir(proxydir);
2650                 
2651     QMap <QString, QString> newProps;
2652     QMap <QString, QString> oldProps;
2653     if (!doProxy) newProps.insert("proxy", "-");
2654     for (int i = 0; i < list.count(); i++) {
2655         listItem = list.at(i);
2656         if (listItem->type() == PROJECTFOLDERTYPE) {
2657             for (int j = 0; j < listItem->childCount(); j++) {
2658                 QTreeWidgetItem *sub = listItem->child(j);
2659                 if (!list.contains(sub)) list.append(sub);
2660             }
2661         }
2662         else if (listItem->type() == PROJECTSUBCLIPTYPE) {
2663             QTreeWidgetItem *sub = listItem->parent();
2664             if (!list.contains(sub)) list.append(sub);
2665         }
2666         else if (listItem->type() == PROJECTCLIPTYPE) {
2667             ProjectItem *item = static_cast <ProjectItem*>(listItem);
2668             CLIPTYPE t = item->clipType();
2669             if ((t == VIDEO || t == AV || t == UNKNOWN || t == IMAGE || t == PLAYLIST) && item->referencedClip()) {
2670                 if ((doProxy && item->hasProxy()) || (!doProxy && !item->hasProxy() && item->referencedClip()->getProducer() != NULL)) continue;
2671                 DocClipBase *clip = item->referencedClip();
2672                 if (!clip || !clip->isClean() || m_render->isProcessing(item->clipId())) {
2673                     kDebug()<<"//// TRYING TO PROXY: "<<item->clipId()<<", but it is busy";
2674                     continue;
2675                 }
2676                 
2677                 resetThumbsProducer(clip);
2678                 oldProps = clip->properties();
2679                 if (doProxy) {
2680                     newProps.clear();
2681                     QString path = proxydir + clip->getClipHash() + "." + (t == IMAGE ? "png" : m_doc->getDocumentProperty("proxyextension"));
2682                     // insert required duration for proxy
2683                     newProps.insert("proxy_out", clip->producerProperty("out"));
2684                     newProps.insert("proxy", path);
2685                     // We need to insert empty proxy so that undo will work
2686                     oldProps.insert("proxy", QString());
2687                 }
2688                 else if (item->referencedClip()->getProducer() == NULL) {
2689                     // Force clip reload
2690                     newProps.insert("resource", item->referencedClip()->getProperty("resource"));
2691                 }
2692                 new EditClipCommand(this, item->clipId(), oldProps, newProps, true, command);
2693             }
2694         }
2695     }
2696     if (command->childCount() > 0) {
2697         m_doc->commandStack()->push(command);
2698     }
2699     else delete command;
2700 }
2701
2702
2703 void ProjectList::slotDeleteProxy(const QString proxyPath)
2704 {
2705     if (proxyPath.isEmpty()) return;
2706     QUndoCommand *proxyCommand = new QUndoCommand();
2707     proxyCommand->setText(i18n("Remove Proxy"));
2708     QTreeWidgetItemIterator it(m_listView);
2709     ProjectItem *item;
2710     while (*it) {
2711         if ((*it)->type() == PROJECTCLIPTYPE) {
2712             item = static_cast <ProjectItem *>(*it);
2713             if (item->referencedClip()->getProperty("proxy") == proxyPath) {
2714                 QMap <QString, QString> props;
2715                 props.insert("proxy", QString());
2716                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), props, true, proxyCommand);
2717             
2718             }
2719         }
2720         ++it;
2721     }
2722     if (proxyCommand->childCount() == 0)
2723         delete proxyCommand;
2724     else
2725         m_commandStack->push(proxyCommand);
2726     QFile::remove(proxyPath);
2727 }
2728
2729 void ProjectList::setProxyStatus(const QString proxyPath, PROXYSTATUS status, int progress)
2730 {
2731     if (proxyPath.isEmpty() || m_abortAllProxies) return;
2732     QTreeWidgetItemIterator it(m_listView);
2733     ProjectItem *item;
2734     while (*it && !m_abortAllProxies) {
2735         if ((*it)->type() == PROJECTCLIPTYPE) {
2736             item = static_cast <ProjectItem *>(*it);
2737             if (item->referencedClip()->getProperty("proxy") == proxyPath) {
2738                 setProxyStatus(item, status, progress);
2739             }
2740         }
2741         ++it;
2742     }
2743 }
2744
2745 void ProjectList::setProxyStatus(ProjectItem *item, PROXYSTATUS status, int progress)
2746 {
2747     if (item == NULL) return;
2748     monitorItemEditing(false);
2749     item->setProxyStatus(status, progress);
2750     monitorItemEditing(true);
2751 }
2752
2753 void ProjectList::monitorItemEditing(bool enable)
2754 {
2755     if (enable) connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
2756     else disconnect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
2757 }
2758
2759 QStringList ProjectList::expandedFolders() const
2760 {
2761     QStringList result;
2762     FolderProjectItem *item;
2763     QTreeWidgetItemIterator it(m_listView);
2764     while (*it) {
2765         if ((*it)->type() != PROJECTFOLDERTYPE) {
2766             ++it;
2767             continue;
2768         }
2769         if ((*it)->isExpanded()) {
2770             item = static_cast<FolderProjectItem *>(*it);
2771             result.append(item->clipId());
2772         }
2773         ++it;
2774     }
2775     return result;
2776 }
2777
2778 #include "projectlist.moc"