]> git.sesse.net Git - kdenlive/blob - src/projectlist.cpp
Fix enabling / disabling proxy for the project
[kdenlive] / src / projectlist.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20 #include "projectlist.h"
21 #include "projectitem.h"
22 #include "addfoldercommand.h"
23 #include "kdenlivesettings.h"
24 #include "slideshowclip.h"
25 #include "ui_colorclip_ui.h"
26 #include "titlewidget.h"
27 #include "definitions.h"
28 #include "clipmanager.h"
29 #include "docclipbase.h"
30 #include "kdenlivedoc.h"
31 #include "renderer.h"
32 #include "kthumb.h"
33 #include "projectlistview.h"
34 #include "timecodedisplay.h"
35 #include "profilesdialog.h"
36 #include "editclipcommand.h"
37 #include "editclipcutcommand.h"
38 #include "editfoldercommand.h"
39 #include "addclipcutcommand.h"
40
41 #include "ui_templateclip_ui.h"
42
43 #include <KDebug>
44 #include <KAction>
45 #include <KLocale>
46 #include <KFileDialog>
47 #include <KInputDialog>
48 #include <KMessageBox>
49 #include <KIO/NetAccess>
50 #include <KFileItem>
51 #include <KApplication>
52 #include <KStandardDirs>
53
54 #ifdef NEPOMUK
55 #include <nepomuk/global.h>
56 #include <nepomuk/resourcemanager.h>
57 //#include <nepomuk/tag.h>
58 #endif
59
60 #include <QMouseEvent>
61 #include <QStylePainter>
62 #include <QPixmap>
63 #include <QIcon>
64 #include <QMenu>
65 #include <QProcess>
66 #include <QHeaderView>
67 #include <QInputDialog>
68 #include <QtConcurrentRun>
69
70 ProjectList::ProjectList(QWidget *parent) :
71     QWidget(parent),
72     m_render(NULL),
73     m_fps(-1),
74     m_commandStack(NULL),
75     m_openAction(NULL),
76     m_reloadAction(NULL),
77     m_transcodeAction(NULL),
78     m_doc(NULL),
79     m_refreshed(false),
80     m_infoQueue(),
81     m_thumbnailQueue()
82 {
83     QVBoxLayout *layout = new QVBoxLayout;
84     layout->setContentsMargins(0, 0, 0, 0);
85     layout->setSpacing(0);
86     qRegisterMetaType<QDomElement>("QDomElement");
87     // setup toolbar
88     QFrame *frame = new QFrame;
89     frame->setFrameStyle(QFrame::NoFrame);
90     QHBoxLayout *box = new QHBoxLayout;
91     KTreeWidgetSearchLine *searchView = new KTreeWidgetSearchLine;
92
93     box->addWidget(searchView);
94     //int s = style()->pixelMetric(QStyle::PM_SmallIconSize);
95     //m_toolbar->setIconSize(QSize(s, s));
96
97     m_addButton = new QToolButton;
98     m_addButton->setPopupMode(QToolButton::MenuButtonPopup);
99     m_addButton->setAutoRaise(true);
100     box->addWidget(m_addButton);
101
102     m_editButton = new QToolButton;
103     m_editButton->setAutoRaise(true);
104     box->addWidget(m_editButton);
105
106     m_deleteButton = new QToolButton;
107     m_deleteButton->setAutoRaise(true);
108     box->addWidget(m_deleteButton);
109     frame->setLayout(box);
110     layout->addWidget(frame);
111
112     m_listView = new ProjectListView;
113     layout->addWidget(m_listView);
114     setLayout(layout);
115     searchView->setTreeWidget(m_listView);
116
117     m_proxyAction = new QAction(i18n("Proxy clip"), this);
118     m_proxyAction->setCheckable(true);
119     m_proxyAction->setChecked(false);
120     connect(m_proxyAction, SIGNAL(toggled(bool)), this, SLOT(slotProxyCurrentItem(bool)));
121     connect(this, SIGNAL(processNextThumbnail()), this, SLOT(slotProcessNextThumbnail()));
122     connect(m_listView, SIGNAL(projectModified()), this, SIGNAL(projectModified()));
123     connect(m_listView, SIGNAL(itemSelectionChanged()), this, SLOT(slotClipSelected()));
124     connect(m_listView, SIGNAL(focusMonitor()), this, SLOT(slotClipSelected()));
125     connect(m_listView, SIGNAL(pauseMonitor()), this, SLOT(slotPauseMonitor()));
126     connect(m_listView, SIGNAL(requestMenu(const QPoint &, QTreeWidgetItem *)), this, SLOT(slotContextMenu(const QPoint &, QTreeWidgetItem *)));
127     connect(m_listView, SIGNAL(addClip()), this, SLOT(slotAddClip()));
128     connect(m_listView, SIGNAL(addClip(const QList <QUrl>, const QString &, const QString &)), this, SLOT(slotAddClip(const QList <QUrl>, const QString &, const QString &)));
129     connect(m_listView, SIGNAL(addClipCut(const QString &, int, int)), this, SLOT(slotAddClipCut(const QString &, int, int)));
130     connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));
131     connect(m_listView, SIGNAL(showProperties(DocClipBase *)), this, SIGNAL(showClipProperties(DocClipBase *)));
132
133     m_listViewDelegate = new ItemDelegate(m_listView);
134     m_listView->setItemDelegate(m_listViewDelegate);
135 #ifdef NEPOMUK
136     if (KdenliveSettings::activate_nepomuk()) {
137         Nepomuk::ResourceManager::instance()->init();
138         if (!Nepomuk::ResourceManager::instance()->initialized()) {
139             kDebug() << "Cannot communicate with Nepomuk, DISABLING it";
140             KdenliveSettings::setActivate_nepomuk(false);
141         }
142     }
143 #endif
144 }
145
146 ProjectList::~ProjectList()
147 {
148     delete m_menu;
149     m_listView->blockSignals(true);
150     m_listView->clear();
151     delete m_listViewDelegate;
152 }
153
154 void ProjectList::focusTree() const
155 {
156     m_listView->setFocus();
157 }
158
159 void ProjectList::setupMenu(QMenu *addMenu, QAction *defaultAction)
160 {
161     QList <QAction *> actions = addMenu->actions();
162     for (int i = 0; i < actions.count(); i++) {
163         if (actions.at(i)->data().toString() == "clip_properties") {
164             m_editButton->setDefaultAction(actions.at(i));
165             actions.removeAt(i);
166             i--;
167         } else if (actions.at(i)->data().toString() == "delete_clip") {
168             m_deleteButton->setDefaultAction(actions.at(i));
169             actions.removeAt(i);
170             i--;
171         } else if (actions.at(i)->data().toString() == "edit_clip") {
172             m_openAction = actions.at(i);
173             actions.removeAt(i);
174             i--;
175         } else if (actions.at(i)->data().toString() == "reload_clip") {
176             m_reloadAction = actions.at(i);
177             actions.removeAt(i);
178             i--;
179         }
180     }
181
182     QMenu *m = new QMenu();
183     m->addActions(actions);
184     m_addButton->setMenu(m);
185     m_addButton->setDefaultAction(defaultAction);
186     m_menu = new QMenu();
187     m_menu->addActions(addMenu->actions());
188 }
189
190 void ProjectList::setupGeneratorMenu(QMenu *addMenu, QMenu *transcodeMenu, QMenu *inTimelineMenu)
191 {
192     if (!addMenu)
193         return;
194     QMenu *menu = m_addButton->menu();
195     menu->addMenu(addMenu);
196     m_addButton->setMenu(menu);
197
198     m_menu->addMenu(addMenu);
199     if (addMenu->isEmpty())
200         addMenu->setEnabled(false);
201     m_menu->addMenu(transcodeMenu);
202     if (transcodeMenu->isEmpty())
203         transcodeMenu->setEnabled(false);
204     m_transcodeAction = transcodeMenu;
205     m_menu->addAction(m_reloadAction);
206     m_menu->addAction(m_proxyAction);
207     m_menu->addMenu(inTimelineMenu);
208     inTimelineMenu->setEnabled(false);
209     m_menu->addAction(m_editButton->defaultAction());
210     m_menu->addAction(m_openAction);
211     m_menu->addAction(m_deleteButton->defaultAction());
212     m_menu->insertSeparator(m_deleteButton->defaultAction());
213 }
214
215
216 QByteArray ProjectList::headerInfo() const
217 {
218     return m_listView->header()->saveState();
219 }
220
221 void ProjectList::setHeaderInfo(const QByteArray &state)
222 {
223     m_listView->header()->restoreState(state);
224 }
225
226 void ProjectList::updateProjectFormat(Timecode t)
227 {
228     m_timecode = t;
229 }
230
231 void ProjectList::slotEditClip()
232 {
233     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
234     if (list.isEmpty()) return;
235     if (list.count() > 1 || list.at(0)->type() == PROJECTFOLDERTYPE) {
236         editClipSelection(list);
237         return;
238     }
239     ProjectItem *item;
240     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE)
241         return;
242     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE)
243         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
244     else
245         item = static_cast <ProjectItem*>(m_listView->currentItem());
246     if (item && (item->flags() & Qt::ItemIsDragEnabled)) {
247         emit clipSelected(item->referencedClip());
248         emit showClipProperties(item->referencedClip());
249     }
250 }
251
252 void ProjectList::editClipSelection(QList<QTreeWidgetItem *> list)
253 {
254     // Gather all common properties
255     QMap <QString, QString> commonproperties;
256     QList <DocClipBase *> clipList;
257     commonproperties.insert("force_aspect_num", "-");
258     commonproperties.insert("force_aspect_den", "-");
259     commonproperties.insert("force_fps", "-");
260     commonproperties.insert("force_progressive", "-");
261     commonproperties.insert("force_tff", "-");
262     commonproperties.insert("threads", "-");
263     commonproperties.insert("video_index", "-");
264     commonproperties.insert("audio_index", "-");
265     commonproperties.insert("force_colorspace", "-");
266     commonproperties.insert("full_luma", "-");
267     QString transparency = "-";
268
269     bool allowDurationChange = true;
270     int commonDuration = -1;
271     bool hasImages = false;;
272     ProjectItem *item;
273     for (int i = 0; i < list.count(); i++) {
274         item = NULL;
275         if (list.at(i)->type() == PROJECTFOLDERTYPE) {
276             // Add folder items to the list
277             int ct = list.at(i)->childCount();
278             for (int j = 0; j < ct; j++) {
279                 list.append(list.at(i)->child(j));
280             }
281             continue;
282         }
283         else if (list.at(i)->type() == PROJECTSUBCLIPTYPE)
284             item = static_cast <ProjectItem*>(list.at(i)->parent());
285         else
286             item = static_cast <ProjectItem*>(list.at(i));
287         if (!(item->flags() & Qt::ItemIsDragEnabled))
288             continue;
289         if (item) {
290             // check properties
291             DocClipBase *clip = item->referencedClip();
292             if (clipList.contains(clip)) continue;
293             if (clip->clipType() == IMAGE) {
294                 hasImages = true;
295                 if (clip->getProperty("transparency").isEmpty() || clip->getProperty("transparency").toInt() == 0) {
296                     if (transparency == "-") {
297                         // first non transparent image
298                         transparency = "0";
299                     }
300                     else if (transparency == "1") {
301                         // we have transparent and non transparent clips
302                         transparency = "-1";
303                     }
304                 }
305                 else {
306                     if (transparency == "-") {
307                         // first transparent image
308                         transparency = "1";
309                     }
310                     else if (transparency == "0") {
311                         // we have transparent and non transparent clips
312                         transparency = "-1";
313                     }
314                 }
315             }
316             if (clip->clipType() != COLOR && clip->clipType() != IMAGE && clip->clipType() != TEXT)
317                 allowDurationChange = false;
318             if (allowDurationChange && commonDuration != 0) {
319                 if (commonDuration == -1)
320                     commonDuration = clip->duration().frames(m_fps);
321                 else if (commonDuration != clip->duration().frames(m_fps))
322                     commonDuration = 0;
323             }
324             clipList.append(clip);
325             QMap <QString, QString> clipprops = clip->properties();
326             QMapIterator<QString, QString> p(commonproperties);
327             while (p.hasNext()) {
328                 p.next();
329                 if (p.value().isEmpty()) continue;
330                 if (clipprops.contains(p.key())) {
331                     if (p.value() == "-")
332                         commonproperties.insert(p.key(), clipprops.value(p.key()));
333                     else if (p.value() != clipprops.value(p.key()))
334                         commonproperties.insert(p.key(), QString());
335                 } else {
336                     commonproperties.insert(p.key(), QString());
337                 }
338             }
339         }
340     }
341     if (allowDurationChange)
342         commonproperties.insert("out", QString::number(commonDuration));
343     if (hasImages)
344         commonproperties.insert("transparency", transparency);
345     /*QMapIterator<QString, QString> p(commonproperties);
346     while (p.hasNext()) {
347         p.next();
348         kDebug() << "Result: " << p.key() << " = " << p.value();
349     }*/
350     emit showClipProperties(clipList, commonproperties);
351 }
352
353 void ProjectList::slotOpenClip()
354 {
355     ProjectItem *item;
356     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE)
357         return;
358     if (m_listView->currentItem()->type() == QTreeWidgetItem::UserType + 1)
359         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
360     else
361         item = static_cast <ProjectItem*>(m_listView->currentItem());
362     if (item) {
363         if (item->clipType() == IMAGE) {
364             if (KdenliveSettings::defaultimageapp().isEmpty())
365                 KMessageBox::sorry(kapp->activeWindow(), i18n("Please set a default application to open images in the Settings dialog"));
366             else
367                 QProcess::startDetached(KdenliveSettings::defaultimageapp(), QStringList() << item->clipUrl().path());
368         }
369         if (item->clipType() == AUDIO) {
370             if (KdenliveSettings::defaultaudioapp().isEmpty())
371                 KMessageBox::sorry(kapp->activeWindow(), i18n("Please set a default application to open audio files in the Settings dialog"));
372             else
373                 QProcess::startDetached(KdenliveSettings::defaultaudioapp(), QStringList() << item->clipUrl().path());
374         }
375     }
376 }
377
378 void ProjectList::cleanup()
379 {
380     m_listView->clearSelection();
381     QTreeWidgetItemIterator it(m_listView);
382     ProjectItem *item;
383     while (*it) {
384         if ((*it)->type() != PROJECTCLIPTYPE) {
385             it++;
386             continue;
387         }
388         item = static_cast <ProjectItem *>(*it);
389         if (item->numReferences() == 0)
390             item->setSelected(true);
391         it++;
392     }
393     slotRemoveClip();
394 }
395
396 void ProjectList::trashUnusedClips()
397 {
398     QTreeWidgetItemIterator it(m_listView);
399     ProjectItem *item;
400     QStringList ids;
401     QStringList urls;
402     while (*it) {
403         if ((*it)->type() != PROJECTCLIPTYPE) {
404             it++;
405             continue;
406         }
407         item = static_cast <ProjectItem *>(*it);
408         if (item->numReferences() == 0) {
409             ids << item->clipId();
410             KUrl url = item->clipUrl();
411             if (!url.isEmpty() && !urls.contains(url.path()))
412                 urls << url.path();
413         }
414         it++;
415     }
416
417     // Check that we don't use the URL in another clip
418     QTreeWidgetItemIterator it2(m_listView);
419     while (*it2) {
420         if ((*it2)->type() != PROJECTCLIPTYPE) {
421             it2++;
422             continue;
423         }
424         item = static_cast <ProjectItem *>(*it2);
425         if (item->numReferences() > 0) {
426             KUrl url = item->clipUrl();
427             if (!url.isEmpty() && urls.contains(url.path())) urls.removeAll(url.path());
428         }
429         it2++;
430     }
431
432     emit deleteProjectClips(ids, QMap <QString, QString>());
433     for (int i = 0; i < urls.count(); i++)
434         KIO::NetAccess::del(KUrl(urls.at(i)), this);
435 }
436
437 void ProjectList::slotReloadClip(const QString &id)
438 {
439     QList<QTreeWidgetItem *> selected;
440     if (id.isEmpty())
441         selected = m_listView->selectedItems();
442     else {
443         ProjectItem *itemToReLoad = getItemById(id);
444         if (itemToReLoad) selected.append(itemToReLoad);
445     }
446     ProjectItem *item;
447     for (int i = 0; i < selected.count(); i++) {
448         if (selected.at(i)->type() != PROJECTCLIPTYPE) {
449             if (selected.at(i)->type() == PROJECTFOLDERTYPE) {
450                 for (int j = 0; j < selected.at(i)->childCount(); j++)
451                     selected.append(selected.at(i)->child(j));
452             }
453             continue;
454         }
455         item = static_cast <ProjectItem *>(selected.at(i));
456         if (item) {
457             CLIPTYPE t = item->clipType();
458             if (t == TEXT) {
459                 if (!item->referencedClip()->getProperty("xmltemplate").isEmpty())
460                     regenerateTemplate(item);
461             } else if (t != COLOR && t != SLIDESHOW && item->referencedClip() &&  item->referencedClip()->checkHash() == false) {
462                 item->referencedClip()->setPlaceHolder(true);
463                 item->setProperty("file_hash", QString());
464             } else if (t == IMAGE) {
465                 item->referencedClip()->producer()->set("force_reload", 1);
466             }
467
468             QDomElement e = item->toXml();
469             // Make sure we get the correct producer length if it was adjusted in timeline
470             if (t == COLOR || t == IMAGE || t == SLIDESHOW || t == TEXT) {
471                 int length = QString(item->referencedClip()->producerProperty("length")).toInt();
472                 if (length > 0 && !e.hasAttribute("length")) {
473                     e.setAttribute("length", length);
474                 }
475             }            
476             emit getFileProperties(e, item->clipId(), m_listView->iconSize().height(), true, false);
477         }
478     }
479 }
480
481 void ProjectList::slotModifiedClip(const QString &id)
482 {
483     ProjectItem *item = getItemById(id);
484     if (item) {
485         QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
486         if (!pixmap.isNull()) {
487             QPainter p(&pixmap);
488             p.fillRect(0, 0, pixmap.width(), pixmap.height(), QColor(255, 255, 255, 200));
489             p.drawPixmap(0, 0, KIcon("view-refresh").pixmap(m_listView->iconSize()));
490             p.end();
491         } else {
492             pixmap = KIcon("view-refresh").pixmap(m_listView->iconSize());
493         }
494         item->setData(0, Qt::DecorationRole, pixmap);
495     }
496 }
497
498 void ProjectList::slotMissingClip(const QString &id)
499 {
500     ProjectItem *item = getItemById(id);
501     if (item) {
502         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
503         if (item->referencedClip()) {
504             item->referencedClip()->setPlaceHolder(true);
505             if (m_render == NULL) kDebug() << "*********  ERROR, NULL RENDR";
506             item->referencedClip()->setProducer(m_render->invalidProducer(id), true);
507             item->slotSetToolTip();
508             emit clipNeedsReload(id, true);
509         }
510     }
511     update();
512     emit displayMessage(i18n("Check missing clips"), -2);
513     emit updateRenderStatus();
514 }
515
516 void ProjectList::slotAvailableClip(const QString &id)
517 {
518     ProjectItem *item = getItemById(id);
519     if (item == NULL)
520         return;
521     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
522     if (item->referencedClip()) { // && item->referencedClip()->checkHash() == false) {
523         item->setProperty("file_hash", QString());
524         slotReloadClip(id);
525     }
526     /*else {
527     item->referencedClip()->setValid();
528     item->slotSetToolTip();
529     }
530     update();*/
531     emit updateRenderStatus();
532 }
533
534 bool ProjectList::hasMissingClips()
535 {
536     bool missing = false;
537     QTreeWidgetItemIterator it(m_listView);
538     while (*it) {
539         if ((*it)->type() == PROJECTCLIPTYPE && !((*it)->flags() & Qt::ItemIsDragEnabled)) {
540             missing = true;
541             break;
542         }
543         it++;
544     }
545     return missing;
546 }
547
548 void ProjectList::setRenderer(Render *projectRender)
549 {
550     m_render = projectRender;
551     m_listView->setIconSize(QSize((ProjectItem::itemDefaultHeight() - 2) * m_render->dar(), ProjectItem::itemDefaultHeight() - 2));
552 }
553
554 void ProjectList::slotClipSelected()
555 {
556     if (!m_listView->isEnabled()) return;
557     if (m_listView->currentItem()) {
558         if (m_listView->currentItem()->type() == PROJECTFOLDERTYPE) {
559             emit clipSelected(NULL);
560             m_editButton->defaultAction()->setEnabled(m_listView->currentItem()->childCount() > 0);
561             m_deleteButton->defaultAction()->setEnabled(true);
562             m_openAction->setEnabled(false);
563             m_reloadAction->setEnabled(false);
564             m_transcodeAction->setEnabled(false);
565             m_proxyAction->setEnabled(false);
566         } else {
567             ProjectItem *clip;
568             if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
569                 // this is a sub item, use base clip
570                 m_deleteButton->defaultAction()->setEnabled(true);
571                 clip = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
572                 if (clip == NULL) kDebug() << "-----------ERROR";
573                 SubProjectItem *sub = static_cast <SubProjectItem*>(m_listView->currentItem());
574                 emit clipSelected(clip->referencedClip(), sub->zone());
575                 m_transcodeAction->setEnabled(false);
576                 return;
577             }
578             clip = static_cast <ProjectItem*>(m_listView->currentItem());
579             if (clip && clip->referencedClip())
580                 emit clipSelected(clip->referencedClip());
581             m_editButton->defaultAction()->setEnabled(true);
582             m_deleteButton->defaultAction()->setEnabled(true);
583             m_reloadAction->setEnabled(true);
584             m_transcodeAction->setEnabled(true);
585             if (clip && clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
586                 m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
587                 m_openAction->setEnabled(true);
588             } else if (clip && clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
589                 m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
590                 m_openAction->setEnabled(true);
591             } else {
592                 m_openAction->setEnabled(false);
593             }
594             // Display relevant transcoding actions only
595             adjustTranscodeActions(clip);
596             // Display uses in timeline
597             emit findInTimeline(clip->clipId());
598         }
599     } else {
600         emit clipSelected(NULL);
601         m_editButton->defaultAction()->setEnabled(false);
602         m_deleteButton->defaultAction()->setEnabled(false);
603         m_openAction->setEnabled(false);
604         m_reloadAction->setEnabled(false);
605         m_transcodeAction->setEnabled(false);
606     }
607 }
608
609 void ProjectList::adjustProxyActions(ProjectItem *clip) const
610 {
611     if (clip == NULL || clip->type() != PROJECTCLIPTYPE || clip->clipType() == COLOR || clip->clipType() == TEXT || clip->clipType() == PLAYLIST || clip->clipType() == SLIDESHOW || clip->clipType() == AUDIO) {
612         m_proxyAction->setEnabled(false);
613         return;
614     }
615     m_proxyAction->setEnabled(useProxy());
616     m_proxyAction->blockSignals(true);
617     m_proxyAction->setChecked(clip->hasProxy());
618     m_proxyAction->blockSignals(false);
619 }
620
621 void ProjectList::adjustTranscodeActions(ProjectItem *clip) const
622 {
623     if (clip == NULL || clip->type() != PROJECTCLIPTYPE || clip->clipType() == COLOR || clip->clipType() == TEXT || clip->clipType() == PLAYLIST || clip->clipType() == SLIDESHOW) {
624         m_transcodeAction->setEnabled(false);
625         return;
626     }
627     m_transcodeAction->setEnabled(true);
628     QList<QAction *> transcodeActions = m_transcodeAction->actions();
629     QStringList data;
630     QString condition;
631     for (int i = 0; i < transcodeActions.count(); i++) {
632         data = transcodeActions.at(i)->data().toStringList();
633         if (data.count() > 2) {
634             condition = data.at(2);
635             if (condition.startsWith("vcodec"))
636                 transcodeActions.at(i)->setEnabled(clip->referencedClip()->hasVideoCodec(condition.section('=', 1, 1)));
637             else if (condition.startsWith("acodec"))
638                 transcodeActions.at(i)->setEnabled(clip->referencedClip()->hasVideoCodec(condition.section('=', 1, 1)));
639         }
640     }
641
642 }
643
644 void ProjectList::slotPauseMonitor()
645 {
646     if (m_render)
647         m_render->pause();
648 }
649
650 void ProjectList::slotUpdateClipProperties(const QString &id, QMap <QString, QString> properties)
651 {
652     ProjectItem *item = getItemById(id);
653     if (item) {
654         slotUpdateClipProperties(item, properties);
655         if (properties.contains("out") || properties.contains("force_fps") || properties.contains("resource")) {
656             slotReloadClip(id);
657         } else if (properties.contains("colour") ||
658                    properties.contains("xmldata") ||
659                    properties.contains("force_aspect_num") ||
660                    properties.contains("force_aspect_den") ||
661                    properties.contains("templatetext")) {
662             slotRefreshClipThumbnail(item);
663             emit refreshClip(id, true);
664         } else if (properties.contains("full_luma") || properties.contains("force_colorspace") || properties.contains("loop")) {
665             emit refreshClip(id, false);
666         }
667     }
668 }
669
670 void ProjectList::slotUpdateClipProperties(ProjectItem *clip, QMap <QString, QString> properties)
671 {
672     if (!clip)
673         return;
674     clip->setProperties(properties);
675     if (properties.contains("name")) {
676         monitorItemEditing(false);
677         clip->setText(0, properties.value("name"));
678         monitorItemEditing(true);
679         emit clipNameChanged(clip->clipId(), properties.value("name"));
680     }
681     if (properties.contains("description")) {
682         CLIPTYPE type = clip->clipType();
683         monitorItemEditing(false);
684         clip->setText(1, properties.value("description"));
685         monitorItemEditing(true);
686 #ifdef NEPOMUK
687         if (KdenliveSettings::activate_nepomuk() && (type == AUDIO || type == VIDEO || type == AV || type == IMAGE || type == PLAYLIST)) {
688             // Use Nepomuk system to store clip description
689             Nepomuk::Resource f(clip->clipUrl().path());
690             f.setDescription(properties.value("description"));
691         }
692 #endif
693         emit projectModified();
694     }
695 }
696
697 void ProjectList::slotItemEdited(QTreeWidgetItem *item, int column)
698 {
699     if (item->type() == PROJECTSUBCLIPTYPE) {
700         // this is a sub-item
701         if (column == 1) {
702             // user edited description
703             SubProjectItem *sub = static_cast <SubProjectItem*>(item);
704             ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
705             EditClipCutCommand *command = new EditClipCutCommand(this, item->clipId(), sub->zone(), sub->zone(), sub->description(), sub->text(1), true);
706             m_commandStack->push(command);
707             //slotUpdateCutClipProperties(sub->clipId(), sub->zone(), sub->text(1), sub->text(1));
708         }
709         return;
710     }
711     if (item->type() == PROJECTFOLDERTYPE) {
712         if (column == 0) {
713             FolderProjectItem *folder = static_cast <FolderProjectItem*>(item);
714             editFolder(item->text(0), folder->groupName(), folder->clipId());
715             folder->setGroupName(item->text(0));
716             m_doc->clipManager()->addFolder(folder->clipId(), item->text(0));
717             const int children = item->childCount();
718             for (int i = 0; i < children; i++) {
719                 ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
720                 child->setProperty("groupname", item->text(0));
721             }
722         }
723         return;
724     }
725
726     ProjectItem *clip = static_cast <ProjectItem*>(item);
727     if (column == 1) {
728         if (clip->referencedClip()) {
729             QMap <QString, QString> oldprops;
730             QMap <QString, QString> newprops;
731             oldprops["description"] = clip->referencedClip()->getProperty("description");
732             newprops["description"] = item->text(1);
733
734             if (clip->clipType() == TEXT) {
735                 // This is a text template clip, update the image
736                 /*oldprops.insert("xmldata", clip->referencedClip()->getProperty("xmldata"));
737                 newprops.insert("xmldata", generateTemplateXml(clip->referencedClip()->getProperty("xmltemplate"), item->text(2)).toString());*/
738                 oldprops.insert("templatetext", clip->referencedClip()->getProperty("templatetext"));
739                 newprops.insert("templatetext", item->text(1));
740             }
741             slotUpdateClipProperties(clip->clipId(), newprops);
742             EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false);
743             m_commandStack->push(command);
744         }
745     } else if (column == 0) {
746         if (clip->referencedClip()) {
747             QMap <QString, QString> oldprops;
748             QMap <QString, QString> newprops;
749             oldprops["name"] = clip->referencedClip()->getProperty("name");
750             if (oldprops.value("name") != item->text(0)) {
751                 newprops["name"] = item->text(0);
752                 slotUpdateClipProperties(clip, newprops);
753                 emit projectModified();
754                 EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false);
755                 m_commandStack->push(command);
756             }
757         }
758     }
759 }
760
761 void ProjectList::slotContextMenu(const QPoint &pos, QTreeWidgetItem *item)
762 {
763     bool enable = item ? true : false;
764     m_editButton->defaultAction()->setEnabled(enable);
765     m_deleteButton->defaultAction()->setEnabled(enable);
766     m_reloadAction->setEnabled(enable);
767     m_transcodeAction->setEnabled(enable);
768     if (enable) {
769         ProjectItem *clip = NULL;
770         if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
771             clip = static_cast <ProjectItem*>(item->parent());
772             m_transcodeAction->setEnabled(false);
773         } else if (m_listView->currentItem()->type() == PROJECTCLIPTYPE) {
774             clip = static_cast <ProjectItem*>(item);
775             // Display relevant transcoding actions only
776             adjustTranscodeActions(clip);
777             adjustProxyActions(clip);
778             // Display uses in timeline
779             emit findInTimeline(clip->clipId());
780         } else {
781             m_transcodeAction->setEnabled(false);
782         }
783         if (clip && clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
784             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
785             m_openAction->setEnabled(true);
786         } else if (clip && clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
787             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
788             m_openAction->setEnabled(true);
789         } else {
790             m_openAction->setEnabled(false);
791         }
792
793     } else {
794         m_openAction->setEnabled(false);
795     }
796     m_menu->popup(pos);
797 }
798
799 void ProjectList::slotRemoveClip()
800 {
801     if (!m_listView->currentItem())
802         return;
803     QStringList ids;
804     QMap <QString, QString> folderids;
805     QList<QTreeWidgetItem *> selected = m_listView->selectedItems();
806
807     QUndoCommand *delCommand = new QUndoCommand();
808     delCommand->setText(i18n("Delete Clip Zone"));
809     for (int i = 0; i < selected.count(); i++) {
810         if (selected.at(i)->type() == PROJECTSUBCLIPTYPE) {
811             // subitem
812             SubProjectItem *sub = static_cast <SubProjectItem *>(selected.at(i));
813             ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
814             new AddClipCutCommand(this, item->clipId(), sub->zone().x(), sub->zone().y(), sub->description(), false, true, delCommand);
815         } else if (selected.at(i)->type() == PROJECTFOLDERTYPE) {
816             // folder
817             FolderProjectItem *folder = static_cast <FolderProjectItem *>(selected.at(i));
818             folderids[folder->groupName()] = folder->clipId();
819             int children = folder->childCount();
820
821             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)
822                 return;
823             for (int i = 0; i < children; ++i) {
824                 ProjectItem *child = static_cast <ProjectItem *>(folder->child(i));
825                 ids << child->clipId();
826             }
827         } else {
828             ProjectItem *item = static_cast <ProjectItem *>(selected.at(i));
829             ids << item->clipId();
830             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) {
831                 KMessageBox::enableMessage("DeleteAll");
832                 return;
833             }
834         }
835     }
836     KMessageBox::enableMessage("DeleteAll");
837     if (delCommand->childCount() == 0)
838         delete delCommand;
839     else
840         m_commandStack->push(delCommand);
841     emit deleteProjectClips(ids, folderids);
842 }
843
844 void ProjectList::updateButtons() const
845 {
846     if (m_listView->topLevelItemCount() == 0) {
847         m_deleteButton->defaultAction()->setEnabled(false);
848         m_editButton->defaultAction()->setEnabled(false);
849     } else {
850         m_deleteButton->defaultAction()->setEnabled(true);
851         if (!m_listView->currentItem())
852             m_listView->setCurrentItem(m_listView->topLevelItem(0));
853         QTreeWidgetItem *item = m_listView->currentItem();
854         if (item && item->type() == PROJECTCLIPTYPE) {
855             m_editButton->defaultAction()->setEnabled(true);
856             m_openAction->setEnabled(true);
857             m_reloadAction->setEnabled(true);
858             m_transcodeAction->setEnabled(true);
859             m_proxyAction->setEnabled(useProxy());
860             return;
861         }
862         else if (item && item->type() == PROJECTFOLDERTYPE && item->childCount() > 0) {
863             m_editButton->defaultAction()->setEnabled(true);
864         }
865         else m_editButton->defaultAction()->setEnabled(false);
866     }
867     m_openAction->setEnabled(false);
868     m_reloadAction->setEnabled(false);
869     m_transcodeAction->setEnabled(false);
870     m_proxyAction->setEnabled(false);
871 }
872
873 void ProjectList::selectItemById(const QString &clipId)
874 {
875     ProjectItem *item = getItemById(clipId);
876     if (item)
877         m_listView->setCurrentItem(item);
878 }
879
880
881 void ProjectList::slotDeleteClip(const QString &clipId)
882 {
883     ProjectItem *item = getItemById(clipId);
884     if (!item) {
885         kDebug() << "/// Cannot find clip to delete";
886         return;
887     }
888     m_listView->blockSignals(true);
889     QTreeWidgetItem *newSelectedItem = m_listView->itemAbove(item);
890     if (!newSelectedItem)
891         newSelectedItem = m_listView->itemBelow(item);
892     delete item;
893     m_doc->clipManager()->deleteClip(clipId);
894     m_listView->blockSignals(false);
895     if (newSelectedItem) {
896         m_listView->setCurrentItem(newSelectedItem);
897     } else {
898         updateButtons();
899         emit clipSelected(NULL);
900     }
901 }
902
903
904 void ProjectList::editFolder(const QString folderName, const QString oldfolderName, const QString &clipId)
905 {
906     EditFolderCommand *command = new EditFolderCommand(this, folderName, oldfolderName, clipId, false);
907     m_commandStack->push(command);
908     m_doc->setModified(true);
909 }
910
911 void ProjectList::slotAddFolder()
912 {
913     AddFolderCommand *command = new AddFolderCommand(this, i18n("Folder"), QString::number(m_doc->clipManager()->getFreeFolderId()), true);
914     m_commandStack->push(command);
915 }
916
917 void ProjectList::slotAddFolder(const QString foldername, const QString &clipId, bool remove, bool edit)
918 {
919     if (remove) {
920         FolderProjectItem *item = getFolderItemById(clipId);
921         if (item) {
922             m_doc->clipManager()->deleteFolder(clipId);
923             QTreeWidgetItem *newSelectedItem = m_listView->itemAbove(item);
924             if (!newSelectedItem)
925                 newSelectedItem = m_listView->itemBelow(item);
926             delete item;
927             if (newSelectedItem)
928                 m_listView->setCurrentItem(newSelectedItem);
929             else
930                 updateButtons();
931         }
932     } else {
933         if (edit) {
934             FolderProjectItem *item = getFolderItemById(clipId);
935             if (item) {
936                 m_listView->blockSignals(true);
937                 item->setGroupName(foldername);
938                 m_listView->blockSignals(false);
939                 m_doc->clipManager()->addFolder(clipId, foldername);
940                 const int children = item->childCount();
941                 for (int i = 0; i < children; i++) {
942                     ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
943                     child->setProperty("groupname", foldername);
944                 }
945             }
946         } else {
947             m_listView->blockSignals(true);
948             m_listView->setCurrentItem(new FolderProjectItem(m_listView, QStringList() << foldername, clipId));
949             m_doc->clipManager()->addFolder(clipId, foldername);
950             m_listView->blockSignals(false);
951             m_listView->editItem(m_listView->currentItem(), 0);
952         }
953         updateButtons();
954     }
955     m_doc->setModified(true);
956 }
957
958
959
960 void ProjectList::deleteProjectFolder(QMap <QString, QString> map)
961 {
962     QMapIterator<QString, QString> i(map);
963     QUndoCommand *delCommand = new QUndoCommand();
964     delCommand->setText(i18n("Delete Folder"));
965     while (i.hasNext()) {
966         i.next();
967         new AddFolderCommand(this, i.key(), i.value(), false, delCommand);
968     }
969     m_commandStack->push(delCommand);
970 }
971
972 void ProjectList::slotAddClip(DocClipBase *clip, bool getProperties)
973 {
974     m_listView->setEnabled(false);
975     const QString parent = clip->getProperty("groupid");
976     ProjectItem *item = NULL;
977     monitorItemEditing(false);
978     if (!parent.isEmpty()) {
979         FolderProjectItem *parentitem = getFolderItemById(parent);
980         if (!parentitem) {
981             QStringList text;
982             QString groupName = clip->getProperty("groupname");
983             //kDebug() << "Adding clip to new group: " << groupName;
984             if (groupName.isEmpty()) groupName = i18n("Folder");
985             text << groupName;
986             parentitem = new FolderProjectItem(m_listView, text, parent);
987         }
988
989         if (parentitem)
990             item = new ProjectItem(parentitem, clip);
991     }
992     if (item == NULL) {
993         item = new ProjectItem(m_listView, clip);
994     }
995     if (item->data(0, DurationRole).isNull()) item->setData(0, DurationRole, i18n("Loading"));
996     connect(clip, SIGNAL(createProxy(const QString)), this, SLOT(slotCreateProxy(const QString)));
997     connect(clip, SIGNAL(abortProxy(const QString)), this, SLOT(slotAbortProxy(const QString)));
998     if (getProperties) {
999         m_listView->processLayout();
1000         m_refreshed = false;
1001         QDomElement e = clip->toXML().cloneNode().toElement();
1002         e.removeAttribute("file_hash");
1003         m_infoQueue.insert(clip->getId(), e);
1004     }
1005     else if (item->hasProxy() && !item->isProxyRunning()) {
1006         slotCreateProxy(clip->getId());
1007     }
1008     clip->askForAudioThumbs();
1009     
1010     KUrl url = clip->fileURL();
1011     if (getProperties == false && !clip->getClipHash().isEmpty()) {
1012         QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + ".png";
1013         if (QFile::exists(cachedPixmap)) {
1014             QPixmap pix(cachedPixmap);
1015             if (pix.isNull())
1016                 KIO::NetAccess::del(KUrl(cachedPixmap), this);
1017             item->setData(0, Qt::DecorationRole, pix);
1018         }
1019     }
1020 #ifdef NEPOMUK
1021     if (!url.isEmpty() && KdenliveSettings::activate_nepomuk()) {
1022         // if file has Nepomuk comment, use it
1023         Nepomuk::Resource f(url.path());
1024         QString annotation = f.description();
1025         if (!annotation.isEmpty()) item->setText(1, annotation);
1026         item->setText(2, QString::number(f.rating()));
1027     }
1028 #endif
1029     // Add cut zones
1030     QList <CutZoneInfo> cuts = clip->cutZones();
1031     if (!cuts.isEmpty()) {
1032         for (int i = 0; i < cuts.count(); i++) {
1033             SubProjectItem *sub = new SubProjectItem(item, cuts.at(i).zone.x(), cuts.at(i).zone.y(), cuts.at(i).description);
1034             if (!clip->getClipHash().isEmpty()) {
1035                 QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + '#' + QString::number(cuts.at(i).zone.x()) + ".png";
1036                 if (QFile::exists(cachedPixmap)) {
1037                     QPixmap pix(cachedPixmap);
1038                     if (pix.isNull())
1039                         KIO::NetAccess::del(KUrl(cachedPixmap), this);
1040                     sub->setData(0, Qt::DecorationRole, pix);
1041                 }
1042             }
1043         }
1044     }
1045     monitorItemEditing(true);
1046     if (m_listView->isEnabled()) {
1047         updateButtons();
1048     }
1049     
1050     if (getProperties && m_processingClips.isEmpty())
1051         m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1052 }
1053
1054 void ProjectList::slotGotProxy(const QString &id)
1055 {
1056     ProjectItem *item = getItemById(id);
1057     if (item) {
1058         // Proxy clip successfully created
1059         QDomElement e = item->referencedClip()->toXML().cloneNode().toElement();  
1060         //e.removeAttribute("file_hash");
1061         e.setAttribute("replace", 1);
1062         m_infoQueue.insert(id, e);
1063         if (!m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1064     }
1065 }
1066
1067 void ProjectList::slotResetProjectList()
1068 {
1069     m_listView->clear();
1070     emit clipSelected(NULL);
1071     m_thumbnailQueue.clear();
1072     m_infoQueue.clear();
1073     m_refreshed = false;
1074 }
1075
1076 void ProjectList::requestClipInfo(const QDomElement xml, const QString id)
1077 {
1078     m_refreshed = false;
1079     m_infoQueue.insert(id, xml);
1080     //if (m_infoQueue.count() == 1 || ) QTimer::singleShot(300, this, SLOT(slotProcessNextClipInQueue()));
1081 }
1082
1083 void ProjectList::slotProcessNextClipInQueue()
1084 {
1085     if (m_infoQueue.isEmpty()) {
1086         emit processNextThumbnail();
1087         return;
1088     }
1089
1090     QMap<QString, QDomElement>::const_iterator j = m_infoQueue.constBegin();
1091     if (j != m_infoQueue.constEnd()) {
1092         QDomElement dom = j.value();
1093         const QString id = j.key();
1094         m_infoQueue.remove(id);
1095         m_processingClips.append(id);
1096         bool replace;
1097         if (dom.hasAttribute("replace")) {
1098             // Proxy action was enabled / disabled and we want to replace current producer
1099             dom.removeAttribute("replace");
1100             replace = true;
1101         }
1102         else replace = false;
1103         bool selectClip = !replace;
1104         if (m_infoQueue.count() > 1) selectClip = false;
1105         emit getFileProperties(dom, id, m_listView->iconSize().height(), replace, selectClip);
1106     }
1107 }
1108
1109 void ProjectList::slotUpdateClip(const QString &id)
1110 {
1111     ProjectItem *item = getItemById(id);
1112     monitorItemEditing(false);
1113     if (item) item->setData(0, UsageRole, QString::number(item->numReferences()));
1114     monitorItemEditing(true);
1115 }
1116
1117 void ProjectList::updateAllClips()
1118 {
1119     m_listView->setSortingEnabled(false);
1120     kDebug() << "// UPDATE ALL CLPY";
1121
1122     QTreeWidgetItemIterator it(m_listView);
1123     DocClipBase *clip;
1124     ProjectItem *item;
1125     monitorItemEditing(false);
1126     while (*it) {
1127         if ((*it)->type() == PROJECTSUBCLIPTYPE) {
1128             // subitem
1129             SubProjectItem *sub = static_cast <SubProjectItem *>(*it);
1130             if (sub->data(0, Qt::DecorationRole).isNull()) {
1131                 item = static_cast <ProjectItem *>((*it)->parent());
1132                 requestClipThumbnail(item->clipId() + '#' + QString::number(sub->zone().x()));
1133             }
1134             ++it;
1135             continue;
1136         } else if ((*it)->type() == PROJECTFOLDERTYPE) {
1137             // folder
1138             ++it;
1139             continue;
1140         } else {
1141             item = static_cast <ProjectItem *>(*it);
1142             clip = item->referencedClip();
1143             if (item->referencedClip()->producer() == NULL) {
1144                 if (clip->isPlaceHolder() == false)
1145                     requestClipInfo(clip->toXML(), clip->getId());
1146                 else if (!clip->isPlaceHolder())
1147                     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
1148             } else {
1149                 if (item->data(0, Qt::DecorationRole).isNull())
1150                     requestClipThumbnail(clip->getId());
1151                 if (item->data(0, DurationRole).toString().isEmpty())
1152                     item->changeDuration(item->referencedClip()->producer()->get_playtime());
1153             }
1154             item->setData(0, UsageRole, QString::number(item->numReferences()));
1155         }
1156         //qApp->processEvents();
1157         ++it;
1158     }
1159
1160     if (!m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1161     if (m_listView->isEnabled())
1162         monitorItemEditing(true);
1163     m_listView->setSortingEnabled(true);
1164     if (m_infoQueue.isEmpty())
1165         slotProcessNextThumbnail();
1166 }
1167
1168 // static
1169 QString ProjectList::getExtensions()
1170 {
1171     // Build list of mime types
1172     QStringList mimeTypes = QStringList() << "application/x-kdenlive" << "application/x-kdenlivetitle" << "video/mlt-playlist" << "text/plain"
1173                             << "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"
1174                             << "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"
1175                             << "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";
1176
1177     QString allExtensions;
1178     foreach(const QString & mimeType, mimeTypes) {
1179         KMimeType::Ptr mime(KMimeType::mimeType(mimeType));
1180         if (mime) {
1181             allExtensions.append(mime->patterns().join(" "));
1182             allExtensions.append(' ');
1183         }
1184     }
1185     return allExtensions.simplified();
1186 }
1187
1188 void ProjectList::slotAddClip(const QList <QUrl> givenList, const QString &groupName, const QString &groupId)
1189 {
1190     if (!m_commandStack)
1191         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1192
1193     KUrl::List list;
1194     if (givenList.isEmpty()) {
1195         QString allExtensions = getExtensions();
1196         const QString dialogFilter = allExtensions + ' ' + QLatin1Char('|') + i18n("All Supported Files") + "\n* " + QLatin1Char('|') + i18n("All Files");
1197         QCheckBox *b = new QCheckBox(i18n("Import image sequence"));
1198         b->setChecked(KdenliveSettings::autoimagesequence());
1199         QCheckBox *c = new QCheckBox(i18n("Transparent background for images"));
1200         c->setChecked(KdenliveSettings::autoimagetransparency());
1201         QFrame *f = new QFrame;
1202         f->setFrameShape(QFrame::NoFrame);
1203         QHBoxLayout *l = new QHBoxLayout;
1204         l->addWidget(b);
1205         l->addWidget(c);
1206         l->addStretch(5);
1207         f->setLayout(l);
1208         KFileDialog *d = new KFileDialog(KUrl("kfiledialog:///clipfolder"), dialogFilter, kapp->activeWindow(), f);
1209         d->setOperationMode(KFileDialog::Opening);
1210         d->setMode(KFile::Files);
1211         if (d->exec() == QDialog::Accepted) {
1212             KdenliveSettings::setAutoimagetransparency(c->isChecked());
1213         }
1214         list = d->selectedUrls();
1215         if (b->isChecked() && list.count() == 1) {
1216             // Check for image sequence
1217             KUrl url = list.at(0);
1218             QString fileName = url.fileName().section('.', 0, -2);
1219             if (fileName.at(fileName.size() - 1).isDigit()) {
1220                 KFileItem item(KFileItem::Unknown, KFileItem::Unknown, url);
1221                 if (item.mimetype().startsWith("image")) {
1222                     // import as sequence if we found more than one image in the sequence
1223                     QStringList list;
1224                     QString pattern = SlideshowClip::selectedPath(url.path(), false, QString(), &list);
1225                     int count = list.count();
1226                     if (count > 1) {
1227                         delete d;
1228                         QStringList groupInfo = getGroup();
1229
1230                         // get image sequence base name
1231                         while (fileName.at(fileName.size() - 1).isDigit()) {
1232                             fileName.chop(1);
1233                         }
1234
1235                         m_doc->slotCreateSlideshowClipFile(fileName, pattern, count, m_timecode.reformatSeparators(KdenliveSettings::sequence_duration()),
1236                                                            false, false, false,
1237                                                            m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))), QString(), 0,
1238                                                            QString(), groupInfo.at(0), groupInfo.at(1));
1239                         return;
1240                     }
1241                 }
1242             }
1243         }
1244         delete d;
1245     } else {
1246         for (int i = 0; i < givenList.count(); i++)
1247             list << givenList.at(i);
1248     }
1249
1250     foreach(const KUrl & file, list) {
1251         // Check there is no folder here
1252         KMimeType::Ptr type = KMimeType::findByUrl(file);
1253         if (type->is("inode/directory")) {
1254             // user dropped a folder
1255             list.removeAll(file);
1256         }
1257     }
1258
1259     if (list.isEmpty())
1260         return;
1261
1262     if (givenList.isEmpty()) {
1263         QStringList groupInfo = getGroup();
1264         m_doc->slotAddClipList(list, groupInfo.at(0), groupInfo.at(1));
1265     } else {
1266         m_doc->slotAddClipList(list, groupName, groupId);
1267     }
1268 }
1269
1270 void ProjectList::slotRemoveInvalidClip(const QString &id, bool replace)
1271 {
1272     ProjectItem *item = getItemById(id);
1273     m_processingClips.removeAll(id);
1274     if (!m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1275     if (item) {
1276         const QString path = item->referencedClip()->fileURL().path();
1277         if (item->referencedClip()->isPlaceHolder()) replace = false;
1278         if (!path.isEmpty()) {
1279             if (replace)
1280                 KMessageBox::sorry(kapp->activeWindow(), i18n("Clip <b>%1</b><br />is invalid, will be removed from project.", path));
1281             else if (KMessageBox::questionYesNo(kapp->activeWindow(), i18n("Clip <b>%1</b><br />is missing or invalid. Remove it from project?", path), i18n("Invalid clip")) == KMessageBox::Yes)
1282                 replace = true;
1283         }
1284         if (replace)
1285             emit deleteProjectClips(QStringList() << id, QMap <QString, QString>());
1286     }
1287 }
1288
1289 void ProjectList::slotRemoveInvalidProxy(const QString &id)
1290 {
1291     ProjectItem *item = getItemById(id);
1292     if (item) {
1293         item->setProxyStatus(PROXYCRASHED);
1294         QString path = item->referencedClip()->getProperty("proxy");
1295         KUrl proxyFolder(m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/");
1296
1297         //Security check: make sure the invalid proxy file is in the proxy folder
1298         if (proxyFolder.isParentOf(KUrl(path))) {
1299             QFile::remove(path);
1300         }
1301     }
1302     m_processingClips.removeAll(id);
1303     if (!m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1304 }
1305
1306 void ProjectList::slotAddColorClip()
1307 {
1308     if (!m_commandStack)
1309         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1310
1311     QDialog *dia = new QDialog(this);
1312     Ui::ColorClip_UI dia_ui;
1313     dia_ui.setupUi(dia);
1314     dia->setWindowTitle(i18n("Color Clip"));
1315     dia_ui.clip_name->setText(i18n("Color Clip"));
1316
1317     TimecodeDisplay *t = new TimecodeDisplay(m_timecode);
1318     t->setValue(KdenliveSettings::color_duration());
1319     t->setTimeCodeFormat(false);
1320     dia_ui.clip_durationBox->addWidget(t);
1321     dia_ui.clip_color->setColor(KdenliveSettings::colorclipcolor());
1322
1323     if (dia->exec() == QDialog::Accepted) {
1324         QString color = dia_ui.clip_color->color().name();
1325         KdenliveSettings::setColorclipcolor(color);
1326         color = color.replace(0, 1, "0x") + "ff";
1327         QStringList groupInfo = getGroup();
1328         m_doc->slotCreateColorClip(dia_ui.clip_name->text(), color, m_timecode.getTimecode(t->gentime()), groupInfo.at(0), groupInfo.at(1));
1329     }
1330     delete t;
1331     delete dia;
1332 }
1333
1334
1335 void ProjectList::slotAddSlideshowClip()
1336 {
1337     if (!m_commandStack)
1338         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1339
1340     SlideshowClip *dia = new SlideshowClip(m_timecode, this);
1341
1342     if (dia->exec() == QDialog::Accepted) {
1343         QStringList groupInfo = getGroup();
1344         m_doc->slotCreateSlideshowClipFile(dia->clipName(), dia->selectedPath(), dia->imageCount(), dia->clipDuration(),
1345                                            dia->loop(), dia->crop(), dia->fade(),
1346                                            dia->lumaDuration(), dia->lumaFile(), dia->softness(),
1347                                            dia->animation(), groupInfo.at(0), groupInfo.at(1));
1348     }
1349     delete dia;
1350 }
1351
1352 void ProjectList::slotAddTitleClip()
1353 {
1354     QStringList groupInfo = getGroup();
1355     m_doc->slotCreateTextClip(groupInfo.at(0), groupInfo.at(1));
1356 }
1357
1358 void ProjectList::slotAddTitleTemplateClip()
1359 {
1360     if (!m_commandStack)
1361         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1362
1363     QStringList groupInfo = getGroup();
1364
1365     // Get the list of existing templates
1366     QStringList filter;
1367     filter << "*.kdenlivetitle";
1368     const QString path = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
1369     QStringList templateFiles = QDir(path).entryList(filter, QDir::Files);
1370
1371     QDialog *dia = new QDialog(this);
1372     Ui::TemplateClip_UI dia_ui;
1373     dia_ui.setupUi(dia);
1374     for (int i = 0; i < templateFiles.size(); ++i)
1375         dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), path + templateFiles.at(i));
1376
1377     if (!templateFiles.isEmpty())
1378         dia_ui.buttonBox->button(QDialogButtonBox::Ok)->setFocus();
1379     dia_ui.template_list->fileDialog()->setFilter("application/x-kdenlivetitle");
1380     //warning: setting base directory doesn't work??
1381     KUrl startDir(path);
1382     dia_ui.template_list->fileDialog()->setUrl(startDir);
1383     dia_ui.text_box->setHidden(true);
1384     if (dia->exec() == QDialog::Accepted) {
1385         QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
1386         if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
1387         // Create a cloned template clip
1388         m_doc->slotCreateTextTemplateClip(groupInfo.at(0), groupInfo.at(1), KUrl(textTemplate));
1389     }
1390     delete dia;
1391 }
1392
1393 QStringList ProjectList::getGroup() const
1394 {
1395     QStringList result;
1396     QTreeWidgetItem *item = m_listView->currentItem();
1397     while (item && item->type() != PROJECTFOLDERTYPE)
1398         item = item->parent();
1399
1400     if (item) {
1401         FolderProjectItem *folder = static_cast <FolderProjectItem *>(item);
1402         result << folder->groupName() << folder->clipId();
1403     } else {
1404         result << QString() << QString();
1405     }
1406     return result;
1407 }
1408
1409 void ProjectList::setDocument(KdenliveDoc *doc)
1410 {
1411     m_listView->blockSignals(true);
1412     m_listView->clear();
1413     m_processingClips.clear();
1414     m_listView->setSortingEnabled(false);
1415     emit clipSelected(NULL);
1416     m_thumbnailQueue.clear();
1417     m_infoQueue.clear();
1418     m_refreshed = false;
1419     m_fps = doc->fps();
1420     m_timecode = doc->timecode();
1421     m_commandStack = doc->commandStack();
1422     m_doc = doc;
1423     m_proxyList.clear();
1424
1425     QMap <QString, QString> flist = doc->clipManager()->documentFolderList();
1426     QMapIterator<QString, QString> f(flist);
1427     while (f.hasNext()) {
1428         f.next();
1429         (void) new FolderProjectItem(m_listView, QStringList() << f.value(), f.key());
1430     }
1431
1432     QList <DocClipBase*> list = doc->clipManager()->documentClipList();
1433     for (int i = 0; i < list.count(); i++)
1434         slotAddClip(list.at(i), false);
1435
1436     m_listView->blockSignals(false);
1437     connect(m_doc->clipManager(), SIGNAL(reloadClip(const QString &)), this, SLOT(slotReloadClip(const QString &)));
1438     connect(m_doc->clipManager(), SIGNAL(modifiedClip(const QString &)), this, SLOT(slotModifiedClip(const QString &)));
1439     connect(m_doc->clipManager(), SIGNAL(missingClip(const QString &)), this, SLOT(slotMissingClip(const QString &)));
1440     connect(m_doc->clipManager(), SIGNAL(availableClip(const QString &)), this, SLOT(slotAvailableClip(const QString &)));
1441     connect(m_doc->clipManager(), SIGNAL(checkAllClips()), this, SLOT(updateAllClips()));
1442 }
1443
1444 QList <DocClipBase*> ProjectList::documentClipList() const
1445 {
1446     if (m_doc == NULL)
1447         return QList <DocClipBase*> ();
1448
1449     return m_doc->clipManager()->documentClipList();
1450 }
1451
1452 QDomElement ProjectList::producersList()
1453 {
1454     QDomDocument doc;
1455     QDomElement prods = doc.createElement("producerlist");
1456     doc.appendChild(prods);
1457     kDebug() << "////////////  PRO LIST BUILD PRDSLIST ";
1458     QTreeWidgetItemIterator it(m_listView);
1459     while (*it) {
1460         if ((*it)->type() != PROJECTCLIPTYPE) {
1461             // subitem
1462             ++it;
1463             continue;
1464         }
1465         prods.appendChild(doc.importNode(((ProjectItem *)(*it))->toXml(), true));
1466         ++it;
1467     }
1468     return prods;
1469 }
1470
1471 void ProjectList::slotCheckForEmptyQueue()
1472 {
1473     if (!m_refreshed && m_thumbnailQueue.isEmpty() && m_infoQueue.isEmpty()) {
1474         m_refreshed = true;
1475         emit loadingIsOver();
1476         emit displayMessage(QString(), -1);
1477         m_listView->blockSignals(false);
1478         m_listView->setEnabled(true);
1479         updateButtons();
1480     } else if (!m_refreshed) {
1481         QTimer::singleShot(300, this, SLOT(slotCheckForEmptyQueue()));
1482     }
1483 }
1484
1485 void ProjectList::reloadClipThumbnails()
1486 {
1487     m_thumbnailQueue.clear();
1488     QTreeWidgetItemIterator it(m_listView);
1489     while (*it) {
1490         if ((*it)->type() != PROJECTCLIPTYPE) {
1491             // subitem
1492             ++it;
1493             continue;
1494         }
1495         m_thumbnailQueue << ((ProjectItem *)(*it))->clipId();
1496         ++it;
1497     }
1498     QTimer::singleShot(300, this, SLOT(slotProcessNextThumbnail()));
1499 }
1500
1501 void ProjectList::requestClipThumbnail(const QString id)
1502 {
1503     if (!m_thumbnailQueue.contains(id)) m_thumbnailQueue.append(id);
1504 }
1505
1506 void ProjectList::slotProcessNextThumbnail()
1507 {
1508     if (m_thumbnailQueue.isEmpty() && m_infoQueue.isEmpty()) {
1509         slotCheckForEmptyQueue();
1510         return;
1511     }
1512     if (!m_infoQueue.isEmpty()) {
1513         //QTimer::singleShot(300, this, SLOT(slotProcessNextThumbnail()));
1514         return;
1515     }
1516     if (m_thumbnailQueue.count() > 1) {
1517         int max = m_doc->clipManager()->clipsCount();
1518         emit displayMessage(i18n("Loading thumbnails"), (int)(100 *(max - m_thumbnailQueue.count()) / max));
1519     }
1520     slotRefreshClipThumbnail(m_thumbnailQueue.takeFirst(), false);
1521 }
1522
1523 void ProjectList::slotRefreshClipThumbnail(const QString &clipId, bool update)
1524 {
1525     QTreeWidgetItem *item = getAnyItemById(clipId);
1526     if (item)
1527         slotRefreshClipThumbnail(item, update);
1528     else
1529         slotProcessNextThumbnail();
1530 }
1531
1532 void ProjectList::slotRefreshClipThumbnail(QTreeWidgetItem *it, bool update)
1533 {
1534     if (it == NULL) return;
1535     ProjectItem *item = NULL;
1536     bool isSubItem = false;
1537     int frame;
1538     if (it->type() == PROJECTFOLDERTYPE) return;
1539     if (it->type() == PROJECTSUBCLIPTYPE) {
1540         item = static_cast <ProjectItem *>(it->parent());
1541         frame = static_cast <SubProjectItem *>(it)->zone().x();
1542         isSubItem = true;
1543     } else {
1544         item = static_cast <ProjectItem *>(it);
1545         frame = item->referencedClip()->getClipThumbFrame();
1546     }
1547
1548     if (item) {
1549         DocClipBase *clip = item->referencedClip();
1550         if (!clip) {
1551             slotProcessNextThumbnail();
1552             return;
1553         }
1554         QPixmap pix;
1555         int height = m_listView->iconSize().height();
1556         int width = (int)(height  * m_render->dar());
1557         if (clip->clipType() == AUDIO)
1558             pix = KIcon("audio-x-generic").pixmap(QSize(width, height));
1559         else if (clip->clipType() == IMAGE)
1560             pix = QPixmap::fromImage(KThumb::getFrame(item->referencedClip()->producer(), 0, width, height));
1561         else
1562             pix = item->referencedClip()->thumbProducer()->extractImage(frame, width, height);
1563
1564         if (!pix.isNull()) {
1565             monitorItemEditing(false);
1566             it->setData(0, Qt::DecorationRole, pix);
1567             monitorItemEditing(true);
1568                 
1569             if (!isSubItem)
1570                 m_doc->cachePixmap(item->getClipHash(), pix);
1571             else
1572                 m_doc->cachePixmap(item->getClipHash() + '#' + QString::number(frame), pix);
1573         }
1574         if (update)
1575             emit projectModified();
1576
1577         slotProcessNextThumbnail();
1578     }
1579 }
1580
1581 void ProjectList::slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata, bool replace, bool selectClip)
1582 {
1583     QString toReload;
1584     ProjectItem *item = getItemById(clipId);
1585     m_processingClips.removeAll(clipId);
1586     if (m_infoQueue.isEmpty() && m_processingClips.isEmpty()) m_listView->setEnabled(true);
1587     if (item && producer) {
1588         //m_listView->blockSignals(true);
1589         monitorItemEditing(false);
1590         item->setProperties(properties, metadata);
1591         if (item->referencedClip()->isPlaceHolder() && producer->is_valid()) {
1592             item->referencedClip()->setValid();
1593             item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1594             toReload = clipId;
1595         }
1596         
1597         // Proxy stuff
1598         QString size = properties.value("frame_size");
1599         DocClipBase *clip = item->referencedClip();
1600         if (!useProxy() && item->referencedClip()->getProperty("proxy").isEmpty()) setProxyStatus(item, NOPROXY);
1601         if (useProxy() && generateProxy() && item->referencedClip()->getProperty("proxy") == "-") setProxyStatus(item, NOPROXY);
1602         else if (useProxy() && !item->isProxyRunning() && (item->clipType() == AV || item->clipType() == VIDEO) && generateProxy() && size.section('x', 0, 0).toInt() > proxyMinSize()) {
1603             if (clip->getProperty("proxy").isEmpty()) {
1604                 QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
1605                 clip->setProperty("proxy", proxydir + item->referencedClip()->getClipHash() + ".avi");
1606             }
1607         }
1608         
1609         clip->setProducer(producer, replace);
1610         clip->askForAudioThumbs();
1611         if (!replace && item->data(0, Qt::DecorationRole).isNull())
1612             requestClipThumbnail(clipId);
1613         if (!toReload.isEmpty())
1614             item->slotSetToolTip();
1615
1616         if (m_listView->isEnabled() && replace) {
1617             // update clip in clip monitor
1618             emit clipSelected(NULL);
1619             emit clipSelected(clip);
1620             //TODO: Make sure the line below has no side effect
1621             toReload = clipId;
1622         }
1623         /*else {
1624             // Check if duration changed.
1625             emit receivedClipDuration(clipId);
1626             delete producer;
1627         }*/
1628         if (m_listView->isEnabled())
1629             monitorItemEditing(true);
1630         /*if (item->icon(0).isNull()) {
1631             requestClipThumbnail(clipId);
1632         }*/
1633     } else kDebug() << "////////  COULD NOT FIND CLIP TO UPDATE PRPS...";
1634     if (selectClip && m_infoQueue.isEmpty()) {
1635     if (item && m_infoQueue.isEmpty() && m_thumbnailQueue.isEmpty()) {
1636         m_listView->setCurrentItem(item);
1637         bool updatedProfile = false;
1638         if (item->parent()) {
1639             if (item->parent()->type() == PROJECTFOLDERTYPE)
1640                 static_cast <FolderProjectItem *>(item->parent())->switchIcon();
1641         } else if (KdenliveSettings::checkfirstprojectclip() &&  m_listView->topLevelItemCount() == 1) {
1642             // this is the first clip loaded in project, check if we want to adjust project settings to the clip
1643             updatedProfile = adjustProjectProfileToItem(item);
1644         }
1645         if (updatedProfile == false) emit clipSelected(item->referencedClip());
1646     } else {
1647         int max = m_doc->clipManager()->clipsCount();
1648         emit displayMessage(i18n("Loading clips"), (int)(100 *(max - m_infoQueue.count()) / max));
1649     }
1650     }
1651     if (!toReload.isEmpty())
1652         emit clipNeedsReload(toReload, true);
1653
1654     if (!m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1655 }
1656
1657 bool ProjectList::adjustProjectProfileToItem(ProjectItem *item)
1658 {
1659     if (item == NULL) {
1660         if (m_listView->currentItem() && m_listView->currentItem()->type() != PROJECTFOLDERTYPE)
1661             item = static_cast <ProjectItem*>(m_listView->currentItem());
1662     }
1663     if (item == NULL || item->referencedClip() == NULL) {
1664         KMessageBox::information(kapp->activeWindow(), i18n("Cannot find profile from current clip"));
1665         return false;
1666     }
1667     bool profileUpdated = false;
1668     QString size = item->referencedClip()->getProperty("frame_size");
1669     int width = size.section('x', 0, 0).toInt();
1670     int height = size.section('x', -1).toInt();
1671     double fps = item->referencedClip()->getProperty("fps").toDouble();
1672     double par = item->referencedClip()->getProperty("aspect_ratio").toDouble();
1673     if (item->clipType() == IMAGE || item->clipType() == AV || item->clipType() == VIDEO) {
1674         if (ProfilesDialog::matchProfile(width, height, fps, par, item->clipType() == IMAGE, m_doc->mltProfile()) == false) {
1675             // get a list of compatible profiles
1676             QMap <QString, QString> suggestedProfiles = ProfilesDialog::getProfilesFromProperties(width, height, fps, par, item->clipType() == IMAGE);
1677             if (!suggestedProfiles.isEmpty()) {
1678                 KDialog *dialog = new KDialog(this);
1679                 dialog->setCaption(i18n("Change project profile"));
1680                 dialog->setButtons(KDialog::Ok | KDialog::Cancel);
1681
1682                 QWidget container;
1683                 QVBoxLayout *l = new QVBoxLayout;
1684                 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));
1685                 l->addWidget(label);
1686                 QListWidget *list = new QListWidget;
1687                 list->setAlternatingRowColors(true);
1688                 QMapIterator<QString, QString> i(suggestedProfiles);
1689                 while (i.hasNext()) {
1690                     i.next();
1691                     QListWidgetItem *item = new QListWidgetItem(i.value(), list);
1692                     item->setData(Qt::UserRole, i.key());
1693                     item->setToolTip(i.key());
1694                 }
1695                 list->setCurrentRow(0);
1696                 l->addWidget(list);
1697                 container.setLayout(l);
1698                 dialog->setButtonText(KDialog::Ok, i18n("Update profile"));
1699                 dialog->setMainWidget(&container);
1700                 if (dialog->exec() == QDialog::Accepted) {
1701                     //Change project profile
1702                     profileUpdated = true;
1703                     if (list->currentItem())
1704                         emit updateProfile(list->currentItem()->data(Qt::UserRole).toString());
1705                 }
1706                 delete list;
1707                 delete label;
1708             } else if (fps > 0) {
1709                 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));
1710             }
1711         }
1712     }
1713     return profileUpdated;
1714 }
1715
1716 bool ProjectList::useProxy() const
1717 {
1718     return m_doc->getDocumentProperty("enableproxy").toInt();
1719 }
1720
1721 bool ProjectList::generateProxy() const
1722 {
1723     return m_doc->getDocumentProperty("generateproxy").toInt();
1724 }
1725
1726 int ProjectList::proxyMinSize() const
1727 {
1728     return m_doc->getDocumentProperty("proxyminsize").toInt();
1729 }
1730
1731 QString ProjectList::proxyParams() const
1732 {
1733     return m_doc->getDocumentProperty("proxyparams").simplified();
1734 }
1735
1736 void ProjectList::slotReplyGetImage(const QString &clipId, const QPixmap &pix)
1737 {
1738     ProjectItem *item = getItemById(clipId);
1739     if (item && !pix.isNull()) {
1740         monitorItemEditing(false);
1741         item->setData(0, Qt::DecorationRole, pix);
1742         monitorItemEditing(true);
1743         m_doc->cachePixmap(item->getClipHash(), pix);
1744         if (m_listView->isEnabled())
1745             m_listView->blockSignals(false);
1746     }
1747 }
1748
1749 QTreeWidgetItem *ProjectList::getAnyItemById(const QString &id)
1750 {
1751     QTreeWidgetItemIterator it(m_listView);
1752     QString lookId = id;
1753     if (id.contains('#'))
1754         lookId = id.section('#', 0, 0);
1755
1756     ProjectItem *result = NULL;
1757     while (*it) {
1758         if ((*it)->type() != PROJECTCLIPTYPE) {
1759             // subitem
1760             ++it;
1761             continue;
1762         }
1763         ProjectItem *item = static_cast<ProjectItem *>(*it);
1764         if (item->clipId() == lookId) {
1765             result = item;
1766             break;
1767         }
1768         ++it;
1769     }
1770     if (result == NULL || !id.contains('#')) {
1771         return result;
1772     } else {
1773         for (int i = 0; i < result->childCount(); i++) {
1774             SubProjectItem *sub = static_cast <SubProjectItem *>(result->child(i));
1775             if (sub && sub->zone().x() == id.section('#', 1, 1).toInt())
1776                 return sub;
1777         }
1778     }
1779
1780     return NULL;
1781 }
1782
1783
1784 ProjectItem *ProjectList::getItemById(const QString &id)
1785 {
1786     ProjectItem *item;
1787     QTreeWidgetItemIterator it(m_listView);
1788     while (*it) {
1789         if ((*it)->type() != PROJECTCLIPTYPE) {
1790             // subitem or folder
1791             ++it;
1792             continue;
1793         }
1794         item = static_cast<ProjectItem *>(*it);
1795         if (item->clipId() == id)
1796             return item;
1797         ++it;
1798     }
1799     return NULL;
1800 }
1801
1802 FolderProjectItem *ProjectList::getFolderItemById(const QString &id)
1803 {
1804     FolderProjectItem *item;
1805     QTreeWidgetItemIterator it(m_listView);
1806     while (*it) {
1807         if ((*it)->type() == PROJECTFOLDERTYPE) {
1808             item = static_cast<FolderProjectItem *>(*it);
1809             if (item->clipId() == id)
1810                 return item;
1811         }
1812         ++it;
1813     }
1814     return NULL;
1815 }
1816
1817 void ProjectList::slotSelectClip(const QString &ix)
1818 {
1819     ProjectItem *clip = getItemById(ix);
1820     if (clip) {
1821         m_listView->setCurrentItem(clip);
1822         m_listView->scrollToItem(clip);
1823         m_editButton->defaultAction()->setEnabled(true);
1824         m_deleteButton->defaultAction()->setEnabled(true);
1825         m_reloadAction->setEnabled(true);
1826         m_transcodeAction->setEnabled(true);
1827         m_proxyAction->setEnabled(useProxy());
1828         if (clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
1829             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
1830             m_openAction->setEnabled(true);
1831         } else if (clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
1832             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
1833             m_openAction->setEnabled(true);
1834         } else {
1835             m_openAction->setEnabled(false);
1836         }
1837     }
1838 }
1839
1840 QString ProjectList::currentClipUrl() const
1841 {
1842     ProjectItem *item;
1843     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE) return QString();
1844     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
1845         // subitem
1846         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
1847     } else {
1848         item = static_cast <ProjectItem*>(m_listView->currentItem());
1849     }
1850     if (item == NULL)
1851         return QString();
1852     return item->clipUrl().path();
1853 }
1854
1855 KUrl::List ProjectList::getConditionalUrls(const QString &condition) const
1856 {
1857     KUrl::List result;
1858     ProjectItem *item;
1859     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
1860     for (int i = 0; i < list.count(); i++) {
1861         if (list.at(i)->type() == PROJECTFOLDERTYPE)
1862             continue;
1863         if (list.at(i)->type() == PROJECTSUBCLIPTYPE) {
1864             // subitem
1865             item = static_cast <ProjectItem*>(list.at(i)->parent());
1866         } else {
1867             item = static_cast <ProjectItem*>(list.at(i));
1868         }
1869         if (item == NULL || item->type() == COLOR || item->type() == SLIDESHOW || item->type() == TEXT)
1870             continue;
1871         DocClipBase *clip = item->referencedClip();
1872         if (!condition.isEmpty()) {
1873             if (condition.startsWith("vcodec") && !clip->hasVideoCodec(condition.section('=', 1, 1)))
1874                 continue;
1875             else if (condition.startsWith("acodec") && !clip->hasAudioCodec(condition.section('=', 1, 1)))
1876                 continue;
1877         }
1878         result.append(item->clipUrl());
1879     }
1880     return result;
1881 }
1882
1883 void ProjectList::regenerateTemplate(const QString &id)
1884 {
1885     ProjectItem *clip = getItemById(id);
1886     if (clip)
1887         regenerateTemplate(clip);
1888 }
1889
1890 void ProjectList::regenerateTemplate(ProjectItem *clip)
1891 {
1892     //TODO: remove this unused method, only force_reload is necessary
1893     clip->referencedClip()->producer()->set("force_reload", 1);
1894 }
1895
1896 QDomDocument ProjectList::generateTemplateXml(QString path, const QString &replaceString)
1897 {
1898     QDomDocument doc;
1899     QFile file(path);
1900     if (!file.open(QIODevice::ReadOnly)) {
1901         kWarning() << "ERROR, CANNOT READ: " << path;
1902         return doc;
1903     }
1904     if (!doc.setContent(&file)) {
1905         kWarning() << "ERROR, CANNOT READ: " << path;
1906         file.close();
1907         return doc;
1908     }
1909     file.close();
1910     QDomNodeList texts = doc.elementsByTagName("content");
1911     for (int i = 0; i < texts.count(); i++) {
1912         QString data = texts.item(i).firstChild().nodeValue();
1913         data.replace("%s", replaceString);
1914         texts.item(i).firstChild().setNodeValue(data);
1915     }
1916     return doc;
1917 }
1918
1919
1920 void ProjectList::slotAddClipCut(const QString &id, int in, int out)
1921 {
1922     ProjectItem *clip = getItemById(id);
1923     if (clip == NULL || clip->referencedClip()->hasCutZone(QPoint(in, out)))
1924         return;
1925     AddClipCutCommand *command = new AddClipCutCommand(this, id, in, out, QString(), true, false);
1926     m_commandStack->push(command);
1927 }
1928
1929 void ProjectList::addClipCut(const QString &id, int in, int out, const QString desc, bool newItem)
1930 {
1931     ProjectItem *clip = getItemById(id);
1932     if (clip) {
1933         DocClipBase *base = clip->referencedClip();
1934         base->addCutZone(in, out);
1935         monitorItemEditing(false);
1936         SubProjectItem *sub = new SubProjectItem(clip, in, out, desc);
1937         if (newItem && desc.isEmpty() && !m_listView->isColumnHidden(1)) {
1938             if (!clip->isExpanded())
1939                 clip->setExpanded(true);
1940             m_listView->scrollToItem(sub);
1941             m_listView->editItem(sub, 1);
1942         }
1943         QPixmap p = clip->referencedClip()->thumbProducer()->extractImage(in, (int)(sub->sizeHint(0).height()  * m_render->dar()), sub->sizeHint(0).height() - 2);
1944         sub->setData(0, Qt::DecorationRole, p);
1945         m_doc->cachePixmap(clip->getClipHash() + '#' + QString::number(in), p);
1946         monitorItemEditing(true);
1947     }
1948     emit projectModified();
1949 }
1950
1951 void ProjectList::removeClipCut(const QString &id, int in, int out)
1952 {
1953     ProjectItem *clip = getItemById(id);
1954     if (clip) {
1955         DocClipBase *base = clip->referencedClip();
1956         base->removeCutZone(in, out);
1957         SubProjectItem *sub = getSubItem(clip, QPoint(in, out));
1958         if (sub) {
1959             monitorItemEditing(false);
1960             delete sub;
1961             monitorItemEditing(true);
1962         }
1963     }
1964     emit projectModified();
1965 }
1966
1967 SubProjectItem *ProjectList::getSubItem(ProjectItem *clip, QPoint zone)
1968 {
1969     SubProjectItem *sub = NULL;
1970     if (clip) {
1971         for (int i = 0; i < clip->childCount(); i++) {
1972             QTreeWidgetItem *it = clip->child(i);
1973             if (it->type() == PROJECTSUBCLIPTYPE) {
1974                 sub = static_cast <SubProjectItem*>(it);
1975                 if (sub->zone() == zone)
1976                     break;
1977                 else
1978                     sub = NULL;
1979             }
1980         }
1981     }
1982     return sub;
1983 }
1984
1985 void ProjectList::slotUpdateClipCut(QPoint p)
1986 {
1987     if (!m_listView->currentItem() || m_listView->currentItem()->type() != PROJECTSUBCLIPTYPE)
1988         return;
1989     SubProjectItem *sub = static_cast <SubProjectItem*>(m_listView->currentItem());
1990     ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
1991     EditClipCutCommand *command = new EditClipCutCommand(this, item->clipId(), sub->zone(), p, sub->text(1), sub->text(1), true);
1992     m_commandStack->push(command);
1993 }
1994
1995 void ProjectList::doUpdateClipCut(const QString &id, const QPoint oldzone, const QPoint zone, const QString &comment)
1996 {
1997     ProjectItem *clip = getItemById(id);
1998     SubProjectItem *sub = getSubItem(clip, oldzone);
1999     if (sub == NULL || clip == NULL)
2000         return;
2001     DocClipBase *base = clip->referencedClip();
2002     base->updateCutZone(oldzone.x(), oldzone.y(), zone.x(), zone.y(), comment);
2003     monitorItemEditing(false);
2004     sub->setZone(zone);
2005     sub->setDescription(comment);
2006     monitorItemEditing(true);
2007     emit projectModified();
2008 }
2009
2010 void ProjectList::slotForceProcessing(const QString &id)
2011 {
2012     while (m_infoQueue.contains(id)) {
2013         slotProcessNextClipInQueue();
2014     }
2015 }
2016
2017 void ProjectList::slotAddOrUpdateSequence(const QString frameName)
2018 {
2019     QString fileName = KUrl(frameName).fileName().section('_', 0, -2);
2020     QStringList list;
2021     QString pattern = SlideshowClip::selectedPath(frameName, false, QString(), &list);
2022     int count = list.count();
2023     if (count > 1) {
2024         const QList <DocClipBase *> existing = m_doc->clipManager()->getClipByResource(pattern);
2025         if (!existing.isEmpty()) {
2026             // Sequence already exists, update
2027             QString id = existing.at(0)->getId();
2028             //ProjectItem *item = getItemById(id);
2029             QMap <QString, QString> oldprops;
2030             QMap <QString, QString> newprops;
2031             int ttl = existing.at(0)->getProperty("ttl").toInt();
2032             oldprops["out"] = existing.at(0)->getProperty("out");
2033             newprops["out"] = QString::number(ttl * count - 1);
2034             slotUpdateClipProperties(id, newprops);
2035             EditClipCommand *command = new EditClipCommand(this, id, oldprops, newprops, false);
2036             m_commandStack->push(command);
2037         } else {
2038             // Create sequence
2039             QStringList groupInfo = getGroup();
2040             m_doc->slotCreateSlideshowClipFile(fileName, pattern, count, m_timecode.reformatSeparators(KdenliveSettings::sequence_duration()),
2041                                                false, false, false,
2042                                                m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))), QString(), 0,
2043                                                QString(), groupInfo.at(0), groupInfo.at(1));
2044         }
2045     } else emit displayMessage(i18n("Sequence not found"), -2);
2046 }
2047
2048 QMap <QString, QString> ProjectList::getProxies()
2049 {
2050     QMap <QString, QString> list;
2051     ProjectItem *item;
2052     QTreeWidgetItemIterator it(m_listView);
2053     while (*it) {
2054         if ((*it)->type() != PROJECTCLIPTYPE) {
2055             ++it;
2056             continue;
2057         }
2058         item = static_cast<ProjectItem *>(*it);
2059         if (item && item->referencedClip() != NULL) {
2060             if (item->hasProxy()) {
2061                 QString proxy = item->referencedClip()->getProperty("proxy");
2062                 list.insert(proxy, item->clipUrl().path());
2063             }
2064         }
2065         ++it;
2066     }
2067     return list;
2068 }
2069
2070 void ProjectList::slotCreateProxy(const QString id)
2071 {
2072     ProjectItem *item = getItemById(id);
2073     if (!item || item->isProxyRunning()) return;
2074     setProxyStatus(id, PROXYWAITING);
2075     if (m_abortProxyId.contains(id)) m_abortProxyId.removeAll(id);
2076     QtConcurrent::run(this, &ProjectList::slotGenerateProxy, id);
2077 }
2078
2079 void ProjectList::slotAbortProxy(const QString id)
2080 {
2081     if (m_proxyList.contains(id)) m_proxyList.removeAll(id);
2082     ProjectItem *item = getItemById(id);
2083     if (item) {
2084       if (item->isProxyReady()) slotGotProxy(id);
2085       else if (item->isProxyRunning()) m_abortProxyId << id;
2086       setProxyStatus(id, NOPROXY);
2087     }
2088 }
2089
2090 void ProjectList::slotGenerateProxy(const QString id)
2091 {
2092     setProxyStatus(id, CREATINGPROXY);
2093     ProjectItem *item = getItemById(id);
2094     if (item == NULL) return;
2095     QString path = item->referencedClip()->getProperty("proxy");
2096     if (path.isEmpty()) {
2097         setProxyStatus(id, PROXYCRASHED);
2098         return;
2099     }
2100
2101     QString url = item->clipUrl().path();
2102     
2103     if (QFile::exists(path)) {
2104         setProxyStatus(id, PROXYDONE);
2105         slotGotProxy(id);
2106         return;
2107     }
2108     else {
2109         // Make sure proxy path is writable
2110         QFile file(path);
2111         if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
2112             setProxyStatus(id, PROXYCRASHED);
2113             return;
2114         }
2115         file.close();
2116         QFile::remove(path);
2117     }
2118
2119     QStringList parameters;
2120     parameters << "-i" << url;
2121     QString params = proxyParams();
2122     foreach(QString s, params.split(' '))
2123     parameters << s;
2124
2125     // Make sure we don't block when proxy file already exists
2126     parameters << "-y";
2127     parameters << path;
2128     QProcess myProcess;
2129     myProcess.start("ffmpeg", parameters);
2130     myProcess.waitForStarted();
2131     int result = -1;
2132     while (myProcess.state() != QProcess::NotRunning) {
2133         // building proxy file
2134         if (m_abortProxyId.contains(id)) {
2135             myProcess.close();
2136             myProcess.waitForFinished();
2137             m_abortProxyId.removeAll(id);
2138             QFile::remove(path);
2139             setProxyStatus(id, NOPROXY);
2140             result = -2;
2141             
2142         }
2143         myProcess.waitForFinished(500);
2144     }
2145     myProcess.waitForFinished();
2146     if (result == -1) result = myProcess.exitStatus();
2147     if (result == 0) {
2148         // proxy successfully created
2149         setProxyStatus(id, PROXYDONE);
2150         slotGotProxy(id);
2151     }
2152     else if (result == 1) {
2153         // Proxy process crashed
2154         QFile::remove(path);
2155         setProxyStatus(id, PROXYCRASHED);
2156     }
2157 }
2158
2159 void ProjectList::updateProxyConfig()
2160 {
2161     ProjectItem *item;
2162     QTreeWidgetItemIterator it(m_listView);
2163     while (*it) {
2164         if ((*it)->type() != PROJECTCLIPTYPE) {
2165             ++it;
2166             continue;
2167         }
2168         item = static_cast<ProjectItem *>(*it);
2169         if (item == NULL) {
2170             ++it;
2171             continue;
2172         }
2173         CLIPTYPE t = item->clipType();
2174         if ((t == VIDEO || t == AV || t == UNKNOWN) && item->referencedClip() != NULL) {
2175             if  (generateProxy() && useProxy() && !item->isProxyRunning()) {
2176                 DocClipBase *clip = item->referencedClip();
2177                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > proxyMinSize()) {
2178                     if (clip->getProperty("proxy").isEmpty()) {
2179                         QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
2180                         clip->setProperty("proxy", proxydir + item->referencedClip()->getClipHash() + ".avi");
2181                     }
2182                 }
2183             }
2184             else if (item->hasProxy()) {
2185                 // remove proxy
2186                 item->referencedClip()->clearProperty("proxy");
2187                 QDomElement e = item->toXml().cloneNode().toElement();
2188                 e.removeAttribute("file_hash");
2189                 e.setAttribute("replace", 1);
2190                 m_infoQueue.insert(item->clipId(), e);
2191             }
2192         }
2193         ++it;
2194     }
2195     if (!m_infoQueue.isEmpty() && !m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
2196 }
2197
2198 void ProjectList::slotProxyCurrentItem(bool doProxy)
2199 {
2200     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
2201     QTreeWidgetItem *listItem;
2202     QUndoCommand *command = new QUndoCommand();
2203     command->setText(i18np("Edit clip", "Edit clips", list.count()));
2204     
2205     // Make sure the proxy folder exists
2206     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
2207     KStandardDirs::makeDir(proxydir);
2208                 
2209     QMap <QString, QString> newProps;
2210     if (!doProxy) newProps.insert("proxy", "-");
2211     for (int i = 0; i < list.count(); i++) {
2212         listItem = list.at(i);
2213         if (listItem->type() == PROJECTFOLDERTYPE) {
2214             for (int j = 0; j < listItem->childCount(); j++) {
2215                 QTreeWidgetItem *sub = listItem->child(j);
2216                 if (!list.contains(sub)) list.append(sub);
2217             }
2218         }
2219         if (listItem->type() == PROJECTCLIPTYPE) {
2220             ProjectItem *item = static_cast <ProjectItem*>(listItem);
2221             CLIPTYPE t = item->clipType();
2222             if ((t == VIDEO || t == AV || t == UNKNOWN) && item->referencedClip()) {
2223                 if (doProxy) {
2224                     newProps.clear();
2225                     QString path = proxydir + item->referencedClip()->getClipHash() + ".avi";                
2226                     newProps.insert("proxy", path);
2227                 }
2228                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), newProps, true, command);
2229             }
2230         }
2231     }
2232     m_doc->commandStack()->push(command);
2233     //if (!m_infoQueue.isEmpty() && !m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
2234 }
2235
2236 void ProjectList::setProxyStatus(const QString id, PROXYSTATUS status)
2237 {
2238     ProjectItem *item = getItemById(id);
2239     setProxyStatus(item, status);
2240 }
2241
2242 void ProjectList::setProxyStatus(ProjectItem *item, PROXYSTATUS status)
2243 {
2244     if (item == NULL) return;
2245     monitorItemEditing(false);
2246     item->setProxyStatus(status);
2247     monitorItemEditing(true);
2248 }
2249
2250 void ProjectList::monitorItemEditing(bool enable)
2251 {
2252     if (enable) connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
2253     else disconnect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
2254 }
2255
2256 #include "projectlist.moc"