]> git.sesse.net Git - kdenlive/blob - src/projectitem.cpp
7ac2a3eb642b9284db66acbb9abb9659d6b00e0a
[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 <QMouseEvent>
22 #include <QStylePainter>
23 #include <QLabel>
24 #include <QLayout>
25
26 #include <KDebug>
27 #include <KLocale>
28 #include <KIcon>
29
30
31 #include "projectitem.h"
32 #include "timecode.h"
33
34   const int NameRole = Qt::UserRole;
35   const int DurationRole = NameRole + 1;
36   const int FullPathRole = NameRole + 2;
37   const int ClipTypeRole = NameRole + 3;
38
39 ProjectItem::ProjectItem(QTreeWidget * parent, const QStringList & strings, QDomElement xml, int clipId)
40     : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_clipType(DocClipBase::NONE), m_clipId(clipId), m_isGroup(false), m_groupName(QString::null)
41 {
42   m_element = xml.cloneNode().toElement();
43   setSizeHint(0, QSize(65, 45));
44   setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled);
45   if (!m_element.isNull()) {
46     m_element.setAttribute("id", clipId);
47     QString cType = m_element.attribute("type", QString::null);
48     if (!cType.isEmpty()) {
49       m_clipType = (DocClipBase::CLIPTYPE) cType.toInt();
50       slotSetToolTip();
51     }
52   }
53 }
54
55 ProjectItem::ProjectItem(QTreeWidgetItem * parent, const QStringList & strings, QDomElement xml, int clipId)
56     : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_clipType(DocClipBase::NONE), m_clipId(clipId), m_isGroup(false), m_groupName(QString::null)
57 {
58   m_element = xml.cloneNode().toElement();
59   setSizeHint(0, QSize(65, 45));
60   setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled);
61   if (!m_element.isNull()) {
62     m_element.setAttribute("id", clipId);
63     QString cType = m_element.attribute("type", QString::null);
64     if (!cType.isEmpty()) {
65       m_clipType = (DocClipBase::CLIPTYPE) cType.toInt();
66       slotSetToolTip();
67     }
68   }
69 }
70
71 ProjectItem::ProjectItem(QTreeWidget * parent, const QStringList & strings, int clipId)
72     : QTreeWidgetItem(parent, strings, QTreeWidgetItem::UserType), m_element(QDomElement()), m_clipType(DocClipBase::NONE), m_clipId(clipId), m_isGroup(true), m_groupName(strings.at(1))
73 {
74   setSizeHint(0, QSize(65, 45));
75   setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled);
76   setIcon(0, KIcon("folder"));
77 }
78
79 ProjectItem::~ProjectItem()
80 {
81 }
82
83 int ProjectItem::clipId() const
84 {
85   return m_clipId;
86 }
87
88 bool ProjectItem::isGroup() const
89 {
90   return m_isGroup;
91 }
92
93 const QString ProjectItem::groupName() const
94 {
95   return m_groupName;
96 }
97
98 QStringList ProjectItem::names() const
99 {
100   QStringList result;
101   result.append(text(0));
102   result.append(text(1));
103   result.append(text(2));
104   return result;
105 }
106
107 QDomElement ProjectItem::toXml() const
108 {
109     return m_element;
110 }
111
112 const KUrl ProjectItem::clipUrl() const
113 {
114     if (m_clipType != DocClipBase::COLOR && m_clipType != DocClipBase::VIRTUAL && m_clipType != DocClipBase::NONE)
115       return KUrl(m_element.attribute("resouce"));
116     else return KUrl();
117 }
118
119
120 void ProjectItem::slotSetToolTip()
121 {
122   QString tip = "<qt><b>";
123   switch (m_clipType) {
124     case 1:
125       tip.append(i18n("Audio clip"));
126       break;
127     case 2:
128       tip.append(i18n("Mute video clip"));
129       break;
130     case 3:
131       tip.append(i18n("Video clip"));
132       break;
133     case 4:
134       tip.append(i18n("Color clip"));
135       setData(1, DurationRole, Timecode::getEasyTimecode(GenTime(m_element.attribute("out", "250").toInt(), 25), 25));
136       break;
137     case 5:
138       tip.append(i18n("Image clip"));
139       break;
140     case 6:
141       tip.append(i18n("Text clip"));
142       break;
143     case 7:
144       tip.append(i18n("Slideshow clip"));
145       break;
146     case 8:
147       tip.append(i18n("Virtual clip"));
148       break;
149     case 9:
150       tip.append(i18n("Playlist clip"));
151       break;
152     default:
153       tip.append(i18n("Unknown clip"));
154     break;
155   }
156
157   setToolTip(1, tip);
158 }
159
160 void ProjectItem::setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata)
161 {
162         if (attributes.contains("duration")) {
163             m_duration = GenTime(attributes["duration"].toInt(), 25);
164             setData(1, DurationRole, Timecode::getEasyTimecode(m_duration, 25));
165             m_durationKnown = true;
166         } else {
167             // No duration known, use an arbitrary one until it is.
168             m_duration = GenTime(0.0);
169             m_durationKnown = false;
170         }
171
172
173         //extend attributes -reh
174
175         if (m_clipType == DocClipBase::NONE) {
176           if (attributes.contains("type")) {
177             if (attributes["type"] == "audio")
178                 m_clipType = DocClipBase::AUDIO;
179             else if (attributes["type"] == "video")
180                 m_clipType = DocClipBase::VIDEO;
181             else if (attributes["type"] == "av")
182                 m_clipType = DocClipBase::AV;
183             else if (attributes["type"] == "playlist")
184                 m_clipType = DocClipBase::PLAYLIST;
185           } else {
186             m_clipType = DocClipBase::AV;
187           }
188         }
189         slotSetToolTip();
190
191         if (m_element.isNull()) {
192           QDomDocument doc;
193           m_element = doc.createElement("producer");
194         }
195         m_element.setAttribute("resource", attributes["filename"]);
196         m_element.setAttribute("type", (int) m_clipType);
197 /*
198         if (attributes.contains("height")) {
199             m_height = attributes["height"].toInt();
200         } else {
201             m_height = 0;
202         }
203         if (attributes.contains("width")) {
204             m_width = attributes["width"].toInt();
205         } else {
206             m_width = 0;
207         }
208         //decoder name
209         if (attributes.contains("name")) {
210             m_decompressor = attributes["name"];
211         } else {
212             m_decompressor = "n/a";
213         }
214         //video type ntsc/pal
215         if (attributes.contains("system")) {
216             m_system = attributes["system"];
217         } else {
218             m_system = "n/a";
219         }
220         if (attributes.contains("fps")) {
221             m_framesPerSecond = attributes["fps"].toInt();
222         } else {
223             // No frame rate known.
224             m_framesPerSecond = 0;
225         }
226         //audio attributes -reh
227         if (attributes.contains("channels")) {
228             m_channels = attributes["channels"].toInt();
229         } else {
230             m_channels = 0;
231         }
232         if (attributes.contains("format")) {
233             m_format = attributes["format"];
234         } else {
235             m_format = "n/a";
236         }
237         if (attributes.contains("frequency")) {
238             m_frequency = attributes["frequency"].toInt();
239         } else {
240             m_frequency = 0;
241         }
242         if (attributes.contains("videocodec")) {
243             m_videoCodec = attributes["videocodec"];
244         }
245         if (attributes.contains("audiocodec")) {
246             m_audioCodec = attributes["audiocodec"];
247         }
248
249         m_metadata = metadata;
250
251         if (m_metadata.contains("description")) {
252             setDescription (m_metadata["description"]);
253         }
254         else if (m_metadata.contains("comment")) {
255             setDescription (m_metadata["comment"]);
256         }
257 */
258
259 }
260
261 #include "projectitem.moc"