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