]> git.sesse.net Git - kdenlive/blob - src/projectlist.cpp
Try to avoid locale errors when converting double
[kdenlive] / src / projectlist.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20 #include "projectlist.h"
21 #include "projectitem.h"
22 #include "commands/addfoldercommand.h"
23 #include "projecttree/proxyclipjob.h"
24 #include "projecttree/cutclipjob.h"
25 #include "projecttree/meltjob.h"
26 #include "kdenlivesettings.h"
27 #include "slideshowclip.h"
28 #include "ui_colorclip_ui.h"
29 #include "titlewidget.h"
30 #include "definitions.h"
31 #include "clipmanager.h"
32 #include "docclipbase.h"
33 #include "kdenlivedoc.h"
34 #include "renderer.h"
35 #include "kthumb.h"
36 #include "projectlistview.h"
37 #include "timecodedisplay.h"
38 #include "profilesdialog.h"
39 #include "clipstabilize.h"
40 #include "commands/editclipcommand.h"
41 #include "commands/editclipcutcommand.h"
42 #include "commands/editfoldercommand.h"
43 #include "commands/addclipcutcommand.h"
44
45 #include "ui_templateclip_ui.h"
46 #include "ui_cutjobdialog_ui.h"
47 #include "ui_scenecutdialog_ui.h"
48
49 #include <KDebug>
50 #include <KAction>
51 #include <KLocale>
52 #include <KFileDialog>
53 #include <KInputDialog>
54 #include <KMessageBox>
55 #include <KIO/NetAccess>
56 #include <KFileItem>
57 #include <KApplication>
58 #include <KStandardDirs>
59 #include <KColorScheme>
60 #include <KActionCollection>
61 #include <KUrlRequester>
62 #include <KVBox>
63 #include <KHBox>
64
65 #ifdef USE_NEPOMUK
66 #include <nepomuk/global.h>
67 #include <nepomuk/resourcemanager.h>
68 #include <Nepomuk/Resource>
69 //#include <nepomuk/tag.h>
70 #endif
71
72 #include <QMouseEvent>
73 #include <QStylePainter>
74 #include <QPixmap>
75 #include <QIcon>
76 #include <QMenu>
77 #include <QProcess>
78 #include <QScrollBar>
79 #include <QHeaderView>
80 #include <QInputDialog>
81 #include <QtConcurrentRun>
82 #include <QVBoxLayout>
83 #include <KPassivePopup>
84
85
86 MyMessageWidget::MyMessageWidget(QWidget *parent) : KMessageWidget(parent) {}
87 MyMessageWidget::MyMessageWidget(const QString &text, QWidget *parent) : KMessageWidget(text, parent) {}
88
89
90 bool MyMessageWidget::event(QEvent* ev) {
91     if (ev->type() == QEvent::Hide || ev->type() == QEvent::Close) emit messageClosing();
92     return KMessageWidget::event(ev);
93 }
94
95 SmallInfoLabel::SmallInfoLabel(QWidget *parent) : QPushButton(parent)
96 {
97     setFixedWidth(0);
98     setFlat(true);
99     
100     /*QString style = "QToolButton {background-color: %1;border-style: outset;border-width: 2px;
101      border-radius: 5px;border-color: beige;}";*/
102     m_timeLine = new QTimeLine(500, this);
103     QObject::connect(m_timeLine, SIGNAL(valueChanged(qreal)), this, SLOT(slotTimeLineChanged(qreal)));
104     QObject::connect(m_timeLine, SIGNAL(finished()), this, SLOT(slotTimeLineFinished()));
105     hide();
106 }
107
108 const QString SmallInfoLabel::getStyleSheet(const QPalette &p)
109 {
110     KColorScheme scheme(p.currentColorGroup(), KColorScheme::Window, KSharedConfig::openConfig(KdenliveSettings::colortheme()));
111     QColor bg = scheme.background(KColorScheme::LinkBackground).color();
112     QColor fg = scheme.foreground(KColorScheme::LinkText).color();
113     QString style = QString("QPushButton {padding:2px;background-color: rgb(%1, %2, %3);border-radius: 4px;border: none;color: rgb(%4, %5, %6)}").arg(bg.red()).arg(bg.green()).arg(bg.blue()).arg(fg.red()).arg(fg.green()).arg(fg.blue());
114     
115     bg = scheme.background(KColorScheme::ActiveBackground).color();
116     fg = scheme.foreground(KColorScheme::ActiveText).color();
117     style.append(QString("\nQPushButton:hover {padding:2px;background-color: rgb(%1, %2, %3);border-radius: 4px;border: none;color: rgb(%4, %5, %6)}").arg(bg.red()).arg(bg.green()).arg(bg.blue()).arg(fg.red()).arg(fg.green()).arg(fg.blue()));
118     
119     return style;
120 }
121
122 void SmallInfoLabel::slotTimeLineChanged(qreal value)
123 {
124     setFixedWidth(qMin(value * 2, qreal(1.0)) * sizeHint().width());
125     update();
126 }
127
128 void SmallInfoLabel::slotTimeLineFinished()
129 {
130     if (m_timeLine->direction() == QTimeLine::Forward) {
131         // Show
132         show();
133     } else {
134         // Hide
135         hide();
136         setText(QString());
137     }
138 }
139
140 void SmallInfoLabel::slotSetJobCount(int jobCount)
141 {
142     if (jobCount > 0) {
143         // prepare animation
144         setText(i18np("%1 job", "%1 jobs", jobCount));
145         setToolTip(i18np("%1 pending job", "%1 pending jobs", jobCount));
146         
147         if (!(KGlobalSettings::graphicEffectsLevel() & KGlobalSettings::SimpleAnimationEffects)) {
148             setFixedWidth(sizeHint().width());
149             show();
150             return;
151         }
152         
153         if (isVisible()) {
154             setFixedWidth(sizeHint().width());
155             update();
156             return;
157         }
158         
159         setFixedWidth(0);
160         show();
161         int wantedWidth = sizeHint().width();
162         setGeometry(-wantedWidth, 0, wantedWidth, height());
163         m_timeLine->setDirection(QTimeLine::Forward);
164         if (m_timeLine->state() == QTimeLine::NotRunning) {
165             m_timeLine->start();
166         }
167     }
168     else {
169         if (!(KGlobalSettings::graphicEffectsLevel() & KGlobalSettings::SimpleAnimationEffects)) {
170             setFixedWidth(0);
171             hide();
172             return;
173         }
174         // hide
175         m_timeLine->setDirection(QTimeLine::Backward);
176         if (m_timeLine->state() == QTimeLine::NotRunning) {
177             m_timeLine->start();
178         }
179     }
180     
181 }
182
183
184 InvalidDialog::InvalidDialog(const QString &caption, const QString &message, bool infoOnly, QWidget *parent) : KDialog(parent)
185 {
186     setCaption(caption);
187     if (infoOnly) setButtons(KDialog::Ok);
188     else setButtons(KDialog::Yes | KDialog::No);
189     QWidget *w = new QWidget(this);
190     QVBoxLayout *l = new QVBoxLayout;
191     l->addWidget(new QLabel(message));
192     m_clipList = new QListWidget;
193     l->addWidget(m_clipList);
194     w->setLayout(l);
195     setMainWidget(w);
196 }
197
198 InvalidDialog::~InvalidDialog()
199 {
200     delete m_clipList;
201 }
202
203
204 void InvalidDialog::addClip(const QString &id, const QString &path)
205 {
206     QListWidgetItem *item = new QListWidgetItem(path);
207     item->setData(Qt::UserRole, id);
208     m_clipList->addItem(item);
209 }
210
211 QStringList InvalidDialog::getIds() const
212 {
213     QStringList ids;
214     for (int i = 0; i < m_clipList->count(); i++) {
215         ids << m_clipList->item(i)->data(Qt::UserRole).toString();
216     }
217     return ids;
218 }
219
220
221 ProjectList::ProjectList(QWidget *parent) :
222     QWidget(parent)
223     , m_render(NULL)
224     , m_fps(-1)
225     , m_menu(NULL)
226     , m_commandStack(NULL)
227     , m_openAction(NULL)
228     , m_reloadAction(NULL)
229     , m_extractAudioAction(NULL)
230     , m_transcodeAction(NULL)
231     , m_clipsActionsMenu(NULL)
232     , m_doc(NULL)
233     , m_refreshed(false)
234     , m_allClipsProcessed(false)
235     , m_thumbnailQueue()
236     , m_proxyAction(NULL)
237     , m_abortAllJobs(false)
238     , m_closing(false)
239     , m_invalidClipDialog(NULL)
240 {
241     qRegisterMetaType<stringMap> ("stringMap");
242     QVBoxLayout *layout = new QVBoxLayout;
243     layout->setContentsMargins(0, 0, 0, 0);
244     layout->setSpacing(0);
245     qRegisterMetaType<QDomElement>("QDomElement");
246     // setup toolbar
247     QFrame *frame = new QFrame;
248     frame->setFrameStyle(QFrame::NoFrame);
249     QHBoxLayout *box = new QHBoxLayout;
250     box->setContentsMargins(0, 0, 0, 0);
251     
252     KTreeWidgetSearchLine *searchView = new KTreeWidgetSearchLine;
253     box->addWidget(searchView);
254     
255     // small info button for pending jobs
256     m_infoLabel = new SmallInfoLabel(this);
257     m_infoLabel->setStyleSheet(SmallInfoLabel::getStyleSheet(palette()));
258     connect(this, SIGNAL(jobCount(int)), m_infoLabel, SLOT(slotSetJobCount(int)));
259     m_jobsMenu = new QMenu(this);
260     connect(m_jobsMenu, SIGNAL(aboutToShow()), this, SLOT(slotPrepareJobsMenu()));
261     QAction *cancelJobs = new QAction(i18n("Cancel All Jobs"), this);
262     cancelJobs->setCheckable(false);
263     connect(cancelJobs, SIGNAL(triggered()), this, SLOT(slotCancelJobs()));
264     connect(this, SIGNAL(checkJobProcess()), this, SLOT(slotCheckJobProcess()));
265     m_discardCurrentClipJobs = new QAction(i18n("Cancel Current Clip Jobs"), this);
266     m_discardCurrentClipJobs->setCheckable(false);
267     connect(m_discardCurrentClipJobs, SIGNAL(triggered()), this, SLOT(slotDiscardClipJobs()));
268     m_jobsMenu->addAction(cancelJobs);
269     m_jobsMenu->addAction(m_discardCurrentClipJobs);
270     m_infoLabel->setMenu(m_jobsMenu);
271     box->addWidget(m_infoLabel);
272        
273     int size = style()->pixelMetric(QStyle::PM_SmallIconSize);
274     QSize iconSize(size, size);
275
276     m_addButton = new QToolButton;
277     m_addButton->setPopupMode(QToolButton::MenuButtonPopup);
278     m_addButton->setAutoRaise(true);
279     m_addButton->setIconSize(iconSize);
280     box->addWidget(m_addButton);
281
282     m_editButton = new QToolButton;
283     m_editButton->setAutoRaise(true);
284     m_editButton->setIconSize(iconSize);
285     box->addWidget(m_editButton);
286
287     m_deleteButton = new QToolButton;
288     m_deleteButton->setAutoRaise(true);
289     m_deleteButton->setIconSize(iconSize);
290     box->addWidget(m_deleteButton);
291     frame->setLayout(box);
292     layout->addWidget(frame);
293
294     m_listView = new ProjectListView(this);
295     layout->addWidget(m_listView);
296     
297 #if KDE_IS_VERSION(4,7,0)
298     m_infoMessage = new MyMessageWidget;
299     layout->addWidget(m_infoMessage);
300     m_infoMessage->setCloseButtonVisible(true);
301     connect(m_infoMessage, SIGNAL(messageClosing()), this, SLOT(slotResetInfoMessage()));
302     //m_infoMessage->setWordWrap(true);
303     m_infoMessage->hide();
304     m_logAction = new QAction(i18n("Show Log"), this);
305     m_logAction->setCheckable(false);
306     connect(m_logAction, SIGNAL(triggered()), this, SLOT(slotShowJobLog()));
307 #endif
308
309     setLayout(layout);
310     searchView->setTreeWidget(m_listView);
311
312     connect(this, SIGNAL(processNextThumbnail()), this, SLOT(slotProcessNextThumbnail()));
313     connect(m_listView, SIGNAL(projectModified()), this, SIGNAL(projectModified()));
314     connect(m_listView, SIGNAL(itemSelectionChanged()), this, SLOT(slotClipSelected()));
315     connect(m_listView, SIGNAL(focusMonitor(bool)), this, SIGNAL(raiseClipMonitor(bool)));
316     connect(m_listView, SIGNAL(pauseMonitor()), this, SIGNAL(pauseMonitor()));
317     connect(m_listView, SIGNAL(requestMenu(const QPoint &, QTreeWidgetItem *)), this, SLOT(slotContextMenu(const QPoint &, QTreeWidgetItem *)));
318     connect(m_listView, SIGNAL(addClip()), this, SIGNAL(pauseMonitor()));
319     connect(m_listView, SIGNAL(addClip()), this, SLOT(slotAddClip()));
320     connect(m_listView, SIGNAL(addClip(const QList <QUrl>, const QString &, const QString &)), this, SLOT(slotAddClip(const QList <QUrl>, const QString &, const QString &)));
321     connect(this, SIGNAL(addClip(const QString, const QString &, const QString &)), this, SLOT(slotAddClip(const QString, const QString &, const QString &)));
322     connect(m_listView, SIGNAL(addClipCut(const QString &, int, int)), this, SLOT(slotAddClipCut(const QString &, int, int)));
323     connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));
324     connect(m_listView, SIGNAL(showProperties(DocClipBase *)), this, SIGNAL(showClipProperties(DocClipBase *)));
325     
326     connect(this, SIGNAL(cancelRunningJob(const QString, stringMap )), this, SLOT(slotCancelRunningJob(const QString, stringMap)));
327     connect(this, SIGNAL(processLog(const QString, int , int, const QString)), this, SLOT(slotProcessLog(const QString, int , int, const QString)));
328     
329     connect(this, SIGNAL(updateJobStatus(const QString, int, int, const QString, const QString, const QString)), this, SLOT(slotUpdateJobStatus(const QString, int, int, const QString, const QString, const QString)));
330     
331     connect(this, SIGNAL(gotProxy(const QString)), this, SLOT(slotGotProxyForId(const QString)));
332     
333     m_listViewDelegate = new ItemDelegate(m_listView);
334     m_listView->setItemDelegate(m_listViewDelegate);
335 #ifdef USE_NEPOMUK
336     if (KdenliveSettings::activate_nepomuk()) {
337         Nepomuk::ResourceManager::instance()->init();
338         if (!Nepomuk::ResourceManager::instance()->initialized()) {
339             kDebug() << "Cannot communicate with Nepomuk, DISABLING it";
340             KdenliveSettings::setActivate_nepomuk(false);
341         }
342     }
343 #endif
344 }
345
346 ProjectList::~ProjectList()
347 {
348     m_abortAllJobs = true;
349     for (int i = 0; i < m_jobList.count(); i++) {
350         m_jobList.at(i)->setStatus(JOBABORTED);
351     }
352     m_closing = true;
353     m_thumbnailQueue.clear();
354     m_jobThreads.waitForFinished();
355     m_jobThreads.clearFutures();
356     if (!m_jobList.isEmpty()) qDeleteAll(m_jobList);
357     m_jobList.clear();
358     if (m_menu) delete m_menu;
359     m_listView->blockSignals(true);
360     m_listView->clear();
361     delete m_listViewDelegate;
362 #if KDE_IS_VERSION(4,7,0)
363     delete m_infoMessage;
364 #endif
365 }
366
367 void ProjectList::focusTree() const
368 {
369     m_listView->setFocus();
370 }
371
372 void ProjectList::setupMenu(QMenu *addMenu, QAction *defaultAction)
373 {
374     QList <QAction *> actions = addMenu->actions();
375     for (int i = 0; i < actions.count(); i++) {
376         if (actions.at(i)->data().toString() == "clip_properties") {
377             m_editButton->setDefaultAction(actions.at(i));
378             actions.removeAt(i);
379             i--;
380         } else if (actions.at(i)->data().toString() == "delete_clip") {
381             m_deleteButton->setDefaultAction(actions.at(i));
382             actions.removeAt(i);
383             i--;
384         } else if (actions.at(i)->data().toString() == "edit_clip") {
385             m_openAction = actions.at(i);
386             actions.removeAt(i);
387             i--;
388         } else if (actions.at(i)->data().toString() == "reload_clip") {
389             m_reloadAction = actions.at(i);
390             actions.removeAt(i);
391             i--;
392         } else if (actions.at(i)->data().toString() == "proxy_clip") {
393             m_proxyAction = actions.at(i);
394             actions.removeAt(i);
395             i--;
396         }
397     }
398
399     QMenu *m = new QMenu();
400     m->addActions(actions);
401     m_addButton->setMenu(m);
402     m_addButton->setDefaultAction(defaultAction);
403     m_menu = new QMenu();
404     m_menu->addActions(addMenu->actions());
405 }
406
407 void ProjectList::setupGeneratorMenu(const QHash<QString,QMenu*>& menus)
408 {
409     if (!m_menu) {
410         kDebug()<<"Warning, menu was not created, something is wrong";
411         return;
412     }
413     if (!menus.contains("addMenu") && ! menus.value("addMenu") )
414         return;
415     QMenu *menu = m_addButton->menu();
416         if (menus.contains("addMenu") && menus.value("addMenu")){ 
417                 QMenu* addMenu=menus.value("addMenu");
418                 menu->addMenu(addMenu);
419                 m_addButton->setMenu(menu);
420                 if (addMenu->isEmpty())
421                         addMenu->setEnabled(false);
422         }
423         if (menus.contains("extractAudioMenu") && menus.value("extractAudioMenu") ){
424                 QMenu* extractAudioMenu = menus.value("extractAudioMenu");
425                 m_menu->addMenu(extractAudioMenu);
426                 m_extractAudioAction = extractAudioMenu;
427         }
428         if (menus.contains("transcodeMenu") && menus.value("transcodeMenu") ){
429                 QMenu* transcodeMenu = menus.value("transcodeMenu");
430                 m_menu->addMenu(transcodeMenu);
431                 if (transcodeMenu->isEmpty())
432                         transcodeMenu->setEnabled(false);
433                 m_transcodeAction = transcodeMenu;
434         }
435         if (menus.contains("clipActionsMenu") && menus.value("clipActionsMenu") ){
436                 QMenu* stabilizeMenu=menus.value("clipActionsMenu");
437                 m_menu->addMenu(stabilizeMenu);
438                 if (stabilizeMenu->isEmpty())
439                         stabilizeMenu->setEnabled(false);
440                 m_clipsActionsMenu = stabilizeMenu;
441
442         }
443     if (m_reloadAction) m_menu->addAction(m_reloadAction);
444     if (m_proxyAction) m_menu->addAction(m_proxyAction);
445         if (menus.contains("inTimelineMenu") && menus.value("inTimelineMenu")){
446                 QMenu* inTimelineMenu=menus.value("inTimelineMenu");
447                 m_menu->addMenu(inTimelineMenu);
448                 inTimelineMenu->setEnabled(false);
449         }
450     m_menu->addAction(m_editButton->defaultAction());
451     m_menu->addAction(m_openAction);
452     m_menu->addAction(m_deleteButton->defaultAction());
453     m_menu->insertSeparator(m_deleteButton->defaultAction());
454 }
455
456 void ProjectList::clearSelection()
457 {
458     m_listView->clearSelection();
459 }
460
461 QByteArray ProjectList::headerInfo() const
462 {
463     return m_listView->header()->saveState();
464 }
465
466 void ProjectList::setHeaderInfo(const QByteArray &state)
467 {
468     m_listView->header()->restoreState(state);
469 }
470
471 void ProjectList::updateProjectFormat(Timecode t)
472 {
473     m_timecode = t;
474 }
475
476 void ProjectList::slotEditClip()
477 {
478     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
479     if (list.isEmpty()) return;
480     if (list.count() > 1 || list.at(0)->type() == PROJECTFOLDERTYPE) {
481         editClipSelection(list);
482         return;
483     }
484     ProjectItem *item;
485     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE)
486         return;
487     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE)
488         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
489     else
490         item = static_cast <ProjectItem*>(m_listView->currentItem());
491     if (item && (item->flags() & Qt::ItemIsDragEnabled)) {
492         emit clipSelected(item->referencedClip());
493         emit showClipProperties(item->referencedClip());
494     }
495 }
496
497 void ProjectList::editClipSelection(QList<QTreeWidgetItem *> list)
498 {
499     // Gather all common properties
500     QMap <QString, QString> commonproperties;
501     QList <DocClipBase *> clipList;
502     commonproperties.insert("force_aspect_num", "-");
503     commonproperties.insert("force_aspect_den", "-");
504     commonproperties.insert("force_fps", "-");
505     commonproperties.insert("force_progressive", "-");
506     commonproperties.insert("force_tff", "-");
507     commonproperties.insert("threads", "-");
508     commonproperties.insert("video_index", "-");
509     commonproperties.insert("audio_index", "-");
510     commonproperties.insert("force_colorspace", "-");
511     commonproperties.insert("full_luma", "-");
512     QString transparency = "-";
513
514     bool allowDurationChange = true;
515     int commonDuration = -1;
516     bool hasImages = false;;
517     ProjectItem *item;
518     for (int i = 0; i < list.count(); i++) {
519         item = NULL;
520         if (list.at(i)->type() == PROJECTFOLDERTYPE) {
521             // Add folder items to the list
522             int ct = list.at(i)->childCount();
523             for (int j = 0; j < ct; j++) {
524                 list.append(list.at(i)->child(j));
525             }
526             continue;
527         }
528         else if (list.at(i)->type() == PROJECTSUBCLIPTYPE)
529             item = static_cast <ProjectItem*>(list.at(i)->parent());
530         else
531             item = static_cast <ProjectItem*>(list.at(i));
532         if (!(item->flags() & Qt::ItemIsDragEnabled))
533             continue;
534         if (item) {
535             // check properties
536             DocClipBase *clip = item->referencedClip();
537             if (clipList.contains(clip)) continue;
538             if (clip->clipType() == IMAGE) {
539                 hasImages = true;
540                 if (clip->getProperty("transparency").isEmpty() || clip->getProperty("transparency").toInt() == 0) {
541                     if (transparency == "-") {
542                         // first non transparent image
543                         transparency = '0';
544                     }
545                     else if (transparency == "1") {
546                         // we have transparent and non transparent clips
547                         transparency = "-1";
548                     }
549                 }
550                 else {
551                     if (transparency == "-") {
552                         // first transparent image
553                         transparency = '1';
554                     }
555                     else if (transparency == "0") {
556                         // we have transparent and non transparent clips
557                         transparency = "-1";
558                     }
559                 }
560             }
561             if (clip->clipType() != COLOR && clip->clipType() != IMAGE && clip->clipType() != TEXT)
562                 allowDurationChange = false;
563             if (allowDurationChange && commonDuration != 0) {
564                 if (commonDuration == -1)
565                     commonDuration = clip->duration().frames(m_fps);
566                 else if (commonDuration != clip->duration().frames(m_fps))
567                     commonDuration = 0;
568             }
569             clipList.append(clip);
570             QMap <QString, QString> clipprops = clip->properties();
571             QMapIterator<QString, QString> p(commonproperties);
572             while (p.hasNext()) {
573                 p.next();
574                 if (p.value().isEmpty()) continue;
575                 if (clipprops.contains(p.key())) {
576                     if (p.value() == "-")
577                         commonproperties.insert(p.key(), clipprops.value(p.key()));
578                     else if (p.value() != clipprops.value(p.key()))
579                         commonproperties.insert(p.key(), QString());
580                 } else {
581                     commonproperties.insert(p.key(), QString());
582                 }
583             }
584         }
585     }
586     if (allowDurationChange)
587         commonproperties.insert("out", QString::number(commonDuration));
588     if (hasImages)
589         commonproperties.insert("transparency", transparency);
590     /*QMapIterator<QString, QString> p(commonproperties);
591     while (p.hasNext()) {
592         p.next();
593         kDebug() << "Result: " << p.key() << " = " << p.value();
594     }*/
595     if (clipList.isEmpty()) {
596         emit displayMessage(i18n("No available clip selected"), -2, ErrorMessage);
597     }
598     else emit showClipProperties(clipList, commonproperties);
599 }
600
601 void ProjectList::slotOpenClip()
602 {
603     ProjectItem *item;
604     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE)
605         return;
606     if (m_listView->currentItem()->type() == QTreeWidgetItem::UserType + 1)
607         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
608     else
609         item = static_cast <ProjectItem*>(m_listView->currentItem());
610     if (item) {
611         if (item->clipType() == IMAGE) {
612             if (KdenliveSettings::defaultimageapp().isEmpty())
613                 KMessageBox::sorry(kapp->activeWindow(), i18n("Please set a default application to open images in the Settings dialog"));
614             else
615                 QProcess::startDetached(KdenliveSettings::defaultimageapp(), QStringList() << item->clipUrl().path());
616         }
617         if (item->clipType() == AUDIO) {
618             if (KdenliveSettings::defaultaudioapp().isEmpty())
619                 KMessageBox::sorry(kapp->activeWindow(), i18n("Please set a default application to open audio files in the Settings dialog"));
620             else
621                 QProcess::startDetached(KdenliveSettings::defaultaudioapp(), QStringList() << item->clipUrl().path());
622         }
623     }
624 }
625
626 void ProjectList::cleanup()
627 {
628     m_listView->clearSelection();
629     QTreeWidgetItemIterator it(m_listView);
630     ProjectItem *item;
631     while (*it) {
632         if ((*it)->type() != PROJECTCLIPTYPE) {
633             it++;
634             continue;
635         }
636         item = static_cast <ProjectItem *>(*it);
637         if (item->numReferences() == 0)
638             item->setSelected(true);
639         it++;
640     }
641     slotRemoveClip();
642 }
643
644 void ProjectList::trashUnusedClips()
645 {
646     QTreeWidgetItemIterator it(m_listView);
647     ProjectItem *item;
648     QStringList ids;
649     QStringList urls;
650     while (*it) {
651         if ((*it)->type() != PROJECTCLIPTYPE) {
652             it++;
653             continue;
654         }
655         item = static_cast <ProjectItem *>(*it);
656         if (item->numReferences() == 0) {
657             ids << item->clipId();
658             KUrl url = item->clipUrl();
659             if (!url.isEmpty() && !urls.contains(url.path()))
660                 urls << url.path();
661         }
662         it++;
663     }
664
665     // Check that we don't use the URL in another clip
666     QTreeWidgetItemIterator it2(m_listView);
667     while (*it2) {
668         if ((*it2)->type() != PROJECTCLIPTYPE) {
669             it2++;
670             continue;
671         }
672         item = static_cast <ProjectItem *>(*it2);
673         if (item->numReferences() > 0) {
674             KUrl url = item->clipUrl();
675             if (!url.isEmpty() && urls.contains(url.path())) urls.removeAll(url.path());
676         }
677         it2++;
678     }
679
680     emit deleteProjectClips(ids, QMap <QString, QString>());
681     for (int i = 0; i < urls.count(); i++)
682         KIO::NetAccess::del(KUrl(urls.at(i)), this);
683 }
684
685 void ProjectList::slotReloadClip(const QString &id)
686 {
687     QList<QTreeWidgetItem *> selected;
688     if (id.isEmpty())
689         selected = m_listView->selectedItems();
690     else {
691         ProjectItem *itemToReLoad = getItemById(id);
692         if (itemToReLoad) selected.append(itemToReLoad);
693     }
694     ProjectItem *item;
695     for (int i = 0; i < selected.count(); i++) {
696         if (selected.at(i)->type() != PROJECTCLIPTYPE) {
697             if (selected.at(i)->type() == PROJECTFOLDERTYPE) {
698                 for (int j = 0; j < selected.at(i)->childCount(); j++)
699                     selected.append(selected.at(i)->child(j));
700             }
701             continue;
702         }
703         item = static_cast <ProjectItem *>(selected.at(i));
704         if (item && !hasPendingJob(item, PROXYJOB)) {
705             DocClipBase *clip = item->referencedClip();
706             if (!clip || !clip->isClean() || m_render->isProcessing(item->clipId())) {
707                 kDebug()<<"//// TRYING TO RELOAD: "<<item->clipId()<<", but it is busy";
708                 continue;
709             }
710             CLIPTYPE t = item->clipType();
711             if (t == TEXT) {
712                 if (clip && !clip->getProperty("xmltemplate").isEmpty())
713                     regenerateTemplate(item);
714             } else if (t != COLOR && t != SLIDESHOW && clip && clip->checkHash() == false) {
715                 item->referencedClip()->setPlaceHolder(true);
716                 item->setProperty("file_hash", QString());
717             } else if (t == IMAGE) {
718                 //clip->getProducer() clip->getProducer()->set("force_reload", 1);
719             }
720
721             QDomElement e = item->toXml();
722             // Make sure we get the correct producer length if it was adjusted in timeline
723             if (t == COLOR || t == IMAGE || t == SLIDESHOW || t == TEXT) {
724                 int length = QString(clip->producerProperty("length")).toInt();
725                 if (length > 0 && !e.hasAttribute("length")) {
726                     e.setAttribute("length", length);
727                 }
728                 e.setAttribute("duration", clip->getProperty("duration"));
729             }
730             resetThumbsProducer(clip);
731             m_render->getFileProperties(e, item->clipId(), m_listView->iconSize().height(), true);
732         }
733     }
734 }
735
736 void ProjectList::slotModifiedClip(const QString &id)
737 {
738     ProjectItem *item = getItemById(id);
739     if (item) {
740         QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
741         if (!pixmap.isNull()) {
742             QPainter p(&pixmap);
743             p.fillRect(0, 0, pixmap.width(), pixmap.height(), QColor(255, 255, 255, 200));
744             p.drawPixmap(0, 0, KIcon("view-refresh").pixmap(m_listView->iconSize()));
745             p.end();
746         } else {
747             pixmap = KIcon("view-refresh").pixmap(m_listView->iconSize());
748         }
749         item->setPixmap(pixmap);
750     }
751 }
752
753 void ProjectList::slotMissingClip(const QString &id)
754 {
755     ProjectItem *item = getItemById(id);
756     if (item) {
757         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
758         int height = m_listView->iconSize().height();
759         if (m_render == NULL) {
760             kDebug() << "*********  ERROR, NULL RENDR";
761             return;
762         }
763         int width = (int)(height  * m_render->dar());
764         QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
765         if (pixmap.isNull()) {
766             pixmap = QPixmap(width, height);
767             pixmap.fill(Qt::transparent);
768         }
769         KIcon icon("dialog-close");
770         QPainter p(&pixmap);
771         p.drawPixmap(3, 3, icon.pixmap(width - 6, height - 6));
772         p.end();
773         item->setPixmap(pixmap);
774         if (item->referencedClip()) {
775             item->referencedClip()->setPlaceHolder(true);
776             Mlt::Producer *newProd = m_render->invalidProducer(id);
777             if (item->referencedClip()->getProducer()) {
778                 Mlt::Properties props(newProd->get_properties());
779                 Mlt::Properties src_props(item->referencedClip()->getProducer()->get_properties());
780                 props.inherit(src_props);
781             }
782             item->referencedClip()->setProducer(newProd, true);
783             item->slotSetToolTip();
784             emit clipNeedsReload(id);
785         }
786     }
787     update();
788     emit displayMessage(i18n("Check missing clips"), -2, ErrorMessage);
789     emit updateRenderStatus();
790 }
791
792 void ProjectList::slotAvailableClip(const QString &id)
793 {
794     ProjectItem *item = getItemById(id);
795     if (item == NULL)
796         return;
797     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
798     if (item->referencedClip()) { // && item->referencedClip()->checkHash() == false) {
799         item->setProperty("file_hash", QString());
800         slotReloadClip(id);
801     }
802     /*else {
803     item->referencedClip()->setValid();
804     item->slotSetToolTip();
805     }
806     update();*/
807     emit updateRenderStatus();
808 }
809
810 bool ProjectList::hasMissingClips()
811 {
812     bool missing = false;
813     QTreeWidgetItemIterator it(m_listView);
814     while (*it) {
815         if ((*it)->type() == PROJECTCLIPTYPE && !((*it)->flags() & Qt::ItemIsDragEnabled)) {
816             missing = true;
817             break;
818         }
819         it++;
820     }
821     return missing;
822 }
823
824 void ProjectList::setRenderer(Render *projectRender)
825 {
826     m_render = projectRender;
827     m_listView->setIconSize(QSize((ProjectItem::itemDefaultHeight() - 2) * m_render->dar(), ProjectItem::itemDefaultHeight() - 2));
828     connect(m_render, SIGNAL(requestProxy(QString)), this, SLOT(slotCreateProxy(QString)));
829 }
830
831 void ProjectList::slotClipSelected()
832 {
833     QTreeWidgetItem *item = m_listView->currentItem();
834     ProjectItem *clip = NULL;
835     if (item) {
836         if (item->type() == PROJECTFOLDERTYPE) {
837             emit clipSelected(NULL);
838             m_editButton->defaultAction()->setEnabled(item->childCount() > 0);
839             m_deleteButton->defaultAction()->setEnabled(true);
840             m_openAction->setEnabled(false);
841             m_reloadAction->setEnabled(false);
842             m_extractAudioAction->setEnabled(false);
843             m_transcodeAction->setEnabled(false);
844             m_clipsActionsMenu->setEnabled(false);
845         } else {
846             if (item->type() == PROJECTSUBCLIPTYPE) {
847                 // this is a sub item, use base clip
848                 m_deleteButton->defaultAction()->setEnabled(true);
849                 clip = static_cast <ProjectItem*>(item->parent());
850                 if (clip == NULL) {
851                     kDebug() << "-----------ERROR";
852                     return;
853                 }
854                 SubProjectItem *sub = static_cast <SubProjectItem*>(item);
855                 if (clip->referencedClip()->getProducer() == NULL) m_render->getFileProperties(clip->referencedClip()->toXML(), clip->clipId(), m_listView->iconSize().height(), true);
856                 emit clipSelected(clip->referencedClip(), sub->zone());
857                 m_extractAudioAction->setEnabled(false);
858                 m_transcodeAction->setEnabled(false);
859                 m_clipsActionsMenu->setEnabled(false);
860                 m_reloadAction->setEnabled(false);
861                 adjustProxyActions(clip);
862                 return;
863             }
864             clip = static_cast <ProjectItem*>(item);
865             if (clip && clip->referencedClip())
866                 emit clipSelected(clip->referencedClip());
867             if (clip->referencedClip()->getProducer() == NULL) m_render->getFileProperties(clip->referencedClip()->toXML(), clip->clipId(), m_listView->iconSize().height(), true);
868             m_editButton->defaultAction()->setEnabled(true);
869             m_deleteButton->defaultAction()->setEnabled(true);
870             m_reloadAction->setEnabled(true);
871             m_extractAudioAction->setEnabled(true);
872             m_transcodeAction->setEnabled(true);
873             m_clipsActionsMenu->setEnabled(true);
874             if (clip && clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
875                 m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
876                 m_openAction->setEnabled(true);
877             } else if (clip && clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
878                 m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
879                 m_openAction->setEnabled(true);
880             } else {
881                 m_openAction->setEnabled(false);
882             }
883             // Display relevant transcoding actions only
884             adjustTranscodeActions(clip);
885             adjustStabilizeActions(clip);
886             // Display uses in timeline
887             emit findInTimeline(clip->clipId());
888         }
889     } else {
890         emit clipSelected(NULL);
891         m_editButton->defaultAction()->setEnabled(false);
892         m_deleteButton->defaultAction()->setEnabled(false);
893         m_openAction->setEnabled(false);
894         m_reloadAction->setEnabled(false);
895         m_extractAudioAction->setEnabled(true);
896         m_transcodeAction->setEnabled(false);
897         m_clipsActionsMenu->setEnabled(false);
898     }
899     adjustProxyActions(clip);
900 }
901
902 void ProjectList::adjustProxyActions(ProjectItem *clip) const
903 {
904     if (!m_proxyAction) return;
905     if (clip == NULL || clip->type() != PROJECTCLIPTYPE || clip->clipType() == COLOR || clip->clipType() == TEXT || clip->clipType() == SLIDESHOW || clip->clipType() == AUDIO) {
906         m_proxyAction->setEnabled(false);
907         return;
908     }
909     bool enabled = useProxy();
910     if (clip->referencedClip() && !clip->referencedClip()->getProperty("_missingsource").isEmpty()) enabled = false;
911     m_proxyAction->setEnabled(enabled);
912     m_proxyAction->blockSignals(true);
913     m_proxyAction->setChecked(clip->hasProxy());
914     m_proxyAction->blockSignals(false);
915 }
916
917 void ProjectList::adjustStabilizeActions(ProjectItem *clip) const
918 {
919
920     if (clip == NULL || clip->type() != PROJECTCLIPTYPE || clip->clipType() == COLOR || clip->clipType() == TEXT || clip->clipType() == SLIDESHOW) {
921         m_clipsActionsMenu->setEnabled(false);
922         return;
923     }
924         m_clipsActionsMenu->setEnabled(true);
925
926 }
927
928 void ProjectList::adjustTranscodeActions(ProjectItem *clip) const
929 {
930     if (clip == NULL || clip->type() != PROJECTCLIPTYPE || clip->clipType() == COLOR || clip->clipType() == TEXT || clip->clipType() == PLAYLIST || clip->clipType() == SLIDESHOW) {
931         m_transcodeAction->setEnabled(false);
932         m_extractAudioAction->setEnabled(false);
933         return;
934     }
935     m_transcodeAction->setEnabled(true);
936     m_extractAudioAction->setEnabled(true);
937     QList<QAction *> transcodeActions = m_transcodeAction->actions();
938     QStringList data;
939     QString condition;
940     for (int i = 0; i < transcodeActions.count(); i++) {
941         data = transcodeActions.at(i)->data().toStringList();
942         if (data.count() > 2) {
943             condition = data.at(2);
944             if (condition.startsWith("vcodec"))
945                 transcodeActions.at(i)->setEnabled(clip->referencedClip()->hasVideoCodec(condition.section('=', 1, 1)));
946             else if (condition.startsWith("acodec"))
947                 transcodeActions.at(i)->setEnabled(clip->referencedClip()->hasVideoCodec(condition.section('=', 1, 1)));
948         }
949     }
950
951 }
952
953 void ProjectList::slotPauseMonitor()
954 {
955     if (m_render)
956         m_render->pause();
957 }
958
959 void ProjectList::slotUpdateClipProperties(const QString &id, QMap <QString, QString> properties)
960 {
961     ProjectItem *item = getItemById(id);
962     if (item) {
963         slotUpdateClipProperties(item, properties);
964         if (properties.contains("out") || properties.contains("force_fps") || properties.contains("resource") || properties.contains("video_index") || properties.contains("audio_index") || properties.contains("full_luma") || properties.contains("force_progressive") || properties.contains("force_tff") || properties.contains("force_colorspace")) {
965             slotReloadClip(id);
966         } else if (properties.contains("colour") ||
967                    properties.contains("xmldata") ||
968                    properties.contains("force_aspect_num") ||
969                    properties.contains("force_aspect_den") ||
970                    properties.contains("templatetext")) {
971             slotRefreshClipThumbnail(item);
972             emit refreshClip(id, true);
973         } else if (properties.contains("loop")) {
974             emit refreshClip(id, false);
975         }
976     }
977 }
978
979 void ProjectList::slotUpdateClipProperties(ProjectItem *clip, QMap <QString, QString> properties)
980 {
981     if (!clip)
982         return;
983     clip->setProperties(properties);
984     if (properties.contains("proxy")) {
985         if (properties.value("proxy") == "-" || properties.value("proxy").isEmpty())
986             // this should only apply to proxy jobs
987             clip->setConditionalJobStatus(NOJOB, PROXYJOB);
988     }
989     if (properties.contains("name")) {
990         monitorItemEditing(false);
991         clip->setText(0, properties.value("name"));
992         monitorItemEditing(true);
993         emit clipNameChanged(clip->clipId(), properties.value("name"));
994     }
995     if (properties.contains("description")) {
996         CLIPTYPE type = clip->clipType();
997         monitorItemEditing(false);
998         clip->setText(1, properties.value("description"));
999         monitorItemEditing(true);
1000 #ifdef USE_NEPOMUK
1001         if (KdenliveSettings::activate_nepomuk() && (type == AUDIO || type == VIDEO || type == AV || type == IMAGE || type == PLAYLIST)) {
1002             // Use Nepomuk system to store clip description
1003             Nepomuk::Resource f(clip->clipUrl().path());
1004             f.setDescription(properties.value("description"));
1005         }
1006 #endif
1007         emit projectModified();
1008     }
1009 }
1010
1011 void ProjectList::slotItemEdited(QTreeWidgetItem *item, int column)
1012 {
1013     if (item->type() == PROJECTSUBCLIPTYPE) {
1014         // this is a sub-item
1015         if (column == 1) {
1016             // user edited description
1017             SubProjectItem *sub = static_cast <SubProjectItem*>(item);
1018             ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
1019             EditClipCutCommand *command = new EditClipCutCommand(this, item->clipId(), sub->zone(), sub->zone(), sub->description(), sub->text(1), true);
1020             m_commandStack->push(command);
1021             //slotUpdateCutClipProperties(sub->clipId(), sub->zone(), sub->text(1), sub->text(1));
1022         }
1023         return;
1024     }
1025     if (item->type() == PROJECTFOLDERTYPE) {
1026         if (column == 0) {
1027             FolderProjectItem *folder = static_cast <FolderProjectItem*>(item);
1028             if (item->text(0) == folder->groupName()) return;
1029             editFolder(item->text(0), folder->groupName(), folder->clipId());
1030             folder->setGroupName(item->text(0));
1031             m_doc->clipManager()->addFolder(folder->clipId(), item->text(0));
1032             const int children = item->childCount();
1033             for (int i = 0; i < children; i++) {
1034                 ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
1035                 child->setProperty("groupname", item->text(0));
1036             }
1037         }
1038         return;
1039     }
1040
1041     ProjectItem *clip = static_cast <ProjectItem*>(item);
1042     if (column == 1) {
1043         if (clip->referencedClip()) {
1044             QMap <QString, QString> oldprops;
1045             QMap <QString, QString> newprops;
1046             oldprops["description"] = clip->referencedClip()->getProperty("description");
1047             newprops["description"] = item->text(1);
1048
1049             if (clip->clipType() == TEXT) {
1050                 // This is a text template clip, update the image
1051                 /*oldprops.insert("xmldata", clip->referencedClip()->getProperty("xmldata"));
1052                 newprops.insert("xmldata", generateTemplateXml(clip->referencedClip()->getProperty("xmltemplate"), item->text(2)).toString());*/
1053                 oldprops.insert("templatetext", clip->referencedClip()->getProperty("templatetext"));
1054                 newprops.insert("templatetext", item->text(1));
1055             }
1056             slotUpdateClipProperties(clip->clipId(), newprops);
1057             EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false);
1058             m_commandStack->push(command);
1059         }
1060     } else if (column == 0) {
1061         if (clip->referencedClip()) {
1062             QMap <QString, QString> oldprops;
1063             QMap <QString, QString> newprops;
1064             oldprops["name"] = clip->referencedClip()->getProperty("name");
1065             if (oldprops.value("name") != item->text(0)) {
1066                 newprops["name"] = item->text(0);
1067                 slotUpdateClipProperties(clip, newprops);
1068                 emit projectModified();
1069                 EditClipCommand *command = new EditClipCommand(this, clip->clipId(), oldprops, newprops, false);
1070                 m_commandStack->push(command);
1071                 QTimer::singleShot(100, this, SLOT(slotCheckScrolling()));
1072             }
1073         }
1074     }
1075 }
1076
1077 void ProjectList::slotCheckScrolling()
1078 {
1079     m_listView->scrollToItem(m_listView->currentItem());
1080 }
1081
1082 void ProjectList::slotContextMenu(const QPoint &pos, QTreeWidgetItem *item)
1083 {
1084     if (!m_menu) {
1085         kDebug()<<"Warning, menu was not created, something is wrong";
1086         return;
1087     }
1088     bool enable = item ? true : false;
1089     m_editButton->defaultAction()->setEnabled(enable);
1090     m_deleteButton->defaultAction()->setEnabled(enable);
1091     m_reloadAction->setEnabled(enable);
1092     m_extractAudioAction->setEnabled(enable);
1093     m_transcodeAction->setEnabled(enable);
1094     m_clipsActionsMenu->setEnabled(enable);
1095     if (enable) {
1096         ProjectItem *clip = NULL;
1097         if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
1098             clip = static_cast <ProjectItem*>(item->parent());
1099             m_extractAudioAction->setEnabled(false);
1100             m_transcodeAction->setEnabled(false);
1101             m_clipsActionsMenu->setEnabled(false);
1102             adjustProxyActions(clip);
1103         } else if (m_listView->currentItem()->type() == PROJECTCLIPTYPE) {
1104             clip = static_cast <ProjectItem*>(item);
1105             // Display relevant transcoding actions only
1106             adjustTranscodeActions(clip);
1107             adjustStabilizeActions(clip);
1108             adjustProxyActions(clip);
1109             // Display uses in timeline
1110             emit findInTimeline(clip->clipId());
1111         } else {
1112             m_extractAudioAction->setEnabled(false);
1113             m_transcodeAction->setEnabled(false);
1114             m_clipsActionsMenu->setEnabled(false);
1115         }
1116         if (clip && clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
1117             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
1118             m_openAction->setEnabled(true);
1119         } else if (clip && clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
1120             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
1121             m_openAction->setEnabled(true);
1122         } else {
1123             m_openAction->setEnabled(false);
1124         }
1125
1126     } else {
1127         m_openAction->setEnabled(false);
1128     }
1129     m_menu->popup(pos);
1130 }
1131
1132 void ProjectList::slotRemoveClip()
1133 {
1134     if (!m_listView->currentItem())
1135         return;
1136     QStringList ids;
1137     QMap <QString, QString> folderids;
1138     QList<QTreeWidgetItem *> selected = m_listView->selectedItems();
1139
1140     QUndoCommand *delCommand = new QUndoCommand();
1141     delCommand->setText(i18n("Delete Clip Zone"));
1142     for (int i = 0; i < selected.count(); i++) {
1143         if (selected.at(i)->type() == PROJECTSUBCLIPTYPE) {
1144             // subitem
1145             SubProjectItem *sub = static_cast <SubProjectItem *>(selected.at(i));
1146             ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
1147             new AddClipCutCommand(this, item->clipId(), sub->zone().x(), sub->zone().y(), sub->description(), false, true, delCommand);
1148         } else if (selected.at(i)->type() == PROJECTFOLDERTYPE) {
1149             // folder
1150             FolderProjectItem *folder = static_cast <FolderProjectItem *>(selected.at(i));
1151             folderids[folder->groupName()] = folder->clipId();
1152             int children = folder->childCount();
1153
1154             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)
1155                 return;
1156             for (int i = 0; i < children; ++i) {
1157                 ProjectItem *child = static_cast <ProjectItem *>(folder->child(i));
1158                 ids << child->clipId();
1159             }
1160         } else {
1161             ProjectItem *item = static_cast <ProjectItem *>(selected.at(i));
1162             ids << item->clipId();
1163             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->text(1)), i18n("Delete Clip"), KStandardGuiItem::yes(), KStandardGuiItem::no(), "DeleteAll") == KMessageBox::No) {
1164                 KMessageBox::enableMessage("DeleteAll");
1165                 return;
1166             }
1167         }
1168     }
1169     KMessageBox::enableMessage("DeleteAll");
1170     if (delCommand->childCount() == 0)
1171         delete delCommand;
1172     else
1173         m_commandStack->push(delCommand);
1174     emit deleteProjectClips(ids, folderids);
1175 }
1176
1177 void ProjectList::updateButtons() const
1178 {
1179     if (m_listView->topLevelItemCount() == 0) {
1180         m_deleteButton->defaultAction()->setEnabled(false);
1181         m_editButton->defaultAction()->setEnabled(false);
1182     } else {
1183         m_deleteButton->defaultAction()->setEnabled(true);
1184         if (!m_listView->currentItem())
1185             m_listView->setCurrentItem(m_listView->topLevelItem(0));
1186         QTreeWidgetItem *item = m_listView->currentItem();
1187         if (item && item->type() == PROJECTCLIPTYPE) {
1188             m_editButton->defaultAction()->setEnabled(true);
1189             m_openAction->setEnabled(true);
1190             m_reloadAction->setEnabled(true);
1191             m_transcodeAction->setEnabled(true);
1192             m_clipsActionsMenu->setEnabled(true);
1193             return;
1194         }
1195         else if (item && item->type() == PROJECTFOLDERTYPE && item->childCount() > 0) {
1196             m_editButton->defaultAction()->setEnabled(true);
1197         }
1198         else m_editButton->defaultAction()->setEnabled(false);
1199     }
1200     m_openAction->setEnabled(false);
1201     if (m_reloadAction) m_reloadAction->setEnabled(false);
1202     m_transcodeAction->setEnabled(false);
1203     m_clipsActionsMenu->setEnabled(false);
1204     if (m_proxyAction) m_proxyAction->setEnabled(false);
1205 }
1206
1207 void ProjectList::selectItemById(const QString &clipId)
1208 {
1209     ProjectItem *item = getItemById(clipId);
1210     if (item)
1211         m_listView->setCurrentItem(item);
1212 }
1213
1214
1215 void ProjectList::slotDeleteClip(const QString &clipId)
1216 {
1217     ProjectItem *item = getItemById(clipId);
1218     if (!item) {
1219         kDebug() << "/// Cannot find clip to delete";
1220         return;
1221     }
1222     deleteJobsForClip(clipId);
1223     m_listView->blockSignals(true);
1224     QTreeWidgetItem *newSelectedItem = m_listView->itemAbove(item);
1225     if (!newSelectedItem)
1226         newSelectedItem = m_listView->itemBelow(item);
1227     delete item;
1228     // Pause playing to prevent crash while deleting clip
1229     slotPauseMonitor();
1230     m_doc->clipManager()->deleteClip(clipId);
1231     m_listView->blockSignals(false);
1232     if (newSelectedItem) {
1233         m_listView->setCurrentItem(newSelectedItem);
1234     } else {
1235         updateButtons();
1236         emit clipSelected(NULL);
1237     }
1238 }
1239
1240
1241 void ProjectList::editFolder(const QString folderName, const QString oldfolderName, const QString &clipId)
1242 {
1243     EditFolderCommand *command = new EditFolderCommand(this, folderName, oldfolderName, clipId, false);
1244     m_commandStack->push(command);
1245     m_doc->setModified(true);
1246 }
1247
1248 void ProjectList::slotAddFolder(const QString &name)
1249 {
1250     AddFolderCommand *command = new AddFolderCommand(this, name.isEmpty() ? i18n("Folder") : name, QString::number(m_doc->clipManager()->getFreeFolderId()), true);
1251     m_commandStack->push(command);
1252 }
1253
1254 void ProjectList::slotAddFolder(const QString foldername, const QString &clipId, bool remove, bool edit)
1255 {
1256     if (remove) {
1257         FolderProjectItem *item = getFolderItemById(clipId);
1258         if (item) {
1259             m_doc->clipManager()->deleteFolder(clipId);
1260             QTreeWidgetItem *newSelectedItem = m_listView->itemAbove(item);
1261             if (!newSelectedItem)
1262                 newSelectedItem = m_listView->itemBelow(item);
1263             delete item;
1264             if (newSelectedItem)
1265                 m_listView->setCurrentItem(newSelectedItem);
1266             else
1267                 updateButtons();
1268         }
1269     } else {
1270         if (edit) {
1271             FolderProjectItem *item = getFolderItemById(clipId);
1272             if (item) {
1273                 m_listView->blockSignals(true);
1274                 item->setGroupName(foldername);
1275                 m_listView->blockSignals(false);
1276                 m_doc->clipManager()->addFolder(clipId, foldername);
1277                 const int children = item->childCount();
1278                 for (int i = 0; i < children; i++) {
1279                     ProjectItem *child = static_cast <ProjectItem *>(item->child(i));
1280                     child->setProperty("groupname", foldername);
1281                 }
1282             }
1283         } else {
1284             m_listView->blockSignals(true);
1285             m_listView->setCurrentItem(new FolderProjectItem(m_listView, QStringList() << foldername, clipId));
1286             m_doc->clipManager()->addFolder(clipId, foldername);
1287             m_listView->blockSignals(false);
1288             m_listView->editItem(m_listView->currentItem(), 0);
1289         }
1290         updateButtons();
1291     }
1292     m_doc->setModified(true);
1293 }
1294
1295
1296
1297 void ProjectList::deleteProjectFolder(QMap <QString, QString> map)
1298 {
1299     QMapIterator<QString, QString> i(map);
1300     QUndoCommand *delCommand = new QUndoCommand();
1301     delCommand->setText(i18n("Delete Folder"));
1302     while (i.hasNext()) {
1303         i.next();
1304         new AddFolderCommand(this, i.key(), i.value(), false, delCommand);
1305     }
1306     if (delCommand->childCount() > 0) m_commandStack->push(delCommand);
1307     else delete delCommand;
1308 }
1309
1310 void ProjectList::slotAddClip(DocClipBase *clip, bool getProperties)
1311 {
1312     //m_listView->setEnabled(false);
1313     const QString parent = clip->getProperty("groupid");
1314     QString groupName = clip->getProperty("groupname");
1315     QSize pixelSize((int)(m_listView->iconSize().height()  * m_render->dar()), m_listView->iconSize().height());
1316     ProjectItem *item = NULL;
1317     monitorItemEditing(false);
1318     if (!parent.isEmpty()) {
1319         FolderProjectItem *parentitem = getFolderItemById(parent);
1320         if (!parentitem) {
1321             QStringList text;
1322             //kDebug() << "Adding clip to new group: " << groupName;
1323             if (groupName.isEmpty()) groupName = i18n("Folder");
1324             text << groupName;
1325             parentitem = new FolderProjectItem(m_listView, text, parent);
1326         }
1327
1328         if (parentitem)
1329             item = new ProjectItem(parentitem, clip, pixelSize);
1330     }
1331     if (item == NULL) {
1332         item = new ProjectItem(m_listView, clip, pixelSize);
1333     }
1334     if (item->data(0, DurationRole).isNull()) item->setData(0, DurationRole, i18n("Loading"));
1335     connect(clip, SIGNAL(createProxy(const QString &)), this, SLOT(slotCreateProxy(const QString &)));
1336     connect(clip, SIGNAL(abortProxy(const QString &, const QString &)), this, SLOT(slotAbortProxy(const QString, const QString)));
1337       
1338     if (getProperties) {
1339         //item->setFlags(Qt::ItemIsSelectable);
1340         m_listView->processLayout();
1341         QDomElement e = clip->toXML().cloneNode().toElement();
1342         if (!groupName.isEmpty()) {
1343             e.setAttribute("groupId", parent);
1344             e.setAttribute("group", groupName);
1345         }
1346         e.removeAttribute("file_hash");
1347         resetThumbsProducer(clip);
1348         m_render->getFileProperties(e, clip->getId(), m_listView->iconSize().height(), true);
1349     }
1350     // WARNING: code below triggers unnecessary reload of all proxy clips on document loading... is it useful in some cases?
1351     /*else if (item->hasProxy() && !item->isJobRunning()) {
1352         slotCreateProxy(clip->getId());
1353     }*/
1354     
1355     KUrl url = clip->fileURL();
1356 #ifdef USE_NEPOMUK
1357     if (!url.isEmpty() && KdenliveSettings::activate_nepomuk() && clip->getProperty("description").isEmpty()) {
1358         // if file has Nepomuk comment, use it
1359         Nepomuk::Resource f(url.path());
1360         QString annotation = f.description();
1361         if (!annotation.isEmpty()) {
1362             item->setText(1, annotation);
1363             clip->setProperty("description", annotation);
1364         }
1365         item->setText(2, QString::number(f.rating()));
1366     }
1367 #endif
1368
1369     // Add info to date column
1370     QFileInfo fileInfo(url.path());
1371     if (fileInfo.exists()) {
1372         item->setText(3, fileInfo.lastModified().toString(QString("yyyy/MM/dd hh:mm:ss")));
1373     }
1374
1375     // Add cut zones
1376     QList <CutZoneInfo> cuts = clip->cutZones();
1377     if (!cuts.isEmpty()) {
1378         for (int i = 0; i < cuts.count(); i++) {
1379             SubProjectItem *sub = new SubProjectItem(m_render->dar(), item, cuts.at(i).zone.x(), cuts.at(i).zone.y(), cuts.at(i).description);
1380             if (!clip->getClipHash().isEmpty()) {
1381                 QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + '#' + QString::number(cuts.at(i).zone.x()) + ".png";
1382                 if (QFile::exists(cachedPixmap)) {
1383                     QPixmap pix(cachedPixmap);
1384                     if (pix.isNull())
1385                         KIO::NetAccess::del(KUrl(cachedPixmap), this);
1386                     sub->setData(0, Qt::DecorationRole, pix);
1387                 }
1388             }
1389         }
1390     }
1391     monitorItemEditing(true);
1392     updateButtons();
1393 }
1394
1395 void ProjectList::slotGotProxy(const QString &proxyPath)
1396 {
1397     if (proxyPath.isEmpty() || m_abortAllJobs) return;
1398     QTreeWidgetItemIterator it(m_listView);
1399     ProjectItem *item;
1400
1401     while (*it && !m_closing) {
1402         if ((*it)->type() == PROJECTCLIPTYPE) {
1403             item = static_cast <ProjectItem *>(*it);
1404             if (item->referencedClip()->getProperty("proxy") == proxyPath)
1405                 slotGotProxy(item);
1406         }
1407         ++it;
1408     }
1409 }
1410
1411 void ProjectList::slotGotProxyForId(const QString id)
1412 {
1413     if (m_closing) return;
1414     ProjectItem *item = getItemById(id);
1415     slotGotProxy(item);
1416 }
1417
1418 void ProjectList::slotGotProxy(ProjectItem *item)
1419 {
1420     if (item == NULL) return;
1421     DocClipBase *clip = item->referencedClip();
1422     if (!clip || !clip->isClean() || m_render->isProcessing(item->clipId())) {
1423         // Clip is being reprocessed, abort
1424         kDebug()<<"//// TRYING TO PROXY: "<<item->clipId()<<", but it is busy";
1425         return;
1426     }
1427     
1428     // Proxy clip successfully created
1429     QDomElement e = clip->toXML().cloneNode().toElement();
1430
1431     // Make sure we get the correct producer length if it was adjusted in timeline
1432     CLIPTYPE t = item->clipType();
1433     if (t == COLOR || t == IMAGE || t == SLIDESHOW || t == TEXT) {
1434         int length = QString(clip->producerProperty("length")).toInt();
1435         if (length > 0 && !e.hasAttribute("length")) {
1436             e.setAttribute("length", length);
1437         }
1438     }
1439     resetThumbsProducer(clip);
1440     m_render->getFileProperties(e, clip->getId(), m_listView->iconSize().height(), true);
1441 }
1442
1443 void ProjectList::slotResetProjectList()
1444 {
1445     m_listView->blockSignals(true);
1446     m_abortAllJobs = true;
1447     for (int i = 0; i < m_jobList.count(); i++) {
1448         m_jobList.at(i)->setStatus(JOBABORTED);
1449     }
1450     m_closing = true;
1451     m_jobThreads.waitForFinished();
1452     m_jobThreads.clearFutures();
1453     m_thumbnailQueue.clear();
1454     if (!m_jobList.isEmpty()) qDeleteAll(m_jobList);
1455     m_jobList.clear();
1456     m_listView->clear();
1457     m_listView->setEnabled(true);
1458     emit clipSelected(NULL);
1459     m_refreshed = false;
1460     m_allClipsProcessed = false;
1461     m_abortAllJobs = false;
1462     m_closing = false;
1463     m_listView->blockSignals(false);
1464 }
1465
1466 void ProjectList::slotUpdateClip(const QString &id)
1467 {
1468     ProjectItem *item = getItemById(id);
1469     monitorItemEditing(false);
1470     if (item) item->setData(0, UsageRole, QString::number(item->numReferences()));
1471     monitorItemEditing(true);
1472 }
1473
1474 void ProjectList::getCachedThumbnail(ProjectItem *item)
1475 {
1476     if (!item) return;
1477     DocClipBase *clip = item->referencedClip();
1478     if (!clip) {
1479         return;
1480     }
1481     QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + ".png";
1482     if (QFile::exists(cachedPixmap)) {
1483         QPixmap pix(cachedPixmap);
1484         if (pix.isNull()) {
1485             KIO::NetAccess::del(KUrl(cachedPixmap), this);
1486             requestClipThumbnail(item->clipId());
1487         }
1488         else {
1489             QPixmap result = roundedPixmap(pix);
1490             processThumbOverlays(item, result);
1491             item->setPixmap(result);
1492         }
1493     }
1494     else {
1495         requestClipThumbnail(item->clipId());
1496     }
1497 }
1498
1499 QPixmap ProjectList::roundedPixmap(QImage img)
1500 {
1501     QPixmap pix(img.width(), img.height());
1502     pix.fill(Qt::transparent);
1503     QPainter p(&pix);
1504     p.setRenderHint(QPainter::Antialiasing, true);
1505     QPainterPath path;
1506     path.addRoundedRect(0.5, 0.5, pix.width() - 1, pix.height() - 1, 2, 2);
1507     p.setClipPath(path);
1508     p.drawImage(0, 0, img);
1509     p.end();
1510     return pix;
1511 }
1512
1513 QPixmap ProjectList::roundedPixmap(QPixmap source)
1514 {
1515     QPixmap pix(source.width(), source.height());
1516     pix.fill(Qt::transparent);
1517     QPainter p(&pix);
1518     p.setRenderHint(QPainter::Antialiasing, true);
1519     QPainterPath path;
1520     path.addRoundedRect(0.5, 0.5, pix.width() - 1, pix.height() - 1, 2, 2);
1521     p.setClipPath(path);
1522     p.drawPixmap(0, 0, source);
1523     p.end();
1524     return pix;
1525 }
1526
1527 void ProjectList::getCachedThumbnail(SubProjectItem *item)
1528 {
1529     if (!item) return;
1530     ProjectItem *parentItem = static_cast <ProjectItem *>(item->parent());
1531     if (!parentItem) return;
1532     DocClipBase *clip = parentItem->referencedClip();
1533     if (!clip) return;
1534     int pos = item->zone().x();
1535     QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + '#' + QString::number(pos) + ".png";
1536     if (QFile::exists(cachedPixmap)) {
1537         QPixmap pix(cachedPixmap);
1538         if (pix.isNull()) {
1539             KIO::NetAccess::del(KUrl(cachedPixmap), this);
1540             requestClipThumbnail(parentItem->clipId() + '#' + QString::number(pos));
1541         }
1542         else item->setData(0, Qt::DecorationRole, pix);
1543     }
1544     else requestClipThumbnail(parentItem->clipId() + '#' + QString::number(pos));
1545 }
1546
1547 void ProjectList::updateAllClips(bool displayRatioChanged, bool fpsChanged, QStringList brokenClips)
1548 {
1549     if (!m_allClipsProcessed) m_listView->setEnabled(false);
1550     m_listView->setSortingEnabled(false);
1551     QTreeWidgetItemIterator it(m_listView);
1552     DocClipBase *clip;
1553     ProjectItem *item;
1554     monitorItemEditing(false);
1555     int height = m_listView->iconSize().height();
1556     int width = (int)(height  * m_render->dar());
1557     QPixmap missingPixmap = QPixmap(width, height);
1558     missingPixmap.fill(Qt::transparent);
1559     KIcon icon("dialog-close");
1560     QPainter p(&missingPixmap);
1561     p.drawPixmap(3, 3, icon.pixmap(width - 6, height - 6));
1562     p.end();
1563     
1564     int max = m_doc->clipManager()->clipsCount();
1565     max = qMax(1, max);
1566     int ct = 0;
1567
1568     while (*it) {
1569         emit displayMessage(i18n("Loading thumbnails"), (int)(100 *(max - ct++) / max));
1570         if ((*it)->type() == PROJECTSUBCLIPTYPE) {
1571             // subitem
1572             SubProjectItem *sub = static_cast <SubProjectItem *>(*it);
1573             if (displayRatioChanged) {
1574                 item = static_cast <ProjectItem *>((*it)->parent());
1575                 requestClipThumbnail(item->clipId() + '#' + QString::number(sub->zone().x()));
1576             }
1577             else if (sub->data(0, Qt::DecorationRole).isNull()) {
1578                 getCachedThumbnail(sub);
1579             }
1580             ++it;
1581             continue;
1582         } else if ((*it)->type() == PROJECTFOLDERTYPE) {
1583             // folder
1584             ++it;
1585             continue;
1586         } else {
1587             item = static_cast <ProjectItem *>(*it);
1588             clip = item->referencedClip();
1589             if (clip->getProducer() == NULL) {
1590                 bool replace = false;
1591                 if (brokenClips.contains(item->clipId())) {
1592                     // if this is a proxy clip, disable proxy
1593                     item->setConditionalJobStatus(NOJOB, PROXYJOB);
1594                     discardJobs(item->clipId(), PROXYJOB);
1595                     clip->setProperty("proxy", "-");
1596                     replace = true;
1597                 }
1598                 if (clip->isPlaceHolder() == false && !hasPendingJob(item, PROXYJOB)) {
1599                     QDomElement xml = clip->toXML();
1600                     getCachedThumbnail(item);
1601                     if (fpsChanged) {
1602                         xml.removeAttribute("out");
1603                         xml.removeAttribute("file_hash");
1604                         xml.removeAttribute("proxy_out");
1605                     }
1606                     if (!replace) replace = xml.attribute("_replaceproxy") == "1";
1607                     xml.removeAttribute("_replaceproxy");
1608                     if (replace) {
1609                         resetThumbsProducer(clip);
1610                         m_render->getFileProperties(xml, clip->getId(), m_listView->iconSize().height(), replace);
1611                     }
1612                     else if (item->numReferences() > 0) {
1613                         // In some cases, like slowmotion clips, the producer is not loaded automatically be MLT
1614                         m_render->getFileProperties(xml, clip->getId(), m_listView->iconSize().height(), replace);
1615                     }
1616                 }
1617                 else if (clip->isPlaceHolder()) {
1618                     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
1619                     if (!item->hasPixmap()) {
1620                         item->setPixmap(missingPixmap);
1621                     }
1622                     else {
1623                         QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
1624                         QPainter p(&pixmap);
1625                         p.drawPixmap(3, 3, KIcon("dialog-close").pixmap(pixmap.width() - 6, pixmap.height() - 6));
1626                         p.end();
1627                         item->setPixmap(pixmap);
1628                     }
1629                 }
1630             } else {              
1631                 if (displayRatioChanged) {
1632                     requestClipThumbnail(clip->getId());
1633                 }
1634                 else if (!item->hasPixmap()) {
1635                     getCachedThumbnail(item);
1636                 }
1637                 if (item->data(0, DurationRole).toString().isEmpty()) {
1638                     item->changeDuration(clip->getProducer()->get_playtime());
1639                 }
1640                 if (clip->isPlaceHolder()) {
1641                     QPixmap pixmap = qVariantValue<QPixmap>(item->data(0, Qt::DecorationRole));
1642                     if (pixmap.isNull()) {
1643                         pixmap = QPixmap(width, height);
1644                         pixmap.fill(Qt::transparent);
1645                     }
1646                     QPainter p(&pixmap);
1647                     p.drawPixmap(3, 3, KIcon("dialog-close").pixmap(pixmap.width() - 6, pixmap.height() - 6));
1648                     p.end();
1649                     item->setPixmap(pixmap);
1650                 }
1651                 else if (clip->getProperty("_replaceproxy") == "1") {
1652                     clip->setProperty("_replaceproxy", QString());
1653                     slotCreateProxy(clip->getId());
1654                 }
1655             }
1656             item->setData(0, UsageRole, QString::number(item->numReferences()));
1657         }
1658         ++it;
1659     }
1660
1661     m_listView->setSortingEnabled(true);
1662     m_allClipsProcessed = true;
1663     if (m_render->processingItems() == 0) {
1664        monitorItemEditing(true);
1665        slotProcessNextThumbnail();
1666     }
1667 }
1668
1669 // static
1670 QString ProjectList::getExtensions()
1671 {
1672     // Build list of mime types
1673     QStringList mimeTypes = QStringList() << "application/x-kdenlive" << "application/x-kdenlivetitle" << "video/mlt-playlist" << "text/plain";
1674
1675     // Video mimes
1676     mimeTypes <<  "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" << "video/3gpp" << "video/mp2t";
1677
1678     // Audio mimes
1679     mimeTypes << "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" << "audio/ac3";
1680
1681     // Image mimes
1682     mimeTypes << "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";
1683
1684     QString allExtensions;
1685     foreach(const QString & mimeType, mimeTypes) {
1686         KMimeType::Ptr mime(KMimeType::mimeType(mimeType));
1687         if (mime) {
1688             allExtensions.append(mime->patterns().join(" "));
1689             allExtensions.append(' ');
1690         }
1691     }
1692     return allExtensions.simplified();
1693 }
1694
1695 void ProjectList::slotAddClip(const QString url, const QString &groupName, const QString &groupId)
1696 {
1697     kDebug()<<"// Adding clip: "<<url;
1698     QList <QUrl> list;
1699     list.append(url);
1700     slotAddClip(list, groupName, groupId);
1701 }
1702
1703 void ProjectList::slotAddClip(const QList <QUrl> givenList, const QString &groupName, const QString &groupId)
1704 {
1705     if (!m_commandStack)
1706         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1707
1708     KUrl::List list;
1709     if (givenList.isEmpty()) {
1710         QString allExtensions = getExtensions();
1711         const QString dialogFilter = allExtensions + ' ' + QLatin1Char('|') + i18n("All Supported Files") + "\n* " + QLatin1Char('|') + i18n("All Files");
1712         QCheckBox *b = new QCheckBox(i18n("Import image sequence"));
1713         b->setChecked(KdenliveSettings::autoimagesequence());
1714         QCheckBox *c = new QCheckBox(i18n("Transparent background for images"));
1715         c->setChecked(KdenliveSettings::autoimagetransparency());
1716         QFrame *f = new QFrame;
1717         f->setFrameShape(QFrame::NoFrame);
1718         QHBoxLayout *l = new QHBoxLayout;
1719         l->addWidget(b);
1720         l->addWidget(c);
1721         l->addStretch(5);
1722         f->setLayout(l);
1723         QPointer<KFileDialog> d = new KFileDialog(KUrl("kfiledialog:///clipfolder"), dialogFilter, kapp->activeWindow(), f);
1724         d->setOperationMode(KFileDialog::Opening);
1725         d->setMode(KFile::Files);
1726         if (d->exec() == QDialog::Accepted) {
1727             KdenliveSettings::setAutoimagetransparency(c->isChecked());
1728         }
1729         list = d->selectedUrls();
1730         if (b->isChecked() && list.count() == 1) {
1731             // Check for image sequence
1732             KUrl url = list.at(0);
1733             QString fileName = url.fileName().section('.', 0, -2);
1734             if (fileName.at(fileName.size() - 1).isDigit()) {
1735                 KFileItem item(KFileItem::Unknown, KFileItem::Unknown, url);
1736                 if (item.mimetype().startsWith("image")) {
1737                     // import as sequence if we found more than one image in the sequence
1738                     QStringList list;
1739                     QString pattern = SlideshowClip::selectedPath(url.path(), false, QString(), &list);
1740                     int count = list.count();
1741                     if (count > 1) {
1742                         delete d;
1743                         QStringList groupInfo = getGroup();
1744
1745                         // get image sequence base name
1746                         while (fileName.at(fileName.size() - 1).isDigit()) {
1747                             fileName.chop(1);
1748                         }
1749                         QMap <QString, QString> properties;
1750                         properties.insert("name", fileName);
1751                         properties.insert("resource", pattern);
1752                         properties.insert("in", "0");
1753                         QString duration = m_timecode.reformatSeparators(KdenliveSettings::sequence_duration());
1754                         properties.insert("out", QString::number(m_doc->getFramePos(duration) * count));
1755                         properties.insert("ttl", QString::number(m_doc->getFramePos(duration)));
1756                         properties.insert("loop", QString::number(false));
1757                         properties.insert("crop", QString::number(false));
1758                         properties.insert("fade", QString::number(false));
1759                         properties.insert("luma_duration", QString::number(m_doc->getFramePos(m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))))));
1760                         m_doc->slotCreateSlideshowClipFile(properties, groupInfo.at(0), groupInfo.at(1));
1761                         return;
1762                     }
1763                 }
1764             }
1765         }
1766         delete d;
1767     } else {
1768         for (int i = 0; i < givenList.count(); i++)
1769             list << givenList.at(i);
1770     }
1771     QList <KUrl::List> foldersList;
1772
1773     foreach(const KUrl & file, list) {
1774         // Check there is no folder here
1775         KMimeType::Ptr type = KMimeType::findByUrl(file);
1776         if (type->is("inode/directory")) {
1777             // user dropped a folder, import its files
1778             list.removeAll(file);
1779             QDir dir(file.path());
1780             QStringList result = dir.entryList(QDir::Files);
1781             KUrl::List folderFiles;
1782             folderFiles << file;
1783             foreach(const QString & path, result) {
1784                 KUrl newFile = file;
1785                 newFile.addPath(path);
1786                 folderFiles.append(newFile);
1787             }
1788             if (folderFiles.count() > 1) foldersList.append(folderFiles);
1789         }
1790     }
1791
1792     if (givenList.isEmpty() && !list.isEmpty()) {
1793         QStringList groupInfo = getGroup();
1794         QMap <QString, QString> data;
1795         data.insert("group", groupInfo.at(0));
1796         data.insert("groupId", groupInfo.at(1));
1797         m_doc->slotAddClipList(list, data);
1798     } else if (!list.isEmpty()) {
1799         QMap <QString, QString> data;
1800         data.insert("group", groupName);
1801         data.insert("groupId", groupId);
1802         m_doc->slotAddClipList(list, data);
1803     }
1804     
1805     if (!foldersList.isEmpty()) {
1806         // create folders 
1807         for (int i = 0; i < foldersList.count(); i++) {
1808             KUrl::List urls = foldersList.at(i);
1809             KUrl folderUrl = urls.takeFirst();
1810             QString folderName = folderUrl.fileName();
1811             FolderProjectItem *folder = NULL;
1812             if (!folderName.isEmpty()) {
1813                 folder = getFolderItemByName(folderName);
1814                 if (folder == NULL) {
1815                     slotAddFolder(folderName);
1816                     folder = getFolderItemByName(folderName);
1817                 }
1818             }
1819             if (folder) {
1820                 QMap <QString, QString> data;
1821                 data.insert("group", folder->groupName());
1822                 data.insert("groupId", folder->clipId());
1823                 m_doc->slotAddClipList(urls, data);
1824             }
1825             else m_doc->slotAddClipList(urls);
1826         }
1827     }
1828 }
1829
1830 void ProjectList::slotRemoveInvalidClip(const QString &id, bool replace)
1831 {
1832     ProjectItem *item = getItemById(id);
1833     m_thumbnailQueue.removeAll(id);
1834     if (item) {
1835         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1836         const QString path = item->referencedClip()->fileURL().path();
1837         if (item->referencedClip()->isPlaceHolder()) replace = false;
1838         if (!path.isEmpty()) {
1839             if (m_invalidClipDialog) {
1840                 m_invalidClipDialog->addClip(id, path);
1841                 return;
1842             }
1843             else {
1844                 if (replace)
1845                     m_invalidClipDialog = new InvalidDialog(i18n("Invalid clip"),  i18n("Clip <b>%1</b><br />is invalid, will be removed from project.", QString()), replace, kapp->activeWindow());
1846                 else {
1847                     m_invalidClipDialog = new InvalidDialog(i18n("Invalid clip"),  i18n("Clip <b>%1</b><br />is missing or invalid. Remove it from project?", QString()), replace, kapp->activeWindow());
1848                 }
1849                 m_invalidClipDialog->addClip(id, path);
1850                 int result = m_invalidClipDialog->exec();
1851                 if (result == KDialog::Yes) replace = true;
1852             }
1853         }
1854         if (m_invalidClipDialog) {
1855             if (replace)
1856                 emit deleteProjectClips(m_invalidClipDialog->getIds(), QMap <QString, QString>());
1857             delete m_invalidClipDialog;
1858             m_invalidClipDialog = NULL;
1859         }
1860         
1861     }
1862 }
1863
1864 void ProjectList::slotRemoveInvalidProxy(const QString &id, bool durationError)
1865 {
1866     ProjectItem *item = getItemById(id);
1867     if (item) {
1868         kDebug()<<"// Proxy for clip "<<id<<" is invalid, delete";
1869         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1870         if (durationError) {
1871             kDebug() << "Proxy duration is wrong, try changing transcoding parameters.";
1872             emit displayMessage(i18n("Proxy clip unusable (duration is different from original)."), -2, ErrorMessage);
1873         }
1874         slotUpdateJobStatus(item, PROXYJOB, JOBCRASHED, i18n("Failed to create proxy for %1. check parameters", item->text(0)), "project_settings");
1875         QString path = item->referencedClip()->getProperty("proxy");
1876         KUrl proxyFolder(m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/");
1877
1878         //Security check: make sure the invalid proxy file is in the proxy folder
1879         if (proxyFolder.isParentOf(KUrl(path))) {
1880             QFile::remove(path);
1881         }
1882         if (item->referencedClip()->getProducer() == NULL) {
1883             // Clip has no valid producer, request it
1884             slotProxyCurrentItem(false, item);
1885         }
1886         else {
1887             // refresh thumbs producer
1888             item->referencedClip()->reloadThumbProducer();
1889         }
1890     }
1891     m_thumbnailQueue.removeAll(id);
1892 }
1893
1894 void ProjectList::slotAddColorClip()
1895 {
1896     if (!m_commandStack)
1897         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1898
1899     QPointer<QDialog> dia = new QDialog(this);
1900     Ui::ColorClip_UI dia_ui;
1901     dia_ui.setupUi(dia);
1902     dia->setWindowTitle(i18n("Color Clip"));
1903     dia_ui.clip_name->setText(i18n("Color Clip"));
1904
1905     TimecodeDisplay *t = new TimecodeDisplay(m_timecode);
1906     t->setValue(KdenliveSettings::color_duration());
1907     dia_ui.clip_durationBox->addWidget(t);
1908     dia_ui.clip_color->setColor(KdenliveSettings::colorclipcolor());
1909
1910     if (dia->exec() == QDialog::Accepted) {
1911         QString color = dia_ui.clip_color->color().name();
1912         KdenliveSettings::setColorclipcolor(color);
1913         color = color.replace(0, 1, "0x") + "ff";
1914         QStringList groupInfo = getGroup();
1915         m_doc->slotCreateColorClip(dia_ui.clip_name->text(), color, m_timecode.getTimecode(t->gentime()), groupInfo.at(0), groupInfo.at(1));
1916     }
1917     delete t;
1918     delete dia;
1919 }
1920
1921
1922 void ProjectList::slotAddSlideshowClip()
1923 {
1924     if (!m_commandStack)
1925         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1926
1927     SlideshowClip *dia = new SlideshowClip(m_timecode, this);
1928
1929     if (dia->exec() == QDialog::Accepted) {
1930         QStringList groupInfo = getGroup();
1931         
1932         QMap <QString, QString> properties;
1933         properties.insert("name", dia->clipName());
1934         properties.insert("resource", dia->selectedPath());
1935         properties.insert("in", "0");
1936         properties.insert("out", QString::number(m_doc->getFramePos(dia->clipDuration()) * dia->imageCount()));
1937         properties.insert("ttl", QString::number(m_doc->getFramePos(dia->clipDuration())));
1938         properties.insert("loop", QString::number(dia->loop()));
1939         properties.insert("crop", QString::number(dia->crop()));
1940         properties.insert("fade", QString::number(dia->fade()));
1941         properties.insert("luma_duration", dia->lumaDuration());
1942         properties.insert("luma_file", dia->lumaFile());
1943         properties.insert("softness", QString::number(dia->softness()));
1944         properties.insert("animation", dia->animation());
1945         
1946         m_doc->slotCreateSlideshowClipFile(properties, groupInfo.at(0), groupInfo.at(1));
1947     }
1948     delete dia;
1949 }
1950
1951 void ProjectList::slotAddTitleClip()
1952 {
1953     QStringList groupInfo = getGroup();
1954     m_doc->slotCreateTextClip(groupInfo.at(0), groupInfo.at(1));
1955 }
1956
1957 void ProjectList::slotAddTitleTemplateClip()
1958 {
1959     if (!m_commandStack)
1960         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1961
1962     QStringList groupInfo = getGroup();
1963
1964     // Get the list of existing templates
1965     QStringList filter;
1966     filter << "*.kdenlivetitle";
1967     const QString path = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
1968     QStringList templateFiles = QDir(path).entryList(filter, QDir::Files);
1969
1970     QPointer<QDialog> dia = new QDialog(this);
1971     Ui::TemplateClip_UI dia_ui;
1972     dia_ui.setupUi(dia);
1973     for (int i = 0; i < templateFiles.size(); ++i)
1974         dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), path + templateFiles.at(i));
1975
1976     if (!templateFiles.isEmpty())
1977         dia_ui.buttonBox->button(QDialogButtonBox::Ok)->setFocus();
1978     dia_ui.template_list->fileDialog()->setFilter("application/x-kdenlivetitle");
1979     //warning: setting base directory doesn't work??
1980     KUrl startDir(path);
1981     dia_ui.template_list->fileDialog()->setUrl(startDir);
1982     dia_ui.text_box->setHidden(true);
1983     if (dia->exec() == QDialog::Accepted) {
1984         QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
1985         if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
1986         // Create a cloned template clip
1987         m_doc->slotCreateTextTemplateClip(groupInfo.at(0), groupInfo.at(1), KUrl(textTemplate));
1988     }
1989     delete dia;
1990 }
1991
1992 QStringList ProjectList::getGroup() const
1993 {
1994     QStringList result;
1995     QTreeWidgetItem *item = m_listView->currentItem();
1996     while (item && item->type() != PROJECTFOLDERTYPE)
1997         item = item->parent();
1998
1999     if (item) {
2000         FolderProjectItem *folder = static_cast <FolderProjectItem *>(item);
2001         result << folder->groupName() << folder->clipId();
2002     } else {
2003         result << QString() << QString();
2004     }
2005     return result;
2006 }
2007
2008 void ProjectList::setDocument(KdenliveDoc *doc)
2009 {
2010     m_listView->blockSignals(true);
2011     m_abortAllJobs = true;
2012     for (int i = 0; i < m_jobList.count(); i++) {
2013         m_jobList.at(i)->setStatus(JOBABORTED);
2014     }
2015     m_closing = true;
2016     m_jobThreads.waitForFinished();
2017     m_jobThreads.clearFutures();
2018     m_thumbnailQueue.clear();
2019     m_listView->clear();
2020     
2021     m_listView->setSortingEnabled(false);
2022     emit clipSelected(NULL);
2023     m_refreshed = false;
2024     m_allClipsProcessed = false;
2025     m_fps = doc->fps();
2026     m_timecode = doc->timecode();
2027     m_commandStack = doc->commandStack();
2028     m_doc = doc;
2029     m_abortAllJobs = false;
2030     m_closing = false;
2031
2032     QMap <QString, QString> flist = doc->clipManager()->documentFolderList();
2033     QStringList openedFolders = doc->getExpandedFolders();
2034     QMapIterator<QString, QString> f(flist);
2035     while (f.hasNext()) {
2036         f.next();
2037         FolderProjectItem *folder = new FolderProjectItem(m_listView, QStringList() << f.value(), f.key());
2038         folder->setExpanded(openedFolders.contains(f.key()));
2039     }
2040
2041     QList <DocClipBase*> list = doc->clipManager()->documentClipList();
2042     if (list.isEmpty()) {
2043         // blank document
2044         m_refreshed = true;
2045         m_allClipsProcessed = true;
2046     }
2047     for (int i = 0; i < list.count(); i++)
2048         slotAddClip(list.at(i), false);
2049
2050     m_listView->blockSignals(false);
2051     connect(m_doc->clipManager(), SIGNAL(reloadClip(const QString &)), this, SLOT(slotReloadClip(const QString &)));
2052     connect(m_doc->clipManager(), SIGNAL(modifiedClip(const QString &)), this, SLOT(slotModifiedClip(const QString &)));
2053     connect(m_doc->clipManager(), SIGNAL(missingClip(const QString &)), this, SLOT(slotMissingClip(const QString &)));
2054     connect(m_doc->clipManager(), SIGNAL(availableClip(const QString &)), this, SLOT(slotAvailableClip(const QString &)));
2055     connect(m_doc->clipManager(), SIGNAL(checkAllClips(bool, bool, QStringList)), this, SLOT(updateAllClips(bool, bool, QStringList)));
2056     connect(m_doc->clipManager(), SIGNAL(thumbReady(const QString &, int, QImage)), this, SLOT(slotSetThumbnail(const QString &, int, QImage)));
2057 }
2058
2059 void ProjectList::slotSetThumbnail(const QString &id, int framePos, QImage img)
2060 {
2061     QString fullid = id + '#' + QString::number(framePos);
2062     ProjectItem *pItem = NULL;
2063     QTreeWidgetItem *item = getAnyItemById(fullid);
2064     if (item && item->parent()) pItem = static_cast <ProjectItem *>(item->parent());
2065     if (!item && framePos == 0) pItem = getItemById(id);
2066     if (!item && !pItem) return;
2067     if (item) {
2068         if (item->type() == PROJECTCLIPTYPE) static_cast<ProjectItem*>(item)->setPixmap(QPixmap::fromImage(img));
2069         else item->setData(0, Qt::DecorationRole, QPixmap::fromImage(img));
2070     }
2071     else if (pItem) pItem->setPixmap(QPixmap::fromImage(img));
2072     if (pItem) {
2073         QString hash = pItem->getClipHash();
2074         if (!hash.isEmpty()) m_doc->cacheImage(hash + '#' + QString::number(framePos), img);
2075     }
2076 }
2077
2078 QList <DocClipBase*> ProjectList::documentClipList() const
2079 {
2080     if (m_doc == NULL)
2081         return QList <DocClipBase*> ();
2082
2083     return m_doc->clipManager()->documentClipList();
2084 }
2085
2086 QDomElement ProjectList::producersList()
2087 {
2088     QDomDocument doc;
2089     QDomElement prods = doc.createElement("producerlist");
2090     doc.appendChild(prods);
2091     QTreeWidgetItemIterator it(m_listView);
2092     while (*it) {
2093         if ((*it)->type() != PROJECTCLIPTYPE) {
2094             // subitem
2095             ++it;
2096             continue;
2097         }
2098         prods.appendChild(doc.importNode(((ProjectItem *)(*it))->toXml(), true));
2099         ++it;
2100     }
2101     return prods;
2102 }
2103
2104 void ProjectList::slotCheckForEmptyQueue()
2105 {
2106     if (m_render->processingItems() == 0 && m_thumbnailQueue.isEmpty()) {
2107         if (!m_refreshed && m_allClipsProcessed) {
2108             m_refreshed = true;
2109             m_listView->setEnabled(true);
2110             slotClipSelected();
2111             QTimer::singleShot(500, this, SIGNAL(loadingIsOver()));
2112             emit displayMessage(QString(), -1);
2113         }
2114         updateButtons();
2115     } else if (!m_refreshed) {
2116         QTimer::singleShot(300, this, SLOT(slotCheckForEmptyQueue()));
2117     }
2118 }
2119
2120
2121 void ProjectList::requestClipThumbnail(const QString id)
2122 {
2123     if (!m_thumbnailQueue.contains(id)) m_thumbnailQueue.append(id);
2124     slotProcessNextThumbnail();
2125 }
2126
2127 void ProjectList::resetThumbsProducer(DocClipBase *clip)
2128 {
2129     if (!clip) return;
2130     clip->clearThumbProducer();
2131     QString id = clip->getId();
2132     m_thumbnailQueue.removeAll(id);
2133 }
2134
2135 void ProjectList::slotProcessNextThumbnail()
2136 {
2137     if (m_render->processingItems() > 0) {
2138         return;
2139     }
2140     if (m_thumbnailQueue.isEmpty()) {
2141         slotCheckForEmptyQueue();
2142         return;
2143     }
2144     int max = m_doc->clipManager()->clipsCount();
2145     emit displayMessage(i18n("Loading thumbnails"), (int)(100 *(max - m_thumbnailQueue.count()) / max));
2146     slotRefreshClipThumbnail(m_thumbnailQueue.takeFirst(), false);
2147 }
2148
2149 void ProjectList::slotRefreshClipThumbnail(const QString &clipId, bool update)
2150 {
2151     QTreeWidgetItem *item = getAnyItemById(clipId);
2152     if (item)
2153         slotRefreshClipThumbnail(item, update);
2154     else {
2155         slotProcessNextThumbnail();
2156     }
2157 }
2158
2159 void ProjectList::slotRefreshClipThumbnail(QTreeWidgetItem *it, bool update)
2160 {
2161     if (it == NULL) return;
2162     ProjectItem *item = NULL;
2163     bool isSubItem = false;
2164     int frame;
2165     if (it->type() == PROJECTFOLDERTYPE) return;
2166     if (it->type() == PROJECTSUBCLIPTYPE) {
2167         item = static_cast <ProjectItem *>(it->parent());
2168         frame = static_cast <SubProjectItem *>(it)->zone().x();
2169         isSubItem = true;
2170     } else {
2171         item = static_cast <ProjectItem *>(it);
2172         frame = item->referencedClip()->getClipThumbFrame();
2173     }
2174
2175     if (item) {
2176         DocClipBase *clip = item->referencedClip();
2177         if (!clip) {
2178             slotProcessNextThumbnail();
2179             return;
2180         }
2181         QImage img;
2182         int height = m_listView->iconSize().height();
2183         int swidth = (int)(height  * m_render->frameRenderWidth() / m_render->renderHeight()+ 0.5);
2184         int dwidth = (int)(height  * m_render->dar() + 0.5);
2185         if (clip->clipType() == IMAGE) {
2186             img = KThumb::getFrame(item->referencedClip()->getProducer(), 0, swidth, dwidth, height);
2187         }
2188         else if (clip->clipType() != AUDIO) {
2189             img = item->referencedClip()->extractImage(frame, dwidth, height);
2190         }
2191         if (!img.isNull()) {
2192             monitorItemEditing(false);
2193             QPixmap pix = roundedPixmap(img);
2194             processThumbOverlays(item, pix);
2195             if (isSubItem) it->setData(0, Qt::DecorationRole, pix);
2196             else item->setPixmap(pix);
2197             monitorItemEditing(true);
2198             
2199             QString hash = item->getClipHash();
2200             if (!hash.isEmpty() && !img.isNull()) {
2201                 if (!isSubItem)
2202                     m_doc->cacheImage(hash, img);
2203                 else
2204                     m_doc->cacheImage(hash + '#' + QString::number(frame), img);
2205             }
2206         }
2207         if (update)
2208             emit projectModified();
2209         slotProcessNextThumbnail();
2210     }
2211 }
2212
2213 void ProjectList::extractMetadata(DocClipBase *clip)
2214 {
2215     CLIPTYPE t = clip->clipType();
2216     if (t != AV && t != VIDEO) {
2217         // Currently, we only use exiftool on video files
2218         return;
2219     }
2220     QMap <QString, QString> props = clip->properties();
2221     if (KdenliveSettings::use_exiftool() && !props.contains("exiftool")) {
2222         QMap <QString, QString> meta;
2223         QString url = clip->fileURL().path();
2224         //Check for Canon THM file
2225         url = url.section('.', 0, -2) + ".THM";
2226         if (QFile::exists(url)) {
2227             // Read the exif metadata embeded in the THM file
2228             QProcess p;
2229             QStringList args;
2230             args << "-g" << "-args" << url;
2231             p.start("exiftool", args);
2232             p.waitForFinished();
2233             QString res = p.readAllStandardOutput();
2234             QStringList list = res.split("\n");
2235             foreach(QString tagline, list) {
2236                 if (tagline.startsWith("-File") || tagline.startsWith("-ExifTool")) continue;
2237                 QString tag = tagline.section(':', 1).simplified();
2238                 if (tag.startsWith("ImageWidth") || tag.startsWith("ImageHeight")) continue;
2239                 if (!tag.section('=', 0, 0).isEmpty() && !tag.section('=', 1).simplified().isEmpty())
2240                     meta.insert(tag.section('=', 0, 0), tag.section('=', 1).simplified());
2241             }
2242         } else {
2243             QString codecid = props.value("videocodecid").simplified();
2244             if (codecid == "h264") {
2245                 QProcess p;
2246                 QStringList args;
2247                 args << "-g" << "-args" << clip->fileURL().encodedPathAndQuery();
2248                 p.start("exiftool", args);
2249                 p.waitForFinished();
2250                 QString res = p.readAllStandardOutput();
2251                 QStringList list = res.split("\n");
2252                 foreach(QString tagline, list) {
2253                     if (!tagline.startsWith("-H264")) continue;
2254                     QString tag = tagline.section(':', 1);
2255                     if (tag.startsWith("ImageWidth") || tag.startsWith("ImageHeight")) continue;
2256                     meta.insert(tag.section('=', 0, 0), tag.section('=', 1));
2257                 }
2258             }
2259         }
2260         clip->setProperty("exiftool", "1");
2261         if (!meta.isEmpty()) {
2262             clip->setMetadata(meta, "ExifTool");
2263             //checkCamcorderFilters(clip, meta);
2264         }
2265     }
2266     if (KdenliveSettings::use_magicLantern() && !props.contains("magiclantern")) {
2267         QMap <QString, QString> meta;
2268         QString url = clip->fileURL().path();
2269         url = url.section('.', 0, -2) + ".LOG";
2270         if (QFile::exists(url)) {
2271             QFile file(url);
2272             if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
2273                 while (!file.atEnd()) {
2274                     QString line = file.readLine().simplified();
2275                     if (line.startsWith('#') || line.isEmpty() || !line.contains(':')) continue;
2276                     if (line.startsWith("CSV data")) break;
2277                     meta.insert(line.section(':', 0, 0).simplified(), line.section(':', 1).simplified());
2278                 }
2279             }
2280         }
2281         
2282         if (!meta.isEmpty())
2283             clip->setMetadata(meta, "Magic Lantern");
2284         clip->setProperty("magiclantern", "1");
2285     }
2286 }
2287
2288
2289 void ProjectList::slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const stringMap &properties, const stringMap &metadata, bool replace)
2290 {
2291     QMutexLocker lock(&m_processMutex);
2292     QString toReload;
2293     ProjectItem *item = getItemById(clipId);
2294     if (item && producer) {
2295         monitorItemEditing(false);
2296         DocClipBase *clip = item->referencedClip();
2297         if (producer->is_valid()) {
2298             if (clip->isPlaceHolder()) {
2299                 clip->setValid();
2300                 toReload = clipId;
2301             }
2302             item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
2303         }
2304         item->setProperties(properties, metadata);
2305         clip->setProducer(producer, replace);
2306         extractMetadata(clip);
2307         m_render->processingDone(clipId);
2308
2309         // Proxy stuff
2310         QString size = properties.value("frame_size");
2311         if (!useProxy() && clip->getProperty("proxy").isEmpty()) {
2312             item->setConditionalJobStatus(NOJOB, PROXYJOB);
2313             discardJobs(clipId, PROXYJOB);
2314         }
2315         if (useProxy() && generateProxy() && clip->getProperty("proxy") == "-") {
2316             item->setConditionalJobStatus(NOJOB, PROXYJOB);
2317             discardJobs(clipId, PROXYJOB);
2318         }
2319         else if (useProxy() && !item->hasProxy() && !hasPendingJob(item, PROXYJOB)) {
2320             // proxy video and image clips
2321             int maxSize;
2322             CLIPTYPE t = item->clipType();
2323             if (t == IMAGE) maxSize = m_doc->getDocumentProperty("proxyimageminsize").toInt();
2324             else maxSize = m_doc->getDocumentProperty("proxyminsize").toInt();
2325             if ((((t == AV || t == VIDEO || t == PLAYLIST) && generateProxy()) || (t == IMAGE && generateImageProxy())) && (size.section('x', 0, 0).toInt() > maxSize || size.section('x', 1, 1).toInt() > maxSize)) {
2326                 if (clip->getProperty("proxy").isEmpty()) {
2327                     KUrl proxyPath = m_doc->projectFolder();
2328                     proxyPath.addPath("proxy/");
2329                     proxyPath.addPath(clip->getClipHash() + '.' + (t == IMAGE ? "png" : m_doc->getDocumentProperty("proxyextension")));
2330                     QMap <QString, QString> newProps;
2331                     // insert required duration for proxy
2332                     if (t != IMAGE) newProps.insert("proxy_out", clip->producerProperty("out"));
2333                     newProps.insert("proxy", proxyPath.path());
2334                     QMap <QString, QString> oldProps = clip->properties();
2335                     oldProps.insert("proxy", QString());
2336                     EditClipCommand *command = new EditClipCommand(this, clipId, oldProps, newProps, true);
2337                     m_doc->commandStack()->push(command);
2338                 }
2339             }
2340         }
2341
2342         if (!replace && m_allClipsProcessed && !item->hasPixmap()) {
2343             getCachedThumbnail(item);
2344         }
2345         if (!toReload.isEmpty())
2346             item->slotSetToolTip();
2347     } else {
2348         kDebug() << "////////  COULD NOT FIND CLIP TO UPDATE PRPS...";
2349         m_render->processingDone(clipId);
2350     }
2351     int queue = m_render->processingItems();
2352     if (queue == 0) {
2353         monitorItemEditing(true);
2354         if (item && m_thumbnailQueue.isEmpty()) {
2355             if (!item->hasProxy() || m_render->activeClipId() == item->clipId())
2356                 m_listView->setCurrentItem(item);
2357             bool updatedProfile = false;
2358             if (item->parent()) {
2359                 if (item->parent()->type() == PROJECTFOLDERTYPE)
2360                     static_cast <FolderProjectItem *>(item->parent())->switchIcon();
2361             } else if (KdenliveSettings::checkfirstprojectclip() &&  m_listView->topLevelItemCount() == 1 && m_refreshed && m_allClipsProcessed) {
2362                 // this is the first clip loaded in project, check if we want to adjust project settings to the clip
2363                 updatedProfile = adjustProjectProfileToItem(item);
2364                 if (updatedProfile == false) {
2365                     emit clipSelected(item->referencedClip());
2366                 }
2367             }
2368             if (updatedProfile == false) {
2369                 //emit clipSelected(item->referencedClip());
2370             }
2371         } else {
2372             int max = m_doc->clipManager()->clipsCount();
2373             if (max > 0) emit displayMessage(i18n("Loading clips"), (int)(100 *(max - queue) / max));
2374         }
2375         if (m_allClipsProcessed) emit processNextThumbnail();
2376     }
2377     if (!item) {
2378         // no item for producer, delete it
2379         delete producer;
2380         return;
2381     }
2382     if (replace) toReload = clipId;
2383     if (!toReload.isEmpty())
2384         emit clipNeedsReload(toReload);
2385 }
2386
2387 bool ProjectList::adjustProjectProfileToItem(ProjectItem *item)
2388 {
2389     if (item == NULL) {
2390         if (m_listView->currentItem() && m_listView->currentItem()->type() != PROJECTFOLDERTYPE)
2391             item = static_cast <ProjectItem*>(m_listView->currentItem());
2392     }
2393     if (item == NULL || item->referencedClip() == NULL) {
2394         KMessageBox::information(kapp->activeWindow(), i18n("Cannot find profile from current clip"));
2395         return false;
2396     }
2397     bool profileUpdated = false;
2398     QString size = item->referencedClip()->getProperty("frame_size");
2399     int width = size.section('x', 0, 0).toInt();
2400     int height = size.section('x', -1).toInt();
2401     // Fix some avchd clips tht report a wrong size (1920x1088)
2402     if (height == 1088) height = 1080;
2403     double fps = item->referencedClip()->getProperty("fps").toDouble();
2404     double par = item->referencedClip()->getProperty("aspect_ratio").toDouble();
2405     if (item->clipType() == IMAGE || item->clipType() == AV || item->clipType() == VIDEO) {
2406         if (ProfilesDialog::matchProfile(width, height, fps, par, item->clipType() == IMAGE, m_doc->mltProfile()) == false) {
2407             // get a list of compatible profiles
2408             QMap <QString, QString> suggestedProfiles = ProfilesDialog::getProfilesFromProperties(width, height, fps, par, item->clipType() == IMAGE);
2409             if (!suggestedProfiles.isEmpty()) {
2410                 KDialog *dialog = new KDialog(this);
2411                 dialog->setCaption(i18n("Change project profile"));
2412                 dialog->setButtons(KDialog::Ok | KDialog::Cancel);
2413
2414                 QWidget container;
2415                 QVBoxLayout *l = new QVBoxLayout;
2416                 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));
2417                 l->addWidget(label);
2418                 QListWidget *list = new QListWidget;
2419                 list->setAlternatingRowColors(true);
2420                 QMapIterator<QString, QString> i(suggestedProfiles);
2421                 while (i.hasNext()) {
2422                     i.next();
2423                     QListWidgetItem *item = new QListWidgetItem(i.value(), list);
2424                     item->setData(Qt::UserRole, i.key());
2425                     item->setToolTip(i.key());
2426                 }
2427                 list->setCurrentRow(0);
2428                 l->addWidget(list);
2429                 container.setLayout(l);
2430                 dialog->setButtonText(KDialog::Ok, i18n("Update profile"));
2431                 dialog->setMainWidget(&container);
2432                 if (dialog->exec() == QDialog::Accepted) {
2433                     //Change project profile
2434                     profileUpdated = true;
2435                     if (list->currentItem())
2436                         emit updateProfile(list->currentItem()->data(Qt::UserRole).toString());
2437                 }
2438                 delete list;
2439                 delete label;
2440             } else if (fps > 0) {
2441                 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));
2442             }
2443         }
2444     }
2445     return profileUpdated;
2446 }
2447
2448 QString ProjectList::getDocumentProperty(const QString &key) const
2449 {
2450     return m_doc->getDocumentProperty(key);
2451 }
2452
2453 bool ProjectList::useProxy() const
2454 {
2455     return m_doc->getDocumentProperty("enableproxy").toInt();
2456 }
2457
2458 bool ProjectList::generateProxy() const
2459 {
2460     return m_doc->getDocumentProperty("generateproxy").toInt();
2461 }
2462
2463 bool ProjectList::generateImageProxy() const
2464 {
2465     return m_doc->getDocumentProperty("generateimageproxy").toInt();
2466 }
2467
2468 void ProjectList::slotReplyGetImage(const QString &clipId, const QImage &img)
2469 {
2470     ProjectItem *item = getItemById(clipId);
2471     if (item && !img.isNull()) {
2472         QPixmap pix = roundedPixmap(img);
2473         processThumbOverlays(item, pix);
2474         monitorItemEditing(false);
2475         item->setPixmap(pix);
2476         monitorItemEditing(true);
2477         QString hash = item->getClipHash();
2478         if (!hash.isEmpty()) m_doc->cacheImage(hash, img);
2479     }
2480 }
2481
2482 void ProjectList::slotReplyGetImage(const QString &clipId, const QString &name, int width, int height)
2483 {
2484     // For clips that have a generic icon (like audio clips...)
2485     ProjectItem *item = getItemById(clipId);
2486     QPixmap pix =  KIcon(name).pixmap(QSize(width, height));
2487     if (item && !pix.isNull()) {
2488         monitorItemEditing(false);
2489         item->setData(0, Qt::DecorationRole, pix);
2490         monitorItemEditing(true);
2491     }
2492 }
2493
2494 QTreeWidgetItem *ProjectList::getAnyItemById(const QString &id)
2495 {
2496     QTreeWidgetItemIterator it(m_listView);
2497     QString lookId = id;
2498     if (id.contains('#'))
2499         lookId = id.section('#', 0, 0);
2500
2501     ProjectItem *result = NULL;
2502     while (*it) {
2503         if ((*it)->type() != PROJECTCLIPTYPE) {
2504             // subitem
2505             ++it;
2506             continue;
2507         }
2508         ProjectItem *item = static_cast<ProjectItem *>(*it);
2509         if (item->clipId() == lookId) {
2510             result = item;
2511             break;
2512         }
2513         ++it;
2514     }
2515     if (result == NULL || !id.contains('#')) {
2516         return result;
2517     } else {
2518         for (int i = 0; i < result->childCount(); i++) {
2519             SubProjectItem *sub = static_cast <SubProjectItem *>(result->child(i));
2520             if (sub && sub->zone().x() == id.section('#', 1, 1).toInt())
2521                 return sub;
2522         }
2523     }
2524
2525     return NULL;
2526 }
2527
2528
2529 ProjectItem *ProjectList::getItemById(const QString &id)
2530 {
2531     ProjectItem *item;
2532     QTreeWidgetItemIterator it(m_listView);
2533     while (*it) {
2534         if ((*it)->type() != PROJECTCLIPTYPE) {
2535             // subitem or folder
2536             ++it;
2537             continue;
2538         }
2539         item = static_cast<ProjectItem *>(*it);
2540         if (item->clipId() == id)
2541             return item;
2542         ++it;
2543     }
2544     return NULL;
2545 }
2546
2547 FolderProjectItem *ProjectList::getFolderItemByName(const QString &name)
2548 {
2549     FolderProjectItem *item = NULL;
2550     QList <QTreeWidgetItem *> hits = m_listView->findItems(name, Qt::MatchExactly, 0);
2551     for (int i = 0; i < hits.count(); i++) {
2552         if (hits.at(i)->type() == PROJECTFOLDERTYPE) {
2553             item = static_cast<FolderProjectItem *>(hits.at(i));
2554             break;
2555         }
2556     }
2557     return item;
2558 }
2559
2560 FolderProjectItem *ProjectList::getFolderItemById(const QString &id)
2561 {
2562     FolderProjectItem *item;
2563     QTreeWidgetItemIterator it(m_listView);
2564     while (*it) {
2565         if ((*it)->type() == PROJECTFOLDERTYPE) {
2566             item = static_cast<FolderProjectItem *>(*it);
2567             if (item->clipId() == id)
2568                 return item;
2569         }
2570         ++it;
2571     }
2572     return NULL;
2573 }
2574
2575 void ProjectList::slotSelectClip(const QString &ix)
2576 {
2577     ProjectItem *clip = getItemById(ix);
2578     if (clip) {
2579         m_listView->setCurrentItem(clip);
2580         m_listView->scrollToItem(clip);
2581         m_editButton->defaultAction()->setEnabled(true);
2582         m_deleteButton->defaultAction()->setEnabled(true);
2583         m_reloadAction->setEnabled(true);
2584         m_extractAudioAction->setEnabled(true);
2585         m_transcodeAction->setEnabled(true);
2586         m_clipsActionsMenu->setEnabled(true);
2587         if (clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
2588             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
2589             m_openAction->setEnabled(true);
2590         } else if (clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
2591             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
2592             m_openAction->setEnabled(true);
2593         } else {
2594             m_openAction->setEnabled(false);
2595         }
2596     }
2597 }
2598
2599 QString ProjectList::currentClipUrl() const
2600 {
2601     ProjectItem *item;
2602     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE) return QString();
2603     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
2604         // subitem
2605         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
2606     } else {
2607         item = static_cast <ProjectItem*>(m_listView->currentItem());
2608     }
2609     if (item == NULL)
2610         return QString();
2611     return item->clipUrl().path();
2612 }
2613
2614 KUrl::List ProjectList::getConditionalUrls(const QString &condition) const
2615 {
2616     KUrl::List result;
2617     ProjectItem *item;
2618     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
2619     for (int i = 0; i < list.count(); i++) {
2620         if (list.at(i)->type() == PROJECTFOLDERTYPE)
2621             continue;
2622         if (list.at(i)->type() == PROJECTSUBCLIPTYPE) {
2623             // subitem
2624             item = static_cast <ProjectItem*>(list.at(i)->parent());
2625         } else {
2626             item = static_cast <ProjectItem*>(list.at(i));
2627         }
2628         if (item == NULL || item->type() == COLOR || item->type() == SLIDESHOW || item->type() == TEXT)
2629             continue;
2630         DocClipBase *clip = item->referencedClip();
2631         if (!condition.isEmpty()) {
2632             if (condition.startsWith("vcodec") && !clip->hasVideoCodec(condition.section('=', 1, 1)))
2633                 continue;
2634             else if (condition.startsWith("acodec") && !clip->hasAudioCodec(condition.section('=', 1, 1)))
2635                 continue;
2636         }
2637         result.append(item->clipUrl());
2638     }
2639     return result;
2640 }
2641
2642 QStringList ProjectList::getConditionalIds(const QString &condition) const
2643 {
2644     QStringList result;
2645     ProjectItem *item;
2646     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
2647     for (int i = 0; i < list.count(); i++) {
2648         if (list.at(i)->type() == PROJECTFOLDERTYPE)
2649             continue;
2650         if (list.at(i)->type() == PROJECTSUBCLIPTYPE) {
2651             // subitem
2652             item = static_cast <ProjectItem*>(list.at(i)->parent());
2653         } else {
2654             item = static_cast <ProjectItem*>(list.at(i));
2655         }
2656         if (item == NULL || item->type() == COLOR || item->type() == SLIDESHOW || item->type() == TEXT)
2657             continue;
2658         DocClipBase *clip = item->referencedClip();
2659         if (!condition.isEmpty()) {
2660             if (condition.startsWith("vcodec") && !clip->hasVideoCodec(condition.section('=', 1, 1)))
2661                 continue;
2662             else if (condition.startsWith("acodec") && !clip->hasAudioCodec(condition.section('=', 1, 1)))
2663                 continue;
2664         }
2665         result.append(item->clipId());
2666     }
2667     return result;
2668 }
2669
2670 void ProjectList::regenerateTemplate(const QString &id)
2671 {
2672     ProjectItem *clip = getItemById(id);
2673     if (clip)
2674         regenerateTemplate(clip);
2675 }
2676
2677 void ProjectList::regenerateTemplate(ProjectItem *clip)
2678 {
2679     //TODO: remove this unused method, only force_reload is necessary
2680     clip->referencedClip()->getProducer()->set("force_reload", 1);
2681 }
2682
2683 QDomDocument ProjectList::generateTemplateXml(QString path, const QString &replaceString)
2684 {
2685     QDomDocument doc;
2686     QFile file(path);
2687     if (!file.open(QIODevice::ReadOnly)) {
2688         kWarning() << "ERROR, CANNOT READ: " << path;
2689         return doc;
2690     }
2691     if (!doc.setContent(&file)) {
2692         kWarning() << "ERROR, CANNOT READ: " << path;
2693         file.close();
2694         return doc;
2695     }
2696     file.close();
2697     QDomNodeList texts = doc.elementsByTagName("content");
2698     for (int i = 0; i < texts.count(); i++) {
2699         QString data = texts.item(i).firstChild().nodeValue();
2700         data.replace("%s", replaceString);
2701         texts.item(i).firstChild().setNodeValue(data);
2702     }
2703     return doc;
2704 }
2705
2706
2707 void ProjectList::slotAddClipCut(const QString &id, int in, int out)
2708 {
2709     ProjectItem *clip = getItemById(id);
2710     if (clip == NULL || clip->referencedClip()->hasCutZone(QPoint(in, out)))
2711         return;
2712     AddClipCutCommand *command = new AddClipCutCommand(this, id, in, out, QString(), true, false);
2713     m_commandStack->push(command);
2714 }
2715
2716 void ProjectList::addClipCut(const QString &id, int in, int out, const QString desc, bool newItem)
2717 {
2718     ProjectItem *clip = getItemById(id);
2719     if (clip) {
2720         DocClipBase *base = clip->referencedClip();
2721         base->addCutZone(in, out);
2722         monitorItemEditing(false);
2723         SubProjectItem *sub = new SubProjectItem(m_render->dar(), clip, in, out, desc);
2724         if (newItem && desc.isEmpty() && !m_listView->isColumnHidden(1)) {
2725             if (!clip->isExpanded())
2726                 clip->setExpanded(true);
2727             m_listView->scrollToItem(sub);
2728             m_listView->editItem(sub, 1);
2729         }
2730         m_doc->clipManager()->slotRequestThumbs(QString('#' + id), QList <int>() << in);
2731         monitorItemEditing(true);
2732     }
2733     emit projectModified();
2734 }
2735
2736 void ProjectList::removeClipCut(const QString &id, int in, int out)
2737 {
2738     ProjectItem *clip = getItemById(id);
2739     if (clip) {
2740         DocClipBase *base = clip->referencedClip();
2741         base->removeCutZone(in, out);
2742         SubProjectItem *sub = getSubItem(clip, QPoint(in, out));
2743         if (sub) {
2744             monitorItemEditing(false);
2745             delete sub;
2746             monitorItemEditing(true);
2747         }
2748     }
2749     emit projectModified();
2750 }
2751
2752 SubProjectItem *ProjectList::getSubItem(ProjectItem *clip, QPoint zone)
2753 {
2754     SubProjectItem *sub = NULL;
2755     if (clip) {
2756         for (int i = 0; i < clip->childCount(); i++) {
2757             QTreeWidgetItem *it = clip->child(i);
2758             if (it->type() == PROJECTSUBCLIPTYPE) {
2759                 sub = static_cast <SubProjectItem*>(it);
2760                 if (sub->zone() == zone)
2761                     break;
2762                 else
2763                     sub = NULL;
2764             }
2765         }
2766     }
2767     return sub;
2768 }
2769
2770 void ProjectList::slotUpdateClipCut(QPoint p)
2771 {
2772     if (!m_listView->currentItem() || m_listView->currentItem()->type() != PROJECTSUBCLIPTYPE)
2773         return;
2774     SubProjectItem *sub = static_cast <SubProjectItem*>(m_listView->currentItem());
2775     ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
2776     EditClipCutCommand *command = new EditClipCutCommand(this, item->clipId(), sub->zone(), p, sub->text(1), sub->text(1), true);
2777     m_commandStack->push(command);
2778 }
2779
2780 void ProjectList::doUpdateClipCut(const QString &id, const QPoint oldzone, const QPoint zone, const QString &comment)
2781 {
2782     ProjectItem *clip = getItemById(id);
2783     SubProjectItem *sub = getSubItem(clip, oldzone);
2784     if (sub == NULL || clip == NULL)
2785         return;
2786     DocClipBase *base = clip->referencedClip();
2787     base->updateCutZone(oldzone.x(), oldzone.y(), zone.x(), zone.y(), comment);
2788     monitorItemEditing(false);
2789     sub->setZone(zone);
2790     sub->setDescription(comment);
2791     monitorItemEditing(true);
2792     emit projectModified();
2793 }
2794
2795 void ProjectList::slotForceProcessing(const QString &id)
2796 {
2797     m_render->forceProcessing(id);
2798 }
2799
2800 void ProjectList::slotAddOrUpdateSequence(const QString frameName)
2801 {
2802     QString fileName = KUrl(frameName).fileName().section('_', 0, -2);
2803     QStringList list;
2804     QString pattern = SlideshowClip::selectedPath(frameName, false, QString(), &list);
2805     int count = list.count();
2806     if (count > 1) {
2807         const QList <DocClipBase *> existing = m_doc->clipManager()->getClipByResource(pattern);
2808         if (!existing.isEmpty()) {
2809             // Sequence already exists, update
2810             QString id = existing.at(0)->getId();
2811             //ProjectItem *item = getItemById(id);
2812             QMap <QString, QString> oldprops;
2813             QMap <QString, QString> newprops;
2814             int ttl = existing.at(0)->getProperty("ttl").toInt();
2815             oldprops["out"] = existing.at(0)->getProperty("out");
2816             newprops["out"] = QString::number(ttl * count - 1);
2817             slotUpdateClipProperties(id, newprops);
2818             EditClipCommand *command = new EditClipCommand(this, id, oldprops, newprops, false);
2819             m_commandStack->push(command);
2820         } else {
2821             // Create sequence
2822             QStringList groupInfo = getGroup();
2823             QMap <QString, QString> properties;
2824             properties.insert("name", fileName);
2825             properties.insert("resource", pattern);
2826             properties.insert("in", "0");
2827             QString duration = m_timecode.reformatSeparators(KdenliveSettings::sequence_duration());
2828             properties.insert("out", QString::number(m_doc->getFramePos(duration) * count));
2829             properties.insert("ttl", QString::number(m_doc->getFramePos(duration)));
2830             properties.insert("loop", QString::number(false));
2831             properties.insert("crop", QString::number(false));
2832             properties.insert("fade", QString::number(false));
2833             properties.insert("luma_duration", m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))));
2834                         
2835             m_doc->slotCreateSlideshowClipFile(properties, groupInfo.at(0), groupInfo.at(1));
2836         }
2837     } else emit displayMessage(i18n("Sequence not found"), -2, ErrorMessage);
2838 }
2839
2840 QMap <QString, QString> ProjectList::getProxies()
2841 {
2842     QMap <QString, QString> list;
2843     ProjectItem *item;
2844     QTreeWidgetItemIterator it(m_listView);
2845     while (*it) {
2846         if ((*it)->type() != PROJECTCLIPTYPE) {
2847             ++it;
2848             continue;
2849         }
2850         item = static_cast<ProjectItem *>(*it);
2851         if (item && item->referencedClip() != NULL) {
2852             if (item->hasProxy()) {
2853                 QString proxy = item->referencedClip()->getProperty("proxy");
2854                 list.insert(proxy, item->clipUrl().path());
2855             }
2856         }
2857         ++it;
2858     }
2859     return list;
2860 }
2861
2862 void ProjectList::slotCreateProxy(const QString id)
2863 {
2864     ProjectItem *item = getItemById(id);
2865     if (!item || hasPendingJob(item, PROXYJOB) || item->referencedClip()->isPlaceHolder()) return;
2866     QString path = item->referencedClip()->getProperty("proxy");
2867     if (path.isEmpty()) {
2868         slotUpdateJobStatus(item, PROXYJOB, JOBCRASHED, i18n("Failed to create proxy, empty path."));
2869         return;
2870     }
2871     
2872     if (QFileInfo(path).size() > 0) {
2873         // Proxy already created
2874         setJobStatus(item, PROXYJOB, JOBDONE);
2875         slotGotProxy(path);
2876         return;
2877     }
2878     QString sourcePath = item->clipUrl().path();
2879     if (item->clipType() == PLAYLIST) {
2880         // Special case: playlists use the special 'consumer' producer to support resizing
2881         sourcePath.prepend("consumer:");
2882     }
2883     ProxyJob *job = new ProxyJob(item->clipType(), id, QStringList() << path << sourcePath << item->referencedClip()->producerProperty("_exif_orientation") << m_doc->getDocumentProperty("proxyparams").simplified() << QString::number(m_render->frameRenderWidth()) << QString::number(m_render->renderHeight()));
2884     if (job->isExclusive() && hasPendingJob(item, job->jobType)) {
2885         delete job;
2886         return;
2887     }
2888
2889     m_jobList.append(job);
2890     setJobStatus(item, job->jobType, JOBWAITING, 0, job->statusMessage());
2891     slotCheckJobProcess();
2892 }
2893
2894 void ProjectList::slotCutClipJob(const QString &id, QPoint zone)
2895 {
2896     ProjectItem *item = getItemById(id);
2897     if (!item|| item->referencedClip()->isPlaceHolder()) return;
2898     QString source = item->clipUrl().path();
2899     QString ext = source.section('.', -1);
2900     QString dest = source.section('.', 0, -2) + '_' + QString::number(zone.x()) + '.' + ext;
2901     
2902     double clipFps = item->referencedClip()->getProperty("fps").toDouble();
2903     if (clipFps == 0) clipFps = m_fps;
2904     // if clip and project have different frame rate, adjust in and out
2905     int in = zone.x();
2906     int out = zone.y();
2907     in = GenTime(in, m_timecode.fps()).frames(clipFps);
2908     out = GenTime(out, m_timecode.fps()).frames(clipFps);
2909     int max = GenTime(item->clipMaxDuration(), m_timecode.fps()).frames(clipFps);
2910     int duration = out - in + 1;
2911     QString timeIn = Timecode::getStringTimecode(in, clipFps, true);
2912     QString timeOut = Timecode::getStringTimecode(duration, clipFps, true);
2913     
2914     QPointer<QDialog> d = new QDialog(this);
2915     Ui::CutJobDialog_UI ui;
2916     ui.setupUi(d);
2917     ui.extra_params->setVisible(false);
2918     ui.add_clip->setChecked(KdenliveSettings::add_new_clip());
2919     ui.file_url->fileDialog()->setOperationMode(KFileDialog::Saving);
2920     ui.extra_params->setMaximumHeight(QFontMetrics(font()).lineSpacing() * 5);
2921     ui.file_url->setUrl(KUrl(dest));
2922     ui.button_more->setIcon(KIcon("configure"));
2923     ui.extra_params->setPlainText("-acodec copy -vcodec copy");
2924     QString mess = i18n("Extracting %1 out of %2", timeOut, Timecode::getStringTimecode(max, clipFps, true));
2925     ui.info_label->setText(mess);
2926     if (d->exec() != QDialog::Accepted) {
2927         delete d;
2928         return;
2929     }
2930     dest = ui.file_url->url().path();
2931     bool acceptPath = dest != source;
2932     if (acceptPath && QFileInfo(dest).size() > 0) {
2933         // destination file olready exists, overwrite?
2934         acceptPath = false;
2935     }
2936     while (!acceptPath) {
2937         // Do not allow to save over original clip
2938         if (dest == source) ui.info_label->setText("<b>" + i18n("You cannot overwrite original clip.") + "</b><br>" + mess);
2939         else if (KMessageBox::questionYesNo(this, i18n("Overwrite file %1", dest)) == KMessageBox::Yes) break;
2940         if (d->exec() != QDialog::Accepted) {
2941             delete d;
2942             return;
2943         }
2944         dest = ui.file_url->url().path();
2945         acceptPath = dest != source;
2946         if (acceptPath && QFileInfo(dest).size() > 0) {
2947             acceptPath = false;
2948         }
2949     }
2950     QString extraParams = ui.extra_params->toPlainText().simplified();
2951     KdenliveSettings::setAdd_new_clip(ui.add_clip->isChecked());
2952     delete d;
2953
2954     QStringList jobParams;
2955     jobParams << dest << item->clipUrl().path() << timeIn << timeOut << QString::number(duration) << QString::number(KdenliveSettings::add_new_clip());
2956     if (!extraParams.isEmpty()) jobParams << extraParams;
2957     CutClipJob *job = new CutClipJob(item->clipType(), id, jobParams);
2958     if (job->isExclusive() && hasPendingJob(item, job->jobType)) {
2959         delete job;
2960         return;
2961     }
2962     m_jobList.append(job);
2963     setJobStatus(item, job->jobType, JOBWAITING, 0, job->statusMessage());
2964
2965     slotCheckJobProcess();
2966 }
2967
2968 void ProjectList::slotTranscodeClipJob(const QString &condition, QString params, QString desc)
2969 {
2970     QStringList existingFiles;
2971     QStringList ids = getConditionalIds(condition);
2972     QStringList destinations;
2973     foreach(const QString &id, ids) {
2974         ProjectItem *item = getItemById(id);
2975         if (!item) continue;
2976         QString newFile = params.section(' ', -1).replace("%1", item->clipUrl().path());
2977         destinations << newFile;
2978         if (QFile::exists(newFile)) existingFiles << newFile;
2979     }
2980     if (!existingFiles.isEmpty()) {
2981         if (KMessageBox::warningContinueCancelList(this, i18n("The transcoding job will overwrite the following files:"), existingFiles) ==  KMessageBox::Cancel) return;
2982     }
2983     
2984     QDialog *d = new QDialog(this);
2985     Ui::CutJobDialog_UI ui;
2986     ui.setupUi(d);
2987     d->setWindowTitle(i18n("Transcoding"));
2988     ui.extra_params->setMaximumHeight(QFontMetrics(font()).lineSpacing() * 5);
2989     if (ids.count() == 1) {
2990         ui.file_url->setUrl(KUrl(destinations.first()));
2991     }
2992     else {
2993         ui.destination_label->setVisible(false);
2994         ui.file_url->setVisible(false);
2995     }
2996     ui.extra_params->setVisible(false);
2997     d->adjustSize();
2998     ui.button_more->setIcon(KIcon("configure"));
2999     ui.add_clip->setChecked(KdenliveSettings::add_new_clip());
3000     ui.extra_params->setPlainText(params.simplified().section(' ', 0, -2));
3001     QString mess = desc;
3002     mess.append(' ' + i18np("(%1 clip)", "(%1 clips)", ids.count()));
3003     ui.info_label->setText(mess);
3004     if (d->exec() != QDialog::Accepted) {
3005         delete d;
3006         return;
3007     }
3008     params = ui.extra_params->toPlainText().simplified();
3009     KdenliveSettings::setAdd_new_clip(ui.add_clip->isChecked());
3010     int index = 0;
3011     foreach(const QString &id, ids) {
3012         ProjectItem *item = getItemById(id);
3013         if (!item || !item->referencedClip()) continue;
3014         QString src = item->clipUrl().path();
3015         QString dest;
3016         if (ids.count() > 1) {
3017             dest = destinations.at(index);
3018             index++;
3019         }
3020         else dest = ui.file_url->url().path();
3021         QStringList jobParams;
3022         jobParams << dest << src << QString() << QString();
3023         double clipFps = item->referencedClip()->getProperty("fps").toDouble();
3024         if (clipFps == 0) clipFps = m_fps;
3025         int max = item->clipMaxDuration();
3026         QString duration = QString::number(max);
3027         jobParams << duration;
3028         jobParams << QString::number(KdenliveSettings::add_new_clip());
3029         jobParams << params;
3030         CutClipJob *job = new CutClipJob(item->clipType(), id, jobParams);
3031         if (job->isExclusive() && hasPendingJob(item, job->jobType)) {
3032             delete job;
3033             continue;
3034         }
3035         m_jobList.append(job);
3036         setJobStatus(item, job->jobType, JOBWAITING, 0, job->statusMessage());
3037     }
3038     delete d;
3039     slotCheckJobProcess();
3040     
3041 }
3042
3043 void ProjectList::slotCheckJobProcess()
3044 {        
3045     if (!m_jobThreads.futures().isEmpty()) {
3046         // Remove inactive threads
3047         QList <QFuture<void> > futures = m_jobThreads.futures();
3048         m_jobThreads.clearFutures();
3049         for (int i = 0; i < futures.count(); i++)
3050             if (!futures.at(i).isFinished()) {
3051                 m_jobThreads.addFuture(futures.at(i));
3052             }
3053     }
3054     if (m_jobList.isEmpty()) return;
3055
3056     m_jobMutex.lock();
3057     int count = 0;
3058     for (int i = 0; i < m_jobList.count(); i++) {
3059         if (m_jobList.at(i)->status() == JOBWORKING || m_jobList.at(i)->status() == JOBWAITING)
3060             count ++;
3061         else {
3062             // remove finished jobs
3063             AbstractClipJob *job = m_jobList.takeAt(i);
3064             job->deleteLater();
3065             i--;
3066         }
3067     }
3068     emit jobCount(count);    
3069     m_jobMutex.unlock();
3070     if (m_jobThreads.futures().isEmpty() || m_jobThreads.futures().count() < KdenliveSettings::proxythreads()) m_jobThreads.addFuture(QtConcurrent::run(this, &ProjectList::slotProcessJobs));
3071 }
3072
3073 void ProjectList::slotAbortProxy(const QString id, const QString path)
3074 {
3075     Q_UNUSED(path)
3076
3077     ProjectItem *item = getItemById(id);
3078     if (!item) return;
3079     if (!item->isProxyRunning()) slotGotProxy(item);
3080     item->setConditionalJobStatus(NOJOB, PROXYJOB);
3081     discardJobs(id, PROXYJOB);
3082 }
3083
3084 void ProjectList::slotProcessJobs()
3085 {
3086     while (!m_jobList.isEmpty() && !m_abortAllJobs) {
3087         emit projectModified();
3088         AbstractClipJob *job = NULL;
3089         int count = 0;
3090         m_jobMutex.lock();
3091         for (int i = 0; i < m_jobList.count(); i++) {
3092             if (m_jobList.at(i)->status() == JOBWAITING) {
3093                 if (job == NULL) {
3094                     m_jobList.at(i)->setStatus(JOBWORKING);
3095                     job = m_jobList.at(i);
3096                 }
3097                 count++;
3098             }
3099             else if (m_jobList.at(i)->status() == JOBWORKING)
3100                 count ++;
3101         }
3102         // Set jobs count
3103         emit jobCount(count);
3104         m_jobMutex.unlock();
3105
3106         if (job == NULL) {
3107             break;
3108         }
3109         QString destination = job->destination();
3110         // Check if the clip is still here
3111         DocClipBase *currentClip = m_doc->clipManager()->getClipById(job->clipId());
3112         //ProjectItem *processingItem = getItemById(job->clipId());
3113         if (currentClip == NULL) {
3114             job->setStatus(JOBDONE);
3115             continue;
3116         }
3117         // Set clip status to started
3118         emit processLog(job->clipId(), 0, job->jobType, job->statusMessage()); 
3119
3120         // Make sure destination path is writable
3121         if (!destination.isEmpty()) {
3122             QFile file(destination);
3123             if (!file.open(QIODevice::WriteOnly)) {
3124                 emit updateJobStatus(job->clipId(), job->jobType, JOBCRASHED, i18n("Cannot write to path: %1", destination));
3125                 job->setStatus(JOBCRASHED);
3126                 continue;
3127             }
3128             file.close();
3129             QFile::remove(destination);
3130         }
3131         connect(job, SIGNAL(jobProgress(QString, int, int)), this, SIGNAL(processLog(QString, int, int)));
3132         connect(job, SIGNAL(cancelRunningJob(const QString, stringMap)), this, SIGNAL(cancelRunningJob(const QString, stringMap)));
3133
3134         if (job->jobType == MLTJOB) {
3135             MeltJob *jb = static_cast<MeltJob *> (job);
3136             jb->setProducer(currentClip->getProducer(), currentClip->fileURL());
3137             if (jb->isProjectFilter())
3138                 connect(job, SIGNAL(gotFilterJobResults(QString,int, int, stringMap,stringMap)), this, SLOT(slotGotFilterJobResults(QString,int, int,stringMap,stringMap)));
3139             else
3140                 connect(job, SIGNAL(gotFilterJobResults(QString,int, int, stringMap,stringMap)), this, SIGNAL(gotFilterJobResults(QString,int, int,stringMap,stringMap)));
3141         }
3142         job->startJob();
3143         if (job->status() == JOBDONE) {
3144             emit updateJobStatus(job->clipId(), job->jobType, JOBDONE);
3145             //TODO: replace with more generic clip replacement framework
3146             if (job->jobType == PROXYJOB) emit gotProxy(job->clipId());
3147             if (job->addClipToProject()) {
3148                 emit addClip(destination, QString(), QString());
3149             }
3150         } else if (job->status() == JOBCRASHED || job->status() == JOBABORTED) {
3151             emit updateJobStatus(job->clipId(), job->jobType, job->status(), job->errorMessage(), QString(), job->logDetails());
3152         }
3153     }
3154     // Thread finished, cleanup & update count
3155     QTimer::singleShot(200, this, SIGNAL(checkJobProcess()));
3156 }
3157
3158
3159 void ProjectList::updateProxyConfig()
3160 {
3161     ProjectItem *item;
3162     QTreeWidgetItemIterator it(m_listView);
3163     QUndoCommand *command = new QUndoCommand();
3164     command->setText(i18n("Update proxy settings"));
3165     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
3166     while (*it) {
3167         if ((*it)->type() != PROJECTCLIPTYPE) {
3168             ++it;
3169             continue;
3170         }
3171         item = static_cast<ProjectItem *>(*it);
3172         if (item == NULL) {
3173             ++it;
3174             continue;
3175         }
3176         CLIPTYPE t = item->clipType();
3177         if ((t == VIDEO || t == AV || t == UNKNOWN) && item->referencedClip() != NULL) {
3178             if  (generateProxy() && useProxy() && !hasPendingJob(item, PROXYJOB)) {
3179                 DocClipBase *clip = item->referencedClip();
3180                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > m_doc->getDocumentProperty("proxyminsize").toInt()) {
3181                     if (clip->getProperty("proxy").isEmpty()) {
3182                         // We need to insert empty proxy in old properties so that undo will work
3183                         QMap <QString, QString> oldProps;// = clip->properties();
3184                         oldProps.insert("proxy", QString());
3185                         QMap <QString, QString> newProps;
3186                         newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + '.' + m_doc->getDocumentProperty("proxyextension"));
3187                         new EditClipCommand(this, clip->getId(), oldProps, newProps, true, command);
3188                     }
3189                 }
3190             }
3191             else if (item->hasProxy()) {
3192                 // remove proxy
3193                 QMap <QString, QString> newProps;
3194                 newProps.insert("proxy", QString());
3195                 // insert required duration for proxy
3196                 newProps.insert("proxy_out", item->referencedClip()->producerProperty("out"));
3197                 new EditClipCommand(this, item->clipId(), item->referencedClip()->currentProperties(newProps), newProps, true, command);
3198             }
3199         }
3200         else if (t == IMAGE && item->referencedClip() != NULL) {
3201             if  (generateImageProxy() && useProxy()) {
3202                 DocClipBase *clip = item->referencedClip();
3203                 int maxImageSize = m_doc->getDocumentProperty("proxyimageminsize").toInt();
3204                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > maxImageSize || clip->getProperty("frame_size").section('x', 1, 1).toInt() > maxImageSize) {
3205                     if (clip->getProperty("proxy").isEmpty()) {
3206                         // We need to insert empty proxy in old properties so that undo will work
3207                         QMap <QString, QString> oldProps = clip->properties();
3208                         oldProps.insert("proxy", QString());
3209                         QMap <QString, QString> newProps;
3210                         newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + ".png");
3211                         new EditClipCommand(this, clip->getId(), oldProps, newProps, true, command);
3212                     }
3213                 }
3214             }
3215             else if (item->hasProxy()) {
3216                 // remove proxy
3217                 QMap <QString, QString> newProps;
3218                 newProps.insert("proxy", QString());
3219                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), newProps, true, command);
3220             }
3221         }
3222         ++it;
3223     }
3224     if (command->childCount() > 0) m_doc->commandStack()->push(command);
3225     else delete command;
3226 }
3227
3228 void ProjectList::slotProcessLog(const QString id, int progress, int type, const QString message)
3229 {
3230     ProjectItem *item = getItemById(id);
3231     setJobStatus(item, (JOBTYPE) type, JOBWORKING, progress, message);
3232 }
3233
3234 void ProjectList::slotProxyCurrentItem(bool doProxy, ProjectItem *itemToProxy)
3235 {
3236     QList<QTreeWidgetItem *> list;
3237     if (itemToProxy == NULL) list = m_listView->selectedItems();
3238     else list << itemToProxy;
3239
3240     // expand list (folders, subclips) to get real clips
3241     QTreeWidgetItem *listItem;
3242     QList<ProjectItem *> clipList;
3243     for (int i = 0; i < list.count(); i++) {
3244         listItem = list.at(i);
3245         if (listItem->type() == PROJECTFOLDERTYPE) {
3246             for (int j = 0; j < listItem->childCount(); j++) {
3247                 QTreeWidgetItem *sub = listItem->child(j);
3248                 if (sub->type() == PROJECTCLIPTYPE) {
3249                     ProjectItem *item = static_cast <ProjectItem*>(sub);
3250                     if (!clipList.contains(item)) clipList.append(item);
3251                 }
3252             }
3253         }
3254         else if (listItem->type() == PROJECTSUBCLIPTYPE) {
3255             QTreeWidgetItem *sub = listItem->parent();
3256             ProjectItem *item = static_cast <ProjectItem*>(sub);
3257             if (!clipList.contains(item)) clipList.append(item);
3258         }
3259         else if (listItem->type() == PROJECTCLIPTYPE) {
3260             ProjectItem *item = static_cast <ProjectItem*>(listItem);
3261             if (!clipList.contains(item)) clipList.append(item);
3262         }
3263     }
3264     
3265     QUndoCommand *command = new QUndoCommand();
3266     if (doProxy) command->setText(i18np("Add proxy clip", "Add proxy clips", clipList.count()));
3267     else command->setText(i18np("Remove proxy clip", "Remove proxy clips", clipList.count()));
3268     
3269     // Make sure the proxy folder exists
3270     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
3271     KStandardDirs::makeDir(proxydir);
3272                 
3273     QMap <QString, QString> newProps;
3274     QMap <QString, QString> oldProps;
3275     if (!doProxy) newProps.insert("proxy", "-");
3276     for (int i = 0; i < clipList.count(); i++) {
3277         ProjectItem *item = clipList.at(i);
3278         CLIPTYPE t = item->clipType();
3279         if ((t == VIDEO || t == AV || t == UNKNOWN || t == IMAGE || t == PLAYLIST) && item->referencedClip()) {
3280             if ((doProxy && item->hasProxy()) || (!doProxy && !item->hasProxy() && item->referencedClip()->getProducer() != NULL)) continue;
3281             DocClipBase *clip = item->referencedClip();
3282             if (!clip || !clip->isClean() || m_render->isProcessing(item->clipId())) {
3283                 kDebug()<<"//// TRYING TO PROXY: "<<item->clipId()<<", but it is busy";
3284                 continue;
3285             }
3286                 
3287             //oldProps = clip->properties();
3288             if (doProxy) {
3289                 newProps.clear();
3290                 QString path = proxydir + clip->getClipHash() + '.' + (t == IMAGE ? "png" : m_doc->getDocumentProperty("proxyextension"));
3291                 // insert required duration for proxy
3292                 newProps.insert("proxy_out", clip->producerProperty("out"));
3293                 newProps.insert("proxy", path);
3294                 // We need to insert empty proxy so that undo will work
3295                 //oldProps.insert("proxy", QString());
3296             }
3297             else if (item->referencedClip()->getProducer() == NULL) {
3298                 // Force clip reload
3299                 kDebug()<<"// CLIP HAD NULL PROD------------";
3300                 newProps.insert("resource", item->referencedClip()->getProperty("resource"));
3301             }
3302             // We need to insert empty proxy so that undo will work
3303             oldProps = clip->currentProperties(newProps);
3304             if (doProxy) oldProps.insert("proxy", "-");
3305             new EditClipCommand(this, item->clipId(), oldProps, newProps, true, command);
3306         }
3307     }
3308     if (command->childCount() > 0) {
3309         m_doc->commandStack()->push(command);
3310     }
3311     else delete command;
3312 }
3313
3314
3315 void ProjectList::slotDeleteProxy(const QString proxyPath)
3316 {
3317     if (proxyPath.isEmpty()) return;
3318     QUndoCommand *proxyCommand = new QUndoCommand();
3319     proxyCommand->setText(i18n("Remove Proxy"));
3320     QTreeWidgetItemIterator it(m_listView);
3321     ProjectItem *item;
3322     while (*it) {
3323         if ((*it)->type() == PROJECTCLIPTYPE) {
3324             item = static_cast <ProjectItem *>(*it);
3325             if (item->referencedClip()->getProperty("proxy") == proxyPath) {
3326                 QMap <QString, QString> props;
3327                 props.insert("proxy", QString());
3328                 new EditClipCommand(this, item->clipId(), item->referencedClip()->currentProperties(props), props, true, proxyCommand);
3329             
3330             }
3331         }
3332         ++it;
3333     }
3334     if (proxyCommand->childCount() == 0)
3335         delete proxyCommand;
3336     else
3337         m_commandStack->push(proxyCommand);
3338     QFile::remove(proxyPath);
3339 }
3340
3341 void ProjectList::setJobStatus(ProjectItem *item, JOBTYPE jobType, CLIPJOBSTATUS status, int progress, const QString &statusMessage)
3342 {
3343     if (item == NULL || (m_abortAllJobs && m_closing)) return;
3344     monitorItemEditing(false);
3345     item->setJobStatus(jobType, status, progress, statusMessage);
3346     if (status == JOBCRASHED) {
3347         DocClipBase *clip = item->referencedClip();
3348         if (!clip) {
3349             kDebug()<<"// PROXY CRASHED";
3350         }
3351         else if (clip->getProducer() == NULL && !clip->isPlaceHolder()) {
3352             // disable proxy and fetch real clip
3353             clip->setProperty("proxy", "-");
3354             QDomElement xml = clip->toXML();
3355             m_render->getFileProperties(xml, clip->getId(), m_listView->iconSize().height(), true);
3356         }
3357         else {
3358             // Disable proxy for this clip
3359             clip->setProperty("proxy", "-");
3360         }
3361     }
3362     monitorItemEditing(true);
3363 }
3364
3365 void ProjectList::monitorItemEditing(bool enable)
3366 {
3367     if (enable) connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
3368     else disconnect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
3369 }
3370
3371 QStringList ProjectList::expandedFolders() const
3372 {
3373     QStringList result;
3374     FolderProjectItem *item;
3375     QTreeWidgetItemIterator it(m_listView);
3376     while (*it) {
3377         if ((*it)->type() != PROJECTFOLDERTYPE) {
3378             ++it;
3379             continue;
3380         }
3381         if ((*it)->isExpanded()) {
3382             item = static_cast<FolderProjectItem *>(*it);
3383             result.append(item->clipId());
3384         }
3385         ++it;
3386     }
3387     return result;
3388 }
3389
3390 void ProjectList::processThumbOverlays(ProjectItem *item, QPixmap &pix)
3391 {
3392     if (item->hasProxy()) {
3393         QPainter p(&pix);
3394         QColor c(220, 220, 10, 200);
3395         QRect r(0, 0, 12, 12);
3396         p.fillRect(r, c);
3397         QFont font = p.font();
3398         font.setBold(true);
3399         p.setFont(font);
3400         p.setPen(Qt::black);
3401         p.drawText(r, Qt::AlignCenter, i18nc("The first letter of Proxy, used as abbreviation", "P"));
3402     }
3403 }
3404
3405 void ProjectList::slotCancelJobs()
3406 {
3407     m_abortAllJobs = true;
3408     for (int i = 0; i < m_jobList.count(); i++) {
3409         m_jobList.at(i)->setStatus(JOBABORTED);
3410     }
3411     m_jobThreads.waitForFinished();
3412     m_jobThreads.clearFutures();
3413     QUndoCommand *command = new QUndoCommand();
3414     command->setText(i18np("Cancel job", "Cancel jobs", m_jobList.count()));
3415     m_jobMutex.lock();
3416     for (int i = 0; i < m_jobList.count(); i++) {
3417         DocClipBase *currentClip = m_doc->clipManager()->getClipById(m_jobList.at(i)->clipId());
3418         if (!currentClip) continue;
3419         QMap <QString, QString> newProps = m_jobList.at(i)->cancelProperties();
3420         if (newProps.isEmpty()) continue;
3421         QMap <QString, QString> oldProps = currentClip->currentProperties(newProps);
3422         new EditClipCommand(this, m_jobList.at(i)->clipId(), oldProps, newProps, true, command);
3423     }
3424     m_jobMutex.unlock();
3425     if (command->childCount() > 0) {
3426         m_doc->commandStack()->push(command);
3427     }
3428     else delete command;
3429     if (!m_jobList.isEmpty()) qDeleteAll(m_jobList);
3430     m_jobList.clear();
3431     m_abortAllJobs = false;
3432     m_infoLabel->slotSetJobCount(0);    
3433 }
3434
3435 void ProjectList::slotCancelRunningJob(const QString id, stringMap newProps)
3436 {
3437     if (newProps.isEmpty() || m_closing) return;
3438     DocClipBase *currentClip = m_doc->clipManager()->getClipById(id);
3439     if (!currentClip) return;
3440     QMap <QString, QString> oldProps = currentClip->currentProperties(newProps);
3441     if (newProps == oldProps) return;
3442     QMapIterator<QString, QString> i(oldProps);
3443     EditClipCommand *command = new EditClipCommand(this, id, oldProps, newProps, true);
3444     m_commandStack->push(command);    
3445 }
3446
3447 bool ProjectList::hasPendingJob(ProjectItem *item, JOBTYPE type)
3448 {
3449     if (!item || !item->referencedClip() || m_abortAllJobs) return false;
3450     AbstractClipJob *job;
3451     QMutexLocker lock(&m_jobMutex);
3452     for (int i = 0; i < m_jobList.count(); i++) {
3453         if (m_abortAllJobs) break;
3454         job = m_jobList.at(i);
3455         if (job->clipId() == item->clipId() && job->jobType == type && (job->status() == JOBWAITING || job->status() == JOBWORKING)) return true;
3456     }
3457     
3458     return false;
3459 }
3460
3461 void ProjectList::deleteJobsForClip(const QString &clipId)
3462 {
3463     QMutexLocker lock(&m_jobMutex);
3464     for (int i = 0; i < m_jobList.count(); i++) {
3465         if (m_jobList.at(i)->clipId() == clipId) {
3466             m_jobList.at(i)->setStatus(JOBABORTED);
3467         }
3468     }
3469 }
3470
3471 void ProjectList::slotUpdateJobStatus(const QString id, int type, int status, const QString label, const QString actionName, const QString details)
3472 {
3473     ProjectItem *item = getItemById(id);
3474     if (!item) return;
3475     slotUpdateJobStatus(item, type, status, label, actionName, details);
3476     
3477 }
3478
3479 void ProjectList::slotUpdateJobStatus(ProjectItem *item, int type, int status, const QString &label, const QString &actionName, const QString details)
3480 {
3481     item->setJobStatus((JOBTYPE) type, (CLIPJOBSTATUS) status);
3482     if (status != JOBCRASHED) return;
3483 #if KDE_IS_VERSION(4,7,0)
3484     QList<QAction *> actions = m_infoMessage->actions();
3485     if (m_infoMessage->isHidden()) {
3486         m_infoMessage->setText(label);
3487         m_infoMessage->setWordWrap(m_infoMessage->text().length() > 35);
3488         m_infoMessage->setMessageType(KMessageWidget::Warning);
3489     }
3490     
3491     if (!actionName.isEmpty()) {
3492         QAction *action = NULL;
3493         QList< KActionCollection * > collections = KActionCollection::allCollections();
3494         for (int i = 0; i < collections.count(); i++) {
3495             KActionCollection *coll = collections.at(i);
3496             action = coll->action(actionName);
3497             if (action) break;
3498         }
3499         if (action && !actions.contains(action)) m_infoMessage->addAction(action);
3500     }
3501     if (!details.isEmpty()) {
3502         m_errorLog.append(details);
3503         if (!actions.contains(m_logAction)) m_infoMessage->addAction(m_logAction);
3504     }
3505     m_infoMessage->animatedShow();
3506 #else
3507     // warning for KDE < 4.7
3508     KPassivePopup *passivePop = new KPassivePopup( this );
3509     passivePop->setAutoDelete(true);
3510     connect(passivePop, SIGNAL(clicked()), this, SLOT(slotClosePopup()));
3511     m_errorLog.append(details);
3512     KVBox *vb = new KVBox( passivePop );
3513     KHBox *vh1 = new KHBox( vb );
3514     KIcon icon("dialog-warning");
3515     QLabel *iconLabel = new QLabel(vh1);
3516     iconLabel->setPixmap(icon.pixmap(m_listView->iconSize()));
3517     (void) new QLabel( label, vh1);
3518     KHBox *box = new KHBox( vb );
3519     QPushButton *but = new QPushButton( "Show log", box );
3520     connect(but, SIGNAL(clicked(bool)), this, SLOT(slotShowJobLog()));
3521
3522     passivePop->setView( vb );
3523     passivePop->show();
3524     
3525 #endif
3526 }
3527
3528 void ProjectList::slotShowJobLog()
3529 {
3530     KDialog d(this);
3531     d.setButtons(KDialog::Close);
3532     QTextEdit t(&d);
3533     for (int i = 0; i < m_errorLog.count(); i++) {
3534         if (i > 0) t.insertHtml("<br><hr /><br>");
3535         t.insertPlainText(m_errorLog.at(i));
3536     }
3537     t.setReadOnly(true);
3538     d.setMainWidget(&t);
3539     d.exec();
3540 }
3541
3542 QStringList ProjectList::getPendingJobs(const QString &id)
3543 {
3544     QStringList result;
3545     QMutexLocker lock(&m_jobMutex);
3546     for (int i = 0; i < m_jobList.count(); i++) {
3547         if (m_jobList.at(i)->clipId() == id && (m_jobList.at(i)->status() == JOBWAITING || m_jobList.at(i)->status() == JOBWORKING)) {
3548             // discard this job
3549             result << m_jobList.at(i)->description;
3550         }
3551     }   
3552     return result;
3553 }
3554
3555 void ProjectList::discardJobs(const QString &id, JOBTYPE type) {
3556     QMutexLocker lock(&m_jobMutex);
3557     for (int i = 0; i < m_jobList.count(); i++) {
3558         if (m_jobList.at(i)->clipId() == id && (m_jobList.at(i)->jobType == type || type == NOJOBTYPE)) {
3559             // discard this job
3560             m_jobList.at(i)->setStatus(JOBABORTED);
3561         }
3562     }
3563 }
3564
3565 void ProjectList::slotStartFilterJob(ItemInfo info, const QString&id, const QString&filterName, const QString&filterParams, const QString&consumer, const QString&consumerParams, const QMap <QString, QString> &extraParams)
3566 {
3567     ProjectItem *item = getItemById(id);
3568     if (!item) return;
3569     QStringList jobParams;
3570     jobParams << QString::number((int) info.cropStart.frames(m_fps)) << QString::number((int) (info.cropStart + info.cropDuration).frames(m_fps));
3571     jobParams << QString() << filterName << filterParams << consumer << consumerParams << QString::number((int) info.startPos.frames(m_fps)) << QString::number(info.track);
3572     MeltJob *job = new MeltJob(item->clipType(), id, jobParams, extraParams);
3573     if (job->isExclusive() && hasPendingJob(item, job->jobType)) {
3574         delete job;
3575         return;
3576     }
3577     job->description = i18n("Filter %1", extraParams.value("finalfilter"));
3578     m_jobList.append(job);
3579     setJobStatus(item, job->jobType, JOBWAITING, 0, job->statusMessage());
3580     slotCheckJobProcess();
3581 }
3582
3583 void ProjectList::startClipFilterJob(const QString &filterName, const QString &condition)
3584 {
3585     QStringList ids = getConditionalIds(condition);
3586     QString destination;
3587     ProjectItem *item = getItemById(ids.at(0));
3588     if (!item) {
3589         emit displayMessage(i18n("Cannot find clip to process filter %1", filterName), -2, ErrorMessage);
3590         return;
3591     }
3592     if (ids.count() == 1) {
3593         destination = item->clipUrl().path();
3594     }
3595     else {
3596         destination = item->clipUrl().directory();
3597     }
3598     if (filterName == "motion_est") {
3599         // Show config dialog
3600         QPointer<QDialog> d = new QDialog(this);
3601         Ui::SceneCutDialog_UI ui;
3602         ui.setupUi(d);
3603         // Set  up categories
3604         for (int i = 0; i < 5; ++i) {
3605             ui.marker_type->insertItem(i, i18n("Category %1", i));
3606             ui.marker_type->setItemData(i, CommentedTime::markerColor(i), Qt::DecorationRole);
3607         }
3608         ui.marker_type->setCurrentIndex(KdenliveSettings::default_marker_type());
3609         if (d->exec() != QDialog::Accepted) {
3610             delete d;
3611             return;
3612         }
3613         // Autosplit filter
3614         QStringList jobParams;
3615         // Producer params
3616         jobParams << QString();
3617         // Filter params, use a smaller region of the image to speed up operation
3618         // In fact, it's faster to rescale whole image than using part of it (bounding=\"25%x25%:15%x15\")
3619         jobParams << filterName << "shot_change_list=0 denoise=0";
3620         // Consumer
3621         jobParams << "null" << "all=1 terminate_on_pause=1 real_time=-1 rescale=nearest deinterlace_method=onefield top_field_first=-1";
3622         QMap <QString, QString> extraParams;
3623         extraParams.insert("key", "shot_change_list");
3624         extraParams.insert("projecttreefilter", "1");
3625         QString keyword("%count");
3626         extraParams.insert("resultmessage", i18n("Found %1 scenes.", keyword));
3627         extraParams.insert("resize_profile", "160");
3628         if (ui.store_data->isChecked()) {
3629             // We want to save result as clip metadata
3630             extraParams.insert("storedata", "1");
3631         }
3632         if (ui.zone_only->isChecked()) {
3633             // We want to analyze only clip zone
3634             extraParams.insert("zoneonly", "1");
3635         }
3636         if (ui.add_markers->isChecked()) {
3637             // We want to create markers
3638             extraParams.insert("addmarkers", QString::number(ui.marker_type->currentIndex()));
3639         }
3640         if (ui.cut_scenes->isChecked()) {
3641             // We want to cut scenes
3642             extraParams.insert("cutscenes", "1");
3643         }
3644         delete d;
3645         processClipJob(ids, QString(), false, jobParams, i18n("Auto split"), extraParams);
3646     }
3647     else {
3648         QPointer<ClipStabilize> d = new ClipStabilize(destination, ids.count(), filterName);
3649         if (d->exec() == QDialog::Accepted) {
3650             QMap <QString, QString> extraParams;
3651             extraParams.insert("producer_profile", "1");
3652             processClipJob(ids, d->destination(), d->autoAddClip(), d->params(), d->desc(), extraParams);
3653         }
3654         delete d;
3655     }
3656 }
3657
3658 void ProjectList::processClipJob(QStringList ids, const QString&destination, bool autoAdd, QStringList jobParams, const QString &description, QMap <QString, QString> extraParams)
3659 {
3660     QStringList preParams;
3661     // in and out
3662     preParams << QString::number(0) << QString::number(-1);
3663     // producer params
3664     preParams << jobParams.takeFirst();
3665     // filter name
3666     preParams << jobParams.takeFirst();
3667     // filter params
3668     preParams << jobParams.takeFirst();
3669     // consumer
3670     QString consumer = jobParams.takeFirst();
3671     
3672     foreach(const QString&id, ids) {
3673         ProjectItem *item = getItemById(id);
3674         if (!item) continue;
3675         QStringList jobArgs;
3676         if (extraParams.contains("zoneonly")) {
3677             // Analyse clip zone only, remove in / out and replace with zone
3678             preParams.takeFirst();
3679             preParams.takeFirst();
3680             QPoint zone = item->referencedClip()->zone();
3681             jobArgs << QString::number(zone.x()) << QString::number(zone.y());
3682         }
3683         jobArgs << preParams;
3684         if (ids.count() == 1) {
3685             jobArgs << consumer + ':' + destination;
3686         }
3687         else {
3688             jobArgs << consumer + ':' + destination + item->clipUrl().fileName() + ".mlt";
3689         }
3690         jobArgs << jobParams;
3691         
3692         MeltJob *job = new MeltJob(item->clipType(), id, jobArgs, extraParams);
3693         if (autoAdd) {
3694             job->setAddClipToProject(true);
3695             kDebug()<<"// ADDING TRUE";
3696         }
3697         else kDebug()<<"// ADDING FALSE!!!";
3698           
3699         if (job->isExclusive() && hasPendingJob(item, job->jobType)) {
3700             delete job;
3701             return;
3702         }
3703         job->description = description;
3704         m_jobList.append(job);
3705         setJobStatus(item, job->jobType, JOBWAITING, 0, job->statusMessage());
3706         slotCheckJobProcess();
3707     }
3708 }
3709    
3710
3711 void ProjectList::slotPrepareJobsMenu()
3712 {
3713     ProjectItem *item;
3714     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE)
3715         return;
3716     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE)
3717         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
3718     else
3719         item = static_cast <ProjectItem*>(m_listView->currentItem());
3720     if (item && (item->flags() & Qt::ItemIsDragEnabled)) {
3721         QString id = item->clipId();
3722         m_discardCurrentClipJobs->setData(id);
3723         QStringList jobs = getPendingJobs(id);
3724         m_discardCurrentClipJobs->setEnabled(!jobs.isEmpty());
3725     } else {
3726         m_discardCurrentClipJobs->setData(QString());
3727         m_discardCurrentClipJobs->setEnabled(false);
3728     }
3729 }
3730
3731 void ProjectList::slotDiscardClipJobs()
3732 {
3733     QString id = m_discardCurrentClipJobs->data().toString();
3734     if (id.isEmpty()) return;
3735     discardJobs(id);
3736 }
3737
3738 void ProjectList::updatePalette()
3739 {
3740     m_infoLabel->setStyleSheet(SmallInfoLabel::getStyleSheet(QApplication::palette()));
3741     m_listView->updateStyleSheet();
3742 }
3743
3744 void ProjectList::slotResetInfoMessage()
3745 {
3746 #if KDE_IS_VERSION(4,7,0)
3747     m_errorLog.clear();
3748     QList<QAction *> actions = m_infoMessage->actions();
3749     for (int i = 0; i < actions.count(); i++) {
3750         m_infoMessage->removeAction(actions.at(i));
3751     }
3752 #endif
3753 }
3754
3755 void ProjectList::slotClosePopup()
3756 {
3757     m_errorLog.clear();
3758 }
3759
3760 void ProjectList::slotGotFilterJobResults(QString id, int , int , stringMap results, stringMap filterInfo)
3761 {
3762     // Currently, only the first value of results is used
3763     //kDebug()<<"// FILTER RES:\n"<<filterInfo<<"\n--------------\n"<<results;
3764     ProjectItem *clip = getItemById(id);
3765     if (!clip) return;
3766
3767     // Check for return value
3768     int markersType = -1;
3769     if (filterInfo.contains("addmarkers")) markersType = filterInfo.value("addmarkers").toInt();
3770     if (results.isEmpty()) {
3771         emit displayMessage(i18n("No data returned from clip analysis"), 0, ErrorMessage);
3772         return;
3773     }
3774     bool dataProcessed = false;
3775     QString key = filterInfo.value("key");
3776     int offset = filterInfo.value("offset").toInt();
3777     QStringList value = results.value(key).split(';', QString::SkipEmptyParts);
3778     kDebug()<<"// RESULT; "<<key<<" = "<<value;
3779     if (filterInfo.contains("resultmessage")) {
3780         QString mess = filterInfo.value("resultmessage");
3781         mess.replace("%count", QString::number(value.count()));
3782         emit displayMessage(mess, 0, InformationMessage);
3783     }
3784     else emit displayMessage(i18n("Processing data analysis"), 0, InformationMessage);
3785     if (filterInfo.contains("cutscenes")) {
3786         // Check if we want to cut scenes from returned data
3787         dataProcessed = true;
3788         int cutPos = 0;
3789         QUndoCommand *command = new QUndoCommand();
3790         command->setText(i18n("Auto Split Clip"));
3791         foreach (QString pos, value) {
3792             if (!pos.contains("=")) continue;
3793             int newPos = pos.section("=", 0, 0).toInt();
3794             // Don't use scenes shorter than 1 second
3795             if (newPos - cutPos < 24) continue;
3796             (void) new AddClipCutCommand(this, id, cutPos + offset, newPos + offset, QString(), true, false, command);
3797             cutPos = newPos;
3798         }
3799         if (command->childCount() == 0)
3800             delete command;
3801         else m_commandStack->push(command);
3802     }
3803     if (markersType >= 0) {
3804         // Add markers from returned data
3805         dataProcessed = true;
3806         int cutPos = 0;
3807         QUndoCommand *command = new QUndoCommand();
3808         command->setText(i18n("Add Markers"));
3809         QList <CommentedTime> markersList;
3810         int index = 1;
3811         foreach (QString pos, value) {
3812             if (!pos.contains("=")) continue;
3813             int newPos = pos.section("=", 0, 0).toInt();
3814             // Don't use scenes shorter than 1 second
3815             if (newPos - cutPos < 24) continue;
3816             CommentedTime m(GenTime(newPos + offset, m_fps), QString::number(index), markersType);
3817             markersList << m;
3818             index++;
3819             cutPos = newPos;
3820         }
3821         emit addMarkers(id, markersList);
3822     }
3823     if (!dataProcessed || filterInfo.contains("storedata")) {
3824         // Store returned data as clip extra data
3825         clip->referencedClip()->setAnalysisData(filterInfo.contains("displaydataname") ? filterInfo.value("displaydataname") : key, results.value(key), filterInfo.value("offset").toInt());
3826         emit updateAnalysisData(clip->referencedClip());
3827     }
3828 }
3829
3830
3831 /*
3832 // Work in progress: apply filter based on clip's camcorder
3833 void ProjectList::checkCamcorderFilters(DocClipBase *clip, QMap <QString, QString> meta)
3834 {
3835     KConfig conf("camcorderfilters.rc", KConfig::CascadeConfig, "appdata");
3836     QStringList groups = conf.groupList();
3837     foreach(QString grp, groups) {
3838         if (!meta.contains(grp)) continue;
3839         KConfigGroup group(&conf, grp);
3840         QString value = group.readEntry(meta.value(grp));
3841         if (value.isEmpty()) continue;
3842         clip->setProperty(value.section(' ', 0, 0), value.section(' ', 1));
3843         break;
3844     }
3845 }*/
3846
3847 #include "projectlist.moc"