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