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