]> git.sesse.net Git - kdenlive/blob - src/projectlist.cpp
Image clips can be proxied too now
[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         m_refreshed = false;
1002         QDomElement e = clip->toXML().cloneNode().toElement();
1003         e.removeAttribute("file_hash");
1004         m_infoQueue.insert(clip->getId(), e);
1005     }
1006     else if (item->hasProxy() && !item->isProxyRunning()) {
1007         slotCreateProxy(clip->getId(), false);
1008     }
1009     clip->askForAudioThumbs();
1010     
1011     KUrl url = clip->fileURL();
1012     if (getProperties == false && !clip->getClipHash().isEmpty()) {
1013         QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + ".png";
1014         if (QFile::exists(cachedPixmap)) {
1015             QPixmap pix(cachedPixmap);
1016             if (pix.isNull())
1017                 KIO::NetAccess::del(KUrl(cachedPixmap), this);
1018             item->setData(0, Qt::DecorationRole, pix);
1019         }
1020     }
1021 #ifdef NEPOMUK
1022     if (!url.isEmpty() && KdenliveSettings::activate_nepomuk()) {
1023         // if file has Nepomuk comment, use it
1024         Nepomuk::Resource f(url.path());
1025         QString annotation = f.description();
1026         if (!annotation.isEmpty()) item->setText(1, annotation);
1027         item->setText(2, QString::number(f.rating()));
1028     }
1029 #endif
1030     // Add cut zones
1031     QList <CutZoneInfo> cuts = clip->cutZones();
1032     if (!cuts.isEmpty()) {
1033         for (int i = 0; i < cuts.count(); i++) {
1034             SubProjectItem *sub = new SubProjectItem(item, cuts.at(i).zone.x(), cuts.at(i).zone.y(), cuts.at(i).description);
1035             if (!clip->getClipHash().isEmpty()) {
1036                 QString cachedPixmap = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "thumbs/" + clip->getClipHash() + '#' + QString::number(cuts.at(i).zone.x()) + ".png";
1037                 if (QFile::exists(cachedPixmap)) {
1038                     QPixmap pix(cachedPixmap);
1039                     if (pix.isNull())
1040                         KIO::NetAccess::del(KUrl(cachedPixmap), this);
1041                     sub->setData(0, Qt::DecorationRole, pix);
1042                 }
1043             }
1044         }
1045     }
1046     monitorItemEditing(true);
1047     if (m_listView->isEnabled()) {
1048         updateButtons();
1049     }
1050     
1051     if (getProperties && m_processingClips.isEmpty())
1052         m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1053 }
1054
1055 void ProjectList::slotGotProxy(const QString &id)
1056 {
1057     ProjectItem *item = getItemById(id);
1058     if (item) {
1059         // Proxy clip successfully created
1060         QDomElement e = item->referencedClip()->toXML().cloneNode().toElement();  
1061         //e.removeAttribute("file_hash");
1062
1063         // Make sure we get the correct producer length if it was adjusted in timeline
1064         CLIPTYPE t = item->clipType();
1065         if (t == COLOR || t == IMAGE || t == SLIDESHOW || t == TEXT) {
1066             int length = QString(item->referencedClip()->producerProperty("length")).toInt();
1067             if (length > 0 && !e.hasAttribute("length")) {
1068                 e.setAttribute("length", length);
1069             }
1070         }
1071         e.setAttribute("replace", 1);
1072         m_infoQueue.insert(id, e);
1073         if (!m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1074     }
1075 }
1076
1077 void ProjectList::slotResetProjectList()
1078 {
1079     m_listView->clear();
1080     emit clipSelected(NULL);
1081     m_thumbnailQueue.clear();
1082     m_infoQueue.clear();
1083     m_refreshed = false;
1084 }
1085
1086 void ProjectList::requestClipInfo(const QDomElement xml, const QString id)
1087 {
1088     m_refreshed = false;
1089     m_infoQueue.insert(id, xml);
1090     //if (m_infoQueue.count() == 1 || ) QTimer::singleShot(300, this, SLOT(slotProcessNextClipInQueue()));
1091 }
1092
1093 void ProjectList::slotProcessNextClipInQueue()
1094 {
1095     if (m_infoQueue.isEmpty()) {
1096         emit processNextThumbnail();
1097         return;
1098     }
1099
1100     QMap<QString, QDomElement>::const_iterator j = m_infoQueue.constBegin();
1101     if (j != m_infoQueue.constEnd()) {
1102         QDomElement dom = j.value();
1103         const QString id = j.key();
1104         m_infoQueue.remove(id);
1105         m_processingClips.append(id);
1106         bool replace;
1107         if (dom.hasAttribute("replace")) {
1108             // Proxy action was enabled / disabled and we want to replace current producer
1109             dom.removeAttribute("replace");
1110             replace = true;
1111         }
1112         else replace = false;
1113         bool selectClip = !replace;
1114         if (m_infoQueue.count() > 1) selectClip = false;
1115         emit getFileProperties(dom, id, m_listView->iconSize().height(), replace, selectClip);
1116     }
1117 }
1118
1119 void ProjectList::slotUpdateClip(const QString &id)
1120 {
1121     ProjectItem *item = getItemById(id);
1122     monitorItemEditing(false);
1123     if (item) item->setData(0, UsageRole, QString::number(item->numReferences()));
1124     monitorItemEditing(true);
1125 }
1126
1127 void ProjectList::updateAllClips()
1128 {
1129     m_listView->setSortingEnabled(false);
1130     kDebug() << "// UPDATE ALL CLPY";
1131
1132     QTreeWidgetItemIterator it(m_listView);
1133     DocClipBase *clip;
1134     ProjectItem *item;
1135     monitorItemEditing(false);
1136     while (*it) {
1137         if ((*it)->type() == PROJECTSUBCLIPTYPE) {
1138             // subitem
1139             SubProjectItem *sub = static_cast <SubProjectItem *>(*it);
1140             if (sub->data(0, Qt::DecorationRole).isNull()) {
1141                 item = static_cast <ProjectItem *>((*it)->parent());
1142                 requestClipThumbnail(item->clipId() + '#' + QString::number(sub->zone().x()));
1143             }
1144             ++it;
1145             continue;
1146         } else if ((*it)->type() == PROJECTFOLDERTYPE) {
1147             // folder
1148             ++it;
1149             continue;
1150         } else {
1151             item = static_cast <ProjectItem *>(*it);
1152             clip = item->referencedClip();
1153             if (item->referencedClip()->producer() == NULL) {
1154                 if (clip->isPlaceHolder() == false)
1155                     requestClipInfo(clip->toXML(), clip->getId());
1156                 else if (!clip->isPlaceHolder())
1157                     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
1158             } else {
1159                 if (item->data(0, Qt::DecorationRole).isNull())
1160                     requestClipThumbnail(clip->getId());
1161                 if (item->data(0, DurationRole).toString().isEmpty()) {
1162                     item->changeDuration(item->referencedClip()->producer()->get_playtime());
1163                 }
1164             }
1165             item->setData(0, UsageRole, QString::number(item->numReferences()));
1166         }
1167         //qApp->processEvents();
1168         ++it;
1169     }
1170
1171     if (!m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1172     if (m_listView->isEnabled())
1173         monitorItemEditing(true);
1174     m_listView->setSortingEnabled(true);
1175     if (m_infoQueue.isEmpty())
1176         slotProcessNextThumbnail();
1177 }
1178
1179 // static
1180 QString ProjectList::getExtensions()
1181 {
1182     // Build list of mime types
1183     QStringList mimeTypes = QStringList() << "application/x-kdenlive" << "application/x-kdenlivetitle" << "video/mlt-playlist" << "text/plain"
1184                             << "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"
1185                             << "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"
1186                             << "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";
1187
1188     QString allExtensions;
1189     foreach(const QString & mimeType, mimeTypes) {
1190         KMimeType::Ptr mime(KMimeType::mimeType(mimeType));
1191         if (mime) {
1192             allExtensions.append(mime->patterns().join(" "));
1193             allExtensions.append(' ');
1194         }
1195     }
1196     return allExtensions.simplified();
1197 }
1198
1199 void ProjectList::slotAddClip(const QList <QUrl> givenList, const QString &groupName, const QString &groupId)
1200 {
1201     if (!m_commandStack)
1202         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1203
1204     KUrl::List list;
1205     if (givenList.isEmpty()) {
1206         QString allExtensions = getExtensions();
1207         const QString dialogFilter = allExtensions + ' ' + QLatin1Char('|') + i18n("All Supported Files") + "\n* " + QLatin1Char('|') + i18n("All Files");
1208         QCheckBox *b = new QCheckBox(i18n("Import image sequence"));
1209         b->setChecked(KdenliveSettings::autoimagesequence());
1210         QCheckBox *c = new QCheckBox(i18n("Transparent background for images"));
1211         c->setChecked(KdenliveSettings::autoimagetransparency());
1212         QFrame *f = new QFrame;
1213         f->setFrameShape(QFrame::NoFrame);
1214         QHBoxLayout *l = new QHBoxLayout;
1215         l->addWidget(b);
1216         l->addWidget(c);
1217         l->addStretch(5);
1218         f->setLayout(l);
1219         KFileDialog *d = new KFileDialog(KUrl("kfiledialog:///clipfolder"), dialogFilter, kapp->activeWindow(), f);
1220         d->setOperationMode(KFileDialog::Opening);
1221         d->setMode(KFile::Files);
1222         if (d->exec() == QDialog::Accepted) {
1223             KdenliveSettings::setAutoimagetransparency(c->isChecked());
1224         }
1225         list = d->selectedUrls();
1226         if (b->isChecked() && list.count() == 1) {
1227             // Check for image sequence
1228             KUrl url = list.at(0);
1229             QString fileName = url.fileName().section('.', 0, -2);
1230             if (fileName.at(fileName.size() - 1).isDigit()) {
1231                 KFileItem item(KFileItem::Unknown, KFileItem::Unknown, url);
1232                 if (item.mimetype().startsWith("image")) {
1233                     // import as sequence if we found more than one image in the sequence
1234                     QStringList list;
1235                     QString pattern = SlideshowClip::selectedPath(url.path(), false, QString(), &list);
1236                     int count = list.count();
1237                     if (count > 1) {
1238                         delete d;
1239                         QStringList groupInfo = getGroup();
1240
1241                         // get image sequence base name
1242                         while (fileName.at(fileName.size() - 1).isDigit()) {
1243                             fileName.chop(1);
1244                         }
1245
1246                         m_doc->slotCreateSlideshowClipFile(fileName, pattern, count, m_timecode.reformatSeparators(KdenliveSettings::sequence_duration()),
1247                                                            false, false, false,
1248                                                            m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))), QString(), 0,
1249                                                            QString(), groupInfo.at(0), groupInfo.at(1));
1250                         return;
1251                     }
1252                 }
1253             }
1254         }
1255         delete d;
1256     } else {
1257         for (int i = 0; i < givenList.count(); i++)
1258             list << givenList.at(i);
1259     }
1260
1261     foreach(const KUrl & file, list) {
1262         // Check there is no folder here
1263         KMimeType::Ptr type = KMimeType::findByUrl(file);
1264         if (type->is("inode/directory")) {
1265             // user dropped a folder
1266             list.removeAll(file);
1267         }
1268     }
1269
1270     if (list.isEmpty())
1271         return;
1272
1273     if (givenList.isEmpty()) {
1274         QStringList groupInfo = getGroup();
1275         m_doc->slotAddClipList(list, groupInfo.at(0), groupInfo.at(1));
1276     } else {
1277         m_doc->slotAddClipList(list, groupName, groupId);
1278     }
1279 }
1280
1281 void ProjectList::slotRemoveInvalidClip(const QString &id, bool replace)
1282 {
1283     ProjectItem *item = getItemById(id);
1284     m_processingClips.removeAll(id);
1285     if (!m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1286     if (item) {
1287         const QString path = item->referencedClip()->fileURL().path();
1288         if (item->referencedClip()->isPlaceHolder()) replace = false;
1289         if (!path.isEmpty()) {
1290             if (replace)
1291                 KMessageBox::sorry(kapp->activeWindow(), i18n("Clip <b>%1</b><br />is invalid, will be removed from project.", path));
1292             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)
1293                 replace = true;
1294         }
1295         if (replace)
1296             emit deleteProjectClips(QStringList() << id, QMap <QString, QString>());
1297     }
1298 }
1299
1300 void ProjectList::slotRemoveInvalidProxy(const QString &id)
1301 {
1302     ProjectItem *item = getItemById(id);
1303     if (item) {
1304         item->setProxyStatus(PROXYCRASHED);
1305         QString path = item->referencedClip()->getProperty("proxy");
1306         KUrl proxyFolder(m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/");
1307
1308         //Security check: make sure the invalid proxy file is in the proxy folder
1309         if (proxyFolder.isParentOf(KUrl(path))) {
1310             QFile::remove(path);
1311         }
1312     }
1313     m_processingClips.removeAll(id);
1314     if (!m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1315 }
1316
1317 void ProjectList::slotAddColorClip()
1318 {
1319     if (!m_commandStack)
1320         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1321
1322     QDialog *dia = new QDialog(this);
1323     Ui::ColorClip_UI dia_ui;
1324     dia_ui.setupUi(dia);
1325     dia->setWindowTitle(i18n("Color Clip"));
1326     dia_ui.clip_name->setText(i18n("Color Clip"));
1327
1328     TimecodeDisplay *t = new TimecodeDisplay(m_timecode);
1329     t->setValue(KdenliveSettings::color_duration());
1330     t->setTimeCodeFormat(false);
1331     dia_ui.clip_durationBox->addWidget(t);
1332     dia_ui.clip_color->setColor(KdenliveSettings::colorclipcolor());
1333
1334     if (dia->exec() == QDialog::Accepted) {
1335         QString color = dia_ui.clip_color->color().name();
1336         KdenliveSettings::setColorclipcolor(color);
1337         color = color.replace(0, 1, "0x") + "ff";
1338         QStringList groupInfo = getGroup();
1339         m_doc->slotCreateColorClip(dia_ui.clip_name->text(), color, m_timecode.getTimecode(t->gentime()), groupInfo.at(0), groupInfo.at(1));
1340     }
1341     delete t;
1342     delete dia;
1343 }
1344
1345
1346 void ProjectList::slotAddSlideshowClip()
1347 {
1348     if (!m_commandStack)
1349         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1350
1351     SlideshowClip *dia = new SlideshowClip(m_timecode, this);
1352
1353     if (dia->exec() == QDialog::Accepted) {
1354         QStringList groupInfo = getGroup();
1355         m_doc->slotCreateSlideshowClipFile(dia->clipName(), dia->selectedPath(), dia->imageCount(), dia->clipDuration(),
1356                                            dia->loop(), dia->crop(), dia->fade(),
1357                                            dia->lumaDuration(), dia->lumaFile(), dia->softness(),
1358                                            dia->animation(), groupInfo.at(0), groupInfo.at(1));
1359     }
1360     delete dia;
1361 }
1362
1363 void ProjectList::slotAddTitleClip()
1364 {
1365     QStringList groupInfo = getGroup();
1366     m_doc->slotCreateTextClip(groupInfo.at(0), groupInfo.at(1));
1367 }
1368
1369 void ProjectList::slotAddTitleTemplateClip()
1370 {
1371     if (!m_commandStack)
1372         kDebug() << "!!!!!!!!!!!!!!!! NO CMD STK";
1373
1374     QStringList groupInfo = getGroup();
1375
1376     // Get the list of existing templates
1377     QStringList filter;
1378     filter << "*.kdenlivetitle";
1379     const QString path = m_doc->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
1380     QStringList templateFiles = QDir(path).entryList(filter, QDir::Files);
1381
1382     QDialog *dia = new QDialog(this);
1383     Ui::TemplateClip_UI dia_ui;
1384     dia_ui.setupUi(dia);
1385     for (int i = 0; i < templateFiles.size(); ++i)
1386         dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), path + templateFiles.at(i));
1387
1388     if (!templateFiles.isEmpty())
1389         dia_ui.buttonBox->button(QDialogButtonBox::Ok)->setFocus();
1390     dia_ui.template_list->fileDialog()->setFilter("application/x-kdenlivetitle");
1391     //warning: setting base directory doesn't work??
1392     KUrl startDir(path);
1393     dia_ui.template_list->fileDialog()->setUrl(startDir);
1394     dia_ui.text_box->setHidden(true);
1395     if (dia->exec() == QDialog::Accepted) {
1396         QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
1397         if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
1398         // Create a cloned template clip
1399         m_doc->slotCreateTextTemplateClip(groupInfo.at(0), groupInfo.at(1), KUrl(textTemplate));
1400     }
1401     delete dia;
1402 }
1403
1404 QStringList ProjectList::getGroup() const
1405 {
1406     QStringList result;
1407     QTreeWidgetItem *item = m_listView->currentItem();
1408     while (item && item->type() != PROJECTFOLDERTYPE)
1409         item = item->parent();
1410
1411     if (item) {
1412         FolderProjectItem *folder = static_cast <FolderProjectItem *>(item);
1413         result << folder->groupName() << folder->clipId();
1414     } else {
1415         result << QString() << QString();
1416     }
1417     return result;
1418 }
1419
1420 void ProjectList::setDocument(KdenliveDoc *doc)
1421 {
1422     m_listView->blockSignals(true);
1423     m_listView->clear();
1424     m_processingClips.clear();
1425     m_listView->setSortingEnabled(false);
1426     emit clipSelected(NULL);
1427     m_thumbnailQueue.clear();
1428     m_infoQueue.clear();
1429     m_refreshed = false;
1430     m_fps = doc->fps();
1431     m_timecode = doc->timecode();
1432     m_commandStack = doc->commandStack();
1433     m_doc = doc;
1434     m_proxyList.clear();
1435
1436     QMap <QString, QString> flist = doc->clipManager()->documentFolderList();
1437     QMapIterator<QString, QString> f(flist);
1438     while (f.hasNext()) {
1439         f.next();
1440         (void) new FolderProjectItem(m_listView, QStringList() << f.value(), f.key());
1441     }
1442
1443     QList <DocClipBase*> list = doc->clipManager()->documentClipList();
1444     for (int i = 0; i < list.count(); i++)
1445         slotAddClip(list.at(i), false);
1446
1447     m_listView->blockSignals(false);
1448     connect(m_doc->clipManager(), SIGNAL(reloadClip(const QString &)), this, SLOT(slotReloadClip(const QString &)));
1449     connect(m_doc->clipManager(), SIGNAL(modifiedClip(const QString &)), this, SLOT(slotModifiedClip(const QString &)));
1450     connect(m_doc->clipManager(), SIGNAL(missingClip(const QString &)), this, SLOT(slotMissingClip(const QString &)));
1451     connect(m_doc->clipManager(), SIGNAL(availableClip(const QString &)), this, SLOT(slotAvailableClip(const QString &)));
1452     connect(m_doc->clipManager(), SIGNAL(checkAllClips()), this, SLOT(updateAllClips()));
1453 }
1454
1455 QList <DocClipBase*> ProjectList::documentClipList() const
1456 {
1457     if (m_doc == NULL)
1458         return QList <DocClipBase*> ();
1459
1460     return m_doc->clipManager()->documentClipList();
1461 }
1462
1463 QDomElement ProjectList::producersList()
1464 {
1465     QDomDocument doc;
1466     QDomElement prods = doc.createElement("producerlist");
1467     doc.appendChild(prods);
1468     kDebug() << "////////////  PRO LIST BUILD PRDSLIST ";
1469     QTreeWidgetItemIterator it(m_listView);
1470     while (*it) {
1471         if ((*it)->type() != PROJECTCLIPTYPE) {
1472             // subitem
1473             ++it;
1474             continue;
1475         }
1476         prods.appendChild(doc.importNode(((ProjectItem *)(*it))->toXml(), true));
1477         ++it;
1478     }
1479     return prods;
1480 }
1481
1482 void ProjectList::slotCheckForEmptyQueue()
1483 {
1484     if (!m_refreshed && m_thumbnailQueue.isEmpty() && m_infoQueue.isEmpty()) {
1485         m_refreshed = true;
1486         emit loadingIsOver();
1487         emit displayMessage(QString(), -1);
1488         m_listView->blockSignals(false);
1489         m_listView->setEnabled(true);
1490         updateButtons();
1491     } else if (!m_refreshed) {
1492         QTimer::singleShot(300, this, SLOT(slotCheckForEmptyQueue()));
1493     }
1494 }
1495
1496 void ProjectList::reloadClipThumbnails()
1497 {
1498     m_thumbnailQueue.clear();
1499     QTreeWidgetItemIterator it(m_listView);
1500     while (*it) {
1501         if ((*it)->type() != PROJECTCLIPTYPE) {
1502             // subitem
1503             ++it;
1504             continue;
1505         }
1506         m_thumbnailQueue << ((ProjectItem *)(*it))->clipId();
1507         ++it;
1508     }
1509     QTimer::singleShot(300, this, SLOT(slotProcessNextThumbnail()));
1510 }
1511
1512 void ProjectList::requestClipThumbnail(const QString id)
1513 {
1514     if (!m_thumbnailQueue.contains(id)) m_thumbnailQueue.append(id);
1515 }
1516
1517 void ProjectList::slotProcessNextThumbnail()
1518 {
1519     if (m_thumbnailQueue.isEmpty() && m_infoQueue.isEmpty()) {
1520         slotCheckForEmptyQueue();
1521         return;
1522     }
1523     if (!m_infoQueue.isEmpty()) {
1524         //QTimer::singleShot(300, this, SLOT(slotProcessNextThumbnail()));
1525         return;
1526     }
1527     if (m_thumbnailQueue.count() > 1) {
1528         int max = m_doc->clipManager()->clipsCount();
1529         emit displayMessage(i18n("Loading thumbnails"), (int)(100 *(max - m_thumbnailQueue.count()) / max));
1530     }
1531     slotRefreshClipThumbnail(m_thumbnailQueue.takeFirst(), false);
1532 }
1533
1534 void ProjectList::slotRefreshClipThumbnail(const QString &clipId, bool update)
1535 {
1536     QTreeWidgetItem *item = getAnyItemById(clipId);
1537     if (item)
1538         slotRefreshClipThumbnail(item, update);
1539     else
1540         slotProcessNextThumbnail();
1541 }
1542
1543 void ProjectList::slotRefreshClipThumbnail(QTreeWidgetItem *it, bool update)
1544 {
1545     if (it == NULL) return;
1546     ProjectItem *item = NULL;
1547     bool isSubItem = false;
1548     int frame;
1549     if (it->type() == PROJECTFOLDERTYPE) return;
1550     if (it->type() == PROJECTSUBCLIPTYPE) {
1551         item = static_cast <ProjectItem *>(it->parent());
1552         frame = static_cast <SubProjectItem *>(it)->zone().x();
1553         isSubItem = true;
1554     } else {
1555         item = static_cast <ProjectItem *>(it);
1556         frame = item->referencedClip()->getClipThumbFrame();
1557     }
1558
1559     if (item) {
1560         DocClipBase *clip = item->referencedClip();
1561         if (!clip) {
1562             slotProcessNextThumbnail();
1563             return;
1564         }
1565         QPixmap pix;
1566         int height = m_listView->iconSize().height();
1567         int width = (int)(height  * m_render->dar());
1568         if (clip->clipType() == AUDIO)
1569             pix = KIcon("audio-x-generic").pixmap(QSize(width, height));
1570         else if (clip->clipType() == IMAGE)
1571             pix = QPixmap::fromImage(KThumb::getFrame(item->referencedClip()->producer(), 0, width, height));
1572         else
1573             pix = item->referencedClip()->thumbProducer()->extractImage(frame, width, height);
1574
1575         if (!pix.isNull()) {
1576             monitorItemEditing(false);
1577             it->setData(0, Qt::DecorationRole, pix);
1578             monitorItemEditing(true);
1579                 
1580             if (!isSubItem)
1581                 m_doc->cachePixmap(item->getClipHash(), pix);
1582             else
1583                 m_doc->cachePixmap(item->getClipHash() + '#' + QString::number(frame), pix);
1584         }
1585         if (update)
1586             emit projectModified();
1587
1588         slotProcessNextThumbnail();
1589     }
1590 }
1591
1592 void ProjectList::slotReplyGetFileProperties(const QString &clipId, Mlt::Producer *producer, const QMap < QString, QString > &properties, const QMap < QString, QString > &metadata, bool replace, bool selectClip)
1593 {
1594     QString toReload;
1595     ProjectItem *item = getItemById(clipId);
1596     m_processingClips.removeAll(clipId);
1597     if (m_infoQueue.isEmpty() && m_processingClips.isEmpty()) m_listView->setEnabled(true);
1598     if (item && producer) {
1599         //m_listView->blockSignals(true);
1600         monitorItemEditing(false);
1601         item->setProperties(properties, metadata);
1602         if (item->referencedClip()->isPlaceHolder() && producer->is_valid()) {
1603             item->referencedClip()->setValid();
1604             item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
1605             toReload = clipId;
1606         }
1607         
1608         // Proxy stuff
1609         QString size = properties.value("frame_size");
1610         DocClipBase *clip = item->referencedClip();
1611         if (!useProxy() && item->referencedClip()->getProperty("proxy").isEmpty()) setProxyStatus(item, NOPROXY);
1612         if (useProxy() && generateProxy() && item->referencedClip()->getProperty("proxy") == "-") setProxyStatus(item, NOPROXY);
1613         else if (useProxy() && !item->isProxyRunning() && (item->clipType() == AV || item->clipType() == VIDEO) && generateProxy() && size.section('x', 0, 0).toInt() > m_doc->getDocumentProperty("proxyminsize").toInt()) {
1614             if (clip->getProperty("proxy").isEmpty()) {
1615                 QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
1616                 QMap <QString, QString> newProps;
1617                 newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + "." + m_doc->getDocumentProperty("proxyextension"));
1618                 QMap <QString, QString> oldProps = clip->properties();
1619                 oldProps.insert("proxy", QString());
1620                 EditClipCommand *command = new EditClipCommand(this, clipId, oldProps, newProps, true);
1621                 m_doc->commandStack()->push(command);
1622             }
1623         }
1624         
1625         clip->setProducer(producer, replace);
1626         clip->askForAudioThumbs();
1627         if (!replace && item->data(0, Qt::DecorationRole).isNull())
1628             requestClipThumbnail(clipId);
1629         if (!toReload.isEmpty())
1630             item->slotSetToolTip();
1631
1632         if (m_listView->isEnabled() && replace) {
1633             // update clip in clip monitor
1634             emit clipSelected(NULL);
1635             emit clipSelected(clip);
1636             //TODO: Make sure the line below has no side effect
1637             toReload = clipId;
1638         }
1639         /*else {
1640             // Check if duration changed.
1641             emit receivedClipDuration(clipId);
1642             delete producer;
1643         }*/
1644         if (m_listView->isEnabled())
1645             monitorItemEditing(true);
1646         /*if (item->icon(0).isNull()) {
1647             requestClipThumbnail(clipId);
1648         }*/
1649     } else kDebug() << "////////  COULD NOT FIND CLIP TO UPDATE PRPS...";
1650     if (selectClip && m_infoQueue.isEmpty()) {
1651     if (item && m_infoQueue.isEmpty() && m_thumbnailQueue.isEmpty()) {
1652         m_listView->setCurrentItem(item);
1653         bool updatedProfile = false;
1654         if (item->parent()) {
1655             if (item->parent()->type() == PROJECTFOLDERTYPE)
1656                 static_cast <FolderProjectItem *>(item->parent())->switchIcon();
1657         } else if (KdenliveSettings::checkfirstprojectclip() &&  m_listView->topLevelItemCount() == 1) {
1658             // this is the first clip loaded in project, check if we want to adjust project settings to the clip
1659             updatedProfile = adjustProjectProfileToItem(item);
1660         }
1661         if (updatedProfile == false) emit clipSelected(item->referencedClip());
1662     } else {
1663         int max = m_doc->clipManager()->clipsCount();
1664         emit displayMessage(i18n("Loading clips"), (int)(100 *(max - m_infoQueue.count()) / max));
1665     }
1666     }
1667     if (!toReload.isEmpty())
1668         emit clipNeedsReload(toReload, true);
1669
1670     if (!m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
1671 }
1672
1673 bool ProjectList::adjustProjectProfileToItem(ProjectItem *item)
1674 {
1675     if (item == NULL) {
1676         if (m_listView->currentItem() && m_listView->currentItem()->type() != PROJECTFOLDERTYPE)
1677             item = static_cast <ProjectItem*>(m_listView->currentItem());
1678     }
1679     if (item == NULL || item->referencedClip() == NULL) {
1680         KMessageBox::information(kapp->activeWindow(), i18n("Cannot find profile from current clip"));
1681         return false;
1682     }
1683     bool profileUpdated = false;
1684     QString size = item->referencedClip()->getProperty("frame_size");
1685     int width = size.section('x', 0, 0).toInt();
1686     int height = size.section('x', -1).toInt();
1687     double fps = item->referencedClip()->getProperty("fps").toDouble();
1688     double par = item->referencedClip()->getProperty("aspect_ratio").toDouble();
1689     if (item->clipType() == IMAGE || item->clipType() == AV || item->clipType() == VIDEO) {
1690         if (ProfilesDialog::matchProfile(width, height, fps, par, item->clipType() == IMAGE, m_doc->mltProfile()) == false) {
1691             // get a list of compatible profiles
1692             QMap <QString, QString> suggestedProfiles = ProfilesDialog::getProfilesFromProperties(width, height, fps, par, item->clipType() == IMAGE);
1693             if (!suggestedProfiles.isEmpty()) {
1694                 KDialog *dialog = new KDialog(this);
1695                 dialog->setCaption(i18n("Change project profile"));
1696                 dialog->setButtons(KDialog::Ok | KDialog::Cancel);
1697
1698                 QWidget container;
1699                 QVBoxLayout *l = new QVBoxLayout;
1700                 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));
1701                 l->addWidget(label);
1702                 QListWidget *list = new QListWidget;
1703                 list->setAlternatingRowColors(true);
1704                 QMapIterator<QString, QString> i(suggestedProfiles);
1705                 while (i.hasNext()) {
1706                     i.next();
1707                     QListWidgetItem *item = new QListWidgetItem(i.value(), list);
1708                     item->setData(Qt::UserRole, i.key());
1709                     item->setToolTip(i.key());
1710                 }
1711                 list->setCurrentRow(0);
1712                 l->addWidget(list);
1713                 container.setLayout(l);
1714                 dialog->setButtonText(KDialog::Ok, i18n("Update profile"));
1715                 dialog->setMainWidget(&container);
1716                 if (dialog->exec() == QDialog::Accepted) {
1717                     //Change project profile
1718                     profileUpdated = true;
1719                     if (list->currentItem())
1720                         emit updateProfile(list->currentItem()->data(Qt::UserRole).toString());
1721                 }
1722                 delete list;
1723                 delete label;
1724             } else if (fps > 0) {
1725                 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));
1726             }
1727         }
1728     }
1729     return profileUpdated;
1730 }
1731
1732 QString ProjectList::getDocumentProperty(const QString &key) const
1733 {
1734     return m_doc->getDocumentProperty(key);
1735 }
1736
1737 bool ProjectList::useProxy() const
1738 {
1739     return m_doc->getDocumentProperty("enableproxy").toInt();
1740 }
1741
1742 bool ProjectList::generateProxy() const
1743 {
1744     return m_doc->getDocumentProperty("generateproxy").toInt();
1745 }
1746
1747 bool ProjectList::generateImageProxy() const
1748 {
1749     return m_doc->getDocumentProperty("generateimageproxy").toInt();
1750 }
1751
1752 void ProjectList::slotReplyGetImage(const QString &clipId, const QPixmap &pix)
1753 {
1754     ProjectItem *item = getItemById(clipId);
1755     if (item && !pix.isNull()) {
1756         monitorItemEditing(false);
1757         item->setData(0, Qt::DecorationRole, pix);
1758         monitorItemEditing(true);
1759         m_doc->cachePixmap(item->getClipHash(), pix);
1760         if (m_listView->isEnabled())
1761             m_listView->blockSignals(false);
1762     }
1763 }
1764
1765 QTreeWidgetItem *ProjectList::getAnyItemById(const QString &id)
1766 {
1767     QTreeWidgetItemIterator it(m_listView);
1768     QString lookId = id;
1769     if (id.contains('#'))
1770         lookId = id.section('#', 0, 0);
1771
1772     ProjectItem *result = NULL;
1773     while (*it) {
1774         if ((*it)->type() != PROJECTCLIPTYPE) {
1775             // subitem
1776             ++it;
1777             continue;
1778         }
1779         ProjectItem *item = static_cast<ProjectItem *>(*it);
1780         if (item->clipId() == lookId) {
1781             result = item;
1782             break;
1783         }
1784         ++it;
1785     }
1786     if (result == NULL || !id.contains('#')) {
1787         return result;
1788     } else {
1789         for (int i = 0; i < result->childCount(); i++) {
1790             SubProjectItem *sub = static_cast <SubProjectItem *>(result->child(i));
1791             if (sub && sub->zone().x() == id.section('#', 1, 1).toInt())
1792                 return sub;
1793         }
1794     }
1795
1796     return NULL;
1797 }
1798
1799
1800 ProjectItem *ProjectList::getItemById(const QString &id)
1801 {
1802     ProjectItem *item;
1803     QTreeWidgetItemIterator it(m_listView);
1804     while (*it) {
1805         if ((*it)->type() != PROJECTCLIPTYPE) {
1806             // subitem or folder
1807             ++it;
1808             continue;
1809         }
1810         item = static_cast<ProjectItem *>(*it);
1811         if (item->clipId() == id)
1812             return item;
1813         ++it;
1814     }
1815     return NULL;
1816 }
1817
1818 FolderProjectItem *ProjectList::getFolderItemById(const QString &id)
1819 {
1820     FolderProjectItem *item;
1821     QTreeWidgetItemIterator it(m_listView);
1822     while (*it) {
1823         if ((*it)->type() == PROJECTFOLDERTYPE) {
1824             item = static_cast<FolderProjectItem *>(*it);
1825             if (item->clipId() == id)
1826                 return item;
1827         }
1828         ++it;
1829     }
1830     return NULL;
1831 }
1832
1833 void ProjectList::slotSelectClip(const QString &ix)
1834 {
1835     ProjectItem *clip = getItemById(ix);
1836     if (clip) {
1837         m_listView->setCurrentItem(clip);
1838         m_listView->scrollToItem(clip);
1839         m_editButton->defaultAction()->setEnabled(true);
1840         m_deleteButton->defaultAction()->setEnabled(true);
1841         m_reloadAction->setEnabled(true);
1842         m_transcodeAction->setEnabled(true);
1843         m_proxyAction->setEnabled(useProxy());
1844         if (clip->clipType() == IMAGE && !KdenliveSettings::defaultimageapp().isEmpty()) {
1845             m_openAction->setIcon(KIcon(KdenliveSettings::defaultimageapp()));
1846             m_openAction->setEnabled(true);
1847         } else if (clip->clipType() == AUDIO && !KdenliveSettings::defaultaudioapp().isEmpty()) {
1848             m_openAction->setIcon(KIcon(KdenliveSettings::defaultaudioapp()));
1849             m_openAction->setEnabled(true);
1850         } else {
1851             m_openAction->setEnabled(false);
1852         }
1853     }
1854 }
1855
1856 QString ProjectList::currentClipUrl() const
1857 {
1858     ProjectItem *item;
1859     if (!m_listView->currentItem() || m_listView->currentItem()->type() == PROJECTFOLDERTYPE) return QString();
1860     if (m_listView->currentItem()->type() == PROJECTSUBCLIPTYPE) {
1861         // subitem
1862         item = static_cast <ProjectItem*>(m_listView->currentItem()->parent());
1863     } else {
1864         item = static_cast <ProjectItem*>(m_listView->currentItem());
1865     }
1866     if (item == NULL)
1867         return QString();
1868     return item->clipUrl().path();
1869 }
1870
1871 KUrl::List ProjectList::getConditionalUrls(const QString &condition) const
1872 {
1873     KUrl::List result;
1874     ProjectItem *item;
1875     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
1876     for (int i = 0; i < list.count(); i++) {
1877         if (list.at(i)->type() == PROJECTFOLDERTYPE)
1878             continue;
1879         if (list.at(i)->type() == PROJECTSUBCLIPTYPE) {
1880             // subitem
1881             item = static_cast <ProjectItem*>(list.at(i)->parent());
1882         } else {
1883             item = static_cast <ProjectItem*>(list.at(i));
1884         }
1885         if (item == NULL || item->type() == COLOR || item->type() == SLIDESHOW || item->type() == TEXT)
1886             continue;
1887         DocClipBase *clip = item->referencedClip();
1888         if (!condition.isEmpty()) {
1889             if (condition.startsWith("vcodec") && !clip->hasVideoCodec(condition.section('=', 1, 1)))
1890                 continue;
1891             else if (condition.startsWith("acodec") && !clip->hasAudioCodec(condition.section('=', 1, 1)))
1892                 continue;
1893         }
1894         result.append(item->clipUrl());
1895     }
1896     return result;
1897 }
1898
1899 void ProjectList::regenerateTemplate(const QString &id)
1900 {
1901     ProjectItem *clip = getItemById(id);
1902     if (clip)
1903         regenerateTemplate(clip);
1904 }
1905
1906 void ProjectList::regenerateTemplate(ProjectItem *clip)
1907 {
1908     //TODO: remove this unused method, only force_reload is necessary
1909     clip->referencedClip()->producer()->set("force_reload", 1);
1910 }
1911
1912 QDomDocument ProjectList::generateTemplateXml(QString path, const QString &replaceString)
1913 {
1914     QDomDocument doc;
1915     QFile file(path);
1916     if (!file.open(QIODevice::ReadOnly)) {
1917         kWarning() << "ERROR, CANNOT READ: " << path;
1918         return doc;
1919     }
1920     if (!doc.setContent(&file)) {
1921         kWarning() << "ERROR, CANNOT READ: " << path;
1922         file.close();
1923         return doc;
1924     }
1925     file.close();
1926     QDomNodeList texts = doc.elementsByTagName("content");
1927     for (int i = 0; i < texts.count(); i++) {
1928         QString data = texts.item(i).firstChild().nodeValue();
1929         data.replace("%s", replaceString);
1930         texts.item(i).firstChild().setNodeValue(data);
1931     }
1932     return doc;
1933 }
1934
1935
1936 void ProjectList::slotAddClipCut(const QString &id, int in, int out)
1937 {
1938     ProjectItem *clip = getItemById(id);
1939     if (clip == NULL || clip->referencedClip()->hasCutZone(QPoint(in, out)))
1940         return;
1941     AddClipCutCommand *command = new AddClipCutCommand(this, id, in, out, QString(), true, false);
1942     m_commandStack->push(command);
1943 }
1944
1945 void ProjectList::addClipCut(const QString &id, int in, int out, const QString desc, bool newItem)
1946 {
1947     ProjectItem *clip = getItemById(id);
1948     if (clip) {
1949         DocClipBase *base = clip->referencedClip();
1950         base->addCutZone(in, out);
1951         monitorItemEditing(false);
1952         SubProjectItem *sub = new SubProjectItem(clip, in, out, desc);
1953         if (newItem && desc.isEmpty() && !m_listView->isColumnHidden(1)) {
1954             if (!clip->isExpanded())
1955                 clip->setExpanded(true);
1956             m_listView->scrollToItem(sub);
1957             m_listView->editItem(sub, 1);
1958         }
1959         QPixmap p = clip->referencedClip()->thumbProducer()->extractImage(in, (int)(sub->sizeHint(0).height()  * m_render->dar()), sub->sizeHint(0).height() - 2);
1960         sub->setData(0, Qt::DecorationRole, p);
1961         m_doc->cachePixmap(clip->getClipHash() + '#' + QString::number(in), p);
1962         monitorItemEditing(true);
1963     }
1964     emit projectModified();
1965 }
1966
1967 void ProjectList::removeClipCut(const QString &id, int in, int out)
1968 {
1969     ProjectItem *clip = getItemById(id);
1970     if (clip) {
1971         DocClipBase *base = clip->referencedClip();
1972         base->removeCutZone(in, out);
1973         SubProjectItem *sub = getSubItem(clip, QPoint(in, out));
1974         if (sub) {
1975             monitorItemEditing(false);
1976             delete sub;
1977             monitorItemEditing(true);
1978         }
1979     }
1980     emit projectModified();
1981 }
1982
1983 SubProjectItem *ProjectList::getSubItem(ProjectItem *clip, QPoint zone)
1984 {
1985     SubProjectItem *sub = NULL;
1986     if (clip) {
1987         for (int i = 0; i < clip->childCount(); i++) {
1988             QTreeWidgetItem *it = clip->child(i);
1989             if (it->type() == PROJECTSUBCLIPTYPE) {
1990                 sub = static_cast <SubProjectItem*>(it);
1991                 if (sub->zone() == zone)
1992                     break;
1993                 else
1994                     sub = NULL;
1995             }
1996         }
1997     }
1998     return sub;
1999 }
2000
2001 void ProjectList::slotUpdateClipCut(QPoint p)
2002 {
2003     if (!m_listView->currentItem() || m_listView->currentItem()->type() != PROJECTSUBCLIPTYPE)
2004         return;
2005     SubProjectItem *sub = static_cast <SubProjectItem*>(m_listView->currentItem());
2006     ProjectItem *item = static_cast <ProjectItem *>(sub->parent());
2007     EditClipCutCommand *command = new EditClipCutCommand(this, item->clipId(), sub->zone(), p, sub->text(1), sub->text(1), true);
2008     m_commandStack->push(command);
2009 }
2010
2011 void ProjectList::doUpdateClipCut(const QString &id, const QPoint oldzone, const QPoint zone, const QString &comment)
2012 {
2013     ProjectItem *clip = getItemById(id);
2014     SubProjectItem *sub = getSubItem(clip, oldzone);
2015     if (sub == NULL || clip == NULL)
2016         return;
2017     DocClipBase *base = clip->referencedClip();
2018     base->updateCutZone(oldzone.x(), oldzone.y(), zone.x(), zone.y(), comment);
2019     monitorItemEditing(false);
2020     sub->setZone(zone);
2021     sub->setDescription(comment);
2022     monitorItemEditing(true);
2023     emit projectModified();
2024 }
2025
2026 void ProjectList::slotForceProcessing(const QString &id)
2027 {
2028     while (m_infoQueue.contains(id)) {
2029         slotProcessNextClipInQueue();
2030     }
2031 }
2032
2033 void ProjectList::slotAddOrUpdateSequence(const QString frameName)
2034 {
2035     QString fileName = KUrl(frameName).fileName().section('_', 0, -2);
2036     QStringList list;
2037     QString pattern = SlideshowClip::selectedPath(frameName, false, QString(), &list);
2038     int count = list.count();
2039     if (count > 1) {
2040         const QList <DocClipBase *> existing = m_doc->clipManager()->getClipByResource(pattern);
2041         if (!existing.isEmpty()) {
2042             // Sequence already exists, update
2043             QString id = existing.at(0)->getId();
2044             //ProjectItem *item = getItemById(id);
2045             QMap <QString, QString> oldprops;
2046             QMap <QString, QString> newprops;
2047             int ttl = existing.at(0)->getProperty("ttl").toInt();
2048             oldprops["out"] = existing.at(0)->getProperty("out");
2049             newprops["out"] = QString::number(ttl * count - 1);
2050             slotUpdateClipProperties(id, newprops);
2051             EditClipCommand *command = new EditClipCommand(this, id, oldprops, newprops, false);
2052             m_commandStack->push(command);
2053         } else {
2054             // Create sequence
2055             QStringList groupInfo = getGroup();
2056             m_doc->slotCreateSlideshowClipFile(fileName, pattern, count, m_timecode.reformatSeparators(KdenliveSettings::sequence_duration()),
2057                                                false, false, false,
2058                                                m_timecode.getTimecodeFromFrames(int(ceil(m_timecode.fps()))), QString(), 0,
2059                                                QString(), groupInfo.at(0), groupInfo.at(1));
2060         }
2061     } else emit displayMessage(i18n("Sequence not found"), -2);
2062 }
2063
2064 QMap <QString, QString> ProjectList::getProxies()
2065 {
2066     QMap <QString, QString> list;
2067     ProjectItem *item;
2068     QTreeWidgetItemIterator it(m_listView);
2069     while (*it) {
2070         if ((*it)->type() != PROJECTCLIPTYPE) {
2071             ++it;
2072             continue;
2073         }
2074         item = static_cast<ProjectItem *>(*it);
2075         if (item && item->referencedClip() != NULL) {
2076             if (item->hasProxy()) {
2077                 QString proxy = item->referencedClip()->getProperty("proxy");
2078                 list.insert(proxy, item->clipUrl().path());
2079             }
2080         }
2081         ++it;
2082     }
2083     return list;
2084 }
2085
2086 void ProjectList::slotCreateProxy(const QString id, bool createProducer)
2087 {
2088     ProjectItem *item = getItemById(id);
2089     if (!item || item->isProxyRunning()) return;
2090     
2091     // If proxy producer already exists, skip creation
2092     if (!createProducer) {
2093         setProxyStatus(id, PROXYDONE);
2094         return;
2095     }
2096     setProxyStatus(id, PROXYWAITING);
2097     if (m_abortProxyId.contains(id)) m_abortProxyId.removeAll(id);
2098     emit projectModified();
2099     QtConcurrent::run(this, &ProjectList::slotGenerateProxy, id);
2100 }
2101
2102 void ProjectList::slotAbortProxy(const QString id)
2103 {
2104     if (m_proxyList.contains(id)) m_proxyList.removeAll(id);
2105     ProjectItem *item = getItemById(id);
2106     if (item) {
2107       emit projectModified();
2108       if (item->isProxyReady()) slotGotProxy(id);
2109       else if (item->isProxyRunning()) m_abortProxyId << id;
2110       setProxyStatus(id, NOPROXY);
2111     }
2112 }
2113
2114 void ProjectList::slotGenerateProxy(const QString id)
2115 {
2116     setProxyStatus(id, CREATINGPROXY);
2117     ProjectItem *item = getItemById(id);
2118     if (item == NULL) return;
2119     QString path = item->referencedClip()->getProperty("proxy");
2120     if (path.isEmpty()) {
2121         setProxyStatus(id, PROXYCRASHED);
2122         return;
2123     }
2124
2125     QString url = item->clipUrl().path();
2126     
2127     if (QFile::exists(path)) {
2128         setProxyStatus(id, PROXYDONE);
2129         slotGotProxy(id);
2130         return;
2131     }
2132     else {
2133         // Make sure proxy path is writable
2134         QFile file(path);
2135         if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
2136             setProxyStatus(id, PROXYCRASHED);
2137             return;
2138         }
2139         file.close();
2140         QFile::remove(path);
2141     }
2142     if (item->clipType() == IMAGE) {
2143         // Image proxy
2144         QImage i(url);
2145         if (i.isNull()) {
2146             // Cannot load image
2147             setProxyStatus(id, PROXYCRASHED);
2148             return;
2149         }
2150         QImage proxy;
2151         // Images are scaled to profile size. 
2152         //TODO: Make it be configurable?
2153         if (i.width() > i.height()) proxy = i.scaledToWidth(m_render->frameRenderWidth());
2154         else proxy = i.scaledToHeight(m_render->renderHeight());
2155         int exif_orientation = QString(item->referencedClip()->producerProperty("_exif_orientation")).toInt();
2156         if (exif_orientation > 1) {
2157             // Rotate image according to exif data
2158             QImage processed;
2159             QMatrix matrix;
2160
2161             switch ( exif_orientation ) {
2162                 case 2:
2163                   matrix.scale( -1, 1 );
2164                   break;
2165                 case 3:
2166                   matrix.rotate( 180 );
2167                   break;
2168                 case 4:
2169                   matrix.scale( 1, -1 );
2170                   break;
2171                 case 5:
2172                   matrix.rotate( 270 );
2173                   matrix.scale( -1, 1 );
2174                   break;
2175                 case 6:
2176                   matrix.rotate( 90 );
2177                   break;
2178                 case 7:
2179                   matrix.rotate( 90 );
2180                   matrix.scale( -1, 1 );
2181                   break;
2182                 case 8:
2183                   matrix.rotate( 270 );
2184                   break;
2185               }
2186               processed = proxy.transformed( matrix );
2187               processed.save(path);
2188         }
2189         else proxy.save(path);
2190         setProxyStatus(id, PROXYDONE);
2191         slotGotProxy(id);
2192         return;
2193     }
2194
2195     QStringList parameters;
2196     parameters << "-i" << url;
2197     QString params = m_doc->getDocumentProperty("proxyparams").simplified();
2198     foreach(QString s, params.split(' '))
2199     parameters << s;
2200
2201     // Make sure we don't block when proxy file already exists
2202     parameters << "-y";
2203     parameters << path;
2204     QProcess myProcess;
2205     myProcess.start("ffmpeg", parameters);
2206     myProcess.waitForStarted();
2207     int result = -1;
2208     while (myProcess.state() != QProcess::NotRunning) {
2209         // building proxy file
2210         if (m_abortProxyId.contains(id)) {
2211             myProcess.close();
2212             myProcess.waitForFinished();
2213             m_abortProxyId.removeAll(id);
2214             QFile::remove(path);
2215             setProxyStatus(id, NOPROXY);
2216             result = -2;
2217             
2218         }
2219         myProcess.waitForFinished(500);
2220     }
2221     myProcess.waitForFinished();
2222     if (result == -1) result = myProcess.exitStatus();
2223     if (result == 0) {
2224         // proxy successfully created
2225         setProxyStatus(id, PROXYDONE);
2226         slotGotProxy(id);
2227     }
2228     else if (result == 1) {
2229         // Proxy process crashed
2230         QFile::remove(path);
2231         setProxyStatus(id, PROXYCRASHED);
2232     }
2233 }
2234
2235 void ProjectList::updateProxyConfig()
2236 {
2237     ProjectItem *item;
2238     QTreeWidgetItemIterator it(m_listView);
2239     QUndoCommand *command = new QUndoCommand();
2240     command->setText(i18n("Update proxy settings"));
2241     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
2242     while (*it) {
2243         if ((*it)->type() != PROJECTCLIPTYPE) {
2244             ++it;
2245             continue;
2246         }
2247         item = static_cast<ProjectItem *>(*it);
2248         if (item == NULL) {
2249             ++it;
2250             continue;
2251         }
2252         CLIPTYPE t = item->clipType();
2253         if ((t == VIDEO || t == AV || t == UNKNOWN) && item->referencedClip() != NULL) {
2254             if  (generateProxy() && useProxy() && !item->isProxyRunning()) {
2255                 DocClipBase *clip = item->referencedClip();
2256                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > m_doc->getDocumentProperty("proxyminsize").toInt()) {
2257                     if (clip->getProperty("proxy").isEmpty()) {
2258                         // We need to insert empty proxy in old properties so that undo will work
2259                         QMap <QString, QString> oldProps = clip->properties();
2260                         oldProps.insert("proxy", QString());
2261                         QMap <QString, QString> newProps;
2262                         newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + "." + m_doc->getDocumentProperty("proxyextension"));
2263                         new EditClipCommand(this, clip->getId(), oldProps, newProps, true, command);
2264                     }
2265                 }
2266             }
2267             else if (item->hasProxy()) {
2268                 // remove proxy
2269                 QMap <QString, QString> newProps;
2270                 newProps.insert("proxy", QString());
2271                 newProps.insert("replace", "1");
2272                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), newProps, true, command);
2273             }
2274         }
2275         else if (t == IMAGE && item->referencedClip() != NULL) {
2276             if  (generateImageProxy() && useProxy()) {
2277                 DocClipBase *clip = item->referencedClip();
2278                 int maxImageSize = m_doc->getDocumentProperty("proxyimageminsize").toInt();
2279                 if (clip->getProperty("frame_size").section('x', 0, 0).toInt() > maxImageSize || clip->getProperty("frame_size").section('x', 1, 1).toInt() > maxImageSize) {
2280                     if (clip->getProperty("proxy").isEmpty()) {
2281                         // We need to insert empty proxy in old properties so that undo will work
2282                         QMap <QString, QString> oldProps = clip->properties();
2283                         oldProps.insert("proxy", QString());
2284                         QMap <QString, QString> newProps;
2285                         newProps.insert("proxy", proxydir + item->referencedClip()->getClipHash() + ".png");
2286                         new EditClipCommand(this, clip->getId(), oldProps, newProps, true, command);
2287                     }
2288                 }
2289             }
2290             else if (item->hasProxy()) {
2291                 // remove proxy
2292                 QMap <QString, QString> newProps;
2293                 newProps.insert("proxy", QString());
2294                 newProps.insert("replace", "1");
2295                 new EditClipCommand(this, item->clipId(), item->referencedClip()->properties(), newProps, true, command);
2296             }
2297         }
2298         ++it;
2299     }
2300     if (command->childCount() > 0) m_doc->commandStack()->push(command);
2301     else delete command;
2302     if (!m_infoQueue.isEmpty() && !m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
2303 }
2304
2305 void ProjectList::slotProxyCurrentItem(bool doProxy)
2306 {
2307     QList<QTreeWidgetItem *> list = m_listView->selectedItems();
2308     QTreeWidgetItem *listItem;
2309     QUndoCommand *command = new QUndoCommand();
2310     if (doProxy) command->setText(i18np("Add proxy clip", "Add proxy clips", list.count()));
2311     else command->setText(i18np("Remove proxy clip", "Remove proxy clips", list.count()));
2312     
2313     // Make sure the proxy folder exists
2314     QString proxydir = m_doc->projectFolder().path( KUrl::AddTrailingSlash) + "proxy/";
2315     KStandardDirs::makeDir(proxydir);
2316                 
2317     QMap <QString, QString> newProps;
2318     QMap <QString, QString> oldProps;
2319     if (!doProxy) newProps.insert("proxy", "-");
2320     for (int i = 0; i < list.count(); i++) {
2321         listItem = list.at(i);
2322         if (listItem->type() == PROJECTFOLDERTYPE) {
2323             for (int j = 0; j < listItem->childCount(); j++) {
2324                 QTreeWidgetItem *sub = listItem->child(j);
2325                 if (!list.contains(sub)) list.append(sub);
2326             }
2327         }
2328         if (listItem->type() == PROJECTCLIPTYPE) {
2329             ProjectItem *item = static_cast <ProjectItem*>(listItem);
2330             CLIPTYPE t = item->clipType();
2331             if ((t == VIDEO || t == AV || t == UNKNOWN || t == IMAGE) && item->referencedClip()) {
2332                 oldProps = item->referencedClip()->properties();
2333                 if (doProxy) {
2334                     newProps.clear();
2335                     QString path = proxydir + item->referencedClip()->getClipHash() + "." + (t == IMAGE ? "png" : m_doc->getDocumentProperty("proxyextension"));
2336                     newProps.insert("proxy", path);
2337                     // We need to insert empty proxy so that undo will work
2338                     oldProps.insert("proxy", QString());
2339                 }
2340                 new EditClipCommand(this, item->clipId(), oldProps, newProps, true, command);
2341             }
2342         }
2343     }
2344     if (command->childCount() > 0) {
2345         m_doc->commandStack()->push(command);
2346     }
2347     else delete command;
2348     //if (!m_infoQueue.isEmpty() && !m_queueRunner.isRunning() && m_processingClips.isEmpty()) m_queueRunner = QtConcurrent::run(this, &ProjectList::slotProcessNextClipInQueue);
2349 }
2350
2351 void ProjectList::setProxyStatus(const QString id, PROXYSTATUS status)
2352 {
2353     ProjectItem *item = getItemById(id);
2354     setProxyStatus(item, status);
2355 }
2356
2357 void ProjectList::setProxyStatus(ProjectItem *item, PROXYSTATUS status)
2358 {
2359     if (item == NULL) return;
2360     monitorItemEditing(false);
2361     item->setProxyStatus(status);
2362     monitorItemEditing(true);
2363 }
2364
2365 void ProjectList::monitorItemEditing(bool enable)
2366 {
2367     if (enable) connect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
2368     else disconnect(m_listView, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotItemEdited(QTreeWidgetItem *, int)));     
2369 }
2370
2371 #include "projectlist.moc"