]> git.sesse.net Git - kdenlive/blob - src/kdenlivedoc.cpp
170cccfc134d29cac2ebf9990e18742858ac15a5
[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, 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) {
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.toInt() > 0) {
94                         addClip(e, e.attribute("id").toInt());
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                             int id = e.attribute("id").toInt();
106                             m_clipManager->getClipById(id)->addSnapMarker(GenTime(e.attribute("time").toDouble()), e.attribute("comment"));
107                         }
108                     }
109                     m_document.removeChild(markers);
110                 }
111                 m_document.removeChild(infoXmlNode);
112
113                 kDebug() << "Reading file: " << url.path() << ", found clips: " << producers.count();
114             } else kWarning() << "  NO KDENLIVE INFO FOUND IN FILE: " << url.path();
115             KIO::NetAccess::removeTempFile(tmpFile);
116         } else {
117             KMessageBox::error(parent, KIO::NetAccess::lastErrorString());
118         }
119     } else {
120         // Creating new document
121         QDomElement westley = m_document.createElement("westley");
122         m_document.appendChild(westley);
123
124         QDomElement tractor = m_document.createElement("tractor");
125         tractor.setAttribute("id", "maintractor");
126         QDomElement multitrack = m_document.createElement("multitrack");
127         QDomElement playlist = m_document.createElement("playlist");
128         playlist.setAttribute("id", "black_track");
129         westley.appendChild(playlist);
130
131
132         // create playlists
133         int audiotracks = 2;
134         int videotracks = 3;
135         int total = audiotracks + videotracks + 1;
136
137         for (int i = 1; i < total; i++) {
138             QDomElement playlist = m_document.createElement("playlist");
139             playlist.setAttribute("id", "playlist" + QString::number(i));
140             westley.appendChild(playlist);
141         }
142
143         QDomElement track0 = m_document.createElement("track");
144         track0.setAttribute("producer", "black_track");
145         tractor.appendChild(track0);
146
147         // create audio tracks
148         for (int i = 1; i < audiotracks + 1; i++) {
149             QDomElement track = m_document.createElement("track");
150             track.setAttribute("producer", "playlist" + QString::number(i));
151             track.setAttribute("hide", "video");
152             tractor.appendChild(track);
153         }
154
155         // create video tracks
156         for (int i = audiotracks + 1; i < total; i++) {
157             QDomElement track = m_document.createElement("track");
158             track.setAttribute("producer", "playlist" + QString::number(i));
159             tractor.appendChild(track);
160         }
161
162         for (uint i = 2; i < total ; i++) {
163             QDomElement transition = m_document.createElement("transition");
164             transition.setAttribute("always_active", "1");
165
166             QDomElement property = m_document.createElement("property");
167             property.setAttribute("name", "a_track");
168             QDomText value = m_document.createTextNode(QString::number(1));
169             property.appendChild(value);
170             transition.appendChild(property);
171
172             property = m_document.createElement("property");
173             property.setAttribute("name", "b_track");
174             value = m_document.createTextNode(QString::number(i));
175             property.appendChild(value);
176             transition.appendChild(property);
177
178             property = m_document.createElement("property");
179             property.setAttribute("name", "mlt_service");
180             value = m_document.createTextNode("mix");
181             property.appendChild(value);
182             transition.appendChild(property);
183
184             property = m_document.createElement("property");
185             property.setAttribute("name", "combine");
186             value = m_document.createTextNode("1");
187             property.appendChild(value);
188             transition.appendChild(property);
189
190             property = m_document.createElement("property");
191             property.setAttribute("name", "internal_added");
192             value = m_document.createTextNode("237");
193             property.appendChild(value);
194             transition.appendChild(property);
195             tractor.appendChild(transition);
196         }
197         westley.appendChild(tractor);
198     }
199     m_scenelist = m_document.toString();
200     kDebug() << "KDEnnlive document, init timecode: " << m_fps;
201     if (m_fps == 30000.0 / 1001.0) m_timecode.setFormat(30, true);
202     else m_timecode.setFormat((int) m_fps);
203
204     m_autoSaveTimer = new QTimer(this);
205     m_autoSaveTimer->setSingleShot(true);
206     QString directory = m_url.directory();
207     QString fileName = m_url.fileName();
208     m_recoveryUrl.setDirectory(directory);
209     m_recoveryUrl.setFileName("~" + fileName);
210     connect(m_autoSaveTimer, SIGNAL(timeout()), this, SLOT(slotAutoSave()));
211 }
212
213 KdenliveDoc::~KdenliveDoc() {
214     delete m_commandStack;
215     delete m_clipManager;
216     delete m_autoSaveTimer;
217     if (!m_url.isEmpty()) {
218         // remove backup file
219         if (KIO::NetAccess::exists(m_recoveryUrl, KIO::NetAccess::SourceSide, NULL))
220             KIO::NetAccess::del(m_recoveryUrl, NULL);
221     }
222 }
223
224 void KdenliveDoc::syncGuides(QList <Guide *> guides) {
225     QDomDocument doc;
226     QDomElement e;
227     m_guidesXml.clear();
228     m_guidesXml = doc.createElement("guides");
229     for (int i = 0; i < guides.count(); i++) {
230         e = doc.createElement("guide");
231         e.setAttribute("time", guides.at(i)->position().ms() / 1000);
232         e.setAttribute("comment", guides.at(i)->label());
233         m_guidesXml.appendChild(e);
234     }
235 }
236
237 void KdenliveDoc::slotAutoSave() {
238     if (m_render)
239         m_render->saveSceneList(m_recoveryUrl.path(), documentInfoXml());
240
241 }
242
243 void KdenliveDoc::setZoom(int factor) {
244     m_zoom = factor;
245 }
246
247 int KdenliveDoc::zoom() const {
248     return m_zoom;
249 }
250
251 void KdenliveDoc::convertDocument(double version) {
252     // Opening a old Kdenlive document
253     QDomNode westley = m_document.elementsByTagName("westley").at(1);
254     QDomNode tractor = m_document.elementsByTagName("tractor").at(0);
255     QDomNode kdenlivedoc = m_document.elementsByTagName("kdenlivedoc").at(0);
256     QDomNode multitrack = m_document.elementsByTagName("multitrack").at(0);
257     QDomNodeList playlists = m_document.elementsByTagName("playlist");
258
259     m_startPos = kdenlivedoc.toElement().attribute("timeline_position").toInt();
260
261     QDomNode props = m_document.elementsByTagName("properties").at(0).toElement();
262     QString profile = props.toElement().attribute("videoprofile");
263     if (profile == "dv_wide") profile = "dv_pal_wide";
264     setProfilePath(profile);
265
266     // move playlists outside of tractor and add the tracks instead
267     int max = playlists.count();
268     for (int i = 0; i < max; i++) {
269         QDomNode n = playlists.at(i);
270         westley.insertBefore(n, QDomNode());
271         QDomElement pl = n.toElement();
272         QDomElement track = m_document.createElement("track");
273         QString trackType = pl.attribute("hide");
274         if (!trackType.isEmpty()) track.setAttribute("hide", trackType);
275         QString playlist_id =  pl.attribute("id");
276         if (playlist_id.isEmpty()) {
277             playlist_id = "black_track";
278             pl.setAttribute("id", playlist_id);
279         }
280         track.setAttribute("producer", playlist_id);
281         tractor.appendChild(track);
282     }
283     tractor.removeChild(multitrack);
284
285     // audio track mixing transitions should not be added to track view, so add required attribute
286     QDomNodeList transitions = m_document.elementsByTagName("transition");
287     max = transitions.count();
288     for (int i = 0; i < max; i++) {
289         QDomElement tr = transitions.at(i).toElement();
290         if (tr.attribute("combine") == "1" && tr.attribute("mlt_service") == "mix") {
291             QDomElement property = m_document.createElement("property");
292             property.setAttribute("name", "internal_added");
293             QDomText value = m_document.createTextNode("237");
294             property.appendChild(value);
295             tr.appendChild(property);
296         } else {
297             // convert transition
298             QDomNamedNodeMap attrs = tr.attributes();
299             for (unsigned int j = 0; j < attrs.count(); j++) {
300                 QString attrName = attrs.item(j).nodeName();
301                 if (attrName != "in" && attrName != "out" && attrName != "id") {
302                     QDomElement property = m_document.createElement("property");
303                     property.setAttribute("name", attrName);
304                     QDomText value = m_document.createTextNode(attrs.item(j).nodeValue());
305                     property.appendChild(value);
306                     tr.appendChild(property);
307                 }
308             }
309         }
310     }
311
312     // move transitions after tracks
313     for (int i = 0; i < max; i++) {
314         tractor.insertAfter(transitions.at(0), QDomNode());
315     }
316
317     QDomElement markers = m_document.createElement("markers");
318
319     // change producer names
320     QDomNodeList producers = m_document.elementsByTagName("producer");
321     max = producers.count();
322     for (int i = 0; i < max; i++) {
323         QDomElement prod = producers.at(0).toElement();
324         QDomNode m = prod.firstChild();
325         if (!m.isNull() && m.toElement().tagName() == "markers") {
326             QDomNodeList prodchilds = m.childNodes();
327             int maxchild = prodchilds.count();
328             for (int k = 0; k < maxchild; k++) {
329                 QDomElement mark = prodchilds.at(0).toElement();
330                 mark.setAttribute("id", prod.attribute("id"));
331                 markers.insertAfter(mark, QDomNode());
332             }
333             prod.removeChild(m);
334         }
335         int duration = prod.attribute("duration").toInt();
336         if (duration > 0) prod.setAttribute("out", QString::number(duration));
337         westley.insertBefore(prod, QDomNode());
338     }
339
340     QDomNode westley0 = m_document.elementsByTagName("westley").at(0);
341     if (!markers.firstChild().isNull()) westley0.appendChild(markers);
342     westley0.removeChild(kdenlivedoc);
343
344     QDomNodeList elements = westley.childNodes();
345     max = elements.count();
346     for (int i = 0; i < max; i++) {
347         QDomElement prod = elements.at(0).toElement();
348         westley0.insertAfter(prod, QDomNode());
349     }
350
351     westley0.removeChild(westley);
352
353     //kDebug() << "/////////////////  CONVERTED DOC:";
354     //kDebug() << m_document.toString();
355     //kDebug() << "/////////////////  END CONVERTED DOC:";
356 }
357
358 QDomElement KdenliveDoc::documentInfoXml() {
359     QDomDocument doc;
360     QDomElement e;
361     QDomElement addedXml = doc.createElement("kdenlivedoc");
362     QDomElement markers = doc.createElement("markers");
363     addedXml.setAttribute("version", "0.7");
364     addedXml.setAttribute("profile", profilePath());
365     addedXml.setAttribute("position", m_render->seekPosition().frames(m_fps));
366     addedXml.setAttribute("zoom", m_zoom);
367     QList <DocClipBase*> list = m_clipManager->documentClipList();
368     for (int i = 0; i < list.count(); i++) {
369         e = list.at(i)->toXML();
370         e.setTagName("kdenlive_producer");
371         addedXml.appendChild(doc.importNode(e, true));
372         QList < CommentedTime > marks = list.at(i)->commentedSnapMarkers();
373         for (int j = 0; j < marks.count(); j++) {
374             QDomElement marker = doc.createElement("marker");
375             marker.setAttribute("time", marks.at(j).time().ms() / 1000);
376             marker.setAttribute("comment", marks.at(j).comment());
377             marker.setAttribute("id", e.attribute("id"));
378             markers.appendChild(marker);
379         }
380     }
381     addedXml.appendChild(markers);
382     if (!m_guidesXml.isNull()) addedXml.appendChild(doc.importNode(m_guidesXml, true));
383     //kDebug() << m_document.toString();
384     return addedXml;
385 }
386
387
388 ClipManager *KdenliveDoc::clipManager() {
389     return m_clipManager;
390 }
391
392 KUrl KdenliveDoc::projectFolder() const {
393     if (m_projectFolder.isEmpty()) return KUrl(KStandardDirs::locateLocal("appdata", "/projects/"));
394     return m_projectFolder;
395 }
396
397 QString KdenliveDoc::getDocumentStandard() {
398     //WARNING: this way to tell the video standard is a bit hackish...
399     if (m_profile.description.contains("pal", Qt::CaseInsensitive) || m_profile.description.contains("25", Qt::CaseInsensitive) || m_profile.description.contains("50", Qt::CaseInsensitive)) return "PAL";
400     return "NTSC";
401 }
402
403 QString KdenliveDoc::profilePath() const {
404     return m_profile.path;
405 }
406
407 void KdenliveDoc::setProfilePath(QString path) {
408     if (path.isEmpty()) path = KdenliveSettings::default_profile();
409     if (path.isEmpty()) path = "dv_pal";
410     m_profile = ProfilesDialog::getVideoProfile(path);
411     KdenliveSettings::setProject_display_ratio((double) m_profile.display_aspect_num / m_profile.display_aspect_den);
412     m_fps = (double) m_profile.frame_rate_num / m_profile.frame_rate_den;
413     m_width = m_profile.width;
414     m_height = m_profile.height;
415     kDebug() << "KDEnnlive document, init timecode from path: " << path << ",  " << m_fps;
416     if (m_fps == 30000.0 / 1001.0) m_timecode.setFormat(30, true);
417     else m_timecode.setFormat((int) m_fps);
418 }
419
420 const double KdenliveDoc::dar() {
421     return (double) m_profile.display_aspect_num / m_profile.display_aspect_den;
422 }
423
424 void KdenliveDoc::setThumbsProgress(const QString &message, int progress) {
425     emit progressInfo(message, progress);
426 }
427
428 void KdenliveDoc::loadingProgressed() {
429     m_documentLoadingProgress += m_documentLoadingStep;
430     emit progressInfo(QString(), (int) m_documentLoadingProgress);
431 }
432
433 QUndoStack *KdenliveDoc::commandStack() {
434     return m_commandStack;
435 }
436
437 void KdenliveDoc::setRenderer(Render *render) {
438     m_render = render;
439     emit progressInfo(i18n("Loading playlist..."), 0);
440     qApp->processEvents();
441     if (m_render) m_render->setSceneList(m_document.toString(), m_startPos);
442     emit progressInfo(QString(), -1);
443 }
444
445 Render *KdenliveDoc::renderer() {
446     return m_render;
447 }
448
449 void KdenliveDoc::updateClip(int id) {
450     emit updateClipDisplay(id);
451 }
452
453 void KdenliveDoc::updateAllProjectClips() {
454     QList <DocClipBase*> list = m_clipManager->documentClipList();
455     for (int i = 0; i < list.count(); i++)
456         emit updateClipDisplay(list.at(i)->getId());
457 }
458
459 int KdenliveDoc::getFramePos(QString duration) {
460     return m_timecode.getFrameCount(duration, m_fps);
461 }
462
463 QString KdenliveDoc::producerName(int id) {
464     QString result = "unnamed";
465     QDomNodeList prods = producersList();
466     int ct = prods.count();
467     for (int i = 0; i <  ct ; i++) {
468         QDomElement e = prods.item(i).toElement();
469         if (e.attribute("id") != "black" && e.attribute("id").toInt() == id) {
470             result = e.attribute("name");
471             if (result.isEmpty()) result = KUrl(e.attribute("resource")).fileName();
472             break;
473         }
474     }
475     return result;
476 }
477
478 void KdenliveDoc::setProducerDuration(int id, int duration) {
479     QDomNodeList prods = producersList();
480     int ct = prods.count();
481     for (int i = 0; i <  ct ; i++) {
482         QDomElement e = prods.item(i).toElement();
483         if (e.attribute("id") != "black" && e.attribute("id").toInt() == id) {
484             e.setAttribute("duration", QString::number(duration));
485             break;
486         }
487     }
488 }
489
490 int KdenliveDoc::getProducerDuration(int id) {
491     int result = 0;
492     QDomNodeList prods = producersList();
493     int ct = prods.count();
494     for (int i = 0; i <  ct ; i++) {
495         QDomElement e = prods.item(i).toElement();
496         if (e.attribute("id") != "black" && e.attribute("id").toInt() == id) {
497             result = e.attribute("duration").toInt();
498             break;
499         }
500     }
501     return result;
502 }
503
504
505 QDomDocument KdenliveDoc::generateSceneList() {
506     QDomDocument doc;
507     QDomElement westley = doc.createElement("westley");
508     doc.appendChild(westley);
509     QDomElement prod = doc.createElement("producer");
510 }
511
512 QDomDocument KdenliveDoc::toXml() const {
513     return m_document;
514 }
515
516 Timecode KdenliveDoc::timecode() const {
517     return m_timecode;
518 }
519
520 QDomNodeList KdenliveDoc::producersList() {
521     return m_document.elementsByTagName("producer");
522 }
523
524 void KdenliveDoc::backupMltPlaylist() {
525     if (m_render) m_scenelist = m_render->sceneList();
526 }
527
528 double KdenliveDoc::fps() const {
529     return m_fps;
530 }
531
532 int KdenliveDoc::width() const {
533     return m_width;
534 }
535
536 int KdenliveDoc::height() const {
537     return m_height;
538 }
539
540 KUrl KdenliveDoc::url() const {
541     return m_url;
542 }
543
544 void KdenliveDoc::setUrl(KUrl url) {
545     m_url = url;
546     QString directory = m_url.directory();
547     QString fileName = m_url.fileName();
548     m_recoveryUrl.setDirectory(directory);
549     m_recoveryUrl.setFileName("~" + fileName);
550 }
551
552 void KdenliveDoc::setModified(bool mod) {
553     if (!m_url.isEmpty() && mod && KdenliveSettings::crashrecovery()) {
554         m_autoSaveTimer->start(3000);
555     }
556     if (mod == m_modified) return;
557     m_modified = mod;
558     emit docModified(m_modified);
559 }
560
561 bool KdenliveDoc::isModified() const {
562     return m_modified;
563 }
564
565 QString KdenliveDoc::description() const {
566     if (m_url.isEmpty())
567         return i18n("Untitled") + " / " + m_profile.description;
568     else
569         return m_url.fileName() + " / " + m_profile.description;
570 }
571
572 void KdenliveDoc::addClip(const QDomElement &elem, const int clipId) {
573     DocClipBase *clip = new DocClipBase(m_clipManager, elem, clipId);
574     kDebug() << "/////////  DOCUM, CREATING NEW CLIP, ID:" << clipId << ", PAR ID:" << elem.attribute("groupid");
575     m_clipManager->addClip(clip);
576     emit addProjectClip(clip);
577 }
578
579 void KdenliveDoc::addFolder(const QString foldername, int clipId, bool edit) {
580     emit addProjectFolder(foldername, clipId, false, edit);
581 }
582
583 void KdenliveDoc::deleteFolder(const QString foldername, int clipId) {
584     emit addProjectFolder(foldername, clipId, true);
585 }
586
587 void KdenliveDoc::deleteProjectClip(QList <int> ids) {
588     for (int i = 0; i < ids.size(); ++i) {
589         emit deletTimelineClip(ids.at(i));
590         m_clipManager->slotDeleteClip(ids.at(i));
591     }
592     setModified(true);
593 }
594
595 void KdenliveDoc::deleteProjectFolder(QMap <QString, int> map) {
596     QMapIterator<QString, int> i(map);
597     while (i.hasNext()) {
598         i.next();
599         slotDeleteFolder(i.key(), i.value());
600     }
601     setModified(true);
602 }
603
604 void KdenliveDoc::deleteClip(const uint clipId) {
605     emit signalDeleteProjectClip(clipId);
606     m_clipManager->deleteClip(clipId);
607 }
608
609 void KdenliveDoc::slotAddClipFile(const KUrl url, const QString group, const int groupId) {
610     kDebug() << "/////////  DOCUM, ADD CLP: " << url;
611     m_clipManager->slotAddClipFile(url, group, groupId);
612     setModified(true);
613 }
614
615 void KdenliveDoc::slotAddTextClipFile(const QString path, const QString xml, const QString group, const int groupId) {
616     kDebug() << "/////////  DOCUM, ADD TXT CLP: " << path;
617     m_clipManager->slotAddTextClipFile(path, xml, group, groupId);
618     setModified(true);
619 }
620
621 void KdenliveDoc::slotAddFolder(const QString folderName) {
622     AddFolderCommand *command = new AddFolderCommand(this, folderName, m_clipManager->getFreeClipId(), true);
623     commandStack()->push(command);
624     setModified(true);
625 }
626
627 void KdenliveDoc::slotDeleteFolder(const QString folderName, const int id) {
628     AddFolderCommand *command = new AddFolderCommand(this, folderName, id, false);
629     commandStack()->push(command);
630     setModified(true);
631 }
632
633 void KdenliveDoc::slotEditFolder(const QString newfolderName, const QString oldfolderName, int clipId) {
634     EditFolderCommand *command = new EditFolderCommand(this, newfolderName, oldfolderName, clipId, false);
635     commandStack()->push(command);
636     setModified(true);
637 }
638
639 int KdenliveDoc::getFreeClipId() {
640     return m_clipManager->getFreeClipId();
641 }
642
643 DocClipBase *KdenliveDoc::getBaseClip(int clipId) {
644     return m_clipManager->getClipById(clipId);
645 }
646
647 void KdenliveDoc::slotAddColorClipFile(const QString name, const QString color, QString duration, const QString group, const int groupId) {
648     m_clipManager->slotAddColorClipFile(name, color, duration, group, groupId);
649     setModified(true);
650 }
651
652 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 int groupId) {
653     m_clipManager->slotAddSlideshowClipFile(name, path, count, duration, loop, fade, luma_duration, luma_file, softness, group, groupId);
654     setModified(true);
655 }
656
657 void KdenliveDoc::slotCreateTextClip(QString group, int groupId) {
658     QString titlesFolder = projectFolder().path() + "/titles/";
659     KStandardDirs::makeDir(titlesFolder);
660     TitleWidget *dia_ui = new TitleWidget(KUrl(), titlesFolder, m_render, kapp->activeWindow());
661     if (dia_ui->exec() == QDialog::Accepted) {
662         QString titleName = "title";
663         int counter = 0;
664         QString path = titlesFolder + titleName + QString::number(counter).rightJustified(3, '0', false);
665         while (QFile::exists(path + ".kdenlivetitle")) {
666             counter++;
667             path = titlesFolder + titleName + QString::number(counter).rightJustified(3, '0', false);
668         }
669         QPixmap pix = dia_ui->renderedPixmap();
670         pix.save(path + ".png");
671         //dia_ui->saveTitle(path + ".kdenlivetitle");
672         slotAddTextClipFile(path, dia_ui->xml().toString(), QString(), -1);
673     }
674     delete dia_ui;
675 }
676
677 void KdenliveDoc::editTextClip(QString path, int id) {
678     DocClipBase *clip = m_clipManager->getClipById(id);
679     if (!clip) return;
680     TitleWidget *dia_ui = new TitleWidget(KUrl()/*path + ".kdenlivetitle")*/, path, m_render, kapp->activeWindow());
681     QDomDocument doc;
682     doc.setContent(clip->getProperty("xmldata"));
683     dia_ui->setXml(doc);
684     if (dia_ui->exec() == QDialog::Accepted) {
685         QPixmap pix = dia_ui->renderedPixmap();
686         pix.save(path + ".png");
687         //dia_ui->saveTitle(path + ".kdenlivetitle");
688         //slotAddClipFile(KUrl("/tmp/kdenlivetitle.png"), QString(), -1);
689         emit refreshClipThumbnail(id);
690     }
691     delete dia_ui;
692 }
693
694
695 #include "kdenlivedoc.moc"
696