]> git.sesse.net Git - kdenlive/blob - src/kdenlivedoc.cpp
Start porting timeline to QGraphicsView
[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 QDomDocument KdenliveDoc::generateSceneList()
131 {
132     QDomDocument doc;
133     QDomElement westley = doc.createElement("westley");
134     doc.appendChild(westley);
135     QDomElement prod = doc.createElement("producer");
136 }
137
138 QDomDocument KdenliveDoc::toXml()
139 {
140   return m_document;
141 }
142
143 Timecode KdenliveDoc::timecode()
144 {
145   return m_timecode;
146 }
147
148 QString KdenliveDoc::documentName()
149 {
150   return m_projectName;
151 }
152
153 QDomNodeList KdenliveDoc::producersList()
154 {
155   return m_document.elementsByTagName("producer");
156 }
157
158 void KdenliveDoc::setProducers(QDomElement doc)
159 {
160   QDomNode kdenlivedocument = m_document.elementsByTagName("kdenlivedoc").item(0);
161
162   QDomNodeList list = m_document.elementsByTagName("producer");
163   int ct = list.count();
164     kDebug()<<"DELETING CHILD PRODUCERS: "<<ct;
165   for (int i = ct; i > 0; i--) {
166     kdenlivedocument.removeChild(list.item(i));
167    }
168
169   QDomNode n = doc.firstChild();
170   ct = 0;
171   while(!n.isNull()) {
172      QDomElement e = n.toElement(); // try to convert the node to an element.
173      if(!e.isNull() && e.tagName() == "producer") {
174          kdenlivedocument.appendChild(m_document.importNode(e, true));
175         ct++;
176      }
177      n = n.nextSibling();
178   }
179   kDebug()<<"ADDING CHILD PRODS: "<<ct<<"\n";
180   //kDebug()<<m_document.toString();
181 }
182
183 double KdenliveDoc::fps()
184 {
185   return m_fps;
186 }
187
188 int KdenliveDoc::width()
189 {
190   return m_width;
191 }
192
193 int KdenliveDoc::height()
194 {
195   return m_height;
196 }
197
198 KUrl KdenliveDoc::url()
199 {
200   return m_url;
201 }
202
203 #include "kdenlivedoc.moc"
204