]> git.sesse.net Git - kdenlive/blob - src/projectitem.cpp
Fix regression introduced in last commit
[kdenlive] / src / projectitem.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
21 #include "projectitem.h"
22 #include "timecode.h"
23 #include "kdenlivesettings.h"
24 #include "docclipbase.h"
25
26 #include <KDebug>
27 #include <KLocale>
28 #include <KIcon>
29
30 #include <QFile>
31
32 const int DurationRole = Qt::UserRole + 1;
33 const int ProxyRole = Qt::UserRole + 5;
34 const int itemHeight = 38;
35
36 ProjectItem::ProjectItem(QTreeWidget * parent, DocClipBase *clip) :
37         QTreeWidgetItem(parent, PROJECTCLIPTYPE),
38         m_clip(clip),
39         m_clipId(clip->getId())
40 {
41     buildItem();
42 }
43
44 ProjectItem::ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip) :
45         QTreeWidgetItem(parent, PROJECTCLIPTYPE),
46         m_clip(clip),
47         m_clipId(clip->getId())
48         
49 {
50     buildItem();
51 }
52
53 void ProjectItem::buildItem()
54 {
55     setSizeHint(0, QSize(itemHeight * 3, itemHeight));
56     if (m_clip->isPlaceHolder()) setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsDropEnabled);
57     else setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable | Qt::ItemIsDropEnabled);
58     QString name = m_clip->getProperty("name");
59     if (name.isEmpty()) name = KUrl(m_clip->getProperty("resource")).fileName();
60     m_clipType = (CLIPTYPE) m_clip->getProperty("type").toInt();
61     setText(0, name);
62     setText(1, m_clip->description());
63     GenTime duration = m_clip->duration();
64     QString durationText;
65     if (duration != GenTime()) {
66         durationText = Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps());
67     }
68     if (m_clipType == PLAYLIST) {
69         // Check if the playlist xml contains a proxy inside, and inform user
70         if (playlistHasProxies(m_clip->fileURL().path())) {
71             durationText.prepend(i18n("Contains proxies") + " / ");
72         }
73     }
74     if (!durationText.isEmpty()) setData(0, DurationRole, durationText);
75 }
76
77 ProjectItem::~ProjectItem()
78 {
79 }
80
81 //static
82 int ProjectItem::itemDefaultHeight()
83 {
84     return itemHeight;
85 }
86
87 int ProjectItem::numReferences() const
88 {
89     if (!m_clip) return 0;
90     return m_clip->numReferences();
91 }
92
93 const QString &ProjectItem::clipId() const
94 {
95     return m_clipId;
96 }
97
98 CLIPTYPE ProjectItem::clipType() const
99 {
100     return m_clipType;
101 }
102
103 int ProjectItem::clipMaxDuration() const
104 {
105     return m_clip->getProperty("duration").toInt();
106 }
107
108 QStringList ProjectItem::names() const
109 {
110     QStringList result;
111     result.append(text(0));
112     result.append(text(1));
113     result.append(text(2));
114     return result;
115 }
116
117 QDomElement ProjectItem::toXml() const
118 {
119     return m_clip->toXML();
120 }
121
122 const KUrl ProjectItem::clipUrl() const
123 {
124     if (m_clipType != COLOR && m_clipType != VIRTUAL && m_clipType != UNKNOWN)
125         return KUrl(m_clip->getProperty("resource"));
126     else return KUrl();
127 }
128
129 void ProjectItem::changeDuration(int frames)
130 {
131     QString itemdata = data(0, DurationRole).toString();
132     if (itemdata.contains('/')) itemdata = itemdata.section('/', 0, 0) + "/ ";
133     else itemdata.clear();
134     setData(0, DurationRole, itemdata + Timecode::getEasyTimecode(GenTime(frames, KdenliveSettings::project_fps()), KdenliveSettings::project_fps()));
135 }
136
137 void ProjectItem::setProperties(QMap <QString, QString> props)
138 {
139     if (m_clip == NULL) return;
140     m_clip->setProperties(props);
141 }
142
143 QString ProjectItem::getClipHash() const
144 {
145     if (m_clip == NULL) return QString();
146     return m_clip->getClipHash();
147 }
148
149 void ProjectItem::setProperty(const QString &key, const QString &value)
150 {
151     if (m_clip == NULL) return;
152     m_clip->setProperty(key, value);
153 }
154
155 void ProjectItem::clearProperty(const QString &key)
156 {
157     if (m_clip == NULL) return;
158     m_clip->clearProperty(key);
159 }
160
161 DocClipBase *ProjectItem::referencedClip()
162 {
163     return m_clip;
164 }
165
166 void ProjectItem::slotSetToolTip()
167 {
168     QString tip = "<b>";
169     if (m_clip->isPlaceHolder()) tip.append(i18n("Missing") + " | ");
170     switch (m_clipType) {
171     case AUDIO:
172         tip.append(i18n("Audio clip") + "</b><br />" + clipUrl().path());
173         break;
174     case VIDEO:
175         tip.append(i18n("Mute video clip") + "</b><br />" + clipUrl().path());
176         break;
177     case AV:
178         tip.append(i18n("Video clip") + "</b><br />" + clipUrl().path());
179         break;
180     case COLOR:
181         tip.append(i18n("Color clip"));
182         break;
183     case IMAGE:
184         tip.append(i18n("Image clip") + "</b><br />" + clipUrl().path());
185         break;
186     case TEXT:
187         if (!clipUrl().isEmpty() && m_clip->getProperty("xmldata").isEmpty()) tip.append(i18n("Template text clip") + "</b><br />" + clipUrl().path());
188         else tip.append(i18n("Text clip") + "</b><br />" + clipUrl().path());
189         break;
190     case SLIDESHOW:
191         tip.append(i18n("Slideshow clip") + "</b><br />" + clipUrl().directory());
192         break;
193     case VIRTUAL:
194         tip.append(i18n("Virtual clip"));
195         break;
196     case PLAYLIST:
197         tip.append(i18n("Playlist clip") + "</b><br />" + clipUrl().path());
198         break;
199     default:
200         tip.append(i18n("Unknown clip"));
201         break;
202     }
203
204     setToolTip(0, tip);
205 }
206
207
208 void ProjectItem::setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata)
209 {
210     if (m_clip == NULL) return;
211
212     QString prefix;
213     if (m_clipType == UNKNOWN) {
214         QString cliptype = attributes.value("type");
215         if (cliptype == "audio") m_clipType = AUDIO;
216         else if (cliptype == "video") m_clipType = VIDEO;
217         else if (cliptype == "av") m_clipType = AV;
218         else if (cliptype == "playlist") m_clipType = PLAYLIST;
219         else m_clipType = AV;
220
221         m_clip->setClipType(m_clipType);
222         slotSetToolTip();
223         if (m_clipType == PLAYLIST) {
224             // Check if the playlist xml contains a proxy inside, and inform user
225             if (playlistHasProxies(m_clip->fileURL().path())) {
226                 prefix = i18n("Contains proxies") + " / ";
227             }
228         }
229     }
230     if (attributes.contains("duration")) {
231         GenTime duration = GenTime(attributes.value("duration").toInt(), KdenliveSettings::project_fps());
232         QString itemdata = data(0, DurationRole).toString();
233         if (itemdata.contains('/')) itemdata = itemdata.section('/', 0, 0) + "/ ";
234         else itemdata.clear();
235         if (prefix.isEmpty()) prefix = itemdata;
236         setData(0, DurationRole, prefix + Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps()));
237         m_clip->setDuration(duration);
238     } else  {
239         // No duration known, use an arbitrary one until it is.
240     }
241
242     m_clip->setProperties(attributes);
243     m_clip->setMetadata(metadata);
244
245     if (m_clip->description().isEmpty()) {
246         if (metadata.contains("description")) {
247             m_clip->setProperty("description", metadata.value("description"));
248             setText(1, m_clip->description());
249         } else if (metadata.contains("comment")) {
250             m_clip->setProperty("description", metadata.value("comment"));
251             setText(1, m_clip->description());
252         }
253     }
254 }
255
256 void ProjectItem::setProxyStatus(PROXYSTATUS status, int progress)
257 {
258     if (progress > 0) setData(0, ProxyRole, progress);
259     else setData(0, ProxyRole, status);
260 }
261
262 bool ProjectItem::hasProxy() const
263 {
264     if (m_clip == NULL) return false;
265     if (m_clip->getProperty("proxy").isEmpty() || m_clip->getProperty("proxy") == "-" || data(0, ProxyRole).toInt() == PROXYCRASHED) return false;
266     return true;
267 }
268
269 bool ProjectItem::isProxyReady() const
270 {
271      return (data(0, ProxyRole).toInt() == PROXYDONE);
272 }
273
274 bool ProjectItem::isProxyRunning() const
275 {
276     int s = data(0, ProxyRole).toInt();
277     if (s == PROXYWAITING || s == CREATINGPROXY || s > 0) return true;
278     return false;
279 }
280
281 bool ProjectItem::playlistHasProxies(const QString path)
282 {
283     kDebug()<<"// CHECKING FOR PROXIES";
284     QFile file(path);
285     QDomDocument doc;
286     if (!file.open(QIODevice::ReadOnly))
287     return false;
288     if (!doc.setContent(&file)) {
289         file.close();
290         return false;
291     }
292     file.close();
293     QString root = doc.documentElement().attribute("root");
294     QDomNodeList kdenliveProducers = doc.elementsByTagName("kdenlive_producer");
295     for (int i = 0; i < kdenliveProducers.count(); i++) {
296         QString proxy = kdenliveProducers.at(i).toElement().attribute("proxy");
297         if (!proxy.isEmpty() && proxy != "-") return true;
298     }
299     return false;
300 }
301
302
303