]> git.sesse.net Git - kdenlive/blob - src/kdenlivedoc.cpp
a04b6145b10d288e8597df86f93f719d0e8817f5
[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
27
28 #include "kdenlivedoc.h"
29
30
31 KdenliveDoc::KdenliveDoc(const KUrl &url, double fps, int width, int height, QWidget *parent):QObject(parent), m_render(NULL), m_url(url), m_fps(fps), m_width(width), m_height(height), m_projectName(NULL), m_commandStack(new KUndoStack())
32 {
33   if (!url.isEmpty()) {
34     QString tmpFile;
35     if(KIO::NetAccess::download(url.path(), tmpFile, parent))
36     {
37       QFile file(tmpFile);
38       m_document.setContent(&file, false);
39       file.close();
40       m_projectName = url.fileName();
41       KIO::NetAccess::removeTempFile(tmpFile);
42     }
43     else
44     {
45       KMessageBox::error(parent, KIO::NetAccess::lastErrorString());
46     }
47   }
48   else {
49     // Creating new document
50     QDomElement westley = m_document.createElement("westley");
51     m_document.appendChild(westley);
52     QDomElement doc = m_document.createElement("kdenlivedoc");
53     doc.setAttribute("version", "0.6");
54     westley.appendChild(doc);
55     QDomElement props = m_document.createElement("properties");
56     doc.setAttribute("width", m_width);
57     doc.setAttribute("height", m_height);
58     doc.setAttribute("projectfps", m_fps);
59     doc.appendChild(props);
60
61
62     /*QDomElement westley = m_document.createElement("westley");
63     m_document.appendChild(westley);*/
64
65
66     QDomElement tractor = m_document.createElement("tractor");
67     QDomElement multitrack = m_document.createElement("multitrack");
68     QDomElement playlist = m_document.createElement("playlist");
69     QDomElement producer = m_document.createElement("producer");
70     /*producer.setAttribute("mlt_service", "colour");
71     producer.setAttribute("colour", "red");
72     playlist.appendChild(producer);*/
73     multitrack.appendChild(playlist);
74     QDomElement playlist1 = m_document.createElement("playlist");
75     playlist1.setAttribute("id", "playlist1");
76     playlist1.setAttribute("hide", "video");
77     multitrack.appendChild(playlist1);
78     QDomElement playlist2 = m_document.createElement("playlist");
79     playlist2.setAttribute("id", "playlist2");
80     playlist2.setAttribute("hide", "video");
81     multitrack.appendChild(playlist2);
82     QDomElement playlist3 = m_document.createElement("playlist");
83     multitrack.appendChild(playlist3);
84     playlist3.setAttribute("id", "playlist3");
85     QDomElement playlist4 = m_document.createElement("playlist");
86     multitrack.appendChild(playlist4);
87     playlist4.setAttribute("id", "playlist4");
88     QDomElement playlist5 = m_document.createElement("playlist");
89     multitrack.appendChild(playlist5);
90     playlist5.setAttribute("id", "playlist5");
91     tractor.appendChild(multitrack);
92     doc.appendChild(tractor);
93     
94   }
95   if (fps == 30000.0 / 1001.0 ) m_timecode.setFormat(30, true);
96     else m_timecode.setFormat((int) fps);
97 }
98
99 KdenliveDoc::~KdenliveDoc()
100 {
101   delete m_commandStack;
102 }
103
104 KUndoStack *KdenliveDoc::commandStack()
105 {
106   return m_commandStack;
107 }
108
109 void KdenliveDoc::setRenderer(Render *render)
110 {
111   m_render = render;
112   if (m_render) m_render->setSceneList(m_document);
113 }
114
115 Render *KdenliveDoc::renderer()
116 {
117   return m_render;
118 }
119
120 QString KdenliveDoc::producerName(int id)
121 {
122   QString result = "unnamed";
123   QDomNodeList prods = producersList();
124   int ct = prods.count();
125   for (int i = 0; i <  ct ; i++)
126   {
127     QDomElement e = prods.item(i).toElement();
128     if (e.attribute("id") != "black" && e.attribute("id").toInt() == id) {
129       result = e.attribute("name");
130       if (result.isEmpty()) result = KUrl(e.attribute("resource")).fileName();
131       break;
132     }
133   }
134   return result;
135 }
136
137 void KdenliveDoc::setProducerDuration(int id, int duration)
138 {
139   QDomNodeList prods = producersList();
140   int ct = prods.count();
141   for (int i = 0; i <  ct ; i++)
142   {
143     QDomElement e = prods.item(i).toElement();
144     if (e.attribute("id") != "black" && e.attribute("id").toInt() == id) {
145       e.setAttribute("duration", QString::number(duration));
146       break;
147     }
148   }
149 }
150
151 int KdenliveDoc::getProducerDuration(int id)
152 {
153   int result = 0;
154   QDomNodeList prods = producersList();
155   int ct = prods.count();
156   for (int i = 0; i <  ct ; i++)
157   {
158     QDomElement e = prods.item(i).toElement();
159     if (e.attribute("id") != "black" && e.attribute("id").toInt() == id) {
160       result = e.attribute("duration").toInt();
161       break;
162     }
163   }
164   return result;
165 }
166
167
168 QDomDocument KdenliveDoc::generateSceneList()
169 {
170     QDomDocument doc;
171     QDomElement westley = doc.createElement("westley");
172     doc.appendChild(westley);
173     QDomElement prod = doc.createElement("producer");
174 }
175
176 QDomDocument KdenliveDoc::toXml()
177 {
178   return m_document;
179 }
180
181 Timecode KdenliveDoc::timecode()
182 {
183   return m_timecode;
184 }
185
186 QString KdenliveDoc::documentName()
187 {
188   return m_projectName;
189 }
190
191 QDomNodeList KdenliveDoc::producersList()
192 {
193   return m_document.elementsByTagName("producer");
194 }
195
196 void KdenliveDoc::setProducers(QDomElement doc)
197 {
198   QDomNode kdenlivedocument = m_document.elementsByTagName("kdenlivedoc").item(0);
199
200   QDomNodeList list = m_document.elementsByTagName("producer");
201   int ct = list.count();
202     kDebug()<<"DELETING CHILD PRODUCERS: "<<ct;
203   for (int i = ct; i > 0; i--) {
204     kdenlivedocument.removeChild(list.item(i));
205    }
206
207   QDomNode n = doc.firstChild();
208   ct = 0;
209   while(!n.isNull()) {
210      QDomElement e = n.toElement(); // try to convert the node to an element.
211      if(!e.isNull() && e.tagName() == "producer") {
212          kdenlivedocument.appendChild(m_document.importNode(e, true));
213         ct++;
214      }
215      n = n.nextSibling();
216   }
217   kDebug()<<"ADDING CHILD PRODS: "<<ct<<"\n";
218   //kDebug()<<m_document.toString();
219 }
220
221 double KdenliveDoc::fps()
222 {
223   return m_fps;
224 }
225
226 int KdenliveDoc::width()
227 {
228   return m_width;
229 }
230
231 int KdenliveDoc::height()
232 {
233   return m_height;
234 }
235
236 KUrl KdenliveDoc::url()
237 {
238   return m_url;
239 }
240
241 #include "kdenlivedoc.moc"
242