]> git.sesse.net Git - kdenlive/blob - src/kdenlivedoc.cpp
Cleanup slideshow clip method, prepare for improved sequence support (still needs...
[kdenlive] / src / kdenlivedoc.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
21 #include "kdenlivedoc.h"
22 #include "docclipbase.h"
23 #include "profilesdialog.h"
24 #include "kdenlivesettings.h"
25 #include "renderer.h"
26 #include "clipmanager.h"
27 #include "titlewidget.h"
28 #include "mainwindow.h"
29 #include "documentchecker.h"
30 #include "documentvalidator.h"
31 #include "config-kdenlive.h"
32 #include "initeffects.h"
33
34 #include <KDebug>
35 #include <KStandardDirs>
36 #include <KMessageBox>
37 #include <KProgressDialog>
38 #include <KLocale>
39 #include <KFileDialog>
40 #include <KIO/NetAccess>
41 #include <KIO/CopyJob>
42 #include <KIO/JobUiDelegate>
43 #include <KApplication>
44 #include <KGlobal>
45 #include <KBookmarkManager>
46 #include <KBookmark>
47 #include <KStandardDirs>
48
49 #include <QCryptographicHash>
50 #include <QFile>
51 #include <QInputDialog>
52 #include <QDomImplementation>
53
54 #include <mlt++/Mlt.h>
55
56 #include "locale.h"
57
58
59 const double DOCUMENTVERSION = 0.88;
60
61 KdenliveDoc::KdenliveDoc(const KUrl &url, const KUrl &projectFolder, QUndoGroup *undoGroup, QString profileName, QMap <QString, QString> properties, QMap <QString, QString> metadata, const QPoint &tracks, Render *render, KTextEdit *notes, bool *openBackup, MainWindow *parent, KProgressDialog *progressDialog) :
62     QObject(parent),
63     m_autosave(NULL),
64     m_url(url),
65     m_render(render),
66     m_notesWidget(notes),
67     m_commandStack(new QUndoStack(undoGroup)),
68     m_modified(false),
69     m_projectFolder(projectFolder)
70 {
71     // init m_profile struct
72     m_profile.frame_rate_num = 0;
73     m_profile.frame_rate_den = 0;
74     m_profile.width = 0;
75     m_profile.height = 0;
76     m_profile.progressive = 0;
77     m_profile.sample_aspect_num = 0;
78     m_profile.sample_aspect_den = 0;
79     m_profile.display_aspect_num = 0;
80     m_profile.display_aspect_den = 0;
81     m_profile.colorspace = 0;
82
83     m_clipManager = new ClipManager(this);
84     m_autoSaveTimer = new QTimer(this);
85     m_autoSaveTimer->setSingleShot(true);
86     connect(m_clipManager, SIGNAL(displayMessage(QString, int)), parent, SLOT(slotGotProgressInfo(QString,int)));
87     bool success = false;
88
89     // init default document properties
90     m_documentProperties["zoom"] = "7";
91     m_documentProperties["verticalzoom"] = "1";
92     m_documentProperties["zonein"] = "0";
93     m_documentProperties["zoneout"] = "100";
94     m_documentProperties["enableproxy"] = QString::number((int) KdenliveSettings::enableproxy());
95     m_documentProperties["proxyparams"] = KdenliveSettings::proxyparams();
96     m_documentProperties["proxyextension"] = KdenliveSettings::proxyextension();
97     m_documentProperties["generateproxy"] = QString::number((int) KdenliveSettings::generateproxy());
98     m_documentProperties["proxyminsize"] = QString::number(KdenliveSettings::proxyminsize());
99     m_documentProperties["generateimageproxy"] = QString::number((int) KdenliveSettings::generateimageproxy());
100     m_documentProperties["proxyimageminsize"] = QString::number(KdenliveSettings::proxyimageminsize());
101 #if QT_VERSION >= 0x040700
102     m_documentProperties["documentid"] = QString::number(QDateTime::currentMSecsSinceEpoch());
103 #else
104     QDateTime date = QDateTime::currentDateTime();
105     m_documentProperties["documentid"] = QString::number(date.toTime_t());
106 #endif
107
108     // Load properties
109     QMapIterator<QString, QString> i(properties);
110     while (i.hasNext()) {
111         i.next();
112         m_documentProperties[i.key()] = i.value();
113     }
114     
115     // Load metadata
116     QMapIterator<QString, QString> j(metadata);
117     while (j.hasNext()) {
118         j.next();
119         m_documentMetadata[j.key()] = j.value();
120     }
121
122     if (QLocale().decimalPoint() != QLocale::system().decimalPoint()) {
123         setlocale(LC_NUMERIC, "");
124         QLocale systemLocale = QLocale::system();
125         systemLocale.setNumberOptions(QLocale::OmitGroupSeparator);
126         QLocale::setDefault(systemLocale);
127         // locale conversion might need to be redone
128         initEffects::parseEffectFiles();
129     }
130
131     *openBackup = false;
132     
133     if (!url.isEmpty()) {
134         QString tmpFile;
135         success = KIO::NetAccess::download(url.path(), tmpFile, parent);
136         if (!success) {
137             // The file cannot be opened
138             if (KMessageBox::warningContinueCancel(parent, i18n("Cannot open the project file, error is:\n%1\nDo you want to open a backup file?", KIO::NetAccess::lastErrorString()), i18n("Error opening file"), KGuiItem(i18n("Open Backup"))) == KMessageBox::Continue) {
139                 *openBackup = true;
140             }
141             //KMessageBox::error(parent, KIO::NetAccess::lastErrorString());
142         }
143         else {
144             QFile file(tmpFile);
145             QString errorMsg;
146             QDomImplementation::setInvalidDataPolicy(QDomImplementation::DropInvalidChars);
147             success = m_document.setContent(&file, false, &errorMsg);
148             file.close();
149             KIO::NetAccess::removeTempFile(tmpFile);
150
151             if (!success) {
152                 // It is corrupted
153                 if (KMessageBox::warningContinueCancel(parent, i18n("Cannot open the project file, error is:\n%1\nDo you want to open a backup file?", errorMsg), i18n("Error opening file"), KGuiItem(i18n("Open Backup"))) == KMessageBox::Continue) {
154                 *openBackup = true;
155             }
156                 //KMessageBox::error(parent, errorMsg);
157             }
158             else {
159                 parent->slotGotProgressInfo(i18n("Validating"), 0);
160                 qApp->processEvents();
161                 DocumentValidator validator(m_document, url);
162                 success = validator.isProject();
163                 if (!success) {
164                     // It is not a project file
165                     parent->slotGotProgressInfo(i18n("File %1 is not a Kdenlive project file", m_url.path()), 100);
166                     if (KMessageBox::warningContinueCancel(parent, i18n("File %1 is not a valid project file.\nDo you want to open a backup file?", m_url.path()), i18n("Error opening file"), KGuiItem(i18n("Open Backup"))) == KMessageBox::Continue) {
167                         *openBackup = true;
168                     }
169                 } else {
170                     /*
171                      * Validate the file against the current version (upgrade
172                      * and recover it if needed). It is NOT a passive operation
173                      */
174                     // TODO: backup the document or alert the user?
175                     success = validator.validate(DOCUMENTVERSION);
176                     if (success) { // Let the validator handle error messages
177                         parent->slotGotProgressInfo(i18n("Check missing clips"), 0);
178                         qApp->processEvents();
179                         QDomNodeList infoproducers = m_document.elementsByTagName("kdenlive_producer");
180                         success = checkDocumentClips(infoproducers);
181                         if (success) {
182                             if (m_document.documentElement().attribute("modified") == "1") setModified(true);
183                             parent->slotGotProgressInfo(i18n("Loading"), 0);
184                             QDomElement mlt = m_document.firstChildElement("mlt");
185                             QDomElement infoXml = mlt.firstChildElement("kdenlivedoc");
186
187                             // Set profile, fps, etc for the document
188                             setProfilePath(infoXml.attribute("profile"));
189
190                             // Check embedded effects
191                             QDomElement customeffects = infoXml.firstChildElement("customeffects");
192                             if (!customeffects.isNull() && customeffects.hasChildNodes()) {
193                                 parent->slotGotProgressInfo(i18n("Importing project effects"), 0);
194                                 qApp->processEvents();
195                                 if (saveCustomEffects(customeffects.childNodes())) parent->slotReloadEffects();
196                             }
197
198                             QDomElement e;
199                             // Read notes
200                             QDomElement notesxml = infoXml.firstChildElement("documentnotes");
201                             if (!notesxml.isNull()) m_notesWidget->setText(notesxml.firstChild().nodeValue());
202
203                             // Build tracks
204                             QDomElement tracksinfo = infoXml.firstChildElement("tracksinfo");
205                             if (!tracksinfo.isNull()) {
206                                 QDomNodeList trackslist = tracksinfo.childNodes();
207                                 int maxchild = trackslist.count();
208                                 for (int k = 0; k < maxchild; k++) {
209                                     e = trackslist.at(k).toElement();
210                                     if (e.tagName() == "trackinfo") {
211                                         TrackInfo projectTrack;
212                                         if (e.attribute("type") == "audio")
213                                             projectTrack.type = AUDIOTRACK;
214                                         else
215                                             projectTrack.type = VIDEOTRACK;
216                                         projectTrack.isMute = e.attribute("mute").toInt();
217                                         projectTrack.isBlind = e.attribute("blind").toInt();
218                                         projectTrack.isLocked = e.attribute("locked").toInt();
219                                         projectTrack.trackName = e.attribute("trackname");
220                                         m_tracksList.append(projectTrack);
221                                     }
222                                 }
223                                 mlt.removeChild(tracksinfo);
224                             }
225                             QStringList expandedFolders;
226                             QDomNodeList folders = m_document.elementsByTagName("folder");
227                             for (int i = 0; i < folders.count(); i++) {
228                                 e = folders.item(i).cloneNode().toElement();
229                                 if (e.hasAttribute("opened")) expandedFolders.append(e.attribute("id"));
230                                 m_clipManager->addFolder(e.attribute("id"), e.attribute("name"));
231                             }
232                             m_documentProperties["expandedfolders"] = expandedFolders.join(";");
233
234                             const int infomax = infoproducers.count();
235                             QDomNodeList producers = m_document.elementsByTagName("producer");
236                             const int max = producers.count();
237
238                             if (!progressDialog) {
239                                 progressDialog = new KProgressDialog(parent, i18n("Loading project"), i18n("Adding clips"));
240                                 progressDialog->setAllowCancel(false);
241                             } else {
242                                 progressDialog->setLabelText(i18n("Adding clips"));
243                             }
244                             progressDialog->progressBar()->setMaximum(infomax);
245                             progressDialog->show();
246                             qApp->processEvents();
247
248                             for (int i = 0; i < infomax; i++) {
249                                 e = infoproducers.item(i).cloneNode().toElement();
250                                 QString prodId = e.attribute("id");
251                                 if (!e.isNull() && prodId != "black" && !prodId.startsWith("slowmotion")) {
252                                     e.setTagName("producer");
253                                     // Get MLT's original producer properties
254                                     QDomElement orig;
255                                     for (int j = 0; j < max; j++) {
256                                         QDomNode o = producers.item(j);
257                                         QString origId = o.attributes().namedItem("id").nodeValue().section('_', 0, 0);
258                                         if (origId == prodId) {
259                                             orig = o.cloneNode().toElement();
260                                             break;
261                                         }
262                                     }
263
264                                     if (!addClipInfo(e, orig, prodId)) {
265                                         // The user manually aborted the loading.
266                                         success = false;
267                                         emit resetProjectList();
268                                         m_tracksList.clear();
269                                         m_clipManager->clear();
270                                         break;
271                                     }
272                                 }
273                                 if (i % 10 == 0)
274                                     progressDialog->progressBar()->setValue(i);
275                             }
276
277                             if (success) {
278                                 QDomElement markers = infoXml.firstChildElement("markers");
279                                 if (!markers.isNull()) {
280                                     QDomNodeList markerslist = markers.childNodes();
281                                     int maxchild = markerslist.count();
282                                     for (int k = 0; k < maxchild; k++) {
283                                         e = markerslist.at(k).toElement();
284                                         if (e.tagName() == "marker")
285                                             m_clipManager->getClipById(e.attribute("id"))->addSnapMarker(GenTime(e.attribute("time").toDouble()), e.attribute("comment"));
286                                     }
287                                     infoXml.removeChild(markers);
288                                 }
289
290                                 m_projectFolder = KUrl(infoXml.attribute("projectfolder"));
291                                 QDomElement docproperties = infoXml.firstChildElement("documentproperties");
292                                 QDomNamedNodeMap props = docproperties.attributes();
293                                 for (int i = 0; i < props.count(); i++)
294                                     m_documentProperties.insert(props.item(i).nodeName(), props.item(i).nodeValue());
295                                 docproperties = infoXml.firstChildElement("documentmetadata");
296                                 props = docproperties.attributes();
297                                 for (int i = 0; i < props.count(); i++)
298                                     m_documentMetadata.insert(props.item(i).nodeName(), props.item(i).nodeValue());
299
300                                 if (validator.isModified()) setModified(true);
301                                 kDebug() << "Reading file: " << url.path() << ", found clips: " << producers.count();
302                             }
303                         }
304                     }
305                 }
306             }
307         }
308     }
309     
310     // Something went wrong, or a new file was requested: create a new project
311     if (!success) {
312         m_url.clear();
313         setProfilePath(profileName);
314         m_document = createEmptyDocument(tracks.x(), tracks.y());
315     }
316
317     // Ask to create the project directory if it does not exist
318     if (!QFile::exists(m_projectFolder.path())) {
319         int create = KMessageBox::questionYesNo(parent, i18n("Project directory %1 does not exist. Create it?", m_projectFolder.path()));
320         if (create == KMessageBox::Yes) {
321             QDir projectDir(m_projectFolder.path());
322             bool ok = projectDir.mkpath(m_projectFolder.path());
323             if (!ok) {
324                 KMessageBox::sorry(parent, i18n("The directory %1, could not be created.\nPlease make sure you have the required permissions.", m_projectFolder.path()));
325             }
326         }
327     }
328
329     // Make sure the project folder is usable
330     if (m_projectFolder.isEmpty() || !KIO::NetAccess::exists(m_projectFolder.path(), KIO::NetAccess::DestinationSide, parent)) {
331         KMessageBox::information(parent, i18n("Document project folder is invalid, setting it to the default one: %1", KdenliveSettings::defaultprojectfolder()));
332         m_projectFolder = KUrl(KdenliveSettings::defaultprojectfolder());
333     }
334
335     // Make sure that the necessary folders exist
336     KStandardDirs::makeDir(m_projectFolder.path(KUrl::AddTrailingSlash) + "titles/");
337     KStandardDirs::makeDir(m_projectFolder.path(KUrl::AddTrailingSlash) + "thumbs/");
338     KStandardDirs::makeDir(m_projectFolder.path(KUrl::AddTrailingSlash) + "proxy/");
339
340     updateProjectFolderPlacesEntry();
341
342     //kDebug() << "// SETTING SCENE LIST:\n\n" << m_document.toString();
343     connect(m_autoSaveTimer, SIGNAL(timeout()), this, SLOT(slotAutoSave()));
344 }
345
346 KdenliveDoc::~KdenliveDoc()
347 {
348     m_autoSaveTimer->stop();
349     delete m_commandStack;
350     kDebug() << "// DEL CLP MAN";
351     delete m_clipManager;
352     kDebug() << "// DEL CLP MAN done";
353     delete m_autoSaveTimer;
354     if (m_autosave) {
355         if (!m_autosave->fileName().isEmpty()) m_autosave->remove();
356         delete m_autosave;
357     }
358 }
359
360 int KdenliveDoc::setSceneList()
361 {
362     m_render->resetProfile(KdenliveSettings::current_profile(), true);
363     if (m_render->setSceneList(m_document.toString(), m_documentProperties.value("position").toInt()) == -1) {
364         // INVALID MLT Consumer, something is wrong
365         return -1;
366     }
367     m_documentProperties.remove("position");
368     // m_document xml is now useless, clear it
369     m_document.clear();
370     return 0;
371 }
372
373 QDomDocument KdenliveDoc::createEmptyDocument(int videotracks, int audiotracks)
374 {
375     m_tracksList.clear();
376
377     // Tracks are added Â«backwards», so we need to reverse the track numbering
378     // mbt 331: http://www.kdenlive.org/mantis/view.php?id=331
379     // Better default names for tracks: Audio 1 etc. instead of blank numbers
380     for (int i = 0; i < audiotracks; i++) {
381         TrackInfo audioTrack;
382         audioTrack.type = AUDIOTRACK;
383         audioTrack.isMute = false;
384         audioTrack.isBlind = true;
385         audioTrack.isLocked = false;
386         audioTrack.trackName = QString("Audio ") + QString::number(audiotracks - i);
387         audioTrack.duration = 0;
388         m_tracksList.append(audioTrack);
389
390     }
391     for (int i = 0; i < videotracks; i++) {
392         TrackInfo videoTrack;
393         videoTrack.type = VIDEOTRACK;
394         videoTrack.isMute = false;
395         videoTrack.isBlind = false;
396         videoTrack.isLocked = false;
397         videoTrack.trackName = QString("Video ") + QString::number(videotracks - i);
398         videoTrack.duration = 0;
399         m_tracksList.append(videoTrack);
400     }
401     return createEmptyDocument(m_tracksList);
402 }
403
404 QDomDocument KdenliveDoc::createEmptyDocument(QList <TrackInfo> tracks)
405 {
406     // Creating new document
407     QDomDocument doc;
408     QDomElement mlt = doc.createElement("mlt");
409     mlt.setAttribute("LC_NUMERIC", "");
410     doc.appendChild(mlt);
411     
412     // Create black producer
413     // For some unknown reason, we have to build the black producer here and not in renderer.cpp, otherwise
414     // the composite transitions with the black track are corrupted.
415     QDomElement blk = doc.createElement("producer");
416     blk.setAttribute("in", 0);
417     blk.setAttribute("out", 500);
418     blk.setAttribute("id", "black");
419
420     QDomElement property = doc.createElement("property");
421     property.setAttribute("name", "mlt_type");
422     QDomText value = doc.createTextNode("producer");
423     property.appendChild(value);
424     blk.appendChild(property);
425
426     property = doc.createElement("property");
427     property.setAttribute("name", "aspect_ratio");
428     value = doc.createTextNode(QString::number(0));
429     property.appendChild(value);
430     blk.appendChild(property);
431
432     property = doc.createElement("property");
433     property.setAttribute("name", "length");
434     value = doc.createTextNode(QString::number(15000));
435     property.appendChild(value);
436     blk.appendChild(property);
437
438     property = doc.createElement("property");
439     property.setAttribute("name", "eof");
440     value = doc.createTextNode("pause");
441     property.appendChild(value);
442     blk.appendChild(property);
443
444     property = doc.createElement("property");
445     property.setAttribute("name", "resource");
446     value = doc.createTextNode("black");
447     property.appendChild(value);
448     blk.appendChild(property);
449
450     property = doc.createElement("property");
451     property.setAttribute("name", "mlt_service");
452     value = doc.createTextNode("colour");
453     property.appendChild(value);
454     blk.appendChild(property);
455
456     mlt.appendChild(blk);
457
458
459     QDomElement tractor = doc.createElement("tractor");
460     tractor.setAttribute("id", "maintractor");
461     QDomElement multitrack = doc.createElement("multitrack");
462     QDomElement playlist = doc.createElement("playlist");
463     playlist.setAttribute("id", "black_track");
464     mlt.appendChild(playlist);
465
466     QDomElement blank0 = doc.createElement("entry");
467     blank0.setAttribute("in", "0");
468     blank0.setAttribute("out", "1");
469     blank0.setAttribute("producer", "black");
470     playlist.appendChild(blank0);
471
472     // create playlists
473     int total = tracks.count() + 1;
474
475     for (int i = 1; i < total; i++) {
476         QDomElement playlist = doc.createElement("playlist");
477         playlist.setAttribute("id", "playlist" + QString::number(i));
478         mlt.appendChild(playlist);
479     }
480
481     QDomElement track0 = doc.createElement("track");
482     track0.setAttribute("producer", "black_track");
483     tractor.appendChild(track0);
484
485     // create audio and video tracks
486     for (int i = 1; i < total; i++) {
487         QDomElement track = doc.createElement("track");
488         track.setAttribute("producer", "playlist" + QString::number(i));
489         if (tracks.at(i - 1).type == AUDIOTRACK) {
490             track.setAttribute("hide", "video");
491         } else if (tracks.at(i - 1).isBlind)
492             track.setAttribute("hide", "video");
493         if (tracks.at(i - 1).isMute)
494             track.setAttribute("hide", "audio");
495         tractor.appendChild(track);
496     }
497
498     for (int i = 2; i < total ; i++) {
499         QDomElement transition = doc.createElement("transition");
500         transition.setAttribute("always_active", "1");
501
502         QDomElement property = doc.createElement("property");
503         property.setAttribute("name", "a_track");
504         QDomText value = doc.createTextNode(QString::number(1));
505         property.appendChild(value);
506         transition.appendChild(property);
507
508         property = doc.createElement("property");
509         property.setAttribute("name", "b_track");
510         value = doc.createTextNode(QString::number(i));
511         property.appendChild(value);
512         transition.appendChild(property);
513
514         property = doc.createElement("property");
515         property.setAttribute("name", "mlt_service");
516         value = doc.createTextNode("mix");
517         property.appendChild(value);
518         transition.appendChild(property);
519
520         property = doc.createElement("property");
521         property.setAttribute("name", "combine");
522         value = doc.createTextNode("1");
523         property.appendChild(value);
524         transition.appendChild(property);
525
526         property = doc.createElement("property");
527         property.setAttribute("name", "internal_added");
528         value = doc.createTextNode("237");
529         property.appendChild(value);
530         transition.appendChild(property);
531         tractor.appendChild(transition);
532     }
533     mlt.appendChild(tractor);
534     return doc;
535 }
536
537
538 void KdenliveDoc::syncGuides(QList <Guide *> guides)
539 {
540     m_guidesXml.clear();
541     QDomElement guideNode = m_guidesXml.createElement("guides");
542     m_guidesXml.appendChild(guideNode);
543     QDomElement e;
544
545     for (int i = 0; i < guides.count(); i++) {
546         e = m_guidesXml.createElement("guide");
547         e.setAttribute("time", guides.at(i)->position().ms() / 1000);
548         e.setAttribute("comment", guides.at(i)->label());
549         guideNode.appendChild(e);
550     }
551     setModified(true);
552     emit guidesUpdated();
553 }
554
555 QDomElement KdenliveDoc::guidesXml() const
556 {
557     return m_guidesXml.documentElement();
558 }
559
560 void KdenliveDoc::slotAutoSave()
561 {
562     if (m_render && m_autosave) {
563         if (!m_autosave->isOpen() && !m_autosave->open(QIODevice::ReadWrite)) {
564             // show error: could not open the autosave file
565             kDebug() << "ERROR; CANNOT CREATE AUTOSAVE FILE";
566         }
567         kDebug() << "// AUTOSAVE FILE: " << m_autosave->fileName();
568         saveSceneList(m_autosave->fileName(), m_render->sceneList(), QStringList(), true);
569     }
570 }
571
572 void KdenliveDoc::setZoom(int horizontal, int vertical)
573 {
574     m_documentProperties["zoom"] = QString::number(horizontal);
575     m_documentProperties["verticalzoom"] = QString::number(vertical);
576 }
577
578 QPoint KdenliveDoc::zoom() const
579 {
580     return QPoint(m_documentProperties.value("zoom").toInt(), m_documentProperties.value("verticalzoom").toInt());
581 }
582
583 void KdenliveDoc::setZone(int start, int end)
584 {
585     m_documentProperties["zonein"] = QString::number(start);
586     m_documentProperties["zoneout"] = QString::number(end);
587 }
588
589 QPoint KdenliveDoc::zone() const
590 {
591     return QPoint(m_documentProperties.value("zonein").toInt(), m_documentProperties.value("zoneout").toInt());
592 }
593
594 QDomDocument KdenliveDoc::xmlSceneList(const QString &scene, const QStringList &expandedFolders)
595 {
596     QDomDocument sceneList;
597     sceneList.setContent(scene, true);
598     QDomElement mlt = sceneList.firstChildElement("mlt");
599     if (mlt.isNull() || !mlt.hasChildNodes()) {
600         //scenelist is corrupted
601         return sceneList;
602     }
603
604     // Set playlist audio volume to 100%
605     QDomElement tractor = mlt.firstChildElement("tractor");
606     if (!tractor.isNull()) {
607         QDomNodeList props = tractor.elementsByTagName("property");
608         for (int i = 0; i < props.count(); i++) {
609             if (props.at(i).toElement().attribute("name") == "meta.volume") {
610                 props.at(i).firstChild().setNodeValue("1");
611                 break;
612             }
613         }
614     }
615
616     QDomElement addedXml = sceneList.createElement("kdenlivedoc");
617     mlt.appendChild(addedXml);
618
619     // check if project contains custom effects to embed them in project file
620     QDomNodeList effects = mlt.elementsByTagName("filter");
621     int maxEffects = effects.count();
622     kDebug() << "// FOUD " << maxEffects << " EFFECTS+++++++++++++++++++++";
623     QMap <QString, QString> effectIds;
624     for (int i = 0; i < maxEffects; i++) {
625         QDomNode m = effects.at(i);
626         QDomNodeList params = m.childNodes();
627         QString id;
628         QString tag;
629         for (int j = 0; j < params.count(); j++) {
630             QDomElement e = params.item(j).toElement();
631             if (e.attribute("name") == "kdenlive_id") {
632                 id = e.firstChild().nodeValue();
633             }
634             if (e.attribute("name") == "tag") {
635                 tag = e.firstChild().nodeValue();
636             }
637             if (!id.isEmpty() && !tag.isEmpty()) effectIds.insert(id, tag);
638         }
639     }
640     QDomDocument customeffects = initEffects::getUsedCustomEffects(effectIds);
641     addedXml.appendChild(sceneList.importNode(customeffects.documentElement(), true));
642
643     QDomElement markers = sceneList.createElement("markers");
644     addedXml.setAttribute("version", DOCUMENTVERSION);
645     addedXml.setAttribute("kdenliveversion", VERSION);
646     addedXml.setAttribute("profile", profilePath());
647     addedXml.setAttribute("projectfolder", m_projectFolder.path());
648
649     QDomElement docproperties = sceneList.createElement("documentproperties");
650     QMapIterator<QString, QString> i(m_documentProperties);
651     while (i.hasNext()) {
652         i.next();
653         docproperties.setAttribute(i.key(), i.value());
654     }
655     docproperties.setAttribute("position", m_render->seekPosition().frames(m_fps));
656     addedXml.appendChild(docproperties);
657     
658     QDomElement docmetadata = sceneList.createElement("documentmetadata");
659     QMapIterator<QString, QString> j(m_documentMetadata);
660     while (j.hasNext()) {
661         j.next();
662         docmetadata.setAttribute(j.key(), j.value());
663     }
664     addedXml.appendChild(docmetadata);
665
666     QDomElement docnotes = sceneList.createElement("documentnotes");
667     QDomText value = sceneList.createTextNode(m_notesWidget->toHtml());
668     docnotes.appendChild(value);
669     addedXml.appendChild(docnotes);
670
671     // Add profile info
672     QDomElement profileinfo = sceneList.createElement("profileinfo");
673     profileinfo.setAttribute("description", m_profile.description);
674     profileinfo.setAttribute("frame_rate_num", m_profile.frame_rate_num);
675     profileinfo.setAttribute("frame_rate_den", m_profile.frame_rate_den);
676     profileinfo.setAttribute("width", m_profile.width);
677     profileinfo.setAttribute("height", m_profile.height);
678     profileinfo.setAttribute("progressive", m_profile.progressive);
679     profileinfo.setAttribute("sample_aspect_num", m_profile.sample_aspect_num);
680     profileinfo.setAttribute("sample_aspect_den", m_profile.sample_aspect_den);
681     profileinfo.setAttribute("display_aspect_num", m_profile.display_aspect_num);
682     profileinfo.setAttribute("display_aspect_den", m_profile.display_aspect_den);
683     addedXml.appendChild(profileinfo);
684
685     // tracks info
686     QDomElement tracksinfo = sceneList.createElement("tracksinfo");
687     foreach(const TrackInfo & info, m_tracksList) {
688         QDomElement trackinfo = sceneList.createElement("trackinfo");
689         if (info.type == AUDIOTRACK) trackinfo.setAttribute("type", "audio");
690         trackinfo.setAttribute("mute", info.isMute);
691         trackinfo.setAttribute("blind", info.isBlind);
692         trackinfo.setAttribute("locked", info.isLocked);
693         trackinfo.setAttribute("trackname", info.trackName);
694         tracksinfo.appendChild(trackinfo);
695     }
696     addedXml.appendChild(tracksinfo);
697
698     // save project folders
699     QMap <QString, QString> folderlist = m_clipManager->documentFolderList();
700
701     QMapIterator<QString, QString> f(folderlist);
702     while (f.hasNext()) {
703         f.next();
704         QDomElement folder = sceneList.createElement("folder");
705         folder.setAttribute("id", f.key());
706         folder.setAttribute("name", f.value());
707         if (expandedFolders.contains(f.key())) folder.setAttribute("opened", "1");
708         addedXml.appendChild(folder);
709     }
710
711     // Save project clips
712     QDomElement e;
713     QList <DocClipBase*> list = m_clipManager->documentClipList();
714     for (int i = 0; i < list.count(); i++) {
715         e = list.at(i)->toXML(true);
716         e.setTagName("kdenlive_producer");
717         addedXml.appendChild(sceneList.importNode(e, true));
718         QList < CommentedTime > marks = list.at(i)->commentedSnapMarkers();
719         for (int j = 0; j < marks.count(); j++) {
720             QDomElement marker = sceneList.createElement("marker");
721             marker.setAttribute("time", marks.at(j).time().ms() / 1000);
722             marker.setAttribute("comment", marks.at(j).comment());
723             marker.setAttribute("id", e.attribute("id"));
724             markers.appendChild(marker);
725         }
726     }
727     addedXml.appendChild(markers);
728
729     // Add guides
730     if (!m_guidesXml.isNull()) addedXml.appendChild(sceneList.importNode(m_guidesXml.documentElement(), true));
731
732     // Add clip groups
733     addedXml.appendChild(sceneList.importNode(m_clipManager->groupsXml(), true));
734
735     //wes.appendChild(doc.importNode(kdenliveData, true));
736     return sceneList;
737 }
738
739 bool KdenliveDoc::saveSceneList(const QString &path, const QString &scene, const QStringList &expandedFolders, bool autosave)
740 {
741     QDomDocument sceneList = xmlSceneList(scene, expandedFolders);
742     if (sceneList.isNull()) {
743         //Make sure we don't save if scenelist is corrupted
744         KMessageBox::error(kapp->activeWindow(), i18n("Cannot write to file %1, scene list is corrupted.", path));
745         return false;
746     }
747     
748     // Backup current version
749     if (!autosave) backupLastSavedVersion(path);
750     QFile file(path);
751     
752     if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
753         kWarning() << "//////  ERROR writing to file: " << path;
754         KMessageBox::error(kapp->activeWindow(), i18n("Cannot write to file %1", path));
755         return false;
756     }
757
758     file.write(sceneList.toString().toUtf8());
759     if (file.error() != QFile::NoError) {
760         KMessageBox::error(kapp->activeWindow(), i18n("Cannot write to file %1", path));
761         file.close();
762         return false;
763     }
764     file.close();
765     if (!autosave) {
766         cleanupBackupFiles();
767         QFileInfo info(file);
768         QString fileName = KUrl(path).fileName().section('.', 0, -2);   
769         fileName.append("-" + m_documentProperties.value("documentid"));
770         fileName.append(info.lastModified().toString("-yyyy-MM-dd-hh-mm"));
771         fileName.append(".kdenlive.png");
772         KUrl backupFile = m_projectFolder;
773         backupFile.addPath(".backup/");
774         backupFile.addPath(fileName);
775         emit saveTimelinePreview(backupFile.path());
776     }
777     return true;
778 }
779
780 ClipManager *KdenliveDoc::clipManager()
781 {
782     return m_clipManager;
783 }
784
785 KUrl KdenliveDoc::projectFolder() const
786 {
787     //if (m_projectFolder.isEmpty()) return KUrl(KStandardDirs::locateLocal("appdata", "/projects/"));
788     return m_projectFolder;
789 }
790
791 void KdenliveDoc::setProjectFolder(KUrl url)
792 {
793     if (url == m_projectFolder) return;
794     setModified(true);
795     KStandardDirs::makeDir(url.path());
796     KStandardDirs::makeDir(url.path(KUrl::AddTrailingSlash) + "titles/");
797     KStandardDirs::makeDir(url.path(KUrl::AddTrailingSlash) + "thumbs/");
798     if (KMessageBox::questionYesNo(kapp->activeWindow(), i18n("You have changed the project folder. Do you want to copy the cached data from %1 to the new folder %2?").arg(m_projectFolder.path(), url.path())) == KMessageBox::Yes) moveProjectData(url);
799     m_projectFolder = url;
800
801     updateProjectFolderPlacesEntry();
802 }
803
804 void KdenliveDoc::moveProjectData(KUrl url)
805 {
806     QList <DocClipBase*> list = m_clipManager->documentClipList();
807     KUrl::List cacheUrls;
808     for (int i = 0; i < list.count(); i++) {
809         DocClipBase *clip = list.at(i);
810         if (clip->clipType() == TEXT) {
811             // the image for title clip must be moved
812             KUrl oldUrl = clip->fileURL();
813             KUrl newUrl = KUrl(url.path(KUrl::AddTrailingSlash) + "titles/" + oldUrl.fileName());
814             KIO::Job *job = KIO::copy(oldUrl, newUrl);
815             if (KIO::NetAccess::synchronousRun(job, 0)) clip->setProperty("resource", newUrl.path());
816         }
817         QString hash = clip->getClipHash();
818         KUrl oldVideoThumbUrl = KUrl(m_projectFolder.path(KUrl::AddTrailingSlash) + "thumbs/" + hash + ".png");
819         KUrl oldAudioThumbUrl = KUrl(m_projectFolder.path(KUrl::AddTrailingSlash) + "thumbs/" + hash + ".thumb");
820         if (KIO::NetAccess::exists(oldVideoThumbUrl, KIO::NetAccess::SourceSide, 0)) {
821             cacheUrls << oldVideoThumbUrl;
822         }
823         if (KIO::NetAccess::exists(oldAudioThumbUrl, KIO::NetAccess::SourceSide, 0)) {
824             cacheUrls << oldAudioThumbUrl;
825         }
826     }
827     if (!cacheUrls.isEmpty()) {
828         KIO::Job *job = KIO::copy(cacheUrls, KUrl(url.path(KUrl::AddTrailingSlash) + "thumbs/"));
829         job->ui()->setWindow(kapp->activeWindow());
830         KIO::NetAccess::synchronousRun(job, 0);
831     }
832 }
833
834 const QString &KdenliveDoc::profilePath() const
835 {
836     return m_profile.path;
837 }
838
839 MltVideoProfile KdenliveDoc::mltProfile() const
840 {
841     return m_profile;
842 }
843
844 bool KdenliveDoc::setProfilePath(QString path)
845 {
846     if (path.isEmpty()) path = KdenliveSettings::default_profile();
847     if (path.isEmpty()) path = "dv_pal";
848     m_profile = ProfilesDialog::getVideoProfile(path);
849     double current_fps = m_fps;
850     if (m_profile.path.isEmpty()) {
851         // Profile not found, use embedded profile
852         QDomElement profileInfo = m_document.elementsByTagName("profileinfo").at(0).toElement();
853         if (profileInfo.isNull()) {
854             KMessageBox::information(kapp->activeWindow(), i18n("Project profile was not found, using default profile."), i18n("Missing Profile"));
855             m_profile = ProfilesDialog::getVideoProfile(KdenliveSettings::default_profile());
856         } else {
857             m_profile.description = profileInfo.attribute("description");
858             m_profile.frame_rate_num = profileInfo.attribute("frame_rate_num").toInt();
859             m_profile.frame_rate_den = profileInfo.attribute("frame_rate_den").toInt();
860             m_profile.width = profileInfo.attribute("width").toInt();
861             m_profile.height = profileInfo.attribute("height").toInt();
862             m_profile.progressive = profileInfo.attribute("progressive").toInt();
863             m_profile.sample_aspect_num = profileInfo.attribute("sample_aspect_num").toInt();
864             m_profile.sample_aspect_den = profileInfo.attribute("sample_aspect_den").toInt();
865             m_profile.display_aspect_num = profileInfo.attribute("display_aspect_num").toInt();
866             m_profile.display_aspect_den = profileInfo.attribute("display_aspect_den").toInt();
867             QString existing = ProfilesDialog::existingProfile(m_profile);
868             if (!existing.isEmpty()) {
869                 m_profile = ProfilesDialog::getVideoProfile(existing);
870                 KMessageBox::information(kapp->activeWindow(), i18n("Project profile not found, replacing with existing one: %1", m_profile.description), i18n("Missing Profile"));
871             } else {
872                 QString newDesc = m_profile.description;
873                 bool ok = true;
874                 while (ok && (newDesc.isEmpty() || ProfilesDialog::existingProfileDescription(newDesc))) {
875                     newDesc = QInputDialog::getText(kapp->activeWindow(), i18n("Existing Profile"), i18n("Your project uses an unknown profile.\nIt uses an existing profile name: %1.\nPlease choose a new name to save it", newDesc), QLineEdit::Normal, newDesc, &ok);
876                 }
877                 if (ok == false) {
878                     // User canceled, use default profile
879                     m_profile = ProfilesDialog::getVideoProfile(KdenliveSettings::default_profile());
880                 } else {
881                     if (newDesc != m_profile.description) {
882                         // Profile description existed, was replaced by new one
883                         m_profile.description = newDesc;
884                     } else {
885                         KMessageBox::information(kapp->activeWindow(), i18n("Project profile was not found, it will be added to your system now."), i18n("Missing Profile"));
886                     }
887                     ProfilesDialog::saveProfile(m_profile);
888                 }
889             }
890             setModified(true);
891         }
892     }
893
894     KdenliveSettings::setProject_display_ratio((double) m_profile.display_aspect_num / m_profile.display_aspect_den);
895     m_fps = (double) m_profile.frame_rate_num / m_profile.frame_rate_den;
896     KdenliveSettings::setProject_fps(m_fps);
897     m_width = m_profile.width;
898     m_height = m_profile.height;
899     kDebug() << "Kdenlive document, init timecode from path: " << path << ",  " << m_fps;
900     m_timecode.setFormat(m_fps);
901     KdenliveSettings::setCurrent_profile(m_profile.path);
902     return (current_fps != m_fps);
903 }
904
905 double KdenliveDoc::dar() const
906 {
907     return (double) m_profile.display_aspect_num / m_profile.display_aspect_den;
908 }
909
910 void KdenliveDoc::setThumbsProgress(const QString &message, int progress)
911 {
912     emit progressInfo(message, progress);
913 }
914
915 QUndoStack *KdenliveDoc::commandStack()
916 {
917     return m_commandStack;
918 }
919
920 /*
921 void KdenliveDoc::setRenderer(Render *render) {
922     if (m_render) return;
923     m_render = render;
924     emit progressInfo(i18n("Loading playlist..."), 0);
925     //qApp->processEvents();
926     if (m_render) {
927         m_render->setSceneList(m_document.toString(), m_startPos);
928         kDebug() << "// SETTING SCENE LIST:\n\n" << m_document.toString();
929         checkProjectClips();
930     }
931     emit progressInfo(QString(), -1);
932 }*/
933
934 void KdenliveDoc::checkProjectClips(bool displayRatioChanged, bool fpsChanged)
935 {
936     if (m_render == NULL) return;
937     m_clipManager->resetProducersList(m_render->producersList(), displayRatioChanged, fpsChanged);
938 }
939
940 Render *KdenliveDoc::renderer()
941 {
942     return m_render;
943 }
944
945 void KdenliveDoc::updateClip(const QString &id)
946 {
947     emit updateClipDisplay(id);
948 }
949
950 int KdenliveDoc::getFramePos(QString duration)
951 {
952     return m_timecode.getFrameCount(duration);
953 }
954
955 QString KdenliveDoc::producerName(const QString &id)
956 {
957     QString result = "unnamed";
958     QDomNodeList prods = producersList();
959     int ct = prods.count();
960     for (int i = 0; i <  ct ; i++) {
961         QDomElement e = prods.item(i).toElement();
962         if (e.attribute("id") != "black" && e.attribute("id") == id) {
963             result = e.attribute("name");
964             if (result.isEmpty()) result = KUrl(e.attribute("resource")).fileName();
965             break;
966         }
967     }
968     return result;
969 }
970
971 QDomDocument KdenliveDoc::toXml()
972 {
973     return m_document;
974 }
975
976 Timecode KdenliveDoc::timecode() const
977 {
978     return m_timecode;
979 }
980
981 QDomNodeList KdenliveDoc::producersList()
982 {
983     return m_document.elementsByTagName("producer");
984 }
985
986 double KdenliveDoc::projectDuration() const
987 {
988     if (m_render)
989         return GenTime(m_render->getLength(), m_fps).ms() / 1000;
990     else
991         return 0;
992 }
993
994 double KdenliveDoc::fps() const
995 {
996     return m_fps;
997 }
998
999 int KdenliveDoc::width() const
1000 {
1001     return m_width;
1002 }
1003
1004 int KdenliveDoc::height() const
1005 {
1006     return m_height;
1007 }
1008
1009 KUrl KdenliveDoc::url() const
1010 {
1011     return m_url;
1012 }
1013
1014 void KdenliveDoc::setUrl(KUrl url)
1015 {
1016     m_url = url;
1017 }
1018
1019 void KdenliveDoc::setModified(bool mod)
1020 {
1021     if (!m_url.isEmpty() && mod && KdenliveSettings::crashrecovery()) {
1022         m_autoSaveTimer->start(3000);
1023     }
1024     if (mod == m_modified) return;
1025     m_modified = mod;
1026     emit docModified(m_modified);
1027 }
1028
1029 bool KdenliveDoc::isModified() const
1030 {
1031     return m_modified;
1032 }
1033
1034 const QString KdenliveDoc::description() const
1035 {
1036     if (m_url.isEmpty())
1037         return i18n("Untitled") + " / " + m_profile.description;
1038     else
1039         return m_url.fileName() + " / " + m_profile.description;
1040 }
1041
1042 bool KdenliveDoc::addClip(QDomElement elem, QString clipId, bool createClipItem)
1043 {
1044     const QString producerId = clipId.section('_', 0, 0);
1045     DocClipBase *clip = m_clipManager->getClipById(producerId);
1046
1047     if (clip == NULL) {
1048         elem.setAttribute("id", producerId);
1049         QString path = elem.attribute("resource");
1050         QString extension;
1051         if (elem.attribute("type").toInt() == SLIDESHOW) {
1052             extension = KUrl(path).fileName();
1053             path = KUrl(path).directory();
1054         }
1055         if (elem.hasAttribute("_missingsource")) {
1056             // Clip has proxy but missing original source
1057         }
1058         else if (path.isEmpty() == false && QFile::exists(path) == false && elem.attribute("type").toInt() != TEXT && !elem.hasAttribute("placeholder")) {
1059             kDebug() << "// FOUND MISSING CLIP: " << path << ", TYPE: " << elem.attribute("type").toInt();
1060             const QString size = elem.attribute("file_size");
1061             const QString hash = elem.attribute("file_hash");
1062             QString newpath;
1063             int action = KMessageBox::No;
1064             if (!size.isEmpty() && !hash.isEmpty()) {
1065                 if (!m_searchFolder.isEmpty())
1066                     newpath = searchFileRecursively(m_searchFolder, size, hash);
1067                 else
1068                     action = (KMessageBox::ButtonCode) KMessageBox::questionYesNoCancel(kapp->activeWindow(), i18n("Clip <b>%1</b><br />is invalid, what do you want to do?", path), i18n("File not found"), KGuiItem(i18n("Search automatically")), KGuiItem(i18n("Keep as placeholder")));
1069             } else {
1070                 if (elem.attribute("type").toInt() == SLIDESHOW) {
1071                     int res = KMessageBox::questionYesNoCancel(kapp->activeWindow(), i18n("Clip <b>%1</b><br />is invalid or missing, what do you want to do?", path), i18n("File not found"), KGuiItem(i18n("Search manually")), KGuiItem(i18n("Keep as placeholder")));
1072                     if (res == KMessageBox::Yes)
1073                         newpath = KFileDialog::getExistingDirectory(KUrl("kfiledialog:///clipfolder"), kapp->activeWindow(), i18n("Looking for %1", path));
1074                     else {
1075                         // Abort project loading
1076                         action = res;
1077                     }
1078                 } else {
1079                     int res = KMessageBox::questionYesNoCancel(kapp->activeWindow(), i18n("Clip <b>%1</b><br />is invalid or missing, what do you want to do?", path), i18n("File not found"), KGuiItem(i18n("Search manually")), KGuiItem(i18n("Keep as placeholder")));
1080                     if (res == KMessageBox::Yes)
1081                         newpath = KFileDialog::getOpenFileName(KUrl("kfiledialog:///clipfolder"), QString(), kapp->activeWindow(), i18n("Looking for %1", path));
1082                     else {
1083                         // Abort project loading
1084                         action = res;
1085                     }
1086                 }
1087             }
1088             if (action == KMessageBox::Yes) {
1089                 kDebug() << "// ASKED FOR SRCH CLIP: " << clipId;
1090                 m_searchFolder = KFileDialog::getExistingDirectory(KUrl("kfiledialog:///clipfolder"), kapp->activeWindow());
1091                 if (!m_searchFolder.isEmpty())
1092                     newpath = searchFileRecursively(QDir(m_searchFolder), size, hash);
1093             } else if (action == KMessageBox::Cancel) {
1094                 return false;
1095             } else if (action == KMessageBox::No) {
1096                 // Keep clip as placeHolder
1097                 elem.setAttribute("placeholder", '1');
1098             }
1099             if (!newpath.isEmpty()) {
1100                 if (elem.attribute("type").toInt() == SLIDESHOW)
1101                     newpath.append('/' + extension);
1102                 elem.setAttribute("resource", newpath);
1103                 setNewClipResource(clipId, newpath);
1104                 setModified(true);
1105             }
1106         }
1107         clip = new DocClipBase(m_clipManager, elem, producerId);
1108         m_clipManager->addClip(clip);
1109     }
1110
1111     if (createClipItem) {
1112         emit addProjectClip(clip);
1113     }
1114
1115     return true;
1116 }
1117
1118 void KdenliveDoc::setNewClipResource(const QString &id, const QString &path)
1119 {
1120     QDomNodeList prods = m_document.elementsByTagName("producer");
1121     int maxprod = prods.count();
1122     for (int i = 0; i < maxprod; i++) {
1123         QDomNode m = prods.at(i);
1124         QString prodId = m.toElement().attribute("id");
1125         if (prodId == id || prodId.startsWith(id + '_')) {
1126             QDomNodeList params = m.childNodes();
1127             for (int j = 0; j < params.count(); j++) {
1128                 QDomElement e = params.item(j).toElement();
1129                 if (e.attribute("name") == "resource") {
1130                     e.firstChild().setNodeValue(path);
1131                     break;
1132                 }
1133             }
1134         }
1135     }
1136 }
1137
1138 QString KdenliveDoc::searchFileRecursively(const QDir &dir, const QString &matchSize, const QString &matchHash) const
1139 {
1140     QString foundFileName;
1141     QByteArray fileData;
1142     QByteArray fileHash;
1143     QStringList filesAndDirs = dir.entryList(QDir::Files | QDir::Readable);
1144     for (int i = 0; i < filesAndDirs.size() && foundFileName.isEmpty(); i++) {
1145         QFile file(dir.absoluteFilePath(filesAndDirs.at(i)));
1146         if (file.open(QIODevice::ReadOnly)) {
1147             if (QString::number(file.size()) == matchSize) {
1148                 /*
1149                 * 1 MB = 1 second per 450 files (or faster)
1150                 * 10 MB = 9 seconds per 450 files (or faster)
1151                 */
1152                 if (file.size() > 1000000 * 2) {
1153                     fileData = file.read(1000000);
1154                     if (file.seek(file.size() - 1000000))
1155                         fileData.append(file.readAll());
1156                 } else
1157                     fileData = file.readAll();
1158                 file.close();
1159                 fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
1160                 if (QString(fileHash.toHex()) == matchHash)
1161                     return file.fileName();
1162             }
1163         }
1164         kDebug() << filesAndDirs.at(i) << file.size() << fileHash.toHex();
1165     }
1166     filesAndDirs = dir.entryList(QDir::Dirs | QDir::Readable | QDir::Executable | QDir::NoDotAndDotDot);
1167     for (int i = 0; i < filesAndDirs.size() && foundFileName.isEmpty(); i++) {
1168         foundFileName = searchFileRecursively(dir.absoluteFilePath(filesAndDirs.at(i)), matchSize, matchHash);
1169         if (!foundFileName.isEmpty())
1170             break;
1171     }
1172     return foundFileName;
1173 }
1174
1175 bool KdenliveDoc::addClipInfo(QDomElement elem, QDomElement orig, QString clipId)
1176 {
1177     DocClipBase *clip = m_clipManager->getClipById(clipId);
1178     if (clip == NULL) {
1179         if (!addClip(elem, clipId, false))
1180             return false;
1181     } else {
1182         QMap <QString, QString> properties;
1183         QDomNamedNodeMap attributes = elem.attributes();
1184         for (int i = 0; i < attributes.count(); i++) {
1185             QString attrname = attributes.item(i).nodeName();
1186             if (attrname != "resource")
1187                 properties.insert(attrname, attributes.item(i).nodeValue());
1188             kDebug() << attrname << " = " << attributes.item(i).nodeValue();
1189         }
1190         clip->setProperties(properties);
1191         emit addProjectClip(clip, false);
1192     }
1193     if (orig != QDomElement()) {
1194         QMap<QString, QString> meta;
1195         for (QDomNode m = orig.firstChild(); !m.isNull(); m = m.nextSibling()) {
1196             QString name = m.toElement().attribute("name");
1197             if (name.startsWith("meta.attr"))
1198                 meta.insert(name.section('.', 2, 3), m.firstChild().nodeValue());
1199         }
1200         if (!meta.isEmpty()) {
1201             if (clip == NULL)
1202                 clip = m_clipManager->getClipById(clipId);
1203             if (clip)
1204                 clip->setMetadata(meta);
1205         }
1206     }
1207     return true;
1208 }
1209
1210
1211 void KdenliveDoc::deleteClip(const QString &clipId)
1212 {
1213     emit signalDeleteProjectClip(clipId);
1214 }
1215
1216 void KdenliveDoc::slotAddClipList(const KUrl::List urls, const QString &group, const QString &groupId)
1217 {
1218     m_clipManager->slotAddClipList(urls, group, groupId);
1219     //emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
1220     setModified(true);
1221 }
1222
1223
1224 void KdenliveDoc::slotAddClipFile(const KUrl &url, const QString &group, const QString &groupId, const QString &comment)
1225 {
1226     m_clipManager->slotAddClipFile(url, group, groupId, comment);
1227     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
1228     setModified(true);
1229 }
1230
1231 const QString KdenliveDoc::getFreeClipId()
1232 {
1233     return QString::number(m_clipManager->getFreeClipId());
1234 }
1235
1236 DocClipBase *KdenliveDoc::getBaseClip(const QString &clipId)
1237 {
1238     return m_clipManager->getClipById(clipId);
1239 }
1240
1241 void KdenliveDoc::slotCreateXmlClip(const QString &name, const QDomElement xml, QString group, const QString &groupId)
1242 {
1243     m_clipManager->slotAddXmlClipFile(name, xml, group, groupId);
1244     setModified(true);
1245     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
1246 }
1247
1248 void KdenliveDoc::slotCreateColorClip(const QString &name, const QString &color, const QString &duration, QString group, const QString &groupId)
1249 {
1250     m_clipManager->slotAddColorClipFile(name, color, duration, group, groupId);
1251     setModified(true);
1252     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
1253 }
1254
1255 void KdenliveDoc::slotCreateSlideshowClipFile(QMap <QString, QString> properties, QString group, const QString &groupId)
1256 {
1257     m_clipManager->slotAddSlideshowClipFile(properties, group, groupId);
1258     setModified(true);
1259     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
1260 }
1261
1262 void KdenliveDoc::slotCreateTextClip(QString group, const QString &groupId, const QString &templatePath)
1263 {
1264     QString titlesFolder = projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
1265     KStandardDirs::makeDir(titlesFolder);
1266     TitleWidget *dia_ui = new TitleWidget(templatePath, m_timecode, titlesFolder, m_render, kapp->activeWindow());
1267     if (dia_ui->exec() == QDialog::Accepted) {
1268         m_clipManager->slotAddTextClipFile(i18n("Title clip"), dia_ui->outPoint(), dia_ui->xml().toString(), group, groupId);
1269         setModified(true);
1270         emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
1271     }
1272     delete dia_ui;
1273 }
1274
1275 void KdenliveDoc::slotCreateTextTemplateClip(QString group, const QString &groupId, KUrl path)
1276 {
1277     QString titlesFolder = projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
1278     if (path.isEmpty()) {
1279         path = KFileDialog::getOpenUrl(KUrl(titlesFolder), "application/x-kdenlivetitle", kapp->activeWindow(), i18n("Enter Template Path"));
1280     }
1281
1282     if (path.isEmpty()) return;
1283
1284     //TODO: rewrite with new title system (just set resource)
1285     m_clipManager->slotAddTextTemplateClip(i18n("Template title clip"), path, group, groupId);
1286     setModified(true);
1287     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
1288 }
1289
1290 int KdenliveDoc::tracksCount() const
1291 {
1292     return m_tracksList.count();
1293 }
1294
1295 TrackInfo KdenliveDoc::trackInfoAt(int ix) const
1296 {
1297     if (ix < 0 || ix >= m_tracksList.count()) {
1298         kWarning() << "Track INFO outisde of range";
1299         return TrackInfo();
1300     }
1301     return m_tracksList.at(ix);
1302 }
1303
1304 void KdenliveDoc::switchTrackAudio(int ix, bool hide)
1305 {
1306     if (ix < 0 || ix >= m_tracksList.count()) {
1307         kWarning() << "SWITCH Track outisde of range";
1308         return;
1309     }
1310     m_tracksList[ix].isMute = hide; // !m_tracksList.at(ix).isMute;
1311 }
1312
1313 void KdenliveDoc::switchTrackLock(int ix, bool lock)
1314 {
1315     if (ix < 0 || ix >= m_tracksList.count()) {
1316         kWarning() << "Track Lock outisde of range";
1317         return;
1318     }
1319     m_tracksList[ix].isLocked = lock;
1320 }
1321
1322 bool KdenliveDoc::isTrackLocked(int ix) const
1323 {
1324     if (ix < 0 || ix >= m_tracksList.count()) {
1325         kWarning() << "Track Lock outisde of range";
1326         return true;
1327     }
1328     return m_tracksList.at(ix).isLocked;
1329 }
1330
1331 void KdenliveDoc::switchTrackVideo(int ix, bool hide)
1332 {
1333     if (ix < 0 || ix >= m_tracksList.count()) {
1334         kWarning() << "SWITCH Track outisde of range";
1335         return;
1336     }
1337     m_tracksList[ix].isBlind = hide; // !m_tracksList.at(ix).isBlind;
1338 }
1339
1340 int KdenliveDoc::trackDuration(int ix)
1341 {
1342     return m_tracksList.at(ix).duration; 
1343 }
1344
1345 void KdenliveDoc::setTrackDuration(int ix, int duration)
1346 {
1347     m_tracksList[ix].duration = duration;
1348 }
1349
1350 void KdenliveDoc::insertTrack(int ix, TrackInfo type)
1351 {
1352     if (ix == -1) m_tracksList << type;
1353     else m_tracksList.insert(ix, type);
1354 }
1355
1356 void KdenliveDoc::deleteTrack(int ix)
1357 {
1358     if (ix < 0 || ix >= m_tracksList.count()) {
1359         kWarning() << "Delete Track outisde of range";
1360         return;
1361     }
1362     m_tracksList.removeAt(ix);
1363 }
1364
1365 void KdenliveDoc::setTrackType(int ix, TrackInfo type)
1366 {
1367     if (ix < 0 || ix >= m_tracksList.count()) {
1368         kWarning() << "SET Track Type outisde of range";
1369         return;
1370     }
1371     m_tracksList[ix].type = type.type;
1372     m_tracksList[ix].isMute = type.isMute;
1373     m_tracksList[ix].isBlind = type.isBlind;
1374     m_tracksList[ix].isLocked = type.isLocked;
1375     m_tracksList[ix].trackName = type.trackName;
1376 }
1377
1378 const QList <TrackInfo> KdenliveDoc::tracksList() const
1379 {
1380     return m_tracksList;
1381 }
1382
1383 QPoint KdenliveDoc::getTracksCount() const
1384 {
1385     int audio = 0;
1386     int video = 0;
1387     foreach(const TrackInfo & info, m_tracksList) {
1388         if (info.type == VIDEOTRACK) video++;
1389         else audio++;
1390     }
1391     return QPoint(video, audio);
1392 }
1393
1394 void KdenliveDoc::cacheImage(const QString &fileId, const QImage &img) const
1395 {
1396     img.save(m_projectFolder.path(KUrl::AddTrailingSlash) + "thumbs/" + fileId + ".png");
1397 }
1398
1399 bool KdenliveDoc::checkDocumentClips(QDomNodeList infoproducers)
1400 {
1401     DocumentChecker d(infoproducers, m_document);
1402     return (d.hasErrorInClips() == false);
1403
1404     /*    int clipType;
1405         QDomElement e;
1406         QString id;
1407         QString resource;
1408         QList <QDomElement> missingClips;
1409         for (int i = 0; i < infoproducers.count(); i++) {
1410             e = infoproducers.item(i).toElement();
1411             clipType = e.attribute("type").toInt();
1412             if (clipType == COLOR) continue;
1413             if (clipType == TEXT) {
1414                 //TODO: Check is clip template is missing (xmltemplate) or hash changed
1415                 continue;
1416             }
1417             id = e.attribute("id");
1418             resource = e.attribute("resource");
1419             if (clipType == SLIDESHOW) resource = KUrl(resource).directory();
1420             if (!KIO::NetAccess::exists(KUrl(resource), KIO::NetAccess::SourceSide, 0)) {
1421                 // Missing clip found
1422                 missingClips.append(e);
1423             } else {
1424                 // Check if the clip has changed
1425                 if (clipType != SLIDESHOW && e.hasAttribute("file_hash")) {
1426                     if (e.attribute("file_hash") != DocClipBase::getHash(e.attribute("resource")))
1427                         e.removeAttribute("file_hash");
1428                 }
1429             }
1430         }
1431         if (missingClips.isEmpty()) return true;
1432         DocumentChecker d(missingClips, m_document);
1433         return (d.exec() == QDialog::Accepted);*/
1434 }
1435
1436 void KdenliveDoc::setDocumentProperty(const QString &name, const QString &value)
1437 {
1438     m_documentProperties[name] = value;
1439 }
1440
1441 const QString KdenliveDoc::getDocumentProperty(const QString &name) const
1442 {
1443     return m_documentProperties.value(name);
1444 }
1445
1446 QMap <QString, QString> KdenliveDoc::getRenderProperties() const
1447 {
1448     QMap <QString, QString> renderProperties;
1449     QMapIterator<QString, QString> i(m_documentProperties);
1450     while (i.hasNext()) {
1451         i.next();
1452         if (i.key().startsWith("render")) renderProperties.insert(i.key(), i.value());
1453     }
1454     return renderProperties;
1455 }
1456
1457 void KdenliveDoc::addTrackEffect(int ix, QDomElement effect)
1458 {
1459     if (ix < 0 || ix >= m_tracksList.count()) {
1460         kWarning() << "Add Track effect outisde of range";
1461         return;
1462     }
1463     effect.setAttribute("kdenlive_ix", m_tracksList.at(ix).effectsList.count() + 1);
1464
1465     // Init parameter value & keyframes if required
1466     QDomNodeList params = effect.elementsByTagName("parameter");
1467     for (int i = 0; i < params.count(); i++) {
1468         QDomElement e = params.item(i).toElement();
1469
1470         // Check if this effect has a variable parameter
1471         if (e.attribute("default").contains('%')) {
1472             double evaluatedValue = ProfilesDialog::getStringEval(m_profile, e.attribute("default"));
1473             e.setAttribute("default", evaluatedValue);
1474             if (e.hasAttribute("value") && e.attribute("value").startsWith('%')) {
1475                 e.setAttribute("value", evaluatedValue);
1476             }
1477         }
1478
1479         if (!e.isNull() && (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe")) {
1480             QString def = e.attribute("default");
1481             // Effect has a keyframe type parameter, we need to set the values
1482             if (e.attribute("keyframes").isEmpty()) {
1483                 e.setAttribute("keyframes", "0:" + def + ';');
1484                 kDebug() << "///// EFFECT KEYFRAMES INITED: " << e.attribute("keyframes");
1485                 //break;
1486             }
1487         }
1488
1489         if (effect.attribute("id") == "crop") {
1490             // default use_profile to 1 for clips with proxies to avoid problems when rendering
1491             if (e.attribute("name") == "use_profile" && getDocumentProperty("enableproxy") == "1")
1492                 e.setAttribute("value", "1");
1493         }
1494     }
1495
1496     m_tracksList[ix].effectsList.append(effect);
1497 }
1498
1499 void KdenliveDoc::removeTrackEffect(int ix, QDomElement effect)
1500 {
1501     if (ix < 0 || ix >= m_tracksList.count()) {
1502         kWarning() << "Remove Track effect outisde of range";
1503         return;
1504     }
1505     QString index;
1506     QString toRemove = effect.attribute("kdenlive_ix");
1507     for (int i = 0; i < m_tracksList.at(ix).effectsList.count(); ++i) {
1508         index = m_tracksList.at(ix).effectsList.at(i).attribute("kdenlive_ix");
1509         if (toRemove == index) {
1510             m_tracksList[ix].effectsList.removeAt(i);
1511             i--;
1512         } else if (index.toInt() > toRemove.toInt()) {
1513             m_tracksList[ix].effectsList.item(i).setAttribute("kdenlive_ix", index.toInt() - 1);
1514         }
1515     }
1516 }
1517
1518 void KdenliveDoc::setTrackEffect(int trackIndex, int effectIndex, QDomElement effect)
1519 {
1520     if (trackIndex < 0 || trackIndex >= m_tracksList.count()) {
1521         kWarning() << "Set Track effect outisde of range";
1522         return;
1523     }
1524     if (effectIndex < 0 || effectIndex > (m_tracksList.at(trackIndex).effectsList.count() - 1) || effect.isNull()) {
1525         kDebug() << "Invalid effect index: " << effectIndex;
1526         return;
1527     }
1528     effect.setAttribute("kdenlive_ix", effectIndex + 1);
1529     m_tracksList[trackIndex].effectsList.replace(effectIndex, effect);
1530 }
1531
1532 const EffectsList KdenliveDoc::getTrackEffects(int ix)
1533 {
1534     if (ix < 0 || ix >= m_tracksList.count()) {
1535         kWarning() << "Get Track effects outisde of range";
1536         return EffectsList();
1537     }
1538     return m_tracksList.at(ix).effectsList;
1539 }
1540
1541 QDomElement KdenliveDoc::getTrackEffect(int trackIndex, int effectIndex) const
1542 {
1543     if (trackIndex < 0 || trackIndex >= m_tracksList.count()) {
1544         kWarning() << "Get Track effect outisde of range";
1545         return QDomElement();
1546     }
1547     EffectsList list = m_tracksList.at(trackIndex).effectsList;
1548     if (effectIndex > list.count() - 1 || effectIndex < 0 || list.at(effectIndex).isNull()) return QDomElement();
1549     return list.at(effectIndex).cloneNode().toElement();
1550 }
1551
1552 bool KdenliveDoc::saveCustomEffects(QDomNodeList customeffects)
1553 {
1554     QDomElement e;
1555     QStringList importedEffects;
1556     int maxchild = customeffects.count();
1557     for (int i = 0; i < maxchild; i++) {
1558         e = customeffects.at(i).toElement();
1559         QString id = e.attribute("id");
1560         QString tag = e.attribute("tag");
1561         if (!id.isEmpty()) {
1562             // Check if effect exists or save it
1563             if (MainWindow::customEffects.hasEffect(tag, id) == -1) {
1564                 QDomDocument doc;
1565                 doc.appendChild(doc.importNode(e, true));
1566                 QString path = KStandardDirs::locateLocal("appdata", "effects/", true);
1567                 path += id + ".xml";
1568                 if (!QFile::exists(path)) {
1569                     importedEffects << id;
1570                     QFile file(path);
1571                     if (file.open(QFile::WriteOnly | QFile::Truncate)) {
1572                         QTextStream out(&file);
1573                         out << doc.toString();
1574                     }
1575                 }
1576             }
1577         }
1578     }
1579     if (!importedEffects.isEmpty()) KMessageBox::informationList(kapp->activeWindow(), i18n("The following effects were imported from the project:"), importedEffects);
1580     return (!importedEffects.isEmpty());
1581 }
1582
1583 void KdenliveDoc::updateProjectFolderPlacesEntry()
1584 {
1585     /*
1586      * For similar and more code have a look at kfileplacesmodel.cpp and the included files:
1587      * http://websvn.kde.org/trunk/KDE/kdelibs/kfile/kfileplacesmodel.cpp?view=markup
1588      */
1589
1590     const QString file = KStandardDirs::locateLocal("data", "kfileplaces/bookmarks.xml");
1591     KBookmarkManager *bookmarkManager = KBookmarkManager::managerForFile(file, "kfilePlaces");
1592     if (!bookmarkManager) return;
1593     KBookmarkGroup root = bookmarkManager->root();
1594     
1595     KBookmark bookmark = root.first();
1596
1597     QString kdenliveName = KGlobal::mainComponent().componentName();
1598     KUrl documentLocation = m_projectFolder;
1599
1600     bool exists = false;
1601
1602     while (!bookmark.isNull()) {
1603         // UDI not empty indicates a device
1604         QString udi = bookmark.metaDataItem("UDI");
1605         QString appName = bookmark.metaDataItem("OnlyInApp");
1606
1607         if (udi.isEmpty() && appName == kdenliveName && bookmark.text() == i18n("Project Folder")) {
1608             if (bookmark.url() != documentLocation) {
1609                 bookmark.setUrl(documentLocation);
1610                 bookmarkManager->emitChanged(root);
1611             }
1612             exists = true;
1613             break;
1614         }
1615
1616         bookmark = root.next(bookmark);
1617     }
1618
1619     // if entry does not exist yet (was not found), well, create it then
1620     if (!exists) {
1621         bookmark = root.addBookmark(i18n("Project Folder"), documentLocation, "folder-favorites");
1622         // Make this user selectable ?
1623         bookmark.setMetaDataItem("OnlyInApp", kdenliveName);
1624         bookmarkManager->emitChanged(root);
1625     }
1626 }
1627
1628 QStringList KdenliveDoc::getExpandedFolders()
1629 {
1630     QStringList result = m_documentProperties.value("expandedfolders").split(';');
1631     // this property is only needed once when opening project, so clear it now
1632     m_documentProperties.remove("expandedfolders");
1633     return result;
1634 }
1635
1636 // static
1637 double KdenliveDoc::getDisplayRatio(const QString &path)
1638 {
1639     QFile file(path);
1640     QDomDocument doc;
1641     if (!file.open(QIODevice::ReadOnly)) {
1642         kWarning() << "ERROR, CANNOT READ: " << path;
1643         return 0;
1644     }
1645     if (!doc.setContent(&file)) {
1646         kWarning() << "ERROR, CANNOT READ: " << path;
1647         file.close();
1648         return 0;
1649     }
1650     file.close();
1651     QDomNodeList list = doc.elementsByTagName("profile");
1652     if (list.isEmpty()) return 0;
1653     QDomElement profile = list.at(0).toElement();
1654     double den = profile.attribute("display_aspect_den").toDouble();
1655     if (den > 0) return profile.attribute("display_aspect_num").toDouble() / den;
1656     return 0;
1657 }
1658
1659 void KdenliveDoc::backupLastSavedVersion(const QString &path)
1660 {
1661     // Ensure backup folder exists
1662     if (path.isEmpty()) return;
1663     QFile file(path);
1664     KUrl backupFile = m_projectFolder;
1665     backupFile.addPath(".backup/");
1666     KIO::NetAccess::mkdir(backupFile, kapp->activeWindow());
1667     QString fileName = KUrl(path).fileName().section('.', 0, -2);
1668     QFileInfo info(file);
1669     fileName.append("-" + m_documentProperties.value("documentid"));
1670     fileName.append(info.lastModified().toString("-yyyy-MM-dd-hh-mm"));
1671     fileName.append(".kdenlive");
1672     backupFile.addPath(fileName);
1673
1674     if (file.exists()) {
1675         // delete previous backup if it was done less than 60 seconds ago
1676         QFile::remove(backupFile.path());
1677         if (!QFile::copy(path, backupFile.path())) {
1678             KMessageBox::information(kapp->activeWindow(), i18n("Cannot create backup copy:\n%1", backupFile.path()));
1679         }
1680     }    
1681 }
1682
1683 void KdenliveDoc::cleanupBackupFiles()
1684 {
1685     KUrl backupFile = m_projectFolder;
1686     backupFile.addPath(".backup/");
1687     QDir dir(backupFile.path());
1688     QString projectFile = url().fileName().section('.', 0, -2);
1689     projectFile.append("-" + m_documentProperties.value("documentid"));
1690     projectFile.append("-??");
1691     projectFile.append("??");
1692     projectFile.append("-??");
1693     projectFile.append("-??");
1694     projectFile.append("-??");
1695     projectFile.append("-??.kdenlive");
1696
1697     QStringList filter;
1698     backupFile.addPath(projectFile);
1699     filter << projectFile;
1700     dir.setNameFilters(filter);
1701     QFileInfoList resultList = dir.entryInfoList(QDir::Files, QDir::Time);
1702
1703     QDateTime d = QDateTime::currentDateTime();
1704     QStringList hourList;
1705     QStringList dayList;
1706     QStringList weekList;
1707     QStringList oldList;
1708     for (int i = 0; i < resultList.count(); i++) {
1709         if (d.secsTo(resultList.at(i).lastModified()) < 3600) {
1710             // files created in the last hour
1711             hourList.append(resultList.at(i).absoluteFilePath());
1712         }
1713         else if (d.secsTo(resultList.at(i).lastModified()) < 43200) {
1714             // files created in the day
1715             dayList.append(resultList.at(i).absoluteFilePath());
1716         }
1717         else if (d.daysTo(resultList.at(i).lastModified()) < 8) {
1718             // files created in the week
1719             weekList.append(resultList.at(i).absoluteFilePath());
1720         }
1721         else {
1722             // older files
1723             oldList.append(resultList.at(i).absoluteFilePath());
1724         }
1725     }
1726     if (hourList.count() > 20) {
1727         int step = hourList.count() / 10;
1728         for (int i = 0; i < hourList.count(); i += step) {
1729             kDebug()<<"REMOVE AT: "<<i<<", COUNT: "<<hourList.count();
1730             hourList.removeAt(i);
1731             i--;
1732         }
1733     } else hourList.clear();
1734     if (dayList.count() > 20) {
1735         int step = dayList.count() / 10;
1736         for (int i = 0; i < dayList.count(); i += step) {
1737             dayList.removeAt(i);
1738             i--;
1739         }
1740     } else dayList.clear();
1741     if (weekList.count() > 20) {
1742         int step = weekList.count() / 10;
1743         for (int i = 0; i < weekList.count(); i += step) {
1744             weekList.removeAt(i);
1745             i--;
1746         }
1747     } else weekList.clear();
1748     if (oldList.count() > 20) {
1749         int step = oldList.count() / 10;
1750         for (int i = 0; i < oldList.count(); i += step) {
1751             oldList.removeAt(i);
1752             i--;
1753         }
1754     } else oldList.clear();
1755     
1756     QString f;
1757     while (hourList.count() > 0) {
1758         f = hourList.takeFirst();
1759         QFile::remove(f);
1760         QFile::remove(f + ".png");
1761     }
1762     while (dayList.count() > 0) {
1763         f = dayList.takeFirst();
1764         QFile::remove(f);
1765         QFile::remove(f + ".png");
1766     }
1767     while (weekList.count() > 0) {
1768         f = weekList.takeFirst();
1769         QFile::remove(f);
1770         QFile::remove(f + ".png");
1771     }
1772     while (oldList.count() > 0) {
1773         f = oldList.takeFirst();
1774         QFile::remove(f);
1775         QFile::remove(f + ".png");
1776     }
1777 }
1778
1779 const QMap <QString, QString> KdenliveDoc::metadata() const
1780 {
1781     return m_documentMetadata;
1782 }
1783
1784 void KdenliveDoc::setMetadata(const QMap <QString, QString> meta)
1785 {
1786     m_documentMetadata = meta;
1787 }
1788
1789 #include "kdenlivedoc.moc"
1790