]> git.sesse.net Git - kdenlive/blob - src/projectlist.cpp
Move undo commands to their own subdirectory
[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 "commands/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 "commands/editclipcommand.h"
37 #include "commands/editclipcutcommand.h"
38 #include "commands/editfoldercommand.h"
39 #include "commands/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_refreshed || 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     emit clipSelected(NULL);
1176     m_refreshed = false;
1177     m_allClipsProcessed = false;
1178     m_abortAllProxies = false;
1179     m_listView->blockSignals(false);
1180 }
1181
1182 void ProjectList::slotUpdateClip(const QString &id)
1183 {
1184     ProjectItem *item = getItemById(id);
1185     monitorItemEditing(false);
1186     if (item) item->setData(0, UsageRole, QString::number(item->numReferences()));
1187     monitorItemEditing(true);
1188 }
1189
1190 void ProjectList::getCachedThumbnail(ProjectItem *item)
1191 {
1192     if (!item) return;
1193     DocClipBase *clip = item->referencedClip();
1194     if (!clip) return;
1195     QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + ".png";
1196     if (QFile::exists(cachedPixmap)) {
1197         QPixmap pix(cachedPixmap);
1198         if (pix.isNull()) {
1199             KIO::NetAccess::del(KUrl(cachedPixmap), this);
1200             requestClipThumbnail(item->clipId());
1201         }
1202         else item->setData(0, Qt::DecorationRole, pix);
1203     }
1204     else {
1205         requestClipThumbnail(item->clipId());
1206     }
1207 }
1208
1209 void ProjectList::getCachedThumbnail(SubProjectItem *item)
1210 {
1211     if (!item) return;
1212     ProjectItem *parentItem = static_cast <ProjectItem *>(item->parent());
1213     if (!parentItem) return;
1214     DocClipBase *clip = parentItem->referencedClip();
1215     if (!clip) return;
1216     int pos = item->zone().x();
1217     QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + "#" + QString::number(pos) + ".png";
1218     if (QFile::exists(cachedPixmap)) {
1219         QPixmap pix(cachedPixmap);
1220         if (pix.isNull()) {
1221             KIO::NetAccess::del(KUrl(cachedPixmap), this);
1222             requestClipThumbnail(parentItem->clipId() + '#' + QString::number(pos));
1223         }
1224         else item->setData(0, Qt::DecorationRole, pix);
1225     }
1226     else requestClipThumbnail(parentItem->clipId() + '#' + QString::number(pos));
1227 }
1228
1229 void ProjectList::updateAllClips(bool displayRatioChanged, bool fpsChanged)
1230 {
1231     if (!m_allClipsProcessed) m_listView->setEnabled(false);
1232     m_listView->setSortingEnabled(false);
1233     QTreeWidgetItemIterator it(m_listView);
1234     DocClipBase *clip;
1235     ProjectItem *item;
1236     monitorItemEditing(false);
1237     int height = m_listView->iconSize().height();
1238     int width = (int)(height  * m_render->dar());
1239     QPixmap missingPixmap = QPixmap(width, height);
1240     missingPixmap.fill(Qt::transparent);
1241     KIcon icon("dialog-close");
1242     QPainter p(&missingPixmap);
1243     p.drawPixmap(3, 3, icon.pixmap(width - 6, height - 6));
1244     p.end();
1245     
1246     int max = m_doc->clipManager()->clipsCount();
1247     max = qMax(1, max);
1248     int ct = 0;
1249
1250     while (*it) {
1251         emit displayMessage(i18n("Loading thumbnails"), (int)(100 *(max - ct++) / max));
1252         if ((*it)->type() == PROJECTSUBCLIPTYPE) {
1253             // subitem
1254             SubProjectItem *sub = static_cast <SubProjectItem *>(*it);
1255             if (displayRatioChanged) {
1256                 item = static_cast <ProjectItem *>((*it)->parent());
1257                 requestClipThumbnail(item->clipId() + '#' + QString::number(sub->zone().x()));
1258             }
1259             else if (sub->data(0, Qt::DecorationRole).isNull()) {
1260                 getCachedThumbnail(sub);
1261             }
1262             ++it;
1263             continue;
1264         } else if ((*it)->type() == PROJECTFOLDERTYPE) {
1265             // folder
1266             ++it;
1267             continue;
1268         } else {
1269             item = static_cast <ProjectItem *>(*it);
1270             clip = item->referencedClip();
1271             if (item->referencedClip()->getProducer() == NULL) {
1272                 if (clip->isPlaceHolder() == false && !item->isProxyRunning()) {
1273                     QDomElement xml = clip->toXML();
1274                     if (fpsChanged) {
1275                         xml.removeAttribute("out");
1276                         xml.removeAttribute("file_hash");
1277                         xml.removeAttribute("proxy_out");
1278                     }
1279                     bool replace = xml.attribute("replace") == "1";
1280                     if (replace) resetThumbsProducer(clip);
1281                     m_render->getFileProperties(xml, clip->getId(), m_listView->iconSize().height(), replace);
1282                 }
1283                 else {
1284                     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
1285                     if (item->data(0, Qt::DecorationRole).isNull()) {
1286                         item->setData(0, Qt::DecorationRole, missingPixmap);
1287                     }
1288                     else {
1289                         QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
1290                         QPainter p(&pixmap);
1291                         p.drawPixmap(3, 3, KIcon("dialog-close").pixmap(pixmap.width() - 6, pixmap.height() - 6));
1292                         p.end();
1293                         item->setData(0, Qt::DecorationRole, pixmap);
1294                     }
1295                 }
1296             } else {              
1297                 if (displayRatioChanged)
1298                     requestClipThumbnail(clip->getId());
1299                 else if (item->data(0, Qt::DecorationRole).isNull()) {
1300                     getCachedThumbnail(item);
1301                 }
1302                 if (item->data(0, DurationRole).toString().isEmpty()) {
1303                     item->changeDuration(item->referencedClip()->getProducer()->get_playtime());
1304                 }
1305                 if (clip->isPlaceHolder()) {
1306                     QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
1307                     if (pixmap.isNull()) {
1308                         pixmap = QPixmap(width, height);
1309                         pixmap.fill(Qt::transparent);
1310                     }
1311                     QPainter p(&pixmap);
1312                     p.drawPixmap(3, 3, KIcon("dialog-close").pixmap(pixmap.width() - 6, pixmap.height() - 6));
1313                     p.end();
1314                     item->setData(0, Qt::DecorationRole, pixmap);
1315                 }
1316             }
1317             item->setData(0, UsageRole, QString::number(item->numReferences()));
1318         }
1319         ++it;
1320     }
1321
1322     m_listView->setSortingEnabled(true);
1323     m_allClipsProcessed = true;
1324     if (m_render->processingItems() == 0) {
1325        monitorItemEditing(true);
1326        slotProcessNextThumbnail();
1327     }
1328 }
1329
1330 // static
1331 QString ProjectList::getExtensions()
1332 {
1333     // Build list of mime types
1334     QStringList mimeTypes = QStringList() << "application/x-kdenlive" << "application/x-kdenlivetitle" << "video/mlt-playlist" << "text/plain"
1335                             << "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"
1336                             << "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"
1337                             << "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";
1338
1339     QString allExtensions;
1340     foreach(const QString & mimeType, mimeTypes) {
1341         KMimeType::Ptr mime(KMimeType::mimeType(mimeType));
1342         if (mime) {
1343             allExtensions.append(mime->patterns().join(" "));
1344             allExtensions.append(' ');
1345         }
1346     }
1347     return allExtensions.simplified();
1348 }
1349
1350 void ProjectList::slotAddClip(const QList <QUrl> givenList, const QString &groupName, const QString &groupId)
1351 {
1352     if (!m_commandStack)
1353         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1354
1355     KUrl::List list;
1356     if (givenList.isEmpty()) {
1357         QString allExtensions = getExtensions();
1358         const QString dialogFilter = allExtensions + ' ' + QLatin1Char('|') + i18n("All Supported Files") + "\n* " + QLatin1Char('|') + i18n("All Files");
1359         QCheckBox *b = new QCheckBox(i18n("Import image sequence"));
1360         b->setChecked(KdenliveSettings::autoimagesequence());
1361         QCheckBox *c = new QCheckBox(i18n("Transparent background for images"));
1362         c->setChecked(KdenliveSettings::autoimagetransparency());
1363         QFrame *f = new QFrame;
1364         f->setFrameShape(QFrame::NoFrame);
1365         QHBoxLayout *l = new QHBoxLayout;
1366         l->addWidget(b);
1367         l->addWidget(c);
1368         l->addStretch(5);
1369         f->setLayout(l);
1370         KFileDialog *d = new KFileDialog(KUrl("kfiledialog:///clipfolder"), dialogFilter, kapp->activeWindow(), f);
1371         d->setOperationMode(KFileDialog::Opening);
1372         d->setMode(KFile::Files);
1373         if (d->exec() == QDialog::Accepted) {
1374             KdenliveSettings::setAutoimagetransparency(c->isChecked());
1375         }
1376         list = d->selectedUrls();
1377         if (b->isChecked() && list.count() == 1) {
1378             // Check for image sequence
1379             KUrl url = list.at(0);
1380             QString fileName = url.fileName().section('.', 0, -2);
1381             if (fileName.at(fileName.size() - 1).isDigit()) {
1382                 KFileItem item(KFileItem::Unknown, KFileItem::Unknown, url);
1383                 if (item.mimetype().startsWith("image")) {
1384                     // import as sequence if we found more than one image in the sequence
1385                     QStringList list;
1386                     QString pattern = SlideshowClip::selectedPath(url.path(), false, QString(), &list);
1387                     int count = list.count();
1388                     if (count > 1) {
1389                         delete d;
1390                         QStringList groupInfo = getGroup();
1391
1392                         // get image sequence base name
1393                         while (fileName.at(fileName.size() - 1).isDigit()) {
1394                             fileName.chop(1);
1395                         }
1396
1397                         m_doc->slotCreateSlideshowClipFile(fileName, pattern, count, m_timecode.reformatSeparators(KdenliveSettings::sequence_duration()),
1398                                                            false, false, false,
1399                                                            m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))), QString(), 0,
1400                                                            QString(), groupInfo.at(0), groupInfo.at(1));
1401                         return;
1402                     }
1403                 }
1404             }
1405         }
1406         delete d;
1407     } else {
1408         for (int i = 0; i < givenList.count(); i++)
1409             list << givenList.at(i);
1410     }
1411
1412     foreach(const KUrl & file, list) {
1413         // Check there is no folder here
1414         KMimeType::Ptr type = KMimeType::findByUrl(file);
1415         if (type->is("inode/directory")) {
1416             // user dropped a folder
1417             list.removeAll(file);
1418         }
1419     }
1420
1421     if (list.isEmpty())
1422         return;
1423
1424     if (givenList.isEmpty()) {
1425         QStringList groupInfo = getGroup();
1426         m_doc->slotAddClipList(list, groupInfo.at(0), groupInfo.at(1));
1427     } else {
1428         m_doc->slotAddClipList(list, groupName, groupId);
1429     }
1430 }
1431
1432 void ProjectList::slotRemoveInvalidClip(const QString &id, bool replace)
1433 {
1434     ProjectItem *item = getItemById(id);
1435     m_processingClips.removeAll(id);
1436     m_thumbnailQueue.removeAll(id);
1437     if (item) {
1438         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1439         const QString path = item->referencedClip()->fileURL().path();
1440         if (item->referencedClip()->isPlaceHolder()) replace = false;
1441         if (!path.isEmpty()) {
1442             if (m_invalidClipDialog) {
1443                 m_invalidClipDialog->addClip(id, path);
1444                 return;
1445             }
1446             else {
1447                 if (replace)
1448                     m_invalidClipDialog = new InvalidDialog(i18n("Invalid clip"),  i18n("Clip <b>%1</b><br />is invalid, will be removed from project.", QString()), replace, kapp->activeWindow());
1449                 else {
1450                     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());
1451                 }
1452                 m_invalidClipDialog->addClip(id, path);
1453                 int result = m_invalidClipDialog->exec();
1454                 if (result == KDialog::Yes) replace = true;
1455             }
1456         }
1457         if (m_invalidClipDialog) {
1458             if (replace)
1459                 emit deleteProjectClips(m_invalidClipDialog->getIds(), QMap <QString, QString>());
1460             delete m_invalidClipDialog;
1461             m_invalidClipDialog = NULL;
1462         }
1463         
1464     }
1465 }
1466
1467 void ProjectList::slotRemoveInvalidProxy(const QString &id, bool durationError)
1468 {
1469     ProjectItem *item = getItemById(id);
1470     if (item) {
1471         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1472         if (durationError) {
1473             kDebug() << "Proxy duration is wrong, try changing transcoding parameters.";
1474             emit displayMessage(i18n("Proxy clip unusable (duration is different from original)."), -2);
1475         }
1476         item->setProxyStatus(PROXYCRASHED);
1477         QString path = item->referencedClip()->getProperty("proxy");
1478         KUrl proxyFolder(m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/");
1479
1480         //Security check: make sure the invalid proxy file is in the proxy folder
1481         if (proxyFolder.isParentOf(KUrl(path))) {
1482             QFile::remove(path);
1483         }
1484     }
1485     m_processingClips.removeAll(id);
1486     m_thumbnailQueue.removeAll(id);
1487 }
1488
1489 void ProjectList::slotAddColorClip()
1490 {
1491     if (!m_commandStack)
1492         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1493
1494     QDialog *dia = new QDialog(this);
1495     Ui::ColorClip_UI dia_ui;
1496     dia_ui.setupUi(dia);
1497     dia->setWindowTitle(i18n("Color Clip"));
1498     dia_ui.clip_name->setText(i18n("Color Clip"));
1499
1500     TimecodeDisplay *t = new TimecodeDisplay(m_timecode);
1501     t->setValue(KdenliveSettings::color_duration());
1502     t->setTimeCodeFormat(false);
1503     dia_ui.clip_durationBox->addWidget(t);
1504     dia_ui.clip_color->setColor(KdenliveSettings::colorclipcolor());
1505
1506     if (dia->exec() == QDialog::Accepted) {
1507         QString color = dia_ui.clip_color->color().name();
1508         KdenliveSettings::setColorclipcolor(color);
1509         color = color.replace(0, 1, "0x") + "ff";
1510         QStringList groupInfo = getGroup();
1511         m_doc->slotCreateColorClip(dia_ui.clip_name->text(), color, m_timecode.getTimecode(t->gentime()), groupInfo.at(0), groupInfo.at(1));
1512     }
1513     delete t;
1514     delete dia;
1515 }
1516
1517
1518 void ProjectList::slotAddSlideshowClip()
1519 {
1520     if (!m_commandStack)
1521         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1522
1523     SlideshowClip *dia = new SlideshowClip(m_timecode, this);
1524
1525     if (dia->exec() == QDialog::Accepted) {
1526         QStringList groupInfo = getGroup();
1527         m_doc->slotCreateSlideshowClipFile(dia->clipName(), dia->selectedPath(), dia->imageCount(), dia->clipDuration(),
1528                                            dia->loop(), dia->crop(), dia->fade(),
1529                                            dia->lumaDuration(), dia->lumaFile(), dia->softness(),
1530                                            dia->animation(), groupInfo.at(0), groupInfo.at(1));
1531     }
1532     delete dia;
1533 }
1534
1535 void ProjectList::slotAddTitleClip()
1536 {
1537     QStringList groupInfo = getGroup();
1538     m_doc->slotCreateTextClip(groupInfo.at(0), groupInfo.at(1));
1539 }
1540
1541 void ProjectList::slotAddTitleTemplateClip()
1542 {
1543     if (!m_commandStack)
1544         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1545
1546     QStringList groupInfo = getGroup();
1547
1548     // Get the list of existing templates
1549     QStringList filter;
1550     filter << "*.kdenlivetitle";
1551     const QString path = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
1552     QStringList templateFiles = QDir(path).entryList(filter, QDir::Files);
1553
1554     QDialog *dia = new QDialog(this);
1555     Ui::TemplateClip_UI dia_ui;
1556     dia_ui.setupUi(dia);
1557     for (int i = 0; i < templateFiles.size(); ++i)
1558         dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), path + templateFiles.at(i));
1559
1560     if (!templateFiles.isEmpty())
1561         dia_ui.buttonBox->button(QDialogButtonBox::Ok)->setFocus();
1562     dia_ui.template_list->fileDialog()->setFilter("application/x-kdenlivetitle");
1563     //warning: setting base directory doesn't work??
1564     KUrl startDir(path);
1565     dia_ui.template_list->fileDialog()->setUrl(startDir);
1566     dia_ui.text_box->setHidden(true);
1567     if (dia->exec() == QDialog::Accepted) {
1568         QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
1569         if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
1570         // Create a cloned template clip
1571         m_doc->slotCreateTextTemplateClip(groupInfo.at(0), groupInfo.at(1), KUrl(textTemplate));
1572     }
1573     delete dia;
1574 }
1575
1576 QStringList ProjectList::getGroup() const
1577 {
1578     QStringList result;
1579     QTreeWidgetItem *item = m_listView->currentItem();
1580     while (item && item->type() != PROJECTFOLDERTYPE)
1581         item = item->parent();
1582
1583     if (item) {
1584         FolderProjectItem *folder = static_cast <FolderProjectItem *>(item);
1585         result << folder->groupName() << folder->clipId();
1586     } else {
1587         result << QString() << QString();
1588     }
1589     return result;
1590 }
1591
1592 void ProjectList::setDocument(KdenliveDoc *doc)
1593 {
1594     m_listView->blockSignals(true);
1595     m_abortAllProxies = true;
1596     m_proxyThreads.waitForFinished();
1597     m_proxyThreads.clearFutures();
1598     m_thumbnailQueue.clear();
1599     m_listView->clear();
1600     m_processingClips.clear();
1601     
1602     m_listView->setSortingEnabled(false);
1603     emit clipSelected(NULL);
1604     m_refreshed = false;
1605     m_allClipsProcessed = false;
1606     m_fps = doc->fps();
1607     m_timecode = doc->timecode();
1608     m_commandStack = doc->commandStack();
1609     m_doc = doc;
1610     m_abortAllProxies = false;
1611
1612     QMap <QString, QString> flist = doc->clipManager()->documentFolderList();
1613     QStringList openedFolders = doc->getExpandedFolders();
1614     QMapIterator<QString, QString> f(flist);
1615     while (f.hasNext()) {
1616         f.next();
1617         FolderProjectItem *folder = new FolderProjectItem(m_listView, QStringList() << f.value(), f.key());
1618         folder->setExpanded(openedFolders.contains(f.key()));
1619     }
1620
1621     QList <DocClipBase*> list = doc->clipManager()->documentClipList();
1622     if (list.isEmpty()) {
1623         // blank document
1624         m_refreshed = true;
1625         m_allClipsProcessed = true;
1626     }
1627     for (int i = 0; i < list.count(); i++)
1628         slotAddClip(list.at(i), false);
1629
1630     m_listView->blockSignals(false);
1631     connect(m_doc->clipManager(), SIGNAL(reloadClip(const QString &)), this, SLOT(slotReloadClip(const QString &)));
1632     connect(m_doc->clipManager(), SIGNAL(modifiedClip(const QString &)), this, SLOT(slotModifiedClip(const QString &)));
1633     connect(m_doc->clipManager(), SIGNAL(missingClip(const QString &)), this, SLOT(slotMissingClip(const QString &)));
1634     connect(m_doc->clipManager(), SIGNAL(availableClip(const QString &)), this, SLOT(slotAvailableClip(const QString &)));
1635     connect(m_doc->clipManager(), SIGNAL(checkAllClips(bool, bool)), this, SLOT(updateAllClips(bool, bool)));
1636 }
1637
1638 QList <DocClipBase*> ProjectList::documentClipList() const
1639 {
1640     if (m_doc == NULL)
1641         return QList <DocClipBase*> ();
1642
1643     return m_doc->clipManager()->documentClipList();
1644 }
1645
1646 QDomElement ProjectList::producersList()
1647 {
1648     QDomDocument doc;
1649     QDomElement prods = doc.createElement("producerlist");
1650     doc.appendChild(prods);
1651     QTreeWidgetItemIterator it(m_listView);
1652     while (*it) {
1653         if ((*it)->type() != PROJECTCLIPTYPE) {
1654             // subitem
1655             ++it;
1656             continue;
1657         }
1658         prods.appendChild(doc.importNode(((ProjectItem *)(*it))->toXml(), true));
1659         ++it;
1660     }
1661     return prods;
1662 }
1663
1664 void ProjectList::slotCheckForEmptyQueue()
1665 {
1666     if (m_render->processingItems() == 0 && m_thumbnailQueue.isEmpty()) {
1667         if (!m_refreshed && m_allClipsProcessed) {
1668             m_listView->setEnabled(true);
1669             slotClipSelected();
1670             QTimer::singleShot(500, this, SIGNAL(loadingIsOver()));
1671             emit displayMessage(QString(), -1);
1672             m_refreshed = true;
1673         }
1674         updateButtons();
1675     } else if (!m_refreshed) {
1676         QTimer::singleShot(300, this, SLOT(slotCheckForEmptyQueue()));
1677     }
1678 }
1679
1680
1681 void ProjectList::requestClipThumbnail(const QString id)
1682 {
1683     if (!m_thumbnailQueue.contains(id)) m_thumbnailQueue.append(id);
1684     slotProcessNextThumbnail();
1685 }
1686
1687 void ProjectList::resetThumbsProducer(DocClipBase *clip)
1688 {
1689     if (!clip) return;
1690     clip->clearThumbProducer();
1691     QString id = clip->getId();
1692     m_thumbnailQueue.removeAll(id);
1693 }
1694
1695 void ProjectList::slotProcessNextThumbnail()
1696 {
1697     if (m_render->processingItems() > 0) {
1698         return;
1699     }
1700     if (m_thumbnailQueue.isEmpty()) {
1701         slotCheckForEmptyQueue();
1702         return;
1703     }
1704     int max = m_doc->clipManager()->clipsCount();
1705     emit displayMessage(i18n("Loading thumbnails"), (int)(100 *(max - m_thumbnailQueue.count()) / max));
1706     slotRefreshClipThumbnail(m_thumbnailQueue.takeFirst(), false);
1707 }
1708
1709 void ProjectList::slotRefreshClipThumbnail(const QString &clipId, bool update)
1710 {
1711     QTreeWidgetItem *item = getAnyItemById(clipId);
1712     if (item)
1713         slotRefreshClipThumbnail(item, update);
1714     else {
1715         slotProcessNextThumbnail();
1716     }
1717 }
1718
1719 void ProjectList::slotRefreshClipThumbnail(QTreeWidgetItem *it, bool update)
1720 {
1721     if (it == NULL) return;
1722     ProjectItem *item = NULL;
1723     bool isSubItem = false;
1724     int frame;
1725     if (it->type() == PROJECTFOLDERTYPE) return;
1726     if (it->type() == PROJECTSUBCLIPTYPE) {
1727         item = static_cast <ProjectItem *>(it->parent());
1728         frame = static_cast <SubProjectItem *>(it)->zone().x();
1729         isSubItem = true;
1730     } else {
1731         item = static_cast <ProjectItem *>(it);
1732         frame = item->referencedClip()->getClipThumbFrame();
1733     }
1734
1735     if (item) {
1736         DocClipBase *clip = item->referencedClip();
1737         if (!clip) {
1738             slotProcessNextThumbnail();
1739             return;
1740         }
1741         QPixmap pix;
1742         int height = m_listView->iconSize().height();
1743         int swidth = (int)(height  * m_render->frameRenderWidth() / m_render->renderHeight()+ 0.5);
1744         int dwidth = (int)(height  * m_render->dar() + 0.5);
1745         if (clip->clipType() == AUDIO)
1746             pix = KIcon("audio-x-generic").pixmap(QSize(dwidth, height));
1747         else if (clip->clipType() == IMAGE)
1748             pix = QPixmap::fromImage(KThumb::getFrame(item->referencedClip()->getProducer(), 0, swidth, dwidth, height));
1749         else {
1750             pix = item->referencedClip()->extractImage(frame, dwidth, height);
1751         }
1752
1753         if (!pix.isNull()) {
1754             monitorItemEditing(false);
1755             it->setData(0, Qt::DecorationRole, pix);
1756             monitorItemEditing(true);
1757                 
1758             if (!isSubItem)
1759                 m_doc->cachePixmap(item->getClipHash(), pix);
1760             else
1761                 m_doc->cachePixmap(item->getClipHash() + '#' + QString::number(frame), pix);
1762         }
1763         if (update)
1764             emit projectModified();
1765         slotProcessNextThumbnail();
1766     }
1767 }
1768
1769
1770 void ProjectList::slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const stringMap &properties, const stringMap &metadata, bool replace)
1771 {
1772     QString toReload;
1773     ProjectItem *item = getItemById(clipId);
1774
1775     int queue = m_render->processingItems();
1776     if (item && producer) {
1777         monitorItemEditing(false);
1778         DocClipBase *clip = item->referencedClip();
1779         if (producer->is_valid()) {
1780             if (clip->isPlaceHolder()) {
1781                 clip->setValid();
1782                 toReload = clipId;
1783             }
1784             item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1785         }
1786         item->setProperties(properties, metadata);
1787         clip->setProducer(producer, replace);
1788         clip->askForAudioThumbs();
1789
1790         // Proxy stuff
1791         QString size = properties.value("frame_size");
1792         if (!useProxy() && clip->getProperty("proxy").isEmpty()) setProxyStatus(item, NOPROXY);
1793         if (useProxy() && generateProxy() && clip->getProperty("proxy") == "-") setProxyStatus(item, NOPROXY);
1794         else if (useProxy() && !item->hasProxy() && !item->isProxyRunning()) {
1795             // proxy video and image clips
1796             int maxSize;
1797             CLIPTYPE t = item->clipType();
1798             if (t == IMAGE) maxSize = m_doc->getDocumentProperty("proxyimageminsize").toInt();
1799             else maxSize = m_doc->getDocumentProperty("proxyminsize").toInt();
1800             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)) {
1801                 if (clip->getProperty("proxy").isEmpty()) {
1802                     KUrl proxyPath = m_doc->projectFolder();
1803                     proxyPath.addPath("proxy/");
1804                     proxyPath.addPath(clip->getClipHash() + "." + (t == IMAGE ? "png" : m_doc->getDocumentProperty("proxyextension")));
1805                     QMap <QString, QString> newProps;
1806                     // insert required duration for proxy
1807                     if (t != IMAGE) newProps.insert("proxy_out", clip->producerProperty("out"));
1808                     newProps.insert("proxy", proxyPath.path());
1809                     QMap <QString, QString> oldProps = clip->properties();
1810                     oldProps.insert("proxy", QString());
1811                     EditClipCommand *command = new EditClipCommand(this, clipId, oldProps, newProps, true);
1812                     m_doc->commandStack()->push(command);
1813                 }
1814             }
1815         }
1816
1817         if (!replace && m_allClipsProcessed && item->data(0, Qt::DecorationRole).isNull()) {
1818             getCachedThumbnail(item);
1819         }
1820         if (!toReload.isEmpty())
1821             item->slotSetToolTip();
1822     } else kDebug() << "////////  COULD NOT FIND CLIP TO UPDATE PRPS...";
1823     if (queue == 0) {
1824         monitorItemEditing(true);
1825         if (item && m_thumbnailQueue.isEmpty()) {
1826             m_listView->setCurrentItem(item);
1827             bool updatedProfile = false;
1828             if (item->parent()) {
1829                 if (item->parent()->type() == PROJECTFOLDERTYPE)
1830                     static_cast <FolderProjectItem *>(item->parent())->switchIcon();
1831             } else if (KdenliveSettings::checkfirstprojectclip() &&  m_listView->topLevelItemCount() == 1) {
1832                 // this is the first clip loaded in project, check if we want to adjust project settings to the clip
1833                 updatedProfile = adjustProjectProfileToItem(item);
1834             }
1835             if (updatedProfile == false) {
1836                 //emit clipSelected(item->referencedClip());
1837             }
1838         } else {
1839             int max = m_doc->clipManager()->clipsCount();
1840             emit displayMessage(i18n("Loading clips"), (int)(100 *(max - queue) / max));
1841         }
1842         if (m_allClipsProcessed) emit processNextThumbnail();
1843     }
1844     if (replace && item) {
1845         toReload = clipId;
1846     }
1847     if (!item) {
1848         // no item for producer, delete it
1849         delete producer;
1850     }
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     // Special case: playlist clips (.mlt or .kdenlive project files)
2343     if (info.type == PLAYLIST) {
2344         // change FFmpeg params to MLT format
2345         QStringList parameters;
2346         parameters << info.src;
2347         parameters << "-consumer" << "avformat:" + info.dest;
2348         QStringList params = m_doc->getDocumentProperty("proxyparams").simplified().split('-', QString::SkipEmptyParts);
2349         
2350         foreach(QString s, params) {
2351             s = s.simplified();
2352             if (s.count(' ') == 0) {
2353                 s.append("=1");
2354             }
2355             else s.replace(' ', '=');
2356             parameters << s;
2357         }
2358         
2359         parameters.append(QString("real_time=-%1").arg(KdenliveSettings::mltthreads()));
2360
2361         //TODO: currently, when rendering an xml file through melt, the display ration is lost, so we enforce it manualy
2362         double display_ratio = KdenliveDoc::getDisplayRatio(info.src);
2363         parameters << "aspect=" + QString::number(display_ratio);
2364
2365         //kDebug()<<"TRANSCOD: "<<parameters;
2366         QProcess myProcess;
2367         myProcess.setProcessChannelMode(QProcess::MergedChannels);
2368         myProcess.start(KdenliveSettings::rendererpath(), parameters);
2369         myProcess.waitForStarted();
2370         int result = -1;
2371         int duration = 0;
2372         while (myProcess.state() != QProcess::NotRunning) {
2373             // building proxy file
2374             if (m_abortProxy.contains(info.dest) || m_abortAllProxies) {
2375                 myProcess.close();
2376                 myProcess.waitForFinished();
2377                 QFile::remove(info.dest);
2378                 m_abortProxy.removeAll(info.dest);
2379                 m_processingProxy.removeAll(info.dest);
2380                 setProxyStatus(info.dest, NOPROXY);
2381                 result = -2;
2382             }
2383             else {
2384                 QString log = QString(myProcess.readAll());
2385                 processLogInfo(info.dest, &duration, log);
2386             }
2387             myProcess.waitForFinished(500);
2388         }
2389         myProcess.waitForFinished();
2390         m_processingProxy.removeAll(info.dest);
2391         if (result == -1) result = myProcess.exitStatus();
2392         if (result == 0) {
2393             // proxy successfully created
2394             setProxyStatus(info.dest, PROXYDONE);
2395             slotGotProxy(info.dest);
2396         }
2397         else if (result == 1) {
2398             // Proxy process crashed
2399             QFile::remove(info.dest);
2400             setProxyStatus(info.dest, PROXYCRASHED);
2401         }
2402         return;
2403     }
2404     
2405     if (info.type == IMAGE) {
2406         // Image proxy
2407         QImage i(info.src);
2408         if (i.isNull()) {
2409             // Cannot load image
2410             setProxyStatus(info.dest, PROXYCRASHED);
2411             return;
2412         }
2413         QImage proxy;
2414         // Images are scaled to profile size. 
2415         //TODO: Make it be configurable?
2416         if (i.width() > i.height()) proxy = i.scaledToWidth(m_render->frameRenderWidth());
2417         else proxy = i.scaledToHeight(m_render->renderHeight());
2418         if (info.exif > 1) {
2419             // Rotate image according to exif data
2420             QImage processed;
2421             QMatrix matrix;
2422
2423             switch ( info.exif ) {
2424                 case 2:
2425                   matrix.scale( -1, 1 );
2426                   break;
2427                 case 3:
2428                   matrix.rotate( 180 );
2429                   break;
2430                 case 4:
2431                   matrix.scale( 1, -1 );
2432                   break;
2433                 case 5:
2434                   matrix.rotate( 270 );
2435                   matrix.scale( -1, 1 );
2436                   break;
2437                 case 6:
2438                   matrix.rotate( 90 );
2439                   break;
2440                 case 7:
2441                   matrix.rotate( 90 );
2442                   matrix.scale( -1, 1 );
2443                   break;
2444                 case 8:
2445                   matrix.rotate( 270 );
2446                   break;
2447               }
2448               processed = proxy.transformed( matrix );
2449               processed.save(info.dest);
2450         }
2451         else proxy.save(info.dest);
2452         setProxyStatus(info.dest, PROXYDONE);
2453         slotGotProxy(info.dest);
2454         m_abortProxy.removeAll(info.dest);
2455         m_processingProxy.removeAll(info.dest);
2456         return;
2457     }
2458
2459     QStringList parameters;
2460     parameters << "-i" << info.src;
2461     QString params = m_doc->getDocumentProperty("proxyparams").simplified();
2462     foreach(QString s, params.split(' '))
2463     parameters << s;
2464
2465     // Make sure we don't block when proxy file already exists
2466     parameters << "-y";
2467     parameters << info.dest;
2468     kDebug()<<"// STARTING PROXY GEN: "<<parameters;
2469     QProcess myProcess;
2470     myProcess.setProcessChannelMode(QProcess::MergedChannels);
2471     myProcess.start("ffmpeg", parameters);
2472     myProcess.waitForStarted();
2473     int result = -1;
2474     int duration = 0;
2475     while (myProcess.state() != QProcess::NotRunning) {
2476         // building proxy file
2477         if (m_abortProxy.contains(info.dest) || m_abortAllProxies) {
2478             myProcess.close();
2479             myProcess.waitForFinished();
2480             m_abortProxy.removeAll(info.dest);
2481             m_processingProxy.removeAll(info.dest);
2482             QFile::remove(info.dest);
2483             if (!m_abortAllProxies) setProxyStatus(info.dest, NOPROXY);
2484             result = -2;
2485             
2486         }
2487         else {
2488             QString log = QString(myProcess.readAll());
2489             processLogInfo(info.dest, &duration, log);
2490         }
2491         myProcess.waitForFinished(500);
2492     }
2493     myProcess.waitForFinished();
2494     if (result == -1) result = myProcess.exitStatus();
2495     if (result == 0) {
2496         // proxy successfully created
2497         setProxyStatus(info.dest, PROXYDONE);
2498         slotGotProxy(info.dest);
2499     }
2500     else if (result == 1) {
2501         // Proxy process crashed
2502         QFile::remove(info.dest);
2503         setProxyStatus(info.dest, PROXYCRASHED);
2504     }
2505     m_abortProxy.removeAll(info.dest);
2506     m_processingProxy.removeAll(info.dest);
2507 }
2508
2509
2510 void ProjectList::processLogInfo(const QString &path, int *duration, const QString &log)
2511 {
2512     int progress;
2513     if (*duration == 0) {
2514         if (log.contains("Duration:")) {
2515             QString data = log.section("Duration:", 1, 1).section(',', 0, 0).simplified();
2516             QStringList numbers = data.split(':');
2517             *duration = (int) (numbers.at(0).toInt() * 3600 + numbers.at(1).toInt() * 60 + numbers.at(2).toDouble());
2518         }
2519     }
2520     else if (log.contains("time=")) {
2521         QString time = log.section("time=", 1, 1).simplified().section(' ', 0, 0);
2522         if (time.contains(':')) {
2523             QStringList numbers = time.split(':');
2524             progress = numbers.at(0).toInt() * 3600 + numbers.at(1).toInt() * 60 + numbers.at(2).toDouble();
2525         }
2526         else progress = (int) time.toDouble();
2527         setProxyStatus(path, CREATINGPROXY, (int) (100.0 * progress / (*duration)));
2528     }
2529 }
2530
2531 void ProjectList::updateProxyConfig()
2532 {
2533     ProjectItem *item;
2534     QTreeWidgetItemIterator it(m_listView);
2535     QUndoCommand *command = new QUndoCommand();
2536     command->setText(i18n("Update proxy settings"));
2537     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
2538     while (*it) {
2539         if ((*it)->type() != PROJECTCLIPTYPE) {
2540             ++it;
2541             continue;
2542         }
2543         item = static_cast<ProjectItem *>(*it);
2544         if (item == NULL) {
2545             ++it;
2546             continue;
2547         }
2548         CLIPTYPE t = item->clipType();
2549         if ((t == VIDEO || t == AV || t == UNKNOWN) && item->referencedClip() != NULL) {
2550             if  (generateProxy() && useProxy() && !item->isProxyRunning()) {
2551                 DocClipBase *clip = item->referencedClip();
2552                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > m_doc->getDocumentProperty("proxyminsize").toInt()) {
2553                     if (clip->getProperty("proxy").isEmpty()) {
2554                         // We need to insert empty proxy in old properties so that undo will work
2555                         QMap <QString, QString> oldProps;// = clip->properties();
2556                         oldProps.insert("proxy", QString());
2557                         QMap <QString, QString> newProps;
2558                         newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + "." + m_doc->getDocumentProperty("proxyextension"));
2559                         new EditClipCommand(this, clip->getId(), oldProps, newProps, true, command);
2560                     }
2561                 }
2562             }
2563             else if (item->hasProxy()) {
2564                 // remove proxy
2565                 QMap <QString, QString> newProps;
2566                 newProps.insert("proxy", QString());
2567                 newProps.insert("replace", "1");
2568                 // insert required duration for proxy
2569                 newProps.insert("proxy_out", item->referencedClip()->producerProperty("out"));
2570                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), newProps, true, command);
2571             }
2572         }
2573         else if (t == IMAGE && item->referencedClip() != NULL) {
2574             if  (generateImageProxy() && useProxy()) {
2575                 DocClipBase *clip = item->referencedClip();
2576                 int maxImageSize = m_doc->getDocumentProperty("proxyimageminsize").toInt();
2577                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > maxImageSize || clip->getProperty("frame_size").section('x', 1, 1).toInt() > maxImageSize) {
2578                     if (clip->getProperty("proxy").isEmpty()) {
2579                         // We need to insert empty proxy in old properties so that undo will work
2580                         QMap <QString, QString> oldProps = clip->properties();
2581                         oldProps.insert("proxy", QString());
2582                         QMap <QString, QString> newProps;
2583                         newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + ".png");
2584                         new EditClipCommand(this, clip->getId(), oldProps, newProps, true, command);
2585                     }
2586                 }
2587             }
2588             else if (item->hasProxy()) {
2589                 // remove proxy
2590                 QMap <QString, QString> newProps;
2591                 newProps.insert("proxy", QString());
2592                 newProps.insert("replace", "1");
2593                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), newProps, true, command);
2594             }
2595         }
2596         ++it;
2597     }
2598     if (command->childCount() > 0) m_doc->commandStack()->push(command);
2599     else delete command;
2600 }
2601
2602 void ProjectList::slotProxyCurrentItem(bool doProxy)
2603 {
2604     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
2605     QTreeWidgetItem *listItem;
2606     QUndoCommand *command = new QUndoCommand();
2607     if (doProxy) command->setText(i18np("Add proxy clip", "Add proxy clips", list.count()));
2608     else command->setText(i18np("Remove proxy clip", "Remove proxy clips", list.count()));
2609     
2610     // Make sure the proxy folder exists
2611     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
2612     KStandardDirs::makeDir(proxydir);
2613                 
2614     QMap <QString, QString> newProps;
2615     QMap <QString, QString> oldProps;
2616     if (!doProxy) newProps.insert("proxy", "-");
2617     for (int i = 0; i < list.count(); i++) {
2618         listItem = list.at(i);
2619         if (listItem->type() == PROJECTFOLDERTYPE) {
2620             for (int j = 0; j < listItem->childCount(); j++) {
2621                 QTreeWidgetItem *sub = listItem->child(j);
2622                 if (!list.contains(sub)) list.append(sub);
2623             }
2624         }
2625         else if (listItem->type() == PROJECTSUBCLIPTYPE) {
2626             QTreeWidgetItem *sub = listItem->parent();
2627             if (!list.contains(sub)) list.append(sub);
2628         }
2629         else if (listItem->type() == PROJECTCLIPTYPE) {
2630             ProjectItem *item = static_cast <ProjectItem*>(listItem);
2631             CLIPTYPE t = item->clipType();
2632             if ((t == VIDEO || t == AV || t == UNKNOWN || t == IMAGE || t == PLAYLIST) && item->referencedClip()) {
2633                 if ((doProxy && item->hasProxy()) || (!doProxy && !item->hasProxy())) continue;
2634                 DocClipBase *clip = item->referencedClip();
2635                 if (!clip || !clip->isClean() || m_render->isProcessing(item->clipId())) {
2636                     kDebug()<<"//// TRYING TO PROXY: "<<item->clipId()<<", but it is busy";
2637                     continue;
2638                 }
2639                 
2640                 resetThumbsProducer(clip);
2641                 oldProps = clip->properties();
2642                 if (doProxy) {
2643                     newProps.clear();
2644                     QString path = proxydir + clip->getClipHash() + "." + (t == IMAGE ? "png" : m_doc->getDocumentProperty("proxyextension"));
2645                     // insert required duration for proxy
2646                     newProps.insert("proxy_out", clip->producerProperty("out"));
2647                     newProps.insert("proxy", path);
2648                     // We need to insert empty proxy so that undo will work
2649                     oldProps.insert("proxy", QString());
2650                 }
2651                 new EditClipCommand(this, item->clipId(), oldProps, newProps, true, command);
2652             }
2653         }
2654     }
2655     if (command->childCount() > 0) {
2656         m_doc->commandStack()->push(command);
2657     }
2658     else delete command;
2659 }
2660
2661
2662 void ProjectList::slotDeleteProxy(const QString proxyPath)
2663 {
2664     if (proxyPath.isEmpty()) return;
2665     QUndoCommand *proxyCommand = new QUndoCommand();
2666     proxyCommand->setText(i18n("Remove Proxy"));
2667     QTreeWidgetItemIterator it(m_listView);
2668     ProjectItem *item;
2669     while (*it) {
2670         if ((*it)->type() == PROJECTCLIPTYPE) {
2671             item = static_cast <ProjectItem *>(*it);
2672             if (item->referencedClip()->getProperty("proxy") == proxyPath) {
2673                 QMap <QString, QString> props;
2674                 props.insert("proxy", QString());
2675                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), props, true, proxyCommand);
2676             
2677             }
2678         }
2679         ++it;
2680     }
2681     if (proxyCommand->childCount() == 0)
2682         delete proxyCommand;
2683     else
2684         m_commandStack->push(proxyCommand);
2685     QFile::remove(proxyPath);
2686 }
2687
2688 void ProjectList::setProxyStatus(const QString proxyPath, PROXYSTATUS status, int progress)
2689 {
2690     if (proxyPath.isEmpty() || m_abortAllProxies) return;
2691     QTreeWidgetItemIterator it(m_listView);
2692     ProjectItem *item;
2693     while (*it && !m_abortAllProxies) {
2694         if ((*it)->type() == PROJECTCLIPTYPE) {
2695             item = static_cast <ProjectItem *>(*it);
2696             if (item->referencedClip()->getProperty("proxy") == proxyPath) {
2697                 setProxyStatus(item, status, progress);
2698             }
2699         }
2700         ++it;
2701     }
2702 }
2703
2704 void ProjectList::setProxyStatus(ProjectItem *item, PROXYSTATUS status, int progress)
2705 {
2706     if (item == NULL) return;
2707     monitorItemEditing(false);
2708     item->setProxyStatus(status, progress);
2709     monitorItemEditing(true);
2710 }
2711
2712 void ProjectList::monitorItemEditing(bool enable)
2713 {
2714     if (enable) connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
2715     else disconnect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
2716 }
2717
2718 QStringList ProjectList::expandedFolders() const
2719 {
2720     QStringList result;
2721     FolderProjectItem *item;
2722     QTreeWidgetItemIterator it(m_listView);
2723     while (*it) {
2724         if ((*it)->type() != PROJECTFOLDERTYPE) {
2725             ++it;
2726             continue;
2727         }
2728         if ((*it)->isExpanded()) {
2729             item = static_cast<FolderProjectItem *>(*it);
2730             result.append(item->clipId());
2731         }
2732         ++it;
2733     }
2734     return result;
2735 }
2736
2737 #include "projectlist.moc"