]> git.sesse.net Git - kdenlive/blob - src/kdenlivedoc.cpp
Add render zone between guides
[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 #include <KDebug>
21 #include <KStandardDirs>
22 #include <KMessageBox>
23 #include <KLocale>
24 #include <KFileDialog>
25 #include <KIO/NetAccess>
26 #include <KApplication>
27
28 #include "kdenlivedoc.h"
29 #include "docclipbase.h"
30 #include "profilesdialog.h"
31 #include "kdenlivesettings.h"
32 #include "renderer.h"
33 #include "clipmanager.h"
34 #include "addfoldercommand.h"
35 #include "editfoldercommand.h"
36 #include "titlewidget.h"
37 #include "mainwindow.h"
38
39
40 KdenliveDoc::KdenliveDoc(const KUrl &url, const KUrl &projectFolder, QUndoGroup *undoGroup, const QString &profileName, const QPoint tracks, MainWindow *parent): QObject(parent), m_render(NULL), m_url(url), m_projectFolder(projectFolder), m_commandStack(new QUndoStack(undoGroup)), m_modified(false), m_documentLoadingProgress(0), m_documentLoadingStep(0.0), m_startPos(0), m_zoom(7), m_autosave(NULL) {
41     m_clipManager = new ClipManager(this);
42     if (!url.isEmpty()) {
43         QString tmpFile;
44         if (KIO::NetAccess::download(url.path(), tmpFile, parent)) {
45             QFile file(tmpFile);
46             m_document.setContent(&file, false);
47             file.close();
48             QDomNode infoXmlNode = m_document.elementsByTagName("kdenlivedoc").at(0);
49             QDomNode westley = m_document.elementsByTagName("westley").at(0);
50             if (!infoXmlNode.isNull()) {
51                 QDomElement infoXml = infoXmlNode.toElement();
52                 QString profilePath = infoXml.attribute("profile");
53                 m_startPos = infoXml.attribute("position").toInt();
54                 m_zoom = infoXml.attribute("zoom", "7").toInt();
55                 setProfilePath(profilePath);
56                 double version = infoXml.attribute("version").toDouble();
57                 if (version < 0.7) convertDocument(version);
58                 else {
59                     //delete all mlt producers and instead, use Kdenlive saved producers
60                     QDomNodeList prods = m_document.elementsByTagName("producer");
61                     int maxprod = prods.count();
62                     int pos = 0;
63                     for (int i = 0; i < maxprod; i++) {
64                         QDomNode m = prods.at(pos);
65                         QString prodId = m.toElement().attribute("id");
66                         if (prodId == "black" || prodId.startsWith("slowmotion"))
67                             pos++;
68                         else westley.removeChild(m);
69                     }
70                     prods = m_document.elementsByTagName("kdenlive_producer");
71                     maxprod = prods.count();
72                     for (int i = 0; i < maxprod; i++) {
73                         prods.at(0).toElement().setTagName("producer");
74                         westley.insertBefore(prods.at(0), QDomNode());
75                     }
76                 }
77                 QDomElement e;
78                 QDomNodeList producers = m_document.elementsByTagName("producer");
79                 const int max = producers.count();
80                 if (max > 0) {
81                     m_documentLoadingStep = 100.0 / (max + m_document.elementsByTagName("entry").count());
82                     parent->slotGotProgressInfo(i18n("Loading project clips"), (int) m_documentLoadingProgress);
83                 }
84
85                 for (int i = 0; i < max; i++) {
86                     e = producers.item(i).cloneNode().toElement();
87                     if (m_documentLoadingStep > 0) {
88                         m_documentLoadingProgress += m_documentLoadingStep;
89                         parent->slotGotProgressInfo(QString(), (int) m_documentLoadingProgress);
90                         qApp->processEvents();
91                     }
92                     QString prodId = e.attribute("id");
93                     if (!e.isNull() && prodId != "black" && !prodId.startsWith("slowmotion")/*&& prodId.toInt() > 0*/) {
94                         addClip(e, prodId);
95                     }
96                 }
97
98                 QDomNode markers = m_document.elementsByTagName("markers").at(0);
99                 if (!markers.isNull()) {
100                     QDomNodeList markerslist = markers.childNodes();
101                     int maxchild = markerslist.count();
102                     for (int k = 0; k < maxchild; k++) {
103                         e = markerslist.at(k).toElement();
104                         if (e.tagName() == "marker") {
105                             m_clipManager->getClipById(e.attribute("id"))->addSnapMarker(GenTime(e.attribute("time").toDouble()), e.attribute("comment"));
106                         }
107                     }
108                     westley.removeChild(markers);
109                 }
110                 m_document.removeChild(infoXmlNode);
111
112                 kDebug() << "Reading file: " << url.path() << ", found clips: " << producers.count();
113             } else {
114                 parent->slotGotProgressInfo(i18n("File %1 is not a Kdenlive project file."), 100);
115                 kWarning() << "  NO KDENLIVE INFO FOUND IN FILE: " << url.path();
116                 m_document = createEmptyDocument(tracks.x(), tracks.y());
117                 setProfilePath(profileName);
118             }
119             KIO::NetAccess::removeTempFile(tmpFile);
120         } else {
121             KMessageBox::error(parent, KIO::NetAccess::lastErrorString());
122             parent->slotGotProgressInfo(i18n("File %1 is not a Kdenlive project file."), 100);
123             m_document = createEmptyDocument(tracks.x(), tracks.y());
124             setProfilePath(profileName);
125         }
126     } else {
127         m_document = createEmptyDocument(tracks.x(), tracks.y());
128         setProfilePath(profileName);
129     }
130     m_scenelist = m_document.toString();
131     kDebug() << "KDEnnlive document, init timecode: " << m_fps;
132     if (m_fps == 30000.0 / 1001.0) m_timecode.setFormat(30, true);
133     else m_timecode.setFormat((int) m_fps);
134
135     m_autoSaveTimer = new QTimer(this);
136     m_autoSaveTimer->setSingleShot(true);
137     connect(m_autoSaveTimer, SIGNAL(timeout()), this, SLOT(slotAutoSave()));
138 }
139
140 KdenliveDoc::~KdenliveDoc() {
141     delete m_commandStack;
142     delete m_clipManager;
143     delete m_autoSaveTimer;
144     m_autosave->remove();
145 }
146
147 QDomDocument KdenliveDoc::createEmptyDocument(const int videotracks, const int audiotracks) {
148     // Creating new document
149     QDomDocument doc;
150     QDomElement westley = doc.createElement("westley");
151     doc.appendChild(westley);
152
153     QDomElement tractor = doc.createElement("tractor");
154     tractor.setAttribute("id", "maintractor");
155     QDomElement multitrack = doc.createElement("multitrack");
156     QDomElement playlist = doc.createElement("playlist");
157     playlist.setAttribute("id", "black_track");
158     westley.appendChild(playlist);
159
160
161     // create playlists
162     int total = audiotracks + videotracks + 1;
163
164     for (int i = 1; i < total; i++) {
165         QDomElement playlist = doc.createElement("playlist");
166         playlist.setAttribute("id", "playlist" + QString::number(i));
167         westley.appendChild(playlist);
168     }
169
170     QDomElement track0 = doc.createElement("track");
171     track0.setAttribute("producer", "black_track");
172     tractor.appendChild(track0);
173
174     // create audio tracks
175     for (int i = 1; i < audiotracks + 1; i++) {
176         QDomElement track = doc.createElement("track");
177         track.setAttribute("producer", "playlist" + QString::number(i));
178         track.setAttribute("hide", "video");
179         tractor.appendChild(track);
180     }
181
182     // create video tracks
183     for (int i = audiotracks + 1; i < total; i++) {
184         QDomElement track = doc.createElement("track");
185         track.setAttribute("producer", "playlist" + QString::number(i));
186         tractor.appendChild(track);
187     }
188
189     for (uint i = 2; i < total ; i++) {
190         QDomElement transition = doc.createElement("transition");
191         transition.setAttribute("always_active", "1");
192
193         QDomElement property = doc.createElement("property");
194         property.setAttribute("name", "a_track");
195         QDomText value = doc.createTextNode(QString::number(1));
196         property.appendChild(value);
197         transition.appendChild(property);
198
199         property = doc.createElement("property");
200         property.setAttribute("name", "b_track");
201         value = doc.createTextNode(QString::number(i));
202         property.appendChild(value);
203         transition.appendChild(property);
204
205         property = doc.createElement("property");
206         property.setAttribute("name", "mlt_service");
207         value = doc.createTextNode("mix");
208         property.appendChild(value);
209         transition.appendChild(property);
210
211         property = doc.createElement("property");
212         property.setAttribute("name", "combine");
213         value = doc.createTextNode("1");
214         property.appendChild(value);
215         transition.appendChild(property);
216
217         property = doc.createElement("property");
218         property.setAttribute("name", "internal_added");
219         value = doc.createTextNode("237");
220         property.appendChild(value);
221         transition.appendChild(property);
222         tractor.appendChild(transition);
223     }
224     westley.appendChild(tractor);
225     return doc;
226 }
227
228
229 void KdenliveDoc::syncGuides(QList <Guide *> guides) {
230     QDomDocument doc;
231     QDomElement e;
232     m_guidesXml.clear();
233     m_guidesXml = doc.createElement("guides");
234
235     for (int i = 0; i < guides.count(); i++) {
236         e = doc.createElement("guide");
237         e.setAttribute("time", guides.at(i)->position().ms() / 1000);
238         e.setAttribute("comment", guides.at(i)->label());
239         m_guidesXml.appendChild(e);
240     }
241     emit guidesUpdated();
242 }
243
244 QDomElement KdenliveDoc::guidesXml() const {
245     return m_guidesXml;
246 }
247
248 void KdenliveDoc::slotAutoSave() {
249     if (m_render) {
250         if (!m_autosave->isOpen() && !m_autosave->open(QIODevice::ReadWrite)) {
251             // show error: could not open the autosave file
252             kDebug() << "ERROR; CANNOT CREATE AUTOSAVE FILE";
253         }
254         kDebug() << "// AUTOSAVE FILE: " << m_autosave->fileName();
255         m_render->saveSceneList(m_autosave->fileName(), documentInfoXml());
256     }
257 }
258
259 void KdenliveDoc::setZoom(int factor) {
260     m_zoom = factor;
261 }
262
263 int KdenliveDoc::zoom() const {
264     return m_zoom;
265 }
266
267 void KdenliveDoc::convertDocument(double version) {
268     // Opening a old Kdenlive document
269     QDomNode westley = m_document.elementsByTagName("westley").at(1);
270     QDomNode tractor = m_document.elementsByTagName("tractor").at(0);
271     QDomNode kdenlivedoc = m_document.elementsByTagName("kdenlivedoc").at(0);
272     QDomNode multitrack = m_document.elementsByTagName("multitrack").at(0);
273     QDomNodeList playlists = m_document.elementsByTagName("playlist");
274
275     m_startPos = kdenlivedoc.toElement().attribute("timeline_position").toInt();
276
277     QDomNode props = m_document.elementsByTagName("properties").at(0).toElement();
278     QString profile = props.toElement().attribute("videoprofile");
279     if (profile == "dv_wide") profile = "dv_pal_wide";
280     setProfilePath(profile);
281
282     // move playlists outside of tractor and add the tracks instead
283     int max = playlists.count();
284     for (int i = 0; i < max; i++) {
285         QDomNode n = playlists.at(i);
286         westley.insertBefore(n, QDomNode());
287         QDomElement pl = n.toElement();
288         QDomElement track = m_document.createElement("track");
289         QString trackType = pl.attribute("hide");
290         if (!trackType.isEmpty()) track.setAttribute("hide", trackType);
291         QString playlist_id =  pl.attribute("id");
292         if (playlist_id.isEmpty()) {
293             playlist_id = "black_track";
294             pl.setAttribute("id", playlist_id);
295         }
296         track.setAttribute("producer", playlist_id);
297         //tractor.appendChild(track);
298         tractor.insertAfter(track, QDomNode());
299     }
300     tractor.removeChild(multitrack);
301
302     // audio track mixing transitions should not be added to track view, so add required attribute
303     QDomNodeList transitions = m_document.elementsByTagName("transition");
304     max = transitions.count();
305     for (int i = 0; i < max; i++) {
306         QDomElement tr = transitions.at(i).toElement();
307         if (tr.attribute("combine") == "1" && tr.attribute("mlt_service") == "mix") {
308             QDomElement property = m_document.createElement("property");
309             property.setAttribute("name", "internal_added");
310             QDomText value = m_document.createTextNode("237");
311             property.appendChild(value);
312             tr.appendChild(property);
313         } else {
314             // convert transition
315             QDomNamedNodeMap attrs = tr.attributes();
316             for (unsigned int j = 0; j < attrs.count(); j++) {
317                 QString attrName = attrs.item(j).nodeName();
318                 if (attrName != "in" && attrName != "out" && attrName != "id") {
319                     QDomElement property = m_document.createElement("property");
320                     property.setAttribute("name", attrName);
321                     QDomText value = m_document.createTextNode(attrs.item(j).nodeValue());
322                     property.appendChild(value);
323                     tr.appendChild(property);
324                 }
325             }
326         }
327     }
328
329     // move transitions after tracks
330     for (int i = 0; i < max; i++) {
331         tractor.insertAfter(transitions.at(0), QDomNode());
332     }
333
334     // Fix filters format
335     QDomNodeList entries = m_document.elementsByTagName("entry");
336     max = entries.count();
337     for (int i = 0; i < max; i++) {
338         QString last_id;
339         int effectix = 0;
340         QDomNode m = entries.at(i).firstChild();
341         while (!m.isNull()) {
342             if (m.toElement().tagName() == "filter") {
343                 QDomElement filt = m.toElement();
344                 QDomNamedNodeMap attrs = filt.attributes();
345                 QString current_id = filt.attribute("kdenlive_id");
346                 if (current_id != last_id) {
347                     effectix++;
348                     last_id = current_id;
349                 }
350                 QDomElement e = m_document.createElement("property");
351                 e.setAttribute("name", "kdenlive_ix");
352                 QDomText value = m_document.createTextNode(QString::number(effectix));
353                 e.appendChild(value);
354                 filt.appendChild(e);
355                 for (int j = 0; j < attrs.count(); j++) {
356                     QDomAttr a = attrs.item(j).toAttr();
357                     if (!a.isNull()) {
358                         kDebug() << " FILTER; adding :" << a.name() << ":" << a.value();
359                         QDomElement e = m_document.createElement("property");
360                         e.setAttribute("name", a.name());
361                         QDomText value = m_document.createTextNode(a.value());
362                         e.appendChild(value);
363                         filt.appendChild(e);
364
365                     }
366                 }
367             }
368             m = m.nextSibling();
369         }
370     }
371
372     /*
373         QDomNodeList filters = m_document.elementsByTagName("filter");
374         max = filters.count();
375         QString last_id;
376         int effectix = 0;
377         for (int i = 0; i < max; i++) {
378             QDomElement filt = filters.at(i).toElement();
379             QDomNamedNodeMap attrs = filt.attributes();
380      QString current_id = filt.attribute("kdenlive_id");
381      if (current_id != last_id) {
382          effectix++;
383          last_id = current_id;
384      }
385      QDomElement e = m_document.createElement("property");
386             e.setAttribute("name", "kdenlive_ix");
387             QDomText value = m_document.createTextNode(QString::number(1));
388             e.appendChild(value);
389             filt.appendChild(e);
390             for (int j = 0; j < attrs.count(); j++) {
391                 QDomAttr a = attrs.item(j).toAttr();
392                 if (!a.isNull()) {
393                     kDebug() << " FILTER; adding :" << a.name() << ":" << a.value();
394                     QDomElement e = m_document.createElement("property");
395                     e.setAttribute("name", a.name());
396                     QDomText value = m_document.createTextNode(a.value());
397                     e.appendChild(value);
398                     filt.appendChild(e);
399                 }
400             }
401         }*/
402
403     // fix slowmotion
404     QDomNodeList producers = westley.toElement().elementsByTagName("producer");
405     max = producers.count();
406     for (int i = 0; i < max; i++) {
407         QDomElement prod = producers.at(i).toElement();
408         if (prod.attribute("mlt_service") == "framebuffer") {
409             QString slowmotionprod = prod.attribute("resource");
410             slowmotionprod.replace(':', '?');
411             kDebug() << "// FOUND WRONG SLOWMO, new: " << slowmotionprod;
412             prod.setAttribute("resource", slowmotionprod);
413         }
414     }
415
416     // move producers to correct place, markers to a global list, fix clip descriptions
417     QDomElement markers = m_document.createElement("markers");
418     producers = m_document.elementsByTagName("producer");
419     max = producers.count();
420     for (int i = 0; i < max; i++) {
421         QDomElement prod = producers.at(0).toElement();
422         QDomNode m = prod.firstChild();
423         if (!m.isNull() && m.toElement().tagName() == "markers") {
424             QDomNodeList prodchilds = m.childNodes();
425             int maxchild = prodchilds.count();
426             for (int k = 0; k < maxchild; k++) {
427                 QDomElement mark = prodchilds.at(0).toElement();
428                 mark.setAttribute("id", prod.attribute("id"));
429                 markers.insertAfter(mark, QDomNode());
430             }
431             prod.removeChild(m);
432         } else if (m.isText()) {
433             QString comment = m.nodeValue();
434             if (!comment.isEmpty()) {
435                 prod.setAttribute("description", comment);
436             }
437             prod.removeChild(m);
438         }
439         int duration = prod.attribute("duration").toInt();
440         if (duration > 0) prod.setAttribute("out", QString::number(duration));
441         westley.insertBefore(prod, QDomNode());
442     }
443
444     QDomNode westley0 = m_document.elementsByTagName("westley").at(0);
445     if (!markers.firstChild().isNull()) westley0.appendChild(markers);
446     westley0.removeChild(kdenlivedoc);
447
448     QDomNodeList elements = westley.childNodes();
449     max = elements.count();
450     for (int i = 0; i < max; i++) {
451         QDomElement prod = elements.at(0).toElement();
452         westley0.insertAfter(prod, QDomNode());
453     }
454
455     westley0.removeChild(westley);
456
457     //kDebug() << "/////////////////  CONVERTED DOC:";
458     //kDebug() << m_document.toString();
459     //kDebug() << "/////////////////  END CONVERTED DOC:";
460 }
461
462 QDomElement KdenliveDoc::documentInfoXml() {
463     QDomDocument doc;
464     QDomElement e;
465     QDomElement addedXml = doc.createElement("kdenlivedoc");
466     QDomElement markers = doc.createElement("markers");
467     addedXml.setAttribute("version", "0.7");
468     addedXml.setAttribute("profile", profilePath());
469     addedXml.setAttribute("position", m_render->seekPosition().frames(m_fps));
470     addedXml.setAttribute("zoom", m_zoom);
471     QList <DocClipBase*> list = m_clipManager->documentClipList();
472     for (int i = 0; i < list.count(); i++) {
473         e = list.at(i)->toXML();
474         e.setTagName("kdenlive_producer");
475         addedXml.appendChild(doc.importNode(e, true));
476         QList < CommentedTime > marks = list.at(i)->commentedSnapMarkers();
477         for (int j = 0; j < marks.count(); j++) {
478             QDomElement marker = doc.createElement("marker");
479             marker.setAttribute("time", marks.at(j).time().ms() / 1000);
480             marker.setAttribute("comment", marks.at(j).comment());
481             marker.setAttribute("id", e.attribute("id"));
482             markers.appendChild(marker);
483         }
484     }
485     addedXml.appendChild(markers);
486     if (!m_guidesXml.isNull()) addedXml.appendChild(doc.importNode(m_guidesXml, true));
487     //kDebug() << m_document.toString();
488     return addedXml;
489 }
490
491
492 ClipManager *KdenliveDoc::clipManager() {
493     return m_clipManager;
494 }
495
496 KUrl KdenliveDoc::projectFolder() const {
497     if (m_projectFolder.isEmpty()) return KUrl(KStandardDirs::locateLocal("appdata", "/projects/"));
498     return m_projectFolder;
499 }
500
501 QString KdenliveDoc::getDocumentStandard() {
502     //WARNING: this way to tell the video standard is a bit hackish...
503     if (m_profile.description.contains("pal", Qt::CaseInsensitive) || m_profile.description.contains("25", Qt::CaseInsensitive) || m_profile.description.contains("50", Qt::CaseInsensitive)) return "PAL";
504     return "NTSC";
505 }
506
507 QString KdenliveDoc::profilePath() const {
508     return m_profile.path;
509 }
510
511 MltVideoProfile KdenliveDoc::mltProfile() const {
512     return m_profile;
513 }
514
515 void KdenliveDoc::setProfilePath(QString path) {
516     if (path.isEmpty()) path = KdenliveSettings::default_profile();
517     if (path.isEmpty()) path = "dv_pal";
518     m_profile = ProfilesDialog::getVideoProfile(path);
519     KdenliveSettings::setProject_display_ratio((double) m_profile.display_aspect_num / m_profile.display_aspect_den);
520     m_fps = (double) m_profile.frame_rate_num / m_profile.frame_rate_den;
521     m_width = m_profile.width;
522     m_height = m_profile.height;
523     kDebug() << "KDEnnlive document, init timecode from path: " << path << ",  " << m_fps;
524     if (m_fps == 30000.0 / 1001.0) m_timecode.setFormat(30, true);
525     else m_timecode.setFormat((int) m_fps);
526 }
527
528 const double KdenliveDoc::dar() {
529     return (double) m_profile.display_aspect_num / m_profile.display_aspect_den;
530 }
531
532 void KdenliveDoc::setThumbsProgress(const QString &message, int progress) {
533     emit progressInfo(message, progress);
534 }
535
536 void KdenliveDoc::loadingProgressed() {
537     m_documentLoadingProgress += m_documentLoadingStep;
538     emit progressInfo(QString(), (int) m_documentLoadingProgress);
539 }
540
541 QUndoStack *KdenliveDoc::commandStack() {
542     return m_commandStack;
543 }
544
545 void KdenliveDoc::setRenderer(Render *render) {
546     if (m_render) return;
547     m_render = render;
548     emit progressInfo(i18n("Loading playlist..."), 0);
549     qApp->processEvents();
550     if (m_render) m_render->setSceneList(m_document.toString(), m_startPos);
551     emit progressInfo(QString(), -1);
552 }
553
554 Render *KdenliveDoc::renderer() {
555     return m_render;
556 }
557
558 void KdenliveDoc::updateClip(const QString &id) {
559     emit updateClipDisplay(id);
560 }
561
562 void KdenliveDoc::updateAllProjectClips() {
563     QList <DocClipBase*> list = m_clipManager->documentClipList();
564     for (int i = 0; i < list.count(); i++)
565         emit updateClipDisplay(list.at(i)->getId());
566 }
567
568 int KdenliveDoc::getFramePos(QString duration) {
569     return m_timecode.getFrameCount(duration, m_fps);
570 }
571
572 QString KdenliveDoc::producerName(const QString &id) {
573     QString result = "unnamed";
574     QDomNodeList prods = producersList();
575     int ct = prods.count();
576     for (int i = 0; i <  ct ; i++) {
577         QDomElement e = prods.item(i).toElement();
578         if (e.attribute("id") != "black" && e.attribute("id") == id) {
579             result = e.attribute("name");
580             if (result.isEmpty()) result = KUrl(e.attribute("resource")).fileName();
581             break;
582         }
583     }
584     return result;
585 }
586
587 void KdenliveDoc::setProducerDuration(const QString &id, int duration) {
588     QDomNodeList prods = producersList();
589     int ct = prods.count();
590     for (int i = 0; i <  ct ; i++) {
591         QDomElement e = prods.item(i).toElement();
592         if (e.attribute("id") != "black" && e.attribute("id") == id) {
593             e.setAttribute("duration", QString::number(duration));
594             break;
595         }
596     }
597 }
598
599 int KdenliveDoc::getProducerDuration(const QString &id) {
600     int result = 0;
601     QDomNodeList prods = producersList();
602     int ct = prods.count();
603     for (int i = 0; i <  ct ; i++) {
604         QDomElement e = prods.item(i).toElement();
605         if (e.attribute("id") != "black" && e.attribute("id") == id) {
606             result = e.attribute("duration").toInt();
607             break;
608         }
609     }
610     return result;
611 }
612
613
614 QDomDocument KdenliveDoc::generateSceneList() {
615     QDomDocument doc;
616     QDomElement westley = doc.createElement("westley");
617     doc.appendChild(westley);
618     QDomElement prod = doc.createElement("producer");
619 }
620
621 QDomDocument KdenliveDoc::toXml() const {
622     return m_document;
623 }
624
625 Timecode KdenliveDoc::timecode() const {
626     return m_timecode;
627 }
628
629 QDomNodeList KdenliveDoc::producersList() {
630     return m_document.elementsByTagName("producer");
631 }
632
633 void KdenliveDoc::backupMltPlaylist() {
634     if (m_render) m_scenelist = m_render->sceneList();
635 }
636
637 double KdenliveDoc::projectDuration() const {
638     if (m_render) return GenTime(m_render->getLength(), m_fps).ms() / 1000;
639 }
640
641 double KdenliveDoc::fps() const {
642     return m_fps;
643 }
644
645 int KdenliveDoc::width() const {
646     return m_width;
647 }
648
649 int KdenliveDoc::height() const {
650     return m_height;
651 }
652
653 KUrl KdenliveDoc::url() const {
654     return m_url;
655 }
656
657 void KdenliveDoc::setUrl(KUrl url) {
658     m_url = url;
659 }
660
661 void KdenliveDoc::setModified(bool mod) {
662     if (!m_url.isEmpty() && mod && KdenliveSettings::crashrecovery()) {
663         m_autoSaveTimer->start(3000);
664     }
665     if (mod == m_modified) return;
666     m_modified = mod;
667     emit docModified(m_modified);
668 }
669
670 bool KdenliveDoc::isModified() const {
671     return m_modified;
672 }
673
674 QString KdenliveDoc::description() const {
675     if (m_url.isEmpty())
676         return i18n("Untitled") + " / " + m_profile.description;
677     else
678         return m_url.fileName() + " / " + m_profile.description;
679 }
680
681 void KdenliveDoc::addClip(const QDomElement &elem, const QString &clipId) {
682     DocClipBase *clip = new DocClipBase(m_clipManager, elem, clipId);
683     kDebug() << "/////////  DOCUM, CREATING NEW CLIP, ID:" << clipId << ", PAR ID:" << elem.attribute("groupid");
684     m_clipManager->addClip(clip);
685     emit addProjectClip(clip);
686 }
687
688 void KdenliveDoc::addFolder(const QString foldername, const QString &clipId, bool edit) {
689     emit addProjectFolder(foldername, clipId, false, edit);
690 }
691
692 void KdenliveDoc::deleteFolder(const QString foldername, const QString &clipId) {
693     emit addProjectFolder(foldername, clipId, true);
694 }
695
696 void KdenliveDoc::deleteProjectClip(QList <QString> ids) {
697     for (int i = 0; i < ids.size(); ++i) {
698         emit deleteTimelineClip(ids.at(i));
699         m_clipManager->slotDeleteClip(ids.at(i));
700     }
701     setModified(true);
702 }
703
704 void KdenliveDoc::deleteProjectFolder(QMap <QString, QString> map) {
705     QMapIterator<QString, QString> i(map);
706     while (i.hasNext()) {
707         i.next();
708         slotDeleteFolder(i.key(), i.value());
709     }
710     setModified(true);
711 }
712
713 void KdenliveDoc::deleteClip(const QString &clipId) {
714     emit signalDeleteProjectClip(clipId);
715     m_clipManager->deleteClip(clipId);
716 }
717
718 void KdenliveDoc::slotAddClipList(const KUrl::List urls, const QString group, const QString &groupId) {
719     m_clipManager->slotAddClipList(urls, group, groupId);
720     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
721     setModified(true);
722 }
723
724
725 void KdenliveDoc::slotAddClipFile(const KUrl url, const QString group, const QString &groupId) {
726     kDebug() << "/////////  DOCUM, ADD CLP: " << url;
727     m_clipManager->slotAddClipFile(url, group, groupId);
728     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
729     setModified(true);
730 }
731
732 void KdenliveDoc::slotAddFolder(const QString folderName) {
733     AddFolderCommand *command = new AddFolderCommand(this, folderName, QString::number(m_clipManager->getFreeClipId()), true);
734     commandStack()->push(command);
735     setModified(true);
736 }
737
738 void KdenliveDoc::slotDeleteFolder(const QString folderName, const QString &id) {
739     AddFolderCommand *command = new AddFolderCommand(this, folderName, id, false);
740     commandStack()->push(command);
741     setModified(true);
742 }
743
744 void KdenliveDoc::slotEditFolder(const QString newfolderName, const QString oldfolderName, const QString &clipId) {
745     EditFolderCommand *command = new EditFolderCommand(this, newfolderName, oldfolderName, clipId, false);
746     commandStack()->push(command);
747     setModified(true);
748 }
749
750 const QString&KdenliveDoc::getFreeClipId() {
751     return QString::number(m_clipManager->getFreeClipId());
752 }
753
754 DocClipBase *KdenliveDoc::getBaseClip(const QString &clipId) {
755     return m_clipManager->getClipById(clipId);
756 }
757
758 void KdenliveDoc::slotAddColorClipFile(const QString name, const QString color, QString duration, const QString group, const QString &groupId) {
759     m_clipManager->slotAddColorClipFile(name, color, duration, group, groupId);
760     setModified(true);
761 }
762
763 void KdenliveDoc::slotAddSlideshowClipFile(const QString name, const QString path, int count, const QString duration, const bool loop, const bool fade, const QString &luma_duration, const QString &luma_file, const int softness, const QString group, const QString &groupId) {
764     m_clipManager->slotAddSlideshowClipFile(name, path, count, duration, loop, fade, luma_duration, luma_file, softness, group, groupId);
765     setModified(true);
766 }
767
768 void KdenliveDoc::slotCreateTextClip(QString group, const QString &groupId) {
769     QString titlesFolder = projectFolder().path() + "/titles/";
770     KStandardDirs::makeDir(titlesFolder);
771     TitleWidget *dia_ui = new TitleWidget(KUrl(), titlesFolder, m_render, kapp->activeWindow());
772     if (dia_ui->exec() == QDialog::Accepted) {
773         QString titleName = "title";
774         int counter = 0;
775         QString path = titlesFolder + titleName + QString::number(counter).rightJustified(3, '0', false);
776         while (QFile::exists(path + ".png")) {
777             counter++;
778             path = titlesFolder + titleName + QString::number(counter).rightJustified(3, '0', false);
779         }
780         QPixmap pix = dia_ui->renderedPixmap();
781         pix.save(path + ".png");
782         //dia_ui->saveTitle(path + ".kdenlivetitle");
783         m_clipManager->slotAddTextClipFile(path, dia_ui->xml().toString(), QString(), QString());
784         setModified(true);
785     }
786     delete dia_ui;
787 }
788
789
790
791 #include "kdenlivedoc.moc"
792