]> git.sesse.net Git - kdenlive/blob - src/kdenlivedoc.cpp
Allow import of Kdenlive 0.5 title clips (double click on each text clip & click...
[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
409         if (prod.attribute("mlt_service") == "framebuffer") {
410             QString slowmotionprod = prod.attribute("resource");
411             slowmotionprod.replace(':', '?');
412             kDebug() << "// FOUND WRONG SLOWMO, new: " << slowmotionprod;
413             prod.setAttribute("resource", slowmotionprod);
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()) {
424             if (m.toElement().tagName() == "markers") {
425                 QDomNodeList prodchilds = m.childNodes();
426                 int maxchild = prodchilds.count();
427                 for (int k = 0; k < maxchild; k++) {
428                     QDomElement mark = prodchilds.at(0).toElement();
429                     mark.setAttribute("id", prod.attribute("id"));
430                     markers.insertAfter(mark, QDomNode());
431                 }
432                 prod.removeChild(m);
433             } else if (prod.attribute("type").toInt() == TEXT) {
434                 // convert title clip
435                 if (m.toElement().tagName() == "textclip") {
436                     QDomDocument tdoc;
437                     QDomElement titleclip = m.toElement();
438                     QDomElement title = tdoc.createElement("kdenlivetitle");
439                     tdoc.appendChild(title);
440                     QDomNodeList objects = titleclip.childNodes();
441                     int maxchild = objects.count();
442                     for (int k = 0; k < maxchild; k++) {
443                         QString objectxml;
444                         QDomElement ob = objects.at(k).toElement();
445                         if (ob.attribute("type") == "3") {
446                             // text object
447                             QDomElement item = tdoc.createElement("item");
448                             item.setAttribute("z-index", ob.attribute("z"));
449                             item.setAttribute("type", "QGraphicsTextItem");
450                             QDomElement position = tdoc.createElement("position");
451                             position.setAttribute("x", ob.attribute("x"));
452                             position.setAttribute("y", ob.attribute("y"));
453                             QDomElement content = tdoc.createElement("content");
454                             content.setAttribute("font", ob.attribute("font_family"));
455                             content.setAttribute("font-size", ob.attribute("font_size"));
456                             content.setAttribute("font-bold", ob.attribute("bold"));
457                             content.setAttribute("font-italic", ob.attribute("italic"));
458                             content.setAttribute("font-underline", ob.attribute("underline"));
459                             QString col = ob.attribute("color");
460                             QColor c(col);
461                             content.setAttribute("font-color", colorToString(c));
462                             QDomText conttxt = tdoc.createTextNode(ob.attribute("text"));
463                             content.appendChild(conttxt);
464                             item.appendChild(position);
465                             item.appendChild(content);
466                             title.appendChild(item);
467                         } else if (ob.attribute("type") == "5") {
468                             // rectangle object
469                             QDomElement item = tdoc.createElement("item");
470                             item.setAttribute("z-index", ob.attribute("z"));
471                             item.setAttribute("type", "QGraphicsRectItem");
472                             QDomElement position = tdoc.createElement("position");
473                             position.setAttribute("x", ob.attribute("x"));
474                             position.setAttribute("y", ob.attribute("y"));
475                             QDomElement content = tdoc.createElement("content");
476                             QString col = ob.attribute("color");
477                             QColor c(col);
478                             content.setAttribute("brushcolor", colorToString(c));
479                             QString rect = "0,0,";
480                             rect.append(ob.attribute("width"));
481                             rect.append(",");
482                             rect.append(ob.attribute("height"));
483                             content.setAttribute("rect", rect);
484                             item.appendChild(position);
485                             item.appendChild(content);
486                             title.appendChild(item);
487                         }
488                     }
489                     prod.setAttribute("xmldata", tdoc.toString());
490                     QString titlesFolder = projectFolder().path() + "/titles/";
491                     KStandardDirs::makeDir(titlesFolder);
492                     QString titleName = "title";
493                     int counter = 0;
494                     QString path = titlesFolder + titleName + QString::number(counter).rightJustified(3, '0', false);
495                     while (QFile::exists(path + ".png")) {
496                         counter++;
497                         path = titlesFolder + titleName + QString::number(counter).rightJustified(3, '0', false);
498                     }
499                     prod.setAttribute("xml", path);
500                     prod.setAttribute("resource", path + ".png");
501                     //kDebug()<<"TITLE DATA:\n"<<tdoc.toString();
502                     prod.removeChild(m);
503                 }
504
505             } else if (m.isText()) {
506                 QString comment = m.nodeValue();
507                 if (!comment.isEmpty()) {
508                     prod.setAttribute("description", comment);
509                 }
510                 prod.removeChild(m);
511             }
512         }
513         int duration = prod.attribute("duration").toInt();
514         if (duration > 0) prod.setAttribute("out", QString::number(duration));
515         westley.insertBefore(prod, QDomNode());
516
517     }
518
519     QDomNode westley0 = m_document.elementsByTagName("westley").at(0);
520     if (!markers.firstChild().isNull()) westley0.appendChild(markers);
521     westley0.removeChild(kdenlivedoc);
522
523     QDomNodeList elements = westley.childNodes();
524     max = elements.count();
525     for (int i = 0; i < max; i++) {
526         QDomElement prod = elements.at(0).toElement();
527         westley0.insertAfter(prod, QDomNode());
528     }
529
530     westley0.removeChild(westley);
531
532     //kDebug() << "/////////////////  CONVERTED DOC:";
533     //kDebug() << m_document.toString();
534     //kDebug() << "/////////////////  END CONVERTED DOC:";
535 }
536
537 QString KdenliveDoc::colorToString(const QColor& c) {
538     QString ret = "%1,%2,%3,%4";
539     ret = ret.arg(c.red()).arg(c.green()).arg(c.blue()).arg(c.alpha());
540     return ret;
541 }
542
543 QDomElement KdenliveDoc::documentInfoXml() {
544     QDomDocument doc;
545     QDomElement e;
546     QDomElement addedXml = doc.createElement("kdenlivedoc");
547     QDomElement markers = doc.createElement("markers");
548     addedXml.setAttribute("version", "0.7");
549     addedXml.setAttribute("profile", profilePath());
550     addedXml.setAttribute("position", m_render->seekPosition().frames(m_fps));
551     addedXml.setAttribute("zoom", m_zoom);
552     QList <DocClipBase*> list = m_clipManager->documentClipList();
553     for (int i = 0; i < list.count(); i++) {
554         e = list.at(i)->toXML();
555         e.setTagName("kdenlive_producer");
556         addedXml.appendChild(doc.importNode(e, true));
557         QList < CommentedTime > marks = list.at(i)->commentedSnapMarkers();
558         for (int j = 0; j < marks.count(); j++) {
559             QDomElement marker = doc.createElement("marker");
560             marker.setAttribute("time", marks.at(j).time().ms() / 1000);
561             marker.setAttribute("comment", marks.at(j).comment());
562             marker.setAttribute("id", e.attribute("id"));
563             markers.appendChild(marker);
564         }
565     }
566     addedXml.appendChild(markers);
567     if (!m_guidesXml.isNull()) addedXml.appendChild(doc.importNode(m_guidesXml, true));
568     //kDebug() << m_document.toString();
569     return addedXml;
570 }
571
572
573 ClipManager *KdenliveDoc::clipManager() {
574     return m_clipManager;
575 }
576
577 KUrl KdenliveDoc::projectFolder() const {
578     if (m_projectFolder.isEmpty()) return KUrl(KStandardDirs::locateLocal("appdata", "/projects/"));
579     return m_projectFolder;
580 }
581
582 QString KdenliveDoc::getDocumentStandard() {
583     //WARNING: this way to tell the video standard is a bit hackish...
584     if (m_profile.description.contains("pal", Qt::CaseInsensitive) || m_profile.description.contains("25", Qt::CaseInsensitive) || m_profile.description.contains("50", Qt::CaseInsensitive)) return "PAL";
585     return "NTSC";
586 }
587
588 QString KdenliveDoc::profilePath() const {
589     return m_profile.path;
590 }
591
592 MltVideoProfile KdenliveDoc::mltProfile() const {
593     return m_profile;
594 }
595
596 void KdenliveDoc::setProfilePath(QString path) {
597     if (path.isEmpty()) path = KdenliveSettings::default_profile();
598     if (path.isEmpty()) path = "dv_pal";
599     m_profile = ProfilesDialog::getVideoProfile(path);
600     KdenliveSettings::setProject_display_ratio((double) m_profile.display_aspect_num / m_profile.display_aspect_den);
601     m_fps = (double) m_profile.frame_rate_num / m_profile.frame_rate_den;
602     m_width = m_profile.width;
603     m_height = m_profile.height;
604     kDebug() << "KDEnnlive document, init timecode from path: " << path << ",  " << m_fps;
605     if (m_fps == 30000.0 / 1001.0) m_timecode.setFormat(30, true);
606     else m_timecode.setFormat((int) m_fps);
607 }
608
609 const double KdenliveDoc::dar() {
610     return (double) m_profile.display_aspect_num / m_profile.display_aspect_den;
611 }
612
613 void KdenliveDoc::setThumbsProgress(const QString &message, int progress) {
614     emit progressInfo(message, progress);
615 }
616
617 void KdenliveDoc::loadingProgressed() {
618     m_documentLoadingProgress += m_documentLoadingStep;
619     emit progressInfo(QString(), (int) m_documentLoadingProgress);
620 }
621
622 QUndoStack *KdenliveDoc::commandStack() {
623     return m_commandStack;
624 }
625
626 void KdenliveDoc::setRenderer(Render *render) {
627     if (m_render) return;
628     m_render = render;
629     emit progressInfo(i18n("Loading playlist..."), 0);
630     qApp->processEvents();
631     if (m_render) m_render->setSceneList(m_document.toString(), m_startPos);
632     emit progressInfo(QString(), -1);
633 }
634
635 Render *KdenliveDoc::renderer() {
636     return m_render;
637 }
638
639 void KdenliveDoc::updateClip(const QString &id) {
640     emit updateClipDisplay(id);
641 }
642
643 void KdenliveDoc::updateAllProjectClips() {
644     QList <DocClipBase*> list = m_clipManager->documentClipList();
645     for (int i = 0; i < list.count(); i++)
646         emit updateClipDisplay(list.at(i)->getId());
647 }
648
649 int KdenliveDoc::getFramePos(QString duration) {
650     return m_timecode.getFrameCount(duration, m_fps);
651 }
652
653 QString KdenliveDoc::producerName(const QString &id) {
654     QString result = "unnamed";
655     QDomNodeList prods = producersList();
656     int ct = prods.count();
657     for (int i = 0; i <  ct ; i++) {
658         QDomElement e = prods.item(i).toElement();
659         if (e.attribute("id") != "black" && e.attribute("id") == id) {
660             result = e.attribute("name");
661             if (result.isEmpty()) result = KUrl(e.attribute("resource")).fileName();
662             break;
663         }
664     }
665     return result;
666 }
667
668 void KdenliveDoc::setProducerDuration(const QString &id, int duration) {
669     QDomNodeList prods = producersList();
670     int ct = prods.count();
671     for (int i = 0; i <  ct ; i++) {
672         QDomElement e = prods.item(i).toElement();
673         if (e.attribute("id") != "black" && e.attribute("id") == id) {
674             e.setAttribute("duration", QString::number(duration));
675             break;
676         }
677     }
678 }
679
680 int KdenliveDoc::getProducerDuration(const QString &id) {
681     int result = 0;
682     QDomNodeList prods = producersList();
683     int ct = prods.count();
684     for (int i = 0; i <  ct ; i++) {
685         QDomElement e = prods.item(i).toElement();
686         if (e.attribute("id") != "black" && e.attribute("id") == id) {
687             result = e.attribute("duration").toInt();
688             break;
689         }
690     }
691     return result;
692 }
693
694
695 QDomDocument KdenliveDoc::generateSceneList() {
696     QDomDocument doc;
697     QDomElement westley = doc.createElement("westley");
698     doc.appendChild(westley);
699     QDomElement prod = doc.createElement("producer");
700 }
701
702 QDomDocument KdenliveDoc::toXml() const {
703     return m_document;
704 }
705
706 Timecode KdenliveDoc::timecode() const {
707     return m_timecode;
708 }
709
710 QDomNodeList KdenliveDoc::producersList() {
711     return m_document.elementsByTagName("producer");
712 }
713
714 void KdenliveDoc::backupMltPlaylist() {
715     if (m_render) m_scenelist = m_render->sceneList();
716 }
717
718 double KdenliveDoc::projectDuration() const {
719     if (m_render) return GenTime(m_render->getLength(), m_fps).ms() / 1000;
720 }
721
722 double KdenliveDoc::fps() const {
723     return m_fps;
724 }
725
726 int KdenliveDoc::width() const {
727     return m_width;
728 }
729
730 int KdenliveDoc::height() const {
731     return m_height;
732 }
733
734 KUrl KdenliveDoc::url() const {
735     return m_url;
736 }
737
738 void KdenliveDoc::setUrl(KUrl url) {
739     m_url = url;
740 }
741
742 void KdenliveDoc::setModified(bool mod) {
743     if (!m_url.isEmpty() && mod && KdenliveSettings::crashrecovery()) {
744         m_autoSaveTimer->start(3000);
745     }
746     if (mod == m_modified) return;
747     m_modified = mod;
748     emit docModified(m_modified);
749 }
750
751 bool KdenliveDoc::isModified() const {
752     return m_modified;
753 }
754
755 QString KdenliveDoc::description() const {
756     if (m_url.isEmpty())
757         return i18n("Untitled") + " / " + m_profile.description;
758     else
759         return m_url.fileName() + " / " + m_profile.description;
760 }
761
762 void KdenliveDoc::addClip(const QDomElement &elem, const QString &clipId) {
763     DocClipBase *clip = new DocClipBase(m_clipManager, elem, clipId);
764     kDebug() << "/////////  DOCUM, CREATING NEW CLIP, ID:" << clipId << ", PAR ID:" << elem.attribute("groupid");
765     m_clipManager->addClip(clip);
766     emit addProjectClip(clip);
767 }
768
769 void KdenliveDoc::addFolder(const QString foldername, const QString &clipId, bool edit) {
770     emit addProjectFolder(foldername, clipId, false, edit);
771 }
772
773 void KdenliveDoc::deleteFolder(const QString foldername, const QString &clipId) {
774     emit addProjectFolder(foldername, clipId, true);
775 }
776
777 void KdenliveDoc::deleteProjectClip(QList <QString> ids) {
778     for (int i = 0; i < ids.size(); ++i) {
779         emit deleteTimelineClip(ids.at(i));
780         m_clipManager->slotDeleteClip(ids.at(i));
781     }
782     setModified(true);
783 }
784
785 void KdenliveDoc::deleteProjectFolder(QMap <QString, QString> map) {
786     QMapIterator<QString, QString> i(map);
787     while (i.hasNext()) {
788         i.next();
789         slotDeleteFolder(i.key(), i.value());
790     }
791     setModified(true);
792 }
793
794 void KdenliveDoc::deleteClip(const QString &clipId) {
795     emit signalDeleteProjectClip(clipId);
796     m_clipManager->deleteClip(clipId);
797 }
798
799 void KdenliveDoc::slotAddClipList(const KUrl::List urls, const QString group, const QString &groupId) {
800     m_clipManager->slotAddClipList(urls, group, groupId);
801     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
802     setModified(true);
803 }
804
805
806 void KdenliveDoc::slotAddClipFile(const KUrl url, const QString group, const QString &groupId) {
807     kDebug() << "/////////  DOCUM, ADD CLP: " << url;
808     m_clipManager->slotAddClipFile(url, group, groupId);
809     emit selectLastAddedClip(QString::number(m_clipManager->lastClipId()));
810     setModified(true);
811 }
812
813 void KdenliveDoc::slotAddFolder(const QString folderName) {
814     AddFolderCommand *command = new AddFolderCommand(this, folderName, QString::number(m_clipManager->getFreeClipId()), true);
815     commandStack()->push(command);
816     setModified(true);
817 }
818
819 void KdenliveDoc::slotDeleteFolder(const QString folderName, const QString &id) {
820     AddFolderCommand *command = new AddFolderCommand(this, folderName, id, false);
821     commandStack()->push(command);
822     setModified(true);
823 }
824
825 void KdenliveDoc::slotEditFolder(const QString newfolderName, const QString oldfolderName, const QString &clipId) {
826     EditFolderCommand *command = new EditFolderCommand(this, newfolderName, oldfolderName, clipId, false);
827     commandStack()->push(command);
828     setModified(true);
829 }
830
831 const QString&KdenliveDoc::getFreeClipId() {
832     return QString::number(m_clipManager->getFreeClipId());
833 }
834
835 DocClipBase *KdenliveDoc::getBaseClip(const QString &clipId) {
836     return m_clipManager->getClipById(clipId);
837 }
838
839 void KdenliveDoc::slotAddColorClipFile(const QString name, const QString color, QString duration, const QString group, const QString &groupId) {
840     m_clipManager->slotAddColorClipFile(name, color, duration, group, groupId);
841     setModified(true);
842 }
843
844 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) {
845     m_clipManager->slotAddSlideshowClipFile(name, path, count, duration, loop, fade, luma_duration, luma_file, softness, group, groupId);
846     setModified(true);
847 }
848
849 void KdenliveDoc::slotCreateTextClip(QString group, const QString &groupId) {
850     QString titlesFolder = projectFolder().path() + "/titles/";
851     KStandardDirs::makeDir(titlesFolder);
852     TitleWidget *dia_ui = new TitleWidget(KUrl(), titlesFolder, m_render, kapp->activeWindow());
853     if (dia_ui->exec() == QDialog::Accepted) {
854         QString titleName = "title";
855         int counter = 0;
856         QString path = titlesFolder + titleName + QString::number(counter).rightJustified(3, '0', false);
857         while (QFile::exists(path + ".png")) {
858             counter++;
859             path = titlesFolder + titleName + QString::number(counter).rightJustified(3, '0', false);
860         }
861         QPixmap pix = dia_ui->renderedPixmap();
862         pix.save(path + ".png");
863         //dia_ui->saveTitle(path + ".kdenlivetitle");
864         m_clipManager->slotAddTextClipFile(path, dia_ui->xml().toString(), QString(), QString());
865         setModified(true);
866     }
867     delete dia_ui;
868 }
869
870
871
872 #include "kdenlivedoc.moc"
873