]> git.sesse.net Git - kdenlive/blob - src/projectlist.cpp
Merge branch 'refs/heads/v0.8.2'
[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)
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                 if (clip->isPlaceHolder() == false && !item->isProxyRunning()) {
1274                     QDomElement xml = clip->toXML();
1275                     if (fpsChanged) {
1276                         xml.removeAttribute("out");
1277                         xml.removeAttribute("file_hash");
1278                         xml.removeAttribute("proxy_out");
1279                     }
1280                     bool replace = xml.attribute("replace") == "1";
1281                     if (replace) resetThumbsProducer(clip);
1282                     m_render->getFileProperties(xml, clip->getId(), m_listView->iconSize().height(), replace);
1283                 }
1284                 else if (clip->isPlaceHolder()) {
1285                     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
1286                     if (item->data(0, Qt::DecorationRole).isNull()) {
1287                         item->setData(0, Qt::DecorationRole, missingPixmap);
1288                     }
1289                     else {
1290                         QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
1291                         QPainter p(&pixmap);
1292                         p.drawPixmap(3, 3, KIcon("dialog-close").pixmap(pixmap.width() - 6, pixmap.height() - 6));
1293                         p.end();
1294                         item->setData(0, Qt::DecorationRole, pixmap);
1295                     }
1296                 }
1297             } else {              
1298                 if (displayRatioChanged)
1299                     requestClipThumbnail(clip->getId());
1300                 else if (item->data(0, Qt::DecorationRole).isNull()) {
1301                     getCachedThumbnail(item);
1302                 }
1303                 if (item->data(0, DurationRole).toString().isEmpty()) {
1304                     item->changeDuration(item->referencedClip()->getProducer()->get_playtime());
1305                 }
1306                 if (clip->isPlaceHolder()) {
1307                     QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
1308                     if (pixmap.isNull()) {
1309                         pixmap = QPixmap(width, height);
1310                         pixmap.fill(Qt::transparent);
1311                     }
1312                     QPainter p(&pixmap);
1313                     p.drawPixmap(3, 3, KIcon("dialog-close").pixmap(pixmap.width() - 6, pixmap.height() - 6));
1314                     p.end();
1315                     item->setData(0, Qt::DecorationRole, pixmap);
1316                 }
1317             }
1318             item->setData(0, UsageRole, QString::number(item->numReferences()));
1319         }
1320         ++it;
1321     }
1322
1323     m_listView->setSortingEnabled(true);
1324     m_allClipsProcessed = true;
1325     if (m_render->processingItems() == 0) {
1326        monitorItemEditing(true);
1327        slotProcessNextThumbnail();
1328     }
1329 }
1330
1331 // static
1332 QString ProjectList::getExtensions()
1333 {
1334     // Build list of mime types
1335     QStringList mimeTypes = QStringList() << "application/x-kdenlive" << "application/x-kdenlivetitle" << "video/mlt-playlist" << "text/plain"
1336                             << "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"
1337                             << "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"
1338                             << "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";
1339
1340     QString allExtensions;
1341     foreach(const QString & mimeType, mimeTypes) {
1342         KMimeType::Ptr mime(KMimeType::mimeType(mimeType));
1343         if (mime) {
1344             allExtensions.append(mime->patterns().join(" "));
1345             allExtensions.append(' ');
1346         }
1347     }
1348     return allExtensions.simplified();
1349 }
1350
1351 void ProjectList::slotAddClip(const QList <QUrl> givenList, const QString &groupName, const QString &groupId)
1352 {
1353     if (!m_commandStack)
1354         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1355
1356     KUrl::List list;
1357     if (givenList.isEmpty()) {
1358         QString allExtensions = getExtensions();
1359         const QString dialogFilter = allExtensions + ' ' + QLatin1Char('|') + i18n("All Supported Files") + "\n* " + QLatin1Char('|') + i18n("All Files");
1360         QCheckBox *b = new QCheckBox(i18n("Import image sequence"));
1361         b->setChecked(KdenliveSettings::autoimagesequence());
1362         QCheckBox *c = new QCheckBox(i18n("Transparent background for images"));
1363         c->setChecked(KdenliveSettings::autoimagetransparency());
1364         QFrame *f = new QFrame;
1365         f->setFrameShape(QFrame::NoFrame);
1366         QHBoxLayout *l = new QHBoxLayout;
1367         l->addWidget(b);
1368         l->addWidget(c);
1369         l->addStretch(5);
1370         f->setLayout(l);
1371         KFileDialog *d = new KFileDialog(KUrl("kfiledialog:///clipfolder"), dialogFilter, kapp->activeWindow(), f);
1372         d->setOperationMode(KFileDialog::Opening);
1373         d->setMode(KFile::Files);
1374         if (d->exec() == QDialog::Accepted) {
1375             KdenliveSettings::setAutoimagetransparency(c->isChecked());
1376         }
1377         list = d->selectedUrls();
1378         if (b->isChecked() && list.count() == 1) {
1379             // Check for image sequence
1380             KUrl url = list.at(0);
1381             QString fileName = url.fileName().section('.', 0, -2);
1382             if (fileName.at(fileName.size() - 1).isDigit()) {
1383                 KFileItem item(KFileItem::Unknown, KFileItem::Unknown, url);
1384                 if (item.mimetype().startsWith("image")) {
1385                     // import as sequence if we found more than one image in the sequence
1386                     QStringList list;
1387                     QString pattern = SlideshowClip::selectedPath(url.path(), false, QString(), &list);
1388                     int count = list.count();
1389                     if (count > 1) {
1390                         delete d;
1391                         QStringList groupInfo = getGroup();
1392
1393                         // get image sequence base name
1394                         while (fileName.at(fileName.size() - 1).isDigit()) {
1395                             fileName.chop(1);
1396                         }
1397
1398                         m_doc->slotCreateSlideshowClipFile(fileName, pattern, count, m_timecode.reformatSeparators(KdenliveSettings::sequence_duration()),
1399                                                            false, false, false,
1400                                                            m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))), QString(), 0,
1401                                                            QString(), groupInfo.at(0), groupInfo.at(1));
1402                         return;
1403                     }
1404                 }
1405             }
1406         }
1407         delete d;
1408     } else {
1409         for (int i = 0; i < givenList.count(); i++)
1410             list << givenList.at(i);
1411     }
1412
1413     foreach(const KUrl & file, list) {
1414         // Check there is no folder here
1415         KMimeType::Ptr type = KMimeType::findByUrl(file);
1416         if (type->is("inode/directory")) {
1417             // user dropped a folder
1418             list.removeAll(file);
1419         }
1420     }
1421
1422     if (list.isEmpty())
1423         return;
1424
1425     if (givenList.isEmpty()) {
1426         QStringList groupInfo = getGroup();
1427         m_doc->slotAddClipList(list, groupInfo.at(0), groupInfo.at(1));
1428     } else {
1429         m_doc->slotAddClipList(list, groupName, groupId);
1430     }
1431 }
1432
1433 void ProjectList::slotRemoveInvalidClip(const QString &id, bool replace)
1434 {
1435     ProjectItem *item = getItemById(id);
1436     m_processingClips.removeAll(id);
1437     m_thumbnailQueue.removeAll(id);
1438     if (item) {
1439         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1440         const QString path = item->referencedClip()->fileURL().path();
1441         if (item->referencedClip()->isPlaceHolder()) replace = false;
1442         if (!path.isEmpty()) {
1443             if (m_invalidClipDialog) {
1444                 m_invalidClipDialog->addClip(id, path);
1445                 return;
1446             }
1447             else {
1448                 if (replace)
1449                     m_invalidClipDialog = new InvalidDialog(i18n("Invalid clip"),  i18n("Clip <b>%1</b><br />is invalid, will be removed from project.", QString()), replace, kapp->activeWindow());
1450                 else {
1451                     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());
1452                 }
1453                 m_invalidClipDialog->addClip(id, path);
1454                 int result = m_invalidClipDialog->exec();
1455                 if (result == KDialog::Yes) replace = true;
1456             }
1457         }
1458         if (m_invalidClipDialog) {
1459             if (replace)
1460                 emit deleteProjectClips(m_invalidClipDialog->getIds(), QMap <QString, QString>());
1461             delete m_invalidClipDialog;
1462             m_invalidClipDialog = NULL;
1463         }
1464         
1465     }
1466 }
1467
1468 void ProjectList::slotRemoveInvalidProxy(const QString &id, bool durationError)
1469 {
1470     ProjectItem *item = getItemById(id);
1471     if (item) {
1472         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1473         if (durationError) {
1474             kDebug() << "Proxy duration is wrong, try changing transcoding parameters.";
1475             emit displayMessage(i18n("Proxy clip unusable (duration is different from original)."), -2);
1476         }
1477         item->setProxyStatus(PROXYCRASHED);
1478         QString path = item->referencedClip()->getProperty("proxy");
1479         KUrl proxyFolder(m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/");
1480
1481         //Security check: make sure the invalid proxy file is in the proxy folder
1482         if (proxyFolder.isParentOf(KUrl(path))) {
1483             QFile::remove(path);
1484         }
1485     }
1486     m_processingClips.removeAll(id);
1487     m_thumbnailQueue.removeAll(id);
1488 }
1489
1490 void ProjectList::slotAddColorClip()
1491 {
1492     if (!m_commandStack)
1493         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1494
1495     QDialog *dia = new QDialog(this);
1496     Ui::ColorClip_UI dia_ui;
1497     dia_ui.setupUi(dia);
1498     dia->setWindowTitle(i18n("Color Clip"));
1499     dia_ui.clip_name->setText(i18n("Color Clip"));
1500
1501     TimecodeDisplay *t = new TimecodeDisplay(m_timecode);
1502     t->setValue(KdenliveSettings::color_duration());
1503     t->setTimeCodeFormat(false);
1504     dia_ui.clip_durationBox->addWidget(t);
1505     dia_ui.clip_color->setColor(KdenliveSettings::colorclipcolor());
1506
1507     if (dia->exec() == QDialog::Accepted) {
1508         QString color = dia_ui.clip_color->color().name();
1509         KdenliveSettings::setColorclipcolor(color);
1510         color = color.replace(0, 1, "0x") + "ff";
1511         QStringList groupInfo = getGroup();
1512         m_doc->slotCreateColorClip(dia_ui.clip_name->text(), color, m_timecode.getTimecode(t->gentime()), groupInfo.at(0), groupInfo.at(1));
1513     }
1514     delete t;
1515     delete dia;
1516 }
1517
1518
1519 void ProjectList::slotAddSlideshowClip()
1520 {
1521     if (!m_commandStack)
1522         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1523
1524     SlideshowClip *dia = new SlideshowClip(m_timecode, this);
1525
1526     if (dia->exec() == QDialog::Accepted) {
1527         QStringList groupInfo = getGroup();
1528         m_doc->slotCreateSlideshowClipFile(dia->clipName(), dia->selectedPath(), dia->imageCount(), dia->clipDuration(),
1529                                            dia->loop(), dia->crop(), dia->fade(),
1530                                            dia->lumaDuration(), dia->lumaFile(), dia->softness(),
1531                                            dia->animation(), groupInfo.at(0), groupInfo.at(1));
1532     }
1533     delete dia;
1534 }
1535
1536 void ProjectList::slotAddTitleClip()
1537 {
1538     QStringList groupInfo = getGroup();
1539     m_doc->slotCreateTextClip(groupInfo.at(0), groupInfo.at(1));
1540 }
1541
1542 void ProjectList::slotAddTitleTemplateClip()
1543 {
1544     if (!m_commandStack)
1545         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1546
1547     QStringList groupInfo = getGroup();
1548
1549     // Get the list of existing templates
1550     QStringList filter;
1551     filter << "*.kdenlivetitle";
1552     const QString path = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
1553     QStringList templateFiles = QDir(path).entryList(filter, QDir::Files);
1554
1555     QDialog *dia = new QDialog(this);
1556     Ui::TemplateClip_UI dia_ui;
1557     dia_ui.setupUi(dia);
1558     for (int i = 0; i < templateFiles.size(); ++i)
1559         dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), path + templateFiles.at(i));
1560
1561     if (!templateFiles.isEmpty())
1562         dia_ui.buttonBox->button(QDialogButtonBox::Ok)->setFocus();
1563     dia_ui.template_list->fileDialog()->setFilter("application/x-kdenlivetitle");
1564     //warning: setting base directory doesn't work??
1565     KUrl startDir(path);
1566     dia_ui.template_list->fileDialog()->setUrl(startDir);
1567     dia_ui.text_box->setHidden(true);
1568     if (dia->exec() == QDialog::Accepted) {
1569         QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
1570         if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
1571         // Create a cloned template clip
1572         m_doc->slotCreateTextTemplateClip(groupInfo.at(0), groupInfo.at(1), KUrl(textTemplate));
1573     }
1574     delete dia;
1575 }
1576
1577 QStringList ProjectList::getGroup() const
1578 {
1579     QStringList result;
1580     QTreeWidgetItem *item = m_listView->currentItem();
1581     while (item && item->type() != PROJECTFOLDERTYPE)
1582         item = item->parent();
1583
1584     if (item) {
1585         FolderProjectItem *folder = static_cast <FolderProjectItem *>(item);
1586         result << folder->groupName() << folder->clipId();
1587     } else {
1588         result << QString() << QString();
1589     }
1590     return result;
1591 }
1592
1593 void ProjectList::setDocument(KdenliveDoc *doc)
1594 {
1595     m_listView->blockSignals(true);
1596     m_abortAllProxies = true;
1597     m_proxyThreads.waitForFinished();
1598     m_proxyThreads.clearFutures();
1599     m_thumbnailQueue.clear();
1600     m_listView->clear();
1601     m_processingClips.clear();
1602     
1603     m_listView->setSortingEnabled(false);
1604     emit clipSelected(NULL);
1605     m_refreshed = false;
1606     m_allClipsProcessed = false;
1607     m_fps = doc->fps();
1608     m_timecode = doc->timecode();
1609     m_commandStack = doc->commandStack();
1610     m_doc = doc;
1611     m_abortAllProxies = false;
1612
1613     QMap <QString, QString> flist = doc->clipManager()->documentFolderList();
1614     QStringList openedFolders = doc->getExpandedFolders();
1615     QMapIterator<QString, QString> f(flist);
1616     while (f.hasNext()) {
1617         f.next();
1618         FolderProjectItem *folder = new FolderProjectItem(m_listView, QStringList() << f.value(), f.key());
1619         folder->setExpanded(openedFolders.contains(f.key()));
1620     }
1621
1622     QList <DocClipBase*> list = doc->clipManager()->documentClipList();
1623     if (list.isEmpty()) {
1624         // blank document
1625         m_refreshed = true;
1626         m_allClipsProcessed = true;
1627     }
1628     for (int i = 0; i < list.count(); i++)
1629         slotAddClip(list.at(i), false);
1630
1631     m_listView->blockSignals(false);
1632     connect(m_doc->clipManager(), SIGNAL(reloadClip(const QString &)), this, SLOT(slotReloadClip(const QString &)));
1633     connect(m_doc->clipManager(), SIGNAL(modifiedClip(const QString &)), this, SLOT(slotModifiedClip(const QString &)));
1634     connect(m_doc->clipManager(), SIGNAL(missingClip(const QString &)), this, SLOT(slotMissingClip(const QString &)));
1635     connect(m_doc->clipManager(), SIGNAL(availableClip(const QString &)), this, SLOT(slotAvailableClip(const QString &)));
1636     connect(m_doc->clipManager(), SIGNAL(checkAllClips(bool, bool)), this, SLOT(updateAllClips(bool, bool)));
1637 }
1638
1639 QList <DocClipBase*> ProjectList::documentClipList() const
1640 {
1641     if (m_doc == NULL)
1642         return QList <DocClipBase*> ();
1643
1644     return m_doc->clipManager()->documentClipList();
1645 }
1646
1647 QDomElement ProjectList::producersList()
1648 {
1649     QDomDocument doc;
1650     QDomElement prods = doc.createElement("producerlist");
1651     doc.appendChild(prods);
1652     QTreeWidgetItemIterator it(m_listView);
1653     while (*it) {
1654         if ((*it)->type() != PROJECTCLIPTYPE) {
1655             // subitem
1656             ++it;
1657             continue;
1658         }
1659         prods.appendChild(doc.importNode(((ProjectItem *)(*it))->toXml(), true));
1660         ++it;
1661     }
1662     return prods;
1663 }
1664
1665 void ProjectList::slotCheckForEmptyQueue()
1666 {
1667     if (m_render->processingItems() == 0 && m_thumbnailQueue.isEmpty()) {
1668         if (!m_refreshed && m_allClipsProcessed) {
1669             m_refreshed = true;
1670             m_listView->setEnabled(true);
1671             slotClipSelected();
1672             QTimer::singleShot(500, this, SIGNAL(loadingIsOver()));
1673             emit displayMessage(QString(), -1);
1674         }
1675         updateButtons();
1676     } else if (!m_refreshed) {
1677         QTimer::singleShot(300, this, SLOT(slotCheckForEmptyQueue()));
1678     }
1679 }
1680
1681
1682 void ProjectList::requestClipThumbnail(const QString id)
1683 {
1684     if (!m_thumbnailQueue.contains(id)) m_thumbnailQueue.append(id);
1685     slotProcessNextThumbnail();
1686 }
1687
1688 void ProjectList::resetThumbsProducer(DocClipBase *clip)
1689 {
1690     if (!clip) return;
1691     clip->clearThumbProducer();
1692     QString id = clip->getId();
1693     m_thumbnailQueue.removeAll(id);
1694 }
1695
1696 void ProjectList::slotProcessNextThumbnail()
1697 {
1698     if (m_render->processingItems() > 0) {
1699         return;
1700     }
1701     if (m_thumbnailQueue.isEmpty()) {
1702         slotCheckForEmptyQueue();
1703         return;
1704     }
1705     int max = m_doc->clipManager()->clipsCount();
1706     emit displayMessage(i18n("Loading thumbnails"), (int)(100 *(max - m_thumbnailQueue.count()) / max));
1707     slotRefreshClipThumbnail(m_thumbnailQueue.takeFirst(), false);
1708 }
1709
1710 void ProjectList::slotRefreshClipThumbnail(const QString &clipId, bool update)
1711 {
1712     QTreeWidgetItem *item = getAnyItemById(clipId);
1713     if (item)
1714         slotRefreshClipThumbnail(item, update);
1715     else {
1716         slotProcessNextThumbnail();
1717     }
1718 }
1719
1720 void ProjectList::slotRefreshClipThumbnail(QTreeWidgetItem *it, bool update)
1721 {
1722     if (it == NULL) return;
1723     ProjectItem *item = NULL;
1724     bool isSubItem = false;
1725     int frame;
1726     if (it->type() == PROJECTFOLDERTYPE) return;
1727     if (it->type() == PROJECTSUBCLIPTYPE) {
1728         item = static_cast <ProjectItem *>(it->parent());
1729         frame = static_cast <SubProjectItem *>(it)->zone().x();
1730         isSubItem = true;
1731     } else {
1732         item = static_cast <ProjectItem *>(it);
1733         frame = item->referencedClip()->getClipThumbFrame();
1734     }
1735
1736     if (item) {
1737         DocClipBase *clip = item->referencedClip();
1738         if (!clip) {
1739             slotProcessNextThumbnail();
1740             return;
1741         }
1742         QPixmap pix;
1743         int height = m_listView->iconSize().height();
1744         int swidth = (int)(height  * m_render->frameRenderWidth() / m_render->renderHeight()+ 0.5);
1745         int dwidth = (int)(height  * m_render->dar() + 0.5);
1746         if (clip->clipType() == AUDIO)
1747             pix = KIcon("audio-x-generic").pixmap(QSize(dwidth, height));
1748         else if (clip->clipType() == IMAGE)
1749             pix = QPixmap::fromImage(KThumb::getFrame(item->referencedClip()->getProducer(), 0, swidth, dwidth, height));
1750         else {
1751             pix = item->referencedClip()->extractImage(frame, dwidth, height);
1752         }
1753
1754         if (!pix.isNull()) {
1755             monitorItemEditing(false);
1756             it->setData(0, Qt::DecorationRole, pix);
1757             monitorItemEditing(true);
1758                 
1759             if (!isSubItem)
1760                 m_doc->cachePixmap(item->getClipHash(), pix);
1761             else
1762                 m_doc->cachePixmap(item->getClipHash() + '#' + QString::number(frame), pix);
1763         }
1764         if (update)
1765             emit projectModified();
1766         slotProcessNextThumbnail();
1767     }
1768 }
1769
1770
1771 void ProjectList::slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const stringMap &properties, const stringMap &metadata, bool replace)
1772 {
1773     QString toReload;
1774     ProjectItem *item = getItemById(clipId);
1775
1776     int queue = m_render->processingItems();
1777     if (item && producer) {
1778         monitorItemEditing(false);
1779         DocClipBase *clip = item->referencedClip();
1780         if (producer->is_valid()) {
1781             if (clip->isPlaceHolder()) {
1782                 clip->setValid();
1783                 toReload = clipId;
1784             }
1785             item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1786         }
1787         item->setProperties(properties, metadata);
1788         clip->setProducer(producer, replace);
1789         clip->askForAudioThumbs();
1790
1791         // Proxy stuff
1792         QString size = properties.value("frame_size");
1793         if (!useProxy() && clip->getProperty("proxy").isEmpty()) setProxyStatus(item, NOPROXY);
1794         if (useProxy() && generateProxy() && clip->getProperty("proxy") == "-") setProxyStatus(item, NOPROXY);
1795         else if (useProxy() && !item->hasProxy() && !item->isProxyRunning()) {
1796             // proxy video and image clips
1797             int maxSize;
1798             CLIPTYPE t = item->clipType();
1799             if (t == IMAGE) maxSize = m_doc->getDocumentProperty("proxyimageminsize").toInt();
1800             else maxSize = m_doc->getDocumentProperty("proxyminsize").toInt();
1801             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)) {
1802                 if (clip->getProperty("proxy").isEmpty()) {
1803                     KUrl proxyPath = m_doc->projectFolder();
1804                     proxyPath.addPath("proxy/");
1805                     proxyPath.addPath(clip->getClipHash() + "." + (t == IMAGE ? "png" : m_doc->getDocumentProperty("proxyextension")));
1806                     QMap <QString, QString> newProps;
1807                     // insert required duration for proxy
1808                     if (t != IMAGE) newProps.insert("proxy_out", clip->producerProperty("out"));
1809                     newProps.insert("proxy", proxyPath.path());
1810                     QMap <QString, QString> oldProps = clip->properties();
1811                     oldProps.insert("proxy", QString());
1812                     EditClipCommand *command = new EditClipCommand(this, clipId, oldProps, newProps, true);
1813                     m_doc->commandStack()->push(command);
1814                 }
1815             }
1816         }
1817
1818         if (!replace && m_allClipsProcessed && item->data(0, Qt::DecorationRole).isNull()) {
1819             getCachedThumbnail(item);
1820         }
1821         if (!toReload.isEmpty())
1822             item->slotSetToolTip();
1823     } else kDebug() << "////////  COULD NOT FIND CLIP TO UPDATE PRPS...";
1824     if (queue == 0) {
1825         monitorItemEditing(true);
1826         if (item && m_thumbnailQueue.isEmpty()) {
1827             m_listView->setCurrentItem(item);
1828             bool updatedProfile = false;
1829             if (item->parent()) {
1830                 if (item->parent()->type() == PROJECTFOLDERTYPE)
1831                     static_cast <FolderProjectItem *>(item->parent())->switchIcon();
1832             } else if (KdenliveSettings::checkfirstprojectclip() &&  m_listView->topLevelItemCount() == 1 && m_refreshed && m_allClipsProcessed) {
1833                 // this is the first clip loaded in project, check if we want to adjust project settings to the clip
1834                 updatedProfile = adjustProjectProfileToItem(item);
1835             }
1836             if (updatedProfile == false) {
1837                 //emit clipSelected(item->referencedClip());
1838             }
1839         } else {
1840             int max = m_doc->clipManager()->clipsCount();
1841             if (max > 0) emit displayMessage(i18n("Loading clips"), (int)(100 *(max - queue) / max));
1842         }
1843         if (m_allClipsProcessed) emit processNextThumbnail();
1844     }
1845     if (!item) {
1846         // no item for producer, delete it
1847         delete producer;
1848         return;
1849     }
1850     if (replace) toReload = clipId;
1851     if (!toReload.isEmpty())
1852         emit clipNeedsReload(toReload);
1853 }
1854
1855 bool ProjectList::adjustProjectProfileToItem(ProjectItem *item)
1856 {
1857     if (item == NULL) {
1858         if (m_listView->currentItem() && m_listView->currentItem()->type() != PROJECTFOLDERTYPE)
1859             item = static_cast <ProjectItem*>(m_listView->currentItem());
1860     }
1861     if (item == NULL || item->referencedClip() == NULL) {
1862         KMessageBox::information(kapp->activeWindow(), i18n("Cannot find profile from current clip"));
1863         return false;
1864     }
1865     bool profileUpdated = false;
1866     QString size = item->referencedClip()->getProperty("frame_size");
1867     int width = size.section('x', 0, 0).toInt();
1868     int height = size.section('x', -1).toInt();
1869     double fps = item->referencedClip()->getProperty("fps").toDouble();
1870     double par = item->referencedClip()->getProperty("aspect_ratio").toDouble();
1871     if (item->clipType() == IMAGE || item->clipType() == AV || item->clipType() == VIDEO) {
1872         if (ProfilesDialog::matchProfile(width, height, fps, par, item->clipType() == IMAGE, m_doc->mltProfile()) == false) {
1873             // get a list of compatible profiles
1874             QMap <QString, QString> suggestedProfiles = ProfilesDialog::getProfilesFromProperties(width, height, fps, par, item->clipType() == IMAGE);
1875             if (!suggestedProfiles.isEmpty()) {
1876                 KDialog *dialog = new KDialog(this);
1877                 dialog->setCaption(i18n("Change project profile"));
1878                 dialog->setButtons(KDialog::Ok | KDialog::Cancel);
1879
1880                 QWidget container;
1881                 QVBoxLayout *l = new QVBoxLayout;
1882                 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));
1883                 l->addWidget(label);
1884                 QListWidget *list = new QListWidget;
1885                 list->setAlternatingRowColors(true);
1886                 QMapIterator<QString, QString> i(suggestedProfiles);
1887                 while (i.hasNext()) {
1888                     i.next();
1889                     QListWidgetItem *item = new QListWidgetItem(i.value(), list);
1890                     item->setData(Qt::UserRole, i.key());
1891                     item->setToolTip(i.key());
1892                 }
1893                 list->setCurrentRow(0);
1894                 l->addWidget(list);
1895                 container.setLayout(l);
1896                 dialog->setButtonText(KDialog::Ok, i18n("Update profile"));
1897                 dialog->setMainWidget(&container);
1898                 if (dialog->exec() == QDialog::Accepted) {
1899                     //Change project profile
1900                     profileUpdated = true;
1901                     if (list->currentItem())
1902                         emit updateProfile(list->currentItem()->data(Qt::UserRole).toString());
1903                 }
1904                 delete list;
1905                 delete label;
1906             } else if (fps > 0) {
1907                 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));
1908             }
1909         }
1910     }
1911     return profileUpdated;
1912 }
1913
1914 QString ProjectList::getDocumentProperty(const QString &key) const
1915 {
1916     return m_doc->getDocumentProperty(key);
1917 }
1918
1919 bool ProjectList::useProxy() const
1920 {
1921     return m_doc->getDocumentProperty("enableproxy").toInt();
1922 }
1923
1924 bool ProjectList::generateProxy() const
1925 {
1926     return m_doc->getDocumentProperty("generateproxy").toInt();
1927 }
1928
1929 bool ProjectList::generateImageProxy() const
1930 {
1931     return m_doc->getDocumentProperty("generateimageproxy").toInt();
1932 }
1933
1934 void ProjectList::slotReplyGetImage(const QString &clipId, const QImage &img)
1935 {
1936     QPixmap pix = QPixmap::fromImage(img);
1937     setThumbnail(clipId, pix);
1938 }
1939
1940 void ProjectList::slotReplyGetImage(const QString &clipId, const QString &name, int width, int height)
1941 {
1942     QPixmap pix =  KIcon(name).pixmap(QSize(width, height));
1943     setThumbnail(clipId, pix);
1944 }
1945
1946 void ProjectList::setThumbnail(const QString &clipId, const QPixmap &pix)
1947 {
1948     ProjectItem *item = getItemById(clipId);
1949     if (item && !pix.isNull()) {
1950         monitorItemEditing(false);
1951         item->setData(0, Qt::DecorationRole, pix);
1952         monitorItemEditing(true);
1953         //update();
1954         m_doc->cachePixmap(item->getClipHash(), pix);
1955     }
1956 }
1957
1958 QTreeWidgetItem *ProjectList::getAnyItemById(const QString &id)
1959 {
1960     QTreeWidgetItemIterator it(m_listView);
1961     QString lookId = id;
1962     if (id.contains('#'))
1963         lookId = id.section('#', 0, 0);
1964
1965     ProjectItem *result = NULL;
1966     while (*it) {
1967         if ((*it)->type() != PROJECTCLIPTYPE) {
1968             // subitem
1969             ++it;
1970             continue;
1971         }
1972         ProjectItem *item = static_cast<ProjectItem *>(*it);
1973         if (item->clipId() == lookId) {
1974             result = item;
1975             break;
1976         }
1977         ++it;
1978     }
1979     if (result == NULL || !id.contains('#')) {
1980         return result;
1981     } else {
1982         for (int i = 0; i < result->childCount(); i++) {
1983             SubProjectItem *sub = static_cast <SubProjectItem *>(result->child(i));
1984             if (sub && sub->zone().x() == id.section('#', 1, 1).toInt())
1985                 return sub;
1986         }
1987     }
1988
1989     return NULL;
1990 }
1991
1992
1993 ProjectItem *ProjectList::getItemById(const QString &id)
1994 {
1995     ProjectItem *item;
1996     QTreeWidgetItemIterator it(m_listView);
1997     while (*it) {
1998         if ((*it)->type() != PROJECTCLIPTYPE) {
1999             // subitem or folder
2000             ++it;
2001             continue;
2002         }
2003         item = static_cast<ProjectItem *>(*it);
2004         if (item->clipId() == id)
2005             return item;
2006         ++it;
2007     }
2008     return NULL;
2009 }
2010
2011 FolderProjectItem *ProjectList::getFolderItemById(const QString &id)
2012 {
2013     FolderProjectItem *item;
2014     QTreeWidgetItemIterator it(m_listView);
2015     while (*it) {
2016         if ((*it)->type() == PROJECTFOLDERTYPE) {
2017             item = static_cast<FolderProjectItem *>(*it);
2018             if (item->clipId() == id)
2019                 return item;
2020         }
2021         ++it;
2022     }
2023     return NULL;
2024 }
2025
2026 void ProjectList::slotSelectClip(const QString &ix)
2027 {
2028     ProjectItem *clip = getItemById(ix);
2029     if (clip) {
2030         m_listView->setCurrentItem(clip);
2031         m_listView->scrollToItem(clip);
2032         m_editButton->defaultAction()->setEnabled(true);
2033         m_deleteButton->defaultAction()->setEnabled(true);
2034         m_reloadAction->setEnabled(true);
2035         m_transcodeAction->setEnabled(true);
2036         if (clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
2037             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
2038             m_openAction->setEnabled(true);
2039         } else if (clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
2040             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
2041             m_openAction->setEnabled(true);
2042         } else {
2043             m_openAction->setEnabled(false);
2044         }
2045     }
2046 }
2047
2048 QString ProjectList::currentClipUrl() const
2049 {
2050     ProjectItem *item;
2051     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE) return QString();
2052     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
2053         // subitem
2054         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
2055     } else {
2056         item = static_cast <ProjectItem*>(m_listView->currentItem());
2057     }
2058     if (item == NULL)
2059         return QString();
2060     return item->clipUrl().path();
2061 }
2062
2063 KUrl::List ProjectList::getConditionalUrls(const QString &condition) const
2064 {
2065     KUrl::List result;
2066     ProjectItem *item;
2067     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
2068     for (int i = 0; i < list.count(); i++) {
2069         if (list.at(i)->type() == PROJECTFOLDERTYPE)
2070             continue;
2071         if (list.at(i)->type() == PROJECTSUBCLIPTYPE) {
2072             // subitem
2073             item = static_cast <ProjectItem*>(list.at(i)->parent());
2074         } else {
2075             item = static_cast <ProjectItem*>(list.at(i));
2076         }
2077         if (item == NULL || item->type() == COLOR || item->type() == SLIDESHOW || item->type() == TEXT)
2078             continue;
2079         DocClipBase *clip = item->referencedClip();
2080         if (!condition.isEmpty()) {
2081             if (condition.startsWith("vcodec") && !clip->hasVideoCodec(condition.section('=', 1, 1)))
2082                 continue;
2083             else if (condition.startsWith("acodec") && !clip->hasAudioCodec(condition.section('=', 1, 1)))
2084                 continue;
2085         }
2086         result.append(item->clipUrl());
2087     }
2088     return result;
2089 }
2090
2091 void ProjectList::regenerateTemplate(const QString &id)
2092 {
2093     ProjectItem *clip = getItemById(id);
2094     if (clip)
2095         regenerateTemplate(clip);
2096 }
2097
2098 void ProjectList::regenerateTemplate(ProjectItem *clip)
2099 {
2100     //TODO: remove this unused method, only force_reload is necessary
2101     clip->referencedClip()->getProducer()->set("force_reload", 1);
2102 }
2103
2104 QDomDocument ProjectList::generateTemplateXml(QString path, const QString &replaceString)
2105 {
2106     QDomDocument doc;
2107     QFile file(path);
2108     if (!file.open(QIODevice::ReadOnly)) {
2109         kWarning() << "ERROR, CANNOT READ: " << path;
2110         return doc;
2111     }
2112     if (!doc.setContent(&file)) {
2113         kWarning() << "ERROR, CANNOT READ: " << path;
2114         file.close();
2115         return doc;
2116     }
2117     file.close();
2118     QDomNodeList texts = doc.elementsByTagName("content");
2119     for (int i = 0; i < texts.count(); i++) {
2120         QString data = texts.item(i).firstChild().nodeValue();
2121         data.replace("%s", replaceString);
2122         texts.item(i).firstChild().setNodeValue(data);
2123     }
2124     return doc;
2125 }
2126
2127
2128 void ProjectList::slotAddClipCut(const QString &id, int in, int out)
2129 {
2130     ProjectItem *clip = getItemById(id);
2131     if (clip == NULL || clip->referencedClip()->hasCutZone(QPoint(in, out)))
2132         return;
2133     AddClipCutCommand *command = new AddClipCutCommand(this, id, in, out, QString(), true, false);
2134     m_commandStack->push(command);
2135 }
2136
2137 void ProjectList::addClipCut(const QString &id, int in, int out, const QString desc, bool newItem)
2138 {
2139     ProjectItem *clip = getItemById(id);
2140     if (clip) {
2141         DocClipBase *base = clip->referencedClip();
2142         base->addCutZone(in, out);
2143         monitorItemEditing(false);
2144         SubProjectItem *sub = new SubProjectItem(clip, in, out, desc);
2145         if (newItem && desc.isEmpty() && !m_listView->isColumnHidden(1)) {
2146             if (!clip->isExpanded())
2147                 clip->setExpanded(true);
2148             m_listView->scrollToItem(sub);
2149             m_listView->editItem(sub, 1);
2150         }
2151         QPixmap p = clip->referencedClip()->extractImage(in, (int)(sub->sizeHint(0).height()  * m_render->dar()), sub->sizeHint(0).height() - 2);
2152         sub->setData(0, Qt::DecorationRole, p);
2153         m_doc->cachePixmap(clip->getClipHash() + '#' + QString::number(in), p);
2154         monitorItemEditing(true);
2155     }
2156     emit projectModified();
2157 }
2158
2159 void ProjectList::removeClipCut(const QString &id, int in, int out)
2160 {
2161     ProjectItem *clip = getItemById(id);
2162     if (clip) {
2163         DocClipBase *base = clip->referencedClip();
2164         base->removeCutZone(in, out);
2165         SubProjectItem *sub = getSubItem(clip, QPoint(in, out));
2166         if (sub) {
2167             monitorItemEditing(false);
2168             delete sub;
2169             monitorItemEditing(true);
2170         }
2171     }
2172     emit projectModified();
2173 }
2174
2175 SubProjectItem *ProjectList::getSubItem(ProjectItem *clip, QPoint zone)
2176 {
2177     SubProjectItem *sub = NULL;
2178     if (clip) {
2179         for (int i = 0; i < clip->childCount(); i++) {
2180             QTreeWidgetItem *it = clip->child(i);
2181             if (it->type() == PROJECTSUBCLIPTYPE) {
2182                 sub = static_cast <SubProjectItem*>(it);
2183                 if (sub->zone() == zone)
2184                     break;
2185                 else
2186                     sub = NULL;
2187             }
2188         }
2189     }
2190     return sub;
2191 }
2192
2193 void ProjectList::slotUpdateClipCut(QPoint p)
2194 {
2195     if (!m_listView->currentItem() || m_listView->currentItem()->type() != PROJECTSUBCLIPTYPE)
2196         return;
2197     SubProjectItem *sub = static_cast <SubProjectItem*>(m_listView->currentItem());
2198     ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
2199     EditClipCutCommand *command = new EditClipCutCommand(this, item->clipId(), sub->zone(), p, sub->text(1), sub->text(1), true);
2200     m_commandStack->push(command);
2201 }
2202
2203 void ProjectList::doUpdateClipCut(const QString &id, const QPoint oldzone, const QPoint zone, const QString &comment)
2204 {
2205     ProjectItem *clip = getItemById(id);
2206     SubProjectItem *sub = getSubItem(clip, oldzone);
2207     if (sub == NULL || clip == NULL)
2208         return;
2209     DocClipBase *base = clip->referencedClip();
2210     base->updateCutZone(oldzone.x(), oldzone.y(), zone.x(), zone.y(), comment);
2211     monitorItemEditing(false);
2212     sub->setZone(zone);
2213     sub->setDescription(comment);
2214     monitorItemEditing(true);
2215     emit projectModified();
2216 }
2217
2218 void ProjectList::slotForceProcessing(const QString &id)
2219 {
2220     m_render->forceProcessing(id);
2221 }
2222
2223 void ProjectList::slotAddOrUpdateSequence(const QString frameName)
2224 {
2225     QString fileName = KUrl(frameName).fileName().section('_', 0, -2);
2226     QStringList list;
2227     QString pattern = SlideshowClip::selectedPath(frameName, false, QString(), &list);
2228     int count = list.count();
2229     if (count > 1) {
2230         const QList <DocClipBase *> existing = m_doc->clipManager()->getClipByResource(pattern);
2231         if (!existing.isEmpty()) {
2232             // Sequence already exists, update
2233             QString id = existing.at(0)->getId();
2234             //ProjectItem *item = getItemById(id);
2235             QMap <QString, QString> oldprops;
2236             QMap <QString, QString> newprops;
2237             int ttl = existing.at(0)->getProperty("ttl").toInt();
2238             oldprops["out"] = existing.at(0)->getProperty("out");
2239             newprops["out"] = QString::number(ttl * count - 1);
2240             slotUpdateClipProperties(id, newprops);
2241             EditClipCommand *command = new EditClipCommand(this, id, oldprops, newprops, false);
2242             m_commandStack->push(command);
2243         } else {
2244             // Create sequence
2245             QStringList groupInfo = getGroup();
2246             m_doc->slotCreateSlideshowClipFile(fileName, pattern, count, m_timecode.reformatSeparators(KdenliveSettings::sequence_duration()),
2247                                                false, false, false,
2248                                                m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))), QString(), 0,
2249                                                QString(), groupInfo.at(0), groupInfo.at(1));
2250         }
2251     } else emit displayMessage(i18n("Sequence not found"), -2);
2252 }
2253
2254 QMap <QString, QString> ProjectList::getProxies()
2255 {
2256     QMap <QString, QString> list;
2257     ProjectItem *item;
2258     QTreeWidgetItemIterator it(m_listView);
2259     while (*it) {
2260         if ((*it)->type() != PROJECTCLIPTYPE) {
2261             ++it;
2262             continue;
2263         }
2264         item = static_cast<ProjectItem *>(*it);
2265         if (item && item->referencedClip() != NULL) {
2266             if (item->hasProxy()) {
2267                 QString proxy = item->referencedClip()->getProperty("proxy");
2268                 list.insert(proxy, item->clipUrl().path());
2269             }
2270         }
2271         ++it;
2272     }
2273     return list;
2274 }
2275
2276 void ProjectList::slotCreateProxy(const QString id)
2277 {
2278     ProjectItem *item = getItemById(id);
2279     if (!item || item->isProxyRunning() || item->referencedClip()->isPlaceHolder()) return;
2280     QString path = item->referencedClip()->getProperty("proxy");
2281     if (path.isEmpty()) {
2282         setProxyStatus(path, PROXYCRASHED);
2283         return;
2284     }
2285     setProxyStatus(path, PROXYWAITING);
2286     if (m_abortProxy.contains(path)) m_abortProxy.removeAll(path);
2287     if (m_processingProxy.contains(path)) {
2288         // Proxy is already being generated
2289         return;
2290     }
2291     if (QFile::exists(path)) {
2292         // Proxy already created
2293         setProxyStatus(path, PROXYDONE);
2294         slotGotProxy(path);
2295         return;
2296     }
2297     m_processingProxy.append(path);
2298
2299     PROXYINFO info;
2300     info.dest = path;
2301     info.src = item->clipUrl().path();
2302     info.type = item->clipType();
2303     info.exif = QString(item->referencedClip()->producerProperty("_exif_orientation")).toInt();
2304     m_proxyList.append(info);
2305     m_proxyThreads.addFuture(QtConcurrent::run(this, &ProjectList::slotGenerateProxy));
2306 }
2307
2308 void ProjectList::slotAbortProxy(const QString id, const QString path)
2309 {
2310     QTreeWidgetItemIterator it(m_listView);
2311     ProjectItem *item = getItemById(id);
2312     setProxyStatus(item, NOPROXY);
2313     slotGotProxy(item);
2314     if (!path.isEmpty() && m_processingProxy.contains(path)) {
2315         m_abortProxy << path;
2316         setProxyStatus(path, NOPROXY);
2317     }
2318 }
2319
2320 void ProjectList::slotGenerateProxy()
2321 {
2322     if (m_proxyList.isEmpty() || m_abortAllProxies) return;
2323     emit projectModified();
2324     PROXYINFO info = m_proxyList.takeFirst();
2325     if (m_abortProxy.contains(info.dest)) {
2326         m_abortProxy.removeAll(info.dest);
2327         return;
2328     }
2329
2330     // Make sure proxy path is writable
2331     QFile file(info.dest);
2332     if (!file.open(QIODevice::WriteOnly)) {
2333         setProxyStatus(info.dest, PROXYCRASHED);
2334         m_processingProxy.removeAll(info.dest);
2335         return;
2336     }
2337     file.close();
2338     QFile::remove(info.dest);
2339     
2340     setProxyStatus(info.dest, CREATINGPROXY);
2341     
2342     // Get the list of clips that will need to get progress info
2343     QTreeWidgetItemIterator it(m_listView);
2344     QList <ProjectItem *> processingItems;
2345     while (*it && !m_abortAllProxies) {
2346         if ((*it)->type() == PROJECTCLIPTYPE) {
2347             ProjectItem *item = static_cast <ProjectItem *>(*it);
2348             if (item->referencedClip()->getProperty("proxy") == info.dest) {
2349                 processingItems.append(item);
2350             }
2351         }
2352         ++it;
2353     }
2354
2355     // Special case: playlist clips (.mlt or .kdenlive project files)
2356     if (info.type == PLAYLIST) {
2357         // change FFmpeg params to MLT format
2358         QStringList parameters;
2359         parameters << info.src;
2360         parameters << "-consumer" << "avformat:" + info.dest;
2361         QStringList params = m_doc->getDocumentProperty("proxyparams").simplified().split('-', QString::SkipEmptyParts);
2362         
2363         foreach(QString s, params) {
2364             s = s.simplified();
2365             if (s.count(' ') == 0) {
2366                 s.append("=1");
2367             }
2368             else s.replace(' ', '=');
2369             parameters << s;
2370         }
2371         
2372         parameters.append(QString("real_time=-%1").arg(KdenliveSettings::mltthreads()));
2373
2374         //TODO: currently, when rendering an xml file through melt, the display ration is lost, so we enforce it manualy
2375         double display_ratio = KdenliveDoc::getDisplayRatio(info.src);
2376         parameters << "aspect=" + QString::number(display_ratio);
2377
2378         //kDebug()<<"TRANSCOD: "<<parameters;
2379         QProcess myProcess;
2380         myProcess.setProcessChannelMode(QProcess::MergedChannels);
2381         myProcess.start(KdenliveSettings::rendererpath(), parameters);
2382         myProcess.waitForStarted();
2383         int result = -1;
2384         int duration = 0;
2385         while (myProcess.state() != QProcess::NotRunning) {
2386             // building proxy file
2387             if (m_abortProxy.contains(info.dest) || m_abortAllProxies) {
2388                 myProcess.close();
2389                 myProcess.waitForFinished();
2390                 QFile::remove(info.dest);
2391                 m_abortProxy.removeAll(info.dest);
2392                 m_processingProxy.removeAll(info.dest);
2393                 setProxyStatus(info.dest, NOPROXY);
2394                 result = -2;
2395             }
2396             else {
2397                 QString log = QString(myProcess.readAll());
2398                 processLogInfo(processingItems, &duration, log);
2399             }
2400             myProcess.waitForFinished(500);
2401         }
2402         myProcess.waitForFinished();
2403         m_processingProxy.removeAll(info.dest);
2404         if (result == -1) result = myProcess.exitStatus();
2405         if (result == 0) {
2406             // proxy successfully created
2407             setProxyStatus(info.dest, PROXYDONE);
2408             slotGotProxy(info.dest);
2409         }
2410         else if (result == 1) {
2411             // Proxy process crashed
2412             QFile::remove(info.dest);
2413             setProxyStatus(info.dest, PROXYCRASHED);
2414         }
2415         return;
2416     }
2417     
2418     if (info.type == IMAGE) {
2419         // Image proxy
2420         QImage i(info.src);
2421         if (i.isNull()) {
2422             // Cannot load image
2423             setProxyStatus(info.dest, PROXYCRASHED);
2424             return;
2425         }
2426         QImage proxy;
2427         // Images are scaled to profile size. 
2428         //TODO: Make it be configurable?
2429         if (i.width() > i.height()) proxy = i.scaledToWidth(m_render->frameRenderWidth());
2430         else proxy = i.scaledToHeight(m_render->renderHeight());
2431         if (info.exif > 1) {
2432             // Rotate image according to exif data
2433             QImage processed;
2434             QMatrix matrix;
2435
2436             switch ( info.exif ) {
2437                 case 2:
2438                   matrix.scale( -1, 1 );
2439                   break;
2440                 case 3:
2441                   matrix.rotate( 180 );
2442                   break;
2443                 case 4:
2444                   matrix.scale( 1, -1 );
2445                   break;
2446                 case 5:
2447                   matrix.rotate( 270 );
2448                   matrix.scale( -1, 1 );
2449                   break;
2450                 case 6:
2451                   matrix.rotate( 90 );
2452                   break;
2453                 case 7:
2454                   matrix.rotate( 90 );
2455                   matrix.scale( -1, 1 );
2456                   break;
2457                 case 8:
2458                   matrix.rotate( 270 );
2459                   break;
2460               }
2461               processed = proxy.transformed( matrix );
2462               processed.save(info.dest);
2463         }
2464         else proxy.save(info.dest);
2465         setProxyStatus(info.dest, PROXYDONE);
2466         slotGotProxy(info.dest);
2467         m_abortProxy.removeAll(info.dest);
2468         m_processingProxy.removeAll(info.dest);
2469         return;
2470     }
2471
2472     QStringList parameters;
2473     parameters << "-i" << info.src;
2474     QString params = m_doc->getDocumentProperty("proxyparams").simplified();
2475     foreach(QString s, params.split(' '))
2476     parameters << s;
2477
2478     // Make sure we don't block when proxy file already exists
2479     parameters << "-y";
2480     parameters << info.dest;
2481     QProcess myProcess;
2482     myProcess.setProcessChannelMode(QProcess::MergedChannels);
2483     myProcess.start("ffmpeg", parameters);
2484     myProcess.waitForStarted();
2485     int result = -1;
2486     int duration = 0;
2487    
2488     while (myProcess.state() != QProcess::NotRunning) {
2489         // building proxy file
2490         if (m_abortProxy.contains(info.dest) || m_abortAllProxies) {
2491             myProcess.close();
2492             myProcess.waitForFinished();
2493             m_abortProxy.removeAll(info.dest);
2494             m_processingProxy.removeAll(info.dest);
2495             QFile::remove(info.dest);
2496             if (!m_abortAllProxies) setProxyStatus(info.dest, NOPROXY);
2497             result = -2;
2498             
2499         }
2500         else {
2501             QString log = QString(myProcess.readAll());
2502             processLogInfo(processingItems, &duration, log);
2503         }
2504         myProcess.waitForFinished(500);
2505     }
2506     myProcess.waitForFinished();
2507     m_abortProxy.removeAll(info.dest);
2508     m_processingProxy.removeAll(info.dest);
2509     if (result == -1) result = myProcess.exitStatus();
2510     if (result == 0) {
2511         // proxy successfully created
2512         setProxyStatus(info.dest, PROXYDONE);
2513         slotGotProxy(info.dest);
2514     }
2515     else if (result == 1) {
2516         // Proxy process crashed
2517         QFile::remove(info.dest);
2518         setProxyStatus(info.dest, PROXYCRASHED);
2519     }
2520 }
2521
2522
2523 void ProjectList::processLogInfo(QList <ProjectItem *>items, int *duration, const QString &log)
2524 {
2525     int progress;
2526     if (*duration == 0) {
2527         if (log.contains("Duration:")) {
2528             QString data = log.section("Duration:", 1, 1).section(',', 0, 0).simplified();
2529             QStringList numbers = data.split(':');
2530             *duration = (int) (numbers.at(0).toInt() * 3600 + numbers.at(1).toInt() * 60 + numbers.at(2).toDouble());
2531         }
2532     }
2533     else if (log.contains("time=")) {
2534         QString time = log.section("time=", 1, 1).simplified().section(' ', 0, 0);
2535         if (time.contains(':')) {
2536             QStringList numbers = time.split(':');
2537             progress = numbers.at(0).toInt() * 3600 + numbers.at(1).toInt() * 60 + numbers.at(2).toDouble();
2538         }
2539         else progress = (int) time.toDouble();
2540         for (int i = 0; i < items.count(); i++)
2541             setProxyStatus(items.at(i), CREATINGPROXY, (int) (100.0 * progress / (*duration)));
2542     }
2543 }
2544
2545 void ProjectList::updateProxyConfig()
2546 {
2547     ProjectItem *item;
2548     QTreeWidgetItemIterator it(m_listView);
2549     QUndoCommand *command = new QUndoCommand();
2550     command->setText(i18n("Update proxy settings"));
2551     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
2552     while (*it) {
2553         if ((*it)->type() != PROJECTCLIPTYPE) {
2554             ++it;
2555             continue;
2556         }
2557         item = static_cast<ProjectItem *>(*it);
2558         if (item == NULL) {
2559             ++it;
2560             continue;
2561         }
2562         CLIPTYPE t = item->clipType();
2563         if ((t == VIDEO || t == AV || t == UNKNOWN) && item->referencedClip() != NULL) {
2564             if  (generateProxy() && useProxy() && !item->isProxyRunning()) {
2565                 DocClipBase *clip = item->referencedClip();
2566                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > m_doc->getDocumentProperty("proxyminsize").toInt()) {
2567                     if (clip->getProperty("proxy").isEmpty()) {
2568                         // We need to insert empty proxy in old properties so that undo will work
2569                         QMap <QString, QString> oldProps;// = clip->properties();
2570                         oldProps.insert("proxy", QString());
2571                         QMap <QString, QString> newProps;
2572                         newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + "." + m_doc->getDocumentProperty("proxyextension"));
2573                         new EditClipCommand(this, clip->getId(), oldProps, newProps, true, command);
2574                     }
2575                 }
2576             }
2577             else if (item->hasProxy()) {
2578                 // remove proxy
2579                 QMap <QString, QString> newProps;
2580                 newProps.insert("proxy", QString());
2581                 newProps.insert("replace", "1");
2582                 // insert required duration for proxy
2583                 newProps.insert("proxy_out", item->referencedClip()->producerProperty("out"));
2584                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), newProps, true, command);
2585             }
2586         }
2587         else if (t == IMAGE && item->referencedClip() != NULL) {
2588             if  (generateImageProxy() && useProxy()) {
2589                 DocClipBase *clip = item->referencedClip();
2590                 int maxImageSize = m_doc->getDocumentProperty("proxyimageminsize").toInt();
2591                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > maxImageSize || clip->getProperty("frame_size").section('x', 1, 1).toInt() > maxImageSize) {
2592                     if (clip->getProperty("proxy").isEmpty()) {
2593                         // We need to insert empty proxy in old properties so that undo will work
2594                         QMap <QString, QString> oldProps = clip->properties();
2595                         oldProps.insert("proxy", QString());
2596                         QMap <QString, QString> newProps;
2597                         newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + ".png");
2598                         new EditClipCommand(this, clip->getId(), oldProps, newProps, true, command);
2599                     }
2600                 }
2601             }
2602             else if (item->hasProxy()) {
2603                 // remove proxy
2604                 QMap <QString, QString> newProps;
2605                 newProps.insert("proxy", QString());
2606                 newProps.insert("replace", "1");
2607                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), newProps, true, command);
2608             }
2609         }
2610         ++it;
2611     }
2612     if (command->childCount() > 0) m_doc->commandStack()->push(command);
2613     else delete command;
2614 }
2615
2616 void ProjectList::slotProxyCurrentItem(bool doProxy)
2617 {
2618     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
2619     QTreeWidgetItem *listItem;
2620     QUndoCommand *command = new QUndoCommand();
2621     if (doProxy) command->setText(i18np("Add proxy clip", "Add proxy clips", list.count()));
2622     else command->setText(i18np("Remove proxy clip", "Remove proxy clips", list.count()));
2623     
2624     // Make sure the proxy folder exists
2625     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
2626     KStandardDirs::makeDir(proxydir);
2627                 
2628     QMap <QString, QString> newProps;
2629     QMap <QString, QString> oldProps;
2630     if (!doProxy) newProps.insert("proxy", "-");
2631     for (int i = 0; i < list.count(); i++) {
2632         listItem = list.at(i);
2633         if (listItem->type() == PROJECTFOLDERTYPE) {
2634             for (int j = 0; j < listItem->childCount(); j++) {
2635                 QTreeWidgetItem *sub = listItem->child(j);
2636                 if (!list.contains(sub)) list.append(sub);
2637             }
2638         }
2639         else if (listItem->type() == PROJECTSUBCLIPTYPE) {
2640             QTreeWidgetItem *sub = listItem->parent();
2641             if (!list.contains(sub)) list.append(sub);
2642         }
2643         else if (listItem->type() == PROJECTCLIPTYPE) {
2644             ProjectItem *item = static_cast <ProjectItem*>(listItem);
2645             CLIPTYPE t = item->clipType();
2646             if ((t == VIDEO || t == AV || t == UNKNOWN || t == IMAGE || t == PLAYLIST) && item->referencedClip()) {
2647                 if ((doProxy && item->hasProxy()) || (!doProxy && !item->hasProxy())) continue;
2648                 DocClipBase *clip = item->referencedClip();
2649                 if (!clip || !clip->isClean() || m_render->isProcessing(item->clipId())) {
2650                     kDebug()<<"//// TRYING TO PROXY: "<<item->clipId()<<", but it is busy";
2651                     continue;
2652                 }
2653                 
2654                 resetThumbsProducer(clip);
2655                 oldProps = clip->properties();
2656                 if (doProxy) {
2657                     newProps.clear();
2658                     QString path = proxydir + clip->getClipHash() + "." + (t == IMAGE ? "png" : m_doc->getDocumentProperty("proxyextension"));
2659                     // insert required duration for proxy
2660                     newProps.insert("proxy_out", clip->producerProperty("out"));
2661                     newProps.insert("proxy", path);
2662                     // We need to insert empty proxy so that undo will work
2663                     oldProps.insert("proxy", QString());
2664                 }
2665                 new EditClipCommand(this, item->clipId(), oldProps, newProps, true, command);
2666             }
2667         }
2668     }
2669     if (command->childCount() > 0) {
2670         m_doc->commandStack()->push(command);
2671     }
2672     else delete command;
2673 }
2674
2675
2676 void ProjectList::slotDeleteProxy(const QString proxyPath)
2677 {
2678     if (proxyPath.isEmpty()) return;
2679     QUndoCommand *proxyCommand = new QUndoCommand();
2680     proxyCommand->setText(i18n("Remove Proxy"));
2681     QTreeWidgetItemIterator it(m_listView);
2682     ProjectItem *item;
2683     while (*it) {
2684         if ((*it)->type() == PROJECTCLIPTYPE) {
2685             item = static_cast <ProjectItem *>(*it);
2686             if (item->referencedClip()->getProperty("proxy") == proxyPath) {
2687                 QMap <QString, QString> props;
2688                 props.insert("proxy", QString());
2689                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), props, true, proxyCommand);
2690             
2691             }
2692         }
2693         ++it;
2694     }
2695     if (proxyCommand->childCount() == 0)
2696         delete proxyCommand;
2697     else
2698         m_commandStack->push(proxyCommand);
2699     QFile::remove(proxyPath);
2700 }
2701
2702 void ProjectList::setProxyStatus(const QString proxyPath, PROXYSTATUS status, int progress)
2703 {
2704     if (proxyPath.isEmpty() || m_abortAllProxies) return;
2705     QTreeWidgetItemIterator it(m_listView);
2706     ProjectItem *item;
2707     while (*it && !m_abortAllProxies) {
2708         if ((*it)->type() == PROJECTCLIPTYPE) {
2709             item = static_cast <ProjectItem *>(*it);
2710             if (item->referencedClip()->getProperty("proxy") == proxyPath) {
2711                 setProxyStatus(item, status, progress);
2712             }
2713         }
2714         ++it;
2715     }
2716 }
2717
2718 void ProjectList::setProxyStatus(ProjectItem *item, PROXYSTATUS status, int progress)
2719 {
2720     if (item == NULL) return;
2721     monitorItemEditing(false);
2722     item->setProxyStatus(status, progress);
2723     monitorItemEditing(true);
2724 }
2725
2726 void ProjectList::monitorItemEditing(bool enable)
2727 {
2728     if (enable) connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
2729     else disconnect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
2730 }
2731
2732 QStringList ProjectList::expandedFolders() const
2733 {
2734     QStringList result;
2735     FolderProjectItem *item;
2736     QTreeWidgetItemIterator it(m_listView);
2737     while (*it) {
2738         if ((*it)->type() != PROJECTFOLDERTYPE) {
2739             ++it;
2740             continue;
2741         }
2742         if ((*it)->isExpanded()) {
2743             item = static_cast<FolderProjectItem *>(*it);
2744             result.append(item->clipId());
2745         }
2746         ++it;
2747     }
2748     return result;
2749 }
2750
2751 #include "projectlist.moc"