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